Thomas Gleixner | 20c8ccb | 2019-06-04 10:11:32 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Kernel-based Virtual Machine driver for Linux |
| 4 | * cpuid support routines |
| 5 | * |
| 6 | * derived from arch/x86/kvm/x86.c |
| 7 | * |
| 8 | * Copyright 2011 Red Hat, Inc. and/or its affiliates. |
| 9 | * Copyright IBM Corporation, 2008 |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #include <linux/kvm_host.h> |
Paul Gortmaker | 1767e93 | 2016-07-13 20:19:00 -0400 | [diff] [blame] | 13 | #include <linux/export.h> |
Jan Kiszka | bb5a798 | 2011-12-14 17:58:18 +0100 | [diff] [blame] | 14 | #include <linux/vmalloc.h> |
| 15 | #include <linux/uaccess.h> |
Ingo Molnar | 3905f9a | 2017-02-05 12:07:04 +0100 | [diff] [blame] | 16 | #include <linux/sched/stat.h> |
| 17 | |
Luwei Kang | 4504b5c | 2016-11-07 14:03:20 +0800 | [diff] [blame] | 18 | #include <asm/processor.h> |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 19 | #include <asm/user.h> |
Ingo Molnar | 669ebab | 2015-04-28 08:41:33 +0200 | [diff] [blame] | 20 | #include <asm/fpu/xstate.h> |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 21 | #include "cpuid.h" |
| 22 | #include "lapic.h" |
| 23 | #include "mmu.h" |
| 24 | #include "trace.h" |
Wei Huang | 474a5bb | 2015-06-19 13:54:23 +0200 | [diff] [blame] | 25 | #include "pmu.h" |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 26 | |
Sean Christopherson | 66a6950 | 2020-03-02 15:56:41 -0800 | [diff] [blame] | 27 | /* |
| 28 | * Unlike "struct cpuinfo_x86.x86_capability", kvm_cpu_caps doesn't need to be |
| 29 | * aligned to sizeof(unsigned long) because it's not accessed via bitops. |
| 30 | */ |
| 31 | u32 kvm_cpu_caps[NCAPINTS] __read_mostly; |
| 32 | EXPORT_SYMBOL_GPL(kvm_cpu_caps); |
| 33 | |
Paolo Bonzini | 412a3c4 | 2014-12-03 14:38:01 +0100 | [diff] [blame] | 34 | static u32 xstate_required_size(u64 xstate_bv, bool compacted) |
Paolo Bonzini | 4344ee9 | 2013-10-02 16:06:16 +0200 | [diff] [blame] | 35 | { |
| 36 | int feature_bit = 0; |
| 37 | u32 ret = XSAVE_HDR_SIZE + XSAVE_HDR_OFFSET; |
| 38 | |
Dave Hansen | d91cab7 | 2015-09-02 16:31:26 -0700 | [diff] [blame] | 39 | xstate_bv &= XFEATURE_MASK_EXTEND; |
Paolo Bonzini | 4344ee9 | 2013-10-02 16:06:16 +0200 | [diff] [blame] | 40 | while (xstate_bv) { |
| 41 | if (xstate_bv & 0x1) { |
Paolo Bonzini | 412a3c4 | 2014-12-03 14:38:01 +0100 | [diff] [blame] | 42 | u32 eax, ebx, ecx, edx, offset; |
Paolo Bonzini | 4344ee9 | 2013-10-02 16:06:16 +0200 | [diff] [blame] | 43 | cpuid_count(0xD, feature_bit, &eax, &ebx, &ecx, &edx); |
Paolo Bonzini | 412a3c4 | 2014-12-03 14:38:01 +0100 | [diff] [blame] | 44 | offset = compacted ? ret : ebx; |
| 45 | ret = max(ret, offset + eax); |
Paolo Bonzini | 4344ee9 | 2013-10-02 16:06:16 +0200 | [diff] [blame] | 46 | } |
| 47 | |
| 48 | xstate_bv >>= 1; |
| 49 | feature_bit++; |
| 50 | } |
| 51 | |
| 52 | return ret; |
| 53 | } |
| 54 | |
Sean Christopherson | 8738200 | 2019-12-17 13:32:42 -0800 | [diff] [blame] | 55 | #define F feature_bit |
Paolo Bonzini | 5c404ca | 2014-12-03 14:34:47 +0100 | [diff] [blame] | 56 | |
Nadav Amit | dd59809 | 2014-09-16 15:10:03 +0300 | [diff] [blame] | 57 | int kvm_update_cpuid(struct kvm_vcpu *vcpu) |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 58 | { |
| 59 | struct kvm_cpuid_entry2 *best; |
| 60 | struct kvm_lapic *apic = vcpu->arch.apic; |
| 61 | |
| 62 | best = kvm_find_cpuid_entry(vcpu, 1, 0); |
Xiaoyao Li | 0d3b2ba | 2020-07-08 14:50:48 +0800 | [diff] [blame^] | 63 | if (best) { |
| 64 | /* Update OSXSAVE bit */ |
| 65 | if (boot_cpu_has(X86_FEATURE_XSAVE)) |
| 66 | cpuid_entry_change(best, X86_FEATURE_OSXSAVE, |
Sean Christopherson | b32666b | 2020-03-02 15:56:31 -0800 | [diff] [blame] | 67 | kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE)); |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 68 | |
Xiaoyao Li | 0d3b2ba | 2020-07-08 14:50:48 +0800 | [diff] [blame^] | 69 | cpuid_entry_change(best, X86_FEATURE_APIC, |
Sean Christopherson | b32666b | 2020-03-02 15:56:31 -0800 | [diff] [blame] | 70 | vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE); |
Xiaoyao Li | 0d3b2ba | 2020-07-08 14:50:48 +0800 | [diff] [blame^] | 71 | } |
Jim Mattson | c7dd15b | 2016-11-09 09:50:11 -0800 | [diff] [blame] | 72 | |
Xiaoyao Li | 0d3b2ba | 2020-07-08 14:50:48 +0800 | [diff] [blame^] | 73 | if (best && apic) { |
Sean Christopherson | 4c61534 | 2020-03-02 15:56:30 -0800 | [diff] [blame] | 74 | if (cpuid_entry_has(best, X86_FEATURE_TSC_DEADLINE_TIMER)) |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 75 | apic->lapic_timer.timer_mode_mask = 3 << 17; |
| 76 | else |
| 77 | apic->lapic_timer.timer_mode_mask = 1 << 17; |
| 78 | } |
Gleb Natapov | f5132b0 | 2011-11-10 14:57:22 +0200 | [diff] [blame] | 79 | |
Huaitong Han | b9baba8 | 2016-03-22 16:51:21 +0800 | [diff] [blame] | 80 | best = kvm_find_cpuid_entry(vcpu, 7, 0); |
Sean Christopherson | b32666b | 2020-03-02 15:56:31 -0800 | [diff] [blame] | 81 | if (best && boot_cpu_has(X86_FEATURE_PKU) && best->function == 0x7) |
| 82 | cpuid_entry_change(best, X86_FEATURE_OSPKE, |
| 83 | kvm_read_cr4_bits(vcpu, X86_CR4_PKE)); |
Huaitong Han | b9baba8 | 2016-03-22 16:51:21 +0800 | [diff] [blame] | 84 | |
Paolo Bonzini | d7876f1 | 2013-10-02 16:06:15 +0200 | [diff] [blame] | 85 | best = kvm_find_cpuid_entry(vcpu, 0xD, 0); |
Paolo Bonzini | 4344ee9 | 2013-10-02 16:06:16 +0200 | [diff] [blame] | 86 | if (!best) { |
Paolo Bonzini | d7876f1 | 2013-10-02 16:06:15 +0200 | [diff] [blame] | 87 | vcpu->arch.guest_supported_xcr0 = 0; |
Paolo Bonzini | 4344ee9 | 2013-10-02 16:06:16 +0200 | [diff] [blame] | 88 | } else { |
Paolo Bonzini | d7876f1 | 2013-10-02 16:06:15 +0200 | [diff] [blame] | 89 | vcpu->arch.guest_supported_xcr0 = |
Sean Christopherson | cfc4818 | 2020-03-02 15:56:23 -0800 | [diff] [blame] | 90 | (best->eax | ((u64)best->edx << 32)) & supported_xcr0; |
Xiaoyao Li | a71936ab | 2020-04-29 23:43:12 +0800 | [diff] [blame] | 91 | best->ebx = xstate_required_size(vcpu->arch.xcr0, false); |
Paolo Bonzini | 4344ee9 | 2013-10-02 16:06:16 +0200 | [diff] [blame] | 92 | } |
Paolo Bonzini | d7876f1 | 2013-10-02 16:06:15 +0200 | [diff] [blame] | 93 | |
Paolo Bonzini | 412a3c4 | 2014-12-03 14:38:01 +0100 | [diff] [blame] | 94 | best = kvm_find_cpuid_entry(vcpu, 0xD, 1); |
Sean Christopherson | 4c61534 | 2020-03-02 15:56:30 -0800 | [diff] [blame] | 95 | if (best && (cpuid_entry_has(best, X86_FEATURE_XSAVES) || |
| 96 | cpuid_entry_has(best, X86_FEATURE_XSAVEC))) |
Paolo Bonzini | 412a3c4 | 2014-12-03 14:38:01 +0100 | [diff] [blame] | 97 | best->ebx = xstate_required_size(vcpu->arch.xcr0, true); |
| 98 | |
Nadav Amit | dd59809 | 2014-09-16 15:10:03 +0300 | [diff] [blame] | 99 | /* |
Yu Zhang | fd8cb43 | 2017-08-24 20:27:56 +0800 | [diff] [blame] | 100 | * The existing code assumes virtual address is 48-bit or 57-bit in the |
| 101 | * canonical address checks; exit if it is ever changed. |
Nadav Amit | dd59809 | 2014-09-16 15:10:03 +0300 | [diff] [blame] | 102 | */ |
| 103 | best = kvm_find_cpuid_entry(vcpu, 0x80000008, 0); |
Yu Zhang | fd8cb43 | 2017-08-24 20:27:56 +0800 | [diff] [blame] | 104 | if (best) { |
| 105 | int vaddr_bits = (best->eax & 0xff00) >> 8; |
| 106 | |
| 107 | if (vaddr_bits != 48 && vaddr_bits != 57 && vaddr_bits != 0) |
| 108 | return -EINVAL; |
| 109 | } |
Nadav Amit | dd59809 | 2014-09-16 15:10:03 +0300 | [diff] [blame] | 110 | |
Wanpeng Li | caa057a | 2018-03-12 04:53:03 -0700 | [diff] [blame] | 111 | best = kvm_find_cpuid_entry(vcpu, KVM_CPUID_FEATURES, 0); |
| 112 | if (kvm_hlt_in_guest(vcpu->kvm) && best && |
| 113 | (best->eax & (1 << KVM_FEATURE_PV_UNHALT))) |
| 114 | best->eax &= ~(1 << KVM_FEATURE_PV_UNHALT); |
| 115 | |
Wanpeng Li | 511a8556 | 2019-05-21 14:06:54 +0800 | [diff] [blame] | 116 | if (!kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_MISC_ENABLE_NO_MWAIT)) { |
| 117 | best = kvm_find_cpuid_entry(vcpu, 0x1, 0); |
Sean Christopherson | b32666b | 2020-03-02 15:56:31 -0800 | [diff] [blame] | 118 | if (best) |
| 119 | cpuid_entry_change(best, X86_FEATURE_MWAIT, |
| 120 | vcpu->arch.ia32_misc_enable_msr & |
| 121 | MSR_IA32_MISC_ENABLE_MWAIT); |
Wanpeng Li | 511a8556 | 2019-05-21 14:06:54 +0800 | [diff] [blame] | 122 | } |
| 123 | |
Sean Christopherson | e93fd3b | 2020-05-01 21:32:34 -0700 | [diff] [blame] | 124 | /* Note, maxphyaddr must be updated before tdp_level. */ |
Eugene Korenevsky | 5a4f55c | 2015-03-29 23:56:12 +0300 | [diff] [blame] | 125 | vcpu->arch.maxphyaddr = cpuid_query_maxphyaddr(vcpu); |
Sean Christopherson | e93fd3b | 2020-05-01 21:32:34 -0700 | [diff] [blame] | 126 | vcpu->arch.tdp_level = kvm_x86_ops.get_tdp_level(vcpu); |
Yu Zhang | 855feb6 | 2017-08-24 20:27:55 +0800 | [diff] [blame] | 127 | kvm_mmu_reset_context(vcpu); |
Eugene Korenevsky | 5a4f55c | 2015-03-29 23:56:12 +0300 | [diff] [blame] | 128 | |
Wei Huang | c6702c9 | 2015-06-19 13:44:45 +0200 | [diff] [blame] | 129 | kvm_pmu_refresh(vcpu); |
Krish Sadhukhan | b899c13 | 2020-07-08 00:39:55 +0000 | [diff] [blame] | 130 | vcpu->arch.cr4_guest_rsvd_bits = |
| 131 | __cr4_reserved_bits(guest_cpuid_has, vcpu); |
Nadav Amit | dd59809 | 2014-09-16 15:10:03 +0300 | [diff] [blame] | 132 | return 0; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 133 | } |
| 134 | |
| 135 | static int is_efer_nx(void) |
| 136 | { |
Sean Christopherson | 9166198 | 2020-03-02 15:57:06 -0800 | [diff] [blame] | 137 | return host_efer & EFER_NX; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 138 | } |
| 139 | |
| 140 | static void cpuid_fix_nx_cap(struct kvm_vcpu *vcpu) |
| 141 | { |
| 142 | int i; |
| 143 | struct kvm_cpuid_entry2 *e, *entry; |
| 144 | |
| 145 | entry = NULL; |
| 146 | for (i = 0; i < vcpu->arch.cpuid_nent; ++i) { |
| 147 | e = &vcpu->arch.cpuid_entries[i]; |
| 148 | if (e->function == 0x80000001) { |
| 149 | entry = e; |
| 150 | break; |
| 151 | } |
| 152 | } |
Sean Christopherson | 4c61534 | 2020-03-02 15:56:30 -0800 | [diff] [blame] | 153 | if (entry && cpuid_entry_has(entry, X86_FEATURE_NX) && !is_efer_nx()) { |
Sean Christopherson | b32666b | 2020-03-02 15:56:31 -0800 | [diff] [blame] | 154 | cpuid_entry_clear(entry, X86_FEATURE_NX); |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 155 | printk(KERN_INFO "kvm: guest NX capability removed\n"); |
| 156 | } |
| 157 | } |
| 158 | |
Eugene Korenevsky | 5a4f55c | 2015-03-29 23:56:12 +0300 | [diff] [blame] | 159 | int cpuid_query_maxphyaddr(struct kvm_vcpu *vcpu) |
| 160 | { |
| 161 | struct kvm_cpuid_entry2 *best; |
| 162 | |
| 163 | best = kvm_find_cpuid_entry(vcpu, 0x80000000, 0); |
| 164 | if (!best || best->eax < 0x80000008) |
| 165 | goto not_found; |
| 166 | best = kvm_find_cpuid_entry(vcpu, 0x80000008, 0); |
| 167 | if (best) |
| 168 | return best->eax & 0xff; |
| 169 | not_found: |
| 170 | return 36; |
| 171 | } |
| 172 | EXPORT_SYMBOL_GPL(cpuid_query_maxphyaddr); |
| 173 | |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 174 | /* when an old userspace process fills a new kernel module */ |
| 175 | int kvm_vcpu_ioctl_set_cpuid(struct kvm_vcpu *vcpu, |
| 176 | struct kvm_cpuid *cpuid, |
| 177 | struct kvm_cpuid_entry __user *entries) |
| 178 | { |
| 179 | int r, i; |
Paolo Bonzini | 83676e9 | 2016-06-01 14:09:19 +0200 | [diff] [blame] | 180 | struct kvm_cpuid_entry *cpuid_entries = NULL; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 181 | |
| 182 | r = -E2BIG; |
| 183 | if (cpuid->nent > KVM_MAX_CPUID_ENTRIES) |
| 184 | goto out; |
Paolo Bonzini | 83676e9 | 2016-06-01 14:09:19 +0200 | [diff] [blame] | 185 | if (cpuid->nent) { |
Denis Efremov | 7ec28e2 | 2020-06-03 13:11:31 +0300 | [diff] [blame] | 186 | cpuid_entries = vmemdup_user(entries, |
| 187 | array_size(sizeof(struct kvm_cpuid_entry), |
| 188 | cpuid->nent)); |
| 189 | if (IS_ERR(cpuid_entries)) { |
| 190 | r = PTR_ERR(cpuid_entries); |
Paolo Bonzini | 83676e9 | 2016-06-01 14:09:19 +0200 | [diff] [blame] | 191 | goto out; |
Denis Efremov | 7ec28e2 | 2020-06-03 13:11:31 +0300 | [diff] [blame] | 192 | } |
Paolo Bonzini | 83676e9 | 2016-06-01 14:09:19 +0200 | [diff] [blame] | 193 | } |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 194 | for (i = 0; i < cpuid->nent; i++) { |
| 195 | vcpu->arch.cpuid_entries[i].function = cpuid_entries[i].function; |
| 196 | vcpu->arch.cpuid_entries[i].eax = cpuid_entries[i].eax; |
| 197 | vcpu->arch.cpuid_entries[i].ebx = cpuid_entries[i].ebx; |
| 198 | vcpu->arch.cpuid_entries[i].ecx = cpuid_entries[i].ecx; |
| 199 | vcpu->arch.cpuid_entries[i].edx = cpuid_entries[i].edx; |
| 200 | vcpu->arch.cpuid_entries[i].index = 0; |
| 201 | vcpu->arch.cpuid_entries[i].flags = 0; |
| 202 | vcpu->arch.cpuid_entries[i].padding[0] = 0; |
| 203 | vcpu->arch.cpuid_entries[i].padding[1] = 0; |
| 204 | vcpu->arch.cpuid_entries[i].padding[2] = 0; |
| 205 | } |
| 206 | vcpu->arch.cpuid_nent = cpuid->nent; |
| 207 | cpuid_fix_nx_cap(vcpu); |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 208 | kvm_apic_set_version(vcpu); |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 209 | kvm_x86_ops.cpuid_update(vcpu); |
Nadav Amit | dd59809 | 2014-09-16 15:10:03 +0300 | [diff] [blame] | 210 | r = kvm_update_cpuid(vcpu); |
Xiaoyao Li | 1896409 | 2020-07-08 14:50:47 +0800 | [diff] [blame] | 211 | if (r) |
| 212 | vcpu->arch.cpuid_nent = 0; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 213 | |
Denis Efremov | 7ec28e2 | 2020-06-03 13:11:31 +0300 | [diff] [blame] | 214 | kvfree(cpuid_entries); |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 215 | out: |
| 216 | return r; |
| 217 | } |
| 218 | |
| 219 | int kvm_vcpu_ioctl_set_cpuid2(struct kvm_vcpu *vcpu, |
| 220 | struct kvm_cpuid2 *cpuid, |
| 221 | struct kvm_cpuid_entry2 __user *entries) |
| 222 | { |
| 223 | int r; |
| 224 | |
| 225 | r = -E2BIG; |
| 226 | if (cpuid->nent > KVM_MAX_CPUID_ENTRIES) |
| 227 | goto out; |
| 228 | r = -EFAULT; |
| 229 | if (copy_from_user(&vcpu->arch.cpuid_entries, entries, |
| 230 | cpuid->nent * sizeof(struct kvm_cpuid_entry2))) |
| 231 | goto out; |
| 232 | vcpu->arch.cpuid_nent = cpuid->nent; |
| 233 | kvm_apic_set_version(vcpu); |
Sean Christopherson | afaf0b2 | 2020-03-21 13:26:00 -0700 | [diff] [blame] | 234 | kvm_x86_ops.cpuid_update(vcpu); |
Nadav Amit | dd59809 | 2014-09-16 15:10:03 +0300 | [diff] [blame] | 235 | r = kvm_update_cpuid(vcpu); |
Xiaoyao Li | 1896409 | 2020-07-08 14:50:47 +0800 | [diff] [blame] | 236 | if (r) |
| 237 | vcpu->arch.cpuid_nent = 0; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 238 | out: |
| 239 | return r; |
| 240 | } |
| 241 | |
| 242 | int kvm_vcpu_ioctl_get_cpuid2(struct kvm_vcpu *vcpu, |
| 243 | struct kvm_cpuid2 *cpuid, |
| 244 | struct kvm_cpuid_entry2 __user *entries) |
| 245 | { |
| 246 | int r; |
| 247 | |
| 248 | r = -E2BIG; |
| 249 | if (cpuid->nent < vcpu->arch.cpuid_nent) |
| 250 | goto out; |
| 251 | r = -EFAULT; |
| 252 | if (copy_to_user(entries, &vcpu->arch.cpuid_entries, |
| 253 | vcpu->arch.cpuid_nent * sizeof(struct kvm_cpuid_entry2))) |
| 254 | goto out; |
| 255 | return 0; |
| 256 | |
| 257 | out: |
| 258 | cpuid->nent = vcpu->arch.cpuid_nent; |
| 259 | return r; |
| 260 | } |
| 261 | |
Sean Christopherson | 66a6950 | 2020-03-02 15:56:41 -0800 | [diff] [blame] | 262 | static __always_inline void kvm_cpu_cap_mask(enum cpuid_leafs leaf, u32 mask) |
| 263 | { |
Sean Christopherson | d8577a4 | 2020-03-02 15:56:52 -0800 | [diff] [blame] | 264 | const struct cpuid_reg cpuid = x86_feature_cpuid(leaf * 32); |
| 265 | struct kvm_cpuid_entry2 entry; |
| 266 | |
Sean Christopherson | 66a6950 | 2020-03-02 15:56:41 -0800 | [diff] [blame] | 267 | reverse_cpuid_check(leaf); |
| 268 | kvm_cpu_caps[leaf] &= mask; |
Sean Christopherson | d8577a4 | 2020-03-02 15:56:52 -0800 | [diff] [blame] | 269 | |
| 270 | cpuid_count(cpuid.function, cpuid.index, |
| 271 | &entry.eax, &entry.ebx, &entry.ecx, &entry.edx); |
| 272 | |
Sean Christopherson | 855c7e9 | 2020-03-25 12:12:59 -0700 | [diff] [blame] | 273 | kvm_cpu_caps[leaf] &= *__cpuid_entry_get_reg(&entry, cpuid.reg); |
Sean Christopherson | 66a6950 | 2020-03-02 15:56:41 -0800 | [diff] [blame] | 274 | } |
| 275 | |
| 276 | void kvm_set_cpu_caps(void) |
| 277 | { |
| 278 | unsigned int f_nx = is_efer_nx() ? F(NX) : 0; |
| 279 | #ifdef CONFIG_X86_64 |
| 280 | unsigned int f_gbpages = F(GBPAGES); |
| 281 | unsigned int f_lm = F(LM); |
| 282 | #else |
| 283 | unsigned int f_gbpages = 0; |
| 284 | unsigned int f_lm = 0; |
| 285 | #endif |
| 286 | |
| 287 | BUILD_BUG_ON(sizeof(kvm_cpu_caps) > |
| 288 | sizeof(boot_cpu_data.x86_capability)); |
| 289 | |
| 290 | memcpy(&kvm_cpu_caps, &boot_cpu_data.x86_capability, |
| 291 | sizeof(kvm_cpu_caps)); |
| 292 | |
| 293 | kvm_cpu_cap_mask(CPUID_1_ECX, |
| 294 | /* |
| 295 | * NOTE: MONITOR (and MWAIT) are emulated as NOP, but *not* |
| 296 | * advertised to guests via CPUID! |
| 297 | */ |
| 298 | F(XMM3) | F(PCLMULQDQ) | 0 /* DTES64, MONITOR */ | |
| 299 | 0 /* DS-CPL, VMX, SMX, EST */ | |
| 300 | 0 /* TM2 */ | F(SSSE3) | 0 /* CNXT-ID */ | 0 /* Reserved */ | |
Like Xu | 27461da3 | 2020-05-29 15:43:45 +0800 | [diff] [blame] | 301 | F(FMA) | F(CX16) | 0 /* xTPR Update */ | F(PDCM) | |
Sean Christopherson | 66a6950 | 2020-03-02 15:56:41 -0800 | [diff] [blame] | 302 | F(PCID) | 0 /* Reserved, DCA */ | F(XMM4_1) | |
| 303 | F(XMM4_2) | F(X2APIC) | F(MOVBE) | F(POPCNT) | |
| 304 | 0 /* Reserved*/ | F(AES) | F(XSAVE) | 0 /* OSXSAVE */ | F(AVX) | |
| 305 | F(F16C) | F(RDRAND) |
| 306 | ); |
Sean Christopherson | 93c380e | 2020-03-02 15:56:54 -0800 | [diff] [blame] | 307 | /* KVM emulates x2apic in software irrespective of host support. */ |
| 308 | kvm_cpu_cap_set(X86_FEATURE_X2APIC); |
Sean Christopherson | 66a6950 | 2020-03-02 15:56:41 -0800 | [diff] [blame] | 309 | |
| 310 | kvm_cpu_cap_mask(CPUID_1_EDX, |
| 311 | F(FPU) | F(VME) | F(DE) | F(PSE) | |
| 312 | F(TSC) | F(MSR) | F(PAE) | F(MCE) | |
| 313 | F(CX8) | F(APIC) | 0 /* Reserved */ | F(SEP) | |
| 314 | F(MTRR) | F(PGE) | F(MCA) | F(CMOV) | |
| 315 | F(PAT) | F(PSE36) | 0 /* PSN */ | F(CLFLUSH) | |
| 316 | 0 /* Reserved, DS, ACPI */ | F(MMX) | |
| 317 | F(FXSR) | F(XMM) | F(XMM2) | F(SELFSNOOP) | |
| 318 | 0 /* HTT, TM, Reserved, PBE */ |
| 319 | ); |
| 320 | |
| 321 | kvm_cpu_cap_mask(CPUID_7_0_EBX, |
| 322 | F(FSGSBASE) | F(BMI1) | F(HLE) | F(AVX2) | F(SMEP) | |
| 323 | F(BMI2) | F(ERMS) | 0 /*INVPCID*/ | F(RTM) | 0 /*MPX*/ | F(RDSEED) | |
| 324 | F(ADX) | F(SMAP) | F(AVX512IFMA) | F(AVX512F) | F(AVX512PF) | |
| 325 | F(AVX512ER) | F(AVX512CD) | F(CLFLUSHOPT) | F(CLWB) | F(AVX512DQ) | |
| 326 | F(SHA_NI) | F(AVX512BW) | F(AVX512VL) | 0 /*INTEL_PT*/ |
| 327 | ); |
| 328 | |
| 329 | kvm_cpu_cap_mask(CPUID_7_ECX, |
Babu Moger | fa44b82 | 2020-05-12 18:59:16 -0500 | [diff] [blame] | 330 | F(AVX512VBMI) | F(LA57) | F(PKU) | 0 /*OSPKE*/ | F(RDPID) | |
Sean Christopherson | 66a6950 | 2020-03-02 15:56:41 -0800 | [diff] [blame] | 331 | F(AVX512_VPOPCNTDQ) | F(UMIP) | F(AVX512_VBMI2) | F(GFNI) | |
| 332 | F(VAES) | F(VPCLMULQDQ) | F(AVX512_VNNI) | F(AVX512_BITALG) | |
| 333 | F(CLDEMOTE) | F(MOVDIRI) | F(MOVDIR64B) | 0 /*WAITPKG*/ |
| 334 | ); |
| 335 | /* Set LA57 based on hardware capability. */ |
| 336 | if (cpuid_ecx(7) & F(LA57)) |
| 337 | kvm_cpu_cap_set(X86_FEATURE_LA57); |
| 338 | |
Babu Moger | fa44b82 | 2020-05-12 18:59:16 -0500 | [diff] [blame] | 339 | /* |
| 340 | * PKU not yet implemented for shadow paging and requires OSPKE |
| 341 | * to be set on the host. Clear it if that is not the case |
| 342 | */ |
| 343 | if (!tdp_enabled || !boot_cpu_has(X86_FEATURE_OSPKE)) |
| 344 | kvm_cpu_cap_clear(X86_FEATURE_PKU); |
| 345 | |
Sean Christopherson | 66a6950 | 2020-03-02 15:56:41 -0800 | [diff] [blame] | 346 | kvm_cpu_cap_mask(CPUID_7_EDX, |
| 347 | F(AVX512_4VNNIW) | F(AVX512_4FMAPS) | F(SPEC_CTRL) | |
| 348 | F(SPEC_CTRL_SSBD) | F(ARCH_CAPABILITIES) | F(INTEL_STIBP) | |
Zhenyu Wang | e374740 | 2020-03-23 17:22:36 +0800 | [diff] [blame] | 349 | F(MD_CLEAR) | F(AVX512_VP2INTERSECT) | F(FSRM) |
Sean Christopherson | 66a6950 | 2020-03-02 15:56:41 -0800 | [diff] [blame] | 350 | ); |
| 351 | |
Sean Christopherson | 93c380e | 2020-03-02 15:56:54 -0800 | [diff] [blame] | 352 | /* TSC_ADJUST and ARCH_CAPABILITIES are emulated in software. */ |
| 353 | kvm_cpu_cap_set(X86_FEATURE_TSC_ADJUST); |
| 354 | kvm_cpu_cap_set(X86_FEATURE_ARCH_CAPABILITIES); |
| 355 | |
| 356 | if (boot_cpu_has(X86_FEATURE_IBPB) && boot_cpu_has(X86_FEATURE_IBRS)) |
| 357 | kvm_cpu_cap_set(X86_FEATURE_SPEC_CTRL); |
| 358 | if (boot_cpu_has(X86_FEATURE_STIBP)) |
| 359 | kvm_cpu_cap_set(X86_FEATURE_INTEL_STIBP); |
| 360 | if (boot_cpu_has(X86_FEATURE_AMD_SSBD)) |
| 361 | kvm_cpu_cap_set(X86_FEATURE_SPEC_CTRL_SSBD); |
| 362 | |
Sean Christopherson | 66a6950 | 2020-03-02 15:56:41 -0800 | [diff] [blame] | 363 | kvm_cpu_cap_mask(CPUID_7_1_EAX, |
| 364 | F(AVX512_BF16) |
| 365 | ); |
| 366 | |
| 367 | kvm_cpu_cap_mask(CPUID_D_1_EAX, |
| 368 | F(XSAVEOPT) | F(XSAVEC) | F(XGETBV1) | F(XSAVES) |
| 369 | ); |
| 370 | |
| 371 | kvm_cpu_cap_mask(CPUID_8000_0001_ECX, |
| 372 | F(LAHF_LM) | F(CMP_LEGACY) | 0 /*SVM*/ | 0 /* ExtApicSpace */ | |
| 373 | F(CR8_LEGACY) | F(ABM) | F(SSE4A) | F(MISALIGNSSE) | |
| 374 | F(3DNOWPREFETCH) | F(OSVW) | 0 /* IBS */ | F(XOP) | |
| 375 | 0 /* SKINIT, WDT, LWP */ | F(FMA4) | F(TBM) | |
| 376 | F(TOPOEXT) | F(PERFCTR_CORE) |
| 377 | ); |
| 378 | |
| 379 | kvm_cpu_cap_mask(CPUID_8000_0001_EDX, |
| 380 | F(FPU) | F(VME) | F(DE) | F(PSE) | |
| 381 | F(TSC) | F(MSR) | F(PAE) | F(MCE) | |
| 382 | F(CX8) | F(APIC) | 0 /* Reserved */ | F(SYSCALL) | |
| 383 | F(MTRR) | F(PGE) | F(MCA) | F(CMOV) | |
| 384 | F(PAT) | F(PSE36) | 0 /* Reserved */ | |
| 385 | f_nx | 0 /* Reserved */ | F(MMXEXT) | F(MMX) | |
| 386 | F(FXSR) | F(FXSR_OPT) | f_gbpages | F(RDTSCP) | |
| 387 | 0 /* Reserved */ | f_lm | F(3DNOWEXT) | F(3DNOW) |
| 388 | ); |
| 389 | |
| 390 | if (!tdp_enabled && IS_ENABLED(CONFIG_X86_64)) |
| 391 | kvm_cpu_cap_set(X86_FEATURE_GBPAGES); |
| 392 | |
| 393 | kvm_cpu_cap_mask(CPUID_8000_0008_EBX, |
| 394 | F(CLZERO) | F(XSAVEERPTR) | |
| 395 | F(WBNOINVD) | F(AMD_IBPB) | F(AMD_IBRS) | F(AMD_SSBD) | F(VIRT_SSBD) | |
| 396 | F(AMD_SSB_NO) | F(AMD_STIBP) | F(AMD_STIBP_ALWAYS_ON) |
| 397 | ); |
| 398 | |
Sean Christopherson | 9b58b98 | 2020-03-02 15:56:42 -0800 | [diff] [blame] | 399 | /* |
Sean Christopherson | 93c380e | 2020-03-02 15:56:54 -0800 | [diff] [blame] | 400 | * AMD has separate bits for each SPEC_CTRL bit. |
| 401 | * arch/x86/kernel/cpu/bugs.c is kind enough to |
| 402 | * record that in cpufeatures so use them. |
| 403 | */ |
| 404 | if (boot_cpu_has(X86_FEATURE_IBPB)) |
| 405 | kvm_cpu_cap_set(X86_FEATURE_AMD_IBPB); |
| 406 | if (boot_cpu_has(X86_FEATURE_IBRS)) |
| 407 | kvm_cpu_cap_set(X86_FEATURE_AMD_IBRS); |
| 408 | if (boot_cpu_has(X86_FEATURE_STIBP)) |
| 409 | kvm_cpu_cap_set(X86_FEATURE_AMD_STIBP); |
| 410 | if (boot_cpu_has(X86_FEATURE_SPEC_CTRL_SSBD)) |
| 411 | kvm_cpu_cap_set(X86_FEATURE_AMD_SSBD); |
| 412 | if (!boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS)) |
| 413 | kvm_cpu_cap_set(X86_FEATURE_AMD_SSB_NO); |
| 414 | /* |
| 415 | * The preference is to use SPEC CTRL MSR instead of the |
| 416 | * VIRT_SPEC MSR. |
| 417 | */ |
| 418 | if (boot_cpu_has(X86_FEATURE_LS_CFG_SSBD) && |
| 419 | !boot_cpu_has(X86_FEATURE_AMD_SSBD)) |
| 420 | kvm_cpu_cap_set(X86_FEATURE_VIRT_SSBD); |
| 421 | |
| 422 | /* |
Sean Christopherson | 9b58b98 | 2020-03-02 15:56:42 -0800 | [diff] [blame] | 423 | * Hide all SVM features by default, SVM will set the cap bits for |
| 424 | * features it emulates and/or exposes for L1. |
| 425 | */ |
| 426 | kvm_cpu_cap_mask(CPUID_8000_000A_EDX, 0); |
| 427 | |
Sean Christopherson | 66a6950 | 2020-03-02 15:56:41 -0800 | [diff] [blame] | 428 | kvm_cpu_cap_mask(CPUID_C000_0001_EDX, |
| 429 | F(XSTORE) | F(XSTORE_EN) | F(XCRYPT) | F(XCRYPT_EN) | |
| 430 | F(ACE2) | F(ACE2_EN) | F(PHE) | F(PHE_EN) | |
| 431 | F(PMM) | F(PMM_EN) |
| 432 | ); |
| 433 | } |
| 434 | EXPORT_SYMBOL_GPL(kvm_set_cpu_caps); |
| 435 | |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 436 | struct kvm_cpuid_array { |
| 437 | struct kvm_cpuid_entry2 *entries; |
Xiaoyao Li | 65b1891 | 2020-06-04 12:16:36 +0800 | [diff] [blame] | 438 | int maxnent; |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 439 | int nent; |
| 440 | }; |
| 441 | |
| 442 | static struct kvm_cpuid_entry2 *do_host_cpuid(struct kvm_cpuid_array *array, |
Sean Christopherson | aa10a7d | 2020-03-02 15:56:16 -0800 | [diff] [blame] | 443 | u32 function, u32 index) |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 444 | { |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 445 | struct kvm_cpuid_entry2 *entry; |
| 446 | |
| 447 | if (array->nent >= array->maxnent) |
Sean Christopherson | aa10a7d | 2020-03-02 15:56:16 -0800 | [diff] [blame] | 448 | return NULL; |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 449 | |
| 450 | entry = &array->entries[array->nent++]; |
Sean Christopherson | aa10a7d | 2020-03-02 15:56:16 -0800 | [diff] [blame] | 451 | |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 452 | entry->function = function; |
| 453 | entry->index = index; |
Paolo Bonzini | ab8bcf6 | 2019-06-24 10:23:33 +0200 | [diff] [blame] | 454 | entry->flags = 0; |
| 455 | |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 456 | cpuid_count(entry->function, entry->index, |
| 457 | &entry->eax, &entry->ebx, &entry->ecx, &entry->edx); |
Paolo Bonzini | d9aadaf | 2019-07-04 12:20:48 +0200 | [diff] [blame] | 458 | |
| 459 | switch (function) { |
Paolo Bonzini | d9aadaf | 2019-07-04 12:20:48 +0200 | [diff] [blame] | 460 | case 4: |
| 461 | case 7: |
| 462 | case 0xb: |
| 463 | case 0xd: |
Jim Mattson | a06dcd6 | 2019-09-12 09:55:03 -0700 | [diff] [blame] | 464 | case 0xf: |
| 465 | case 0x10: |
| 466 | case 0x12: |
Paolo Bonzini | d9aadaf | 2019-07-04 12:20:48 +0200 | [diff] [blame] | 467 | case 0x14: |
Jim Mattson | a06dcd6 | 2019-09-12 09:55:03 -0700 | [diff] [blame] | 468 | case 0x17: |
| 469 | case 0x18: |
| 470 | case 0x1f: |
Paolo Bonzini | d9aadaf | 2019-07-04 12:20:48 +0200 | [diff] [blame] | 471 | case 0x8000001d: |
| 472 | entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX; |
| 473 | break; |
| 474 | } |
Sean Christopherson | aa10a7d | 2020-03-02 15:56:16 -0800 | [diff] [blame] | 475 | |
| 476 | return entry; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 477 | } |
| 478 | |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 479 | static int __do_cpuid_func_emulated(struct kvm_cpuid_array *array, u32 func) |
Borislav Petkov | 9c15bb1 | 2013-09-22 16:44:50 +0200 | [diff] [blame] | 480 | { |
Sean Christopherson | 7c7f954 | 2020-03-02 15:56:56 -0800 | [diff] [blame] | 481 | struct kvm_cpuid_entry2 *entry; |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 482 | |
Sean Christopherson | 7c7f954 | 2020-03-02 15:56:56 -0800 | [diff] [blame] | 483 | if (array->nent >= array->maxnent) |
| 484 | return -E2BIG; |
| 485 | |
| 486 | entry = &array->entries[array->nent]; |
Paolo Bonzini | ab8bcf6 | 2019-06-24 10:23:33 +0200 | [diff] [blame] | 487 | entry->function = func; |
| 488 | entry->index = 0; |
| 489 | entry->flags = 0; |
| 490 | |
Borislav Petkov | 84cffe4 | 2013-10-29 12:54:56 +0100 | [diff] [blame] | 491 | switch (func) { |
| 492 | case 0: |
Paolo Bonzini | fb6d4d3 | 2016-07-12 11:04:26 +0200 | [diff] [blame] | 493 | entry->eax = 7; |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 494 | ++array->nent; |
Borislav Petkov | 84cffe4 | 2013-10-29 12:54:56 +0100 | [diff] [blame] | 495 | break; |
| 496 | case 1: |
| 497 | entry->ecx = F(MOVBE); |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 498 | ++array->nent; |
Borislav Petkov | 84cffe4 | 2013-10-29 12:54:56 +0100 | [diff] [blame] | 499 | break; |
Paolo Bonzini | fb6d4d3 | 2016-07-12 11:04:26 +0200 | [diff] [blame] | 500 | case 7: |
| 501 | entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX; |
Paolo Bonzini | ab8bcf6 | 2019-06-24 10:23:33 +0200 | [diff] [blame] | 502 | entry->eax = 0; |
| 503 | entry->ecx = F(RDPID); |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 504 | ++array->nent; |
Borislav Petkov | 84cffe4 | 2013-10-29 12:54:56 +0100 | [diff] [blame] | 505 | default: |
| 506 | break; |
| 507 | } |
| 508 | |
Borislav Petkov | 9c15bb1 | 2013-09-22 16:44:50 +0200 | [diff] [blame] | 509 | return 0; |
| 510 | } |
| 511 | |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 512 | static inline int __do_cpuid_func(struct kvm_cpuid_array *array, u32 function) |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 513 | { |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 514 | struct kvm_cpuid_entry2 *entry; |
Sean Christopherson | 74fa0bc | 2020-03-02 15:56:17 -0800 | [diff] [blame] | 515 | int r, i, max_idx; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 516 | |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 517 | /* all calls to cpuid_count() should be made on the same cpu */ |
| 518 | get_cpu(); |
Sasha Levin | 831bf66 | 2011-11-28 11:20:29 +0200 | [diff] [blame] | 519 | |
| 520 | r = -E2BIG; |
| 521 | |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 522 | entry = do_host_cpuid(array, function, 0); |
Sean Christopherson | 7c7f954 | 2020-03-02 15:56:56 -0800 | [diff] [blame] | 523 | if (!entry) |
Sasha Levin | 831bf66 | 2011-11-28 11:20:29 +0200 | [diff] [blame] | 524 | goto out; |
| 525 | |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 526 | switch (function) { |
| 527 | case 0: |
Like Xu | a87f2d3 | 2019-06-06 09:18:45 +0800 | [diff] [blame] | 528 | /* Limited to the highest leaf implemented in KVM. */ |
| 529 | entry->eax = min(entry->eax, 0x1fU); |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 530 | break; |
| 531 | case 1: |
Sean Christopherson | bd79199 | 2020-03-02 15:56:53 -0800 | [diff] [blame] | 532 | cpuid_entry_override(entry, CPUID_1_EDX); |
| 533 | cpuid_entry_override(entry, CPUID_1_ECX); |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 534 | break; |
Sean Christopherson | 74fa0bc | 2020-03-02 15:56:17 -0800 | [diff] [blame] | 535 | case 2: |
Sean Christopherson | c571a14 | 2020-03-02 15:56:50 -0800 | [diff] [blame] | 536 | /* |
| 537 | * On ancient CPUs, function 2 entries are STATEFUL. That is, |
| 538 | * CPUID(function=2, index=0) may return different results each |
| 539 | * time, with the least-significant byte in EAX enumerating the |
| 540 | * number of times software should do CPUID(2, 0). |
| 541 | * |
Sean Christopherson | 7ff6c03 | 2020-03-02 15:56:51 -0800 | [diff] [blame] | 542 | * Modern CPUs, i.e. every CPU KVM has *ever* run on are less |
| 543 | * idiotic. Intel's SDM states that EAX & 0xff "will always |
| 544 | * return 01H. Software should ignore this value and not |
Sean Christopherson | c571a14 | 2020-03-02 15:56:50 -0800 | [diff] [blame] | 545 | * interpret it as an informational descriptor", while AMD's |
| 546 | * APM states that CPUID(2) is reserved. |
Sean Christopherson | 7ff6c03 | 2020-03-02 15:56:51 -0800 | [diff] [blame] | 547 | * |
| 548 | * WARN if a frankenstein CPU that supports virtualization and |
| 549 | * a stateful CPUID.0x2 is encountered. |
Sean Christopherson | c571a14 | 2020-03-02 15:56:50 -0800 | [diff] [blame] | 550 | */ |
Sean Christopherson | 7ff6c03 | 2020-03-02 15:56:51 -0800 | [diff] [blame] | 551 | WARN_ON_ONCE((entry->eax & 0xff) > 1); |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 552 | break; |
Jim Mattson | 32a243d | 2019-03-27 13:15:36 -0700 | [diff] [blame] | 553 | /* functions 4 and 0x8000001d have additional index. */ |
| 554 | case 4: |
Sean Christopherson | c862903 | 2020-03-02 15:56:18 -0800 | [diff] [blame] | 555 | case 0x8000001d: |
| 556 | /* |
| 557 | * Read entries until the cache type in the previous entry is |
| 558 | * zero, i.e. indicates an invalid entry. |
| 559 | */ |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 560 | for (i = 1; entry->eax & 0x1f; ++i) { |
| 561 | entry = do_host_cpuid(array, function, i); |
| 562 | if (!entry) |
Sean Christopherson | 0fc6267 | 2020-03-02 15:56:08 -0800 | [diff] [blame] | 563 | goto out; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 564 | } |
| 565 | break; |
Jan Kiszka | e453aa0 | 2015-05-24 17:22:38 +0200 | [diff] [blame] | 566 | case 6: /* Thermal management */ |
| 567 | entry->eax = 0x4; /* allow ARAT */ |
| 568 | entry->ebx = 0; |
| 569 | entry->ecx = 0; |
| 570 | entry->edx = 0; |
| 571 | break; |
Paolo Bonzini | 54d360d | 2019-07-04 12:18:13 +0200 | [diff] [blame] | 572 | /* function 7 has additional index. */ |
Sean Christopherson | 74fa0bc | 2020-03-02 15:56:17 -0800 | [diff] [blame] | 573 | case 7: |
Sean Christopherson | 09f628a | 2020-03-02 15:56:48 -0800 | [diff] [blame] | 574 | entry->eax = min(entry->eax, 1u); |
Sean Christopherson | bd79199 | 2020-03-02 15:56:53 -0800 | [diff] [blame] | 575 | cpuid_entry_override(entry, CPUID_7_0_EBX); |
| 576 | cpuid_entry_override(entry, CPUID_7_ECX); |
| 577 | cpuid_entry_override(entry, CPUID_7_EDX); |
Sean Christopherson | 09f628a | 2020-03-02 15:56:48 -0800 | [diff] [blame] | 578 | |
Sean Christopherson | bcf600c | 2020-03-02 15:56:49 -0800 | [diff] [blame] | 579 | /* KVM only supports 0x7.0 and 0x7.1, capped above via min(). */ |
| 580 | if (entry->eax == 1) { |
| 581 | entry = do_host_cpuid(array, function, 1); |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 582 | if (!entry) |
Paolo Bonzini | 54d360d | 2019-07-04 12:18:13 +0200 | [diff] [blame] | 583 | goto out; |
| 584 | |
Sean Christopherson | bd79199 | 2020-03-02 15:56:53 -0800 | [diff] [blame] | 585 | cpuid_entry_override(entry, CPUID_7_1_EAX); |
Sean Christopherson | 09f628a | 2020-03-02 15:56:48 -0800 | [diff] [blame] | 586 | entry->ebx = 0; |
| 587 | entry->ecx = 0; |
| 588 | entry->edx = 0; |
Paolo Bonzini | 54d360d | 2019-07-04 12:18:13 +0200 | [diff] [blame] | 589 | } |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 590 | break; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 591 | case 9: |
| 592 | break; |
Gleb Natapov | a6c06ed | 2011-11-10 14:57:28 +0200 | [diff] [blame] | 593 | case 0xa: { /* Architectural Performance Monitoring */ |
| 594 | struct x86_pmu_capability cap; |
| 595 | union cpuid10_eax eax; |
| 596 | union cpuid10_edx edx; |
| 597 | |
| 598 | perf_get_x86_pmu_capability(&cap); |
| 599 | |
| 600 | /* |
| 601 | * Only support guest architectural pmu on a host |
| 602 | * with architectural pmu. |
| 603 | */ |
| 604 | if (!cap.version) |
| 605 | memset(&cap, 0, sizeof(cap)); |
| 606 | |
| 607 | eax.split.version_id = min(cap.version, 2); |
| 608 | eax.split.num_counters = cap.num_counters_gp; |
| 609 | eax.split.bit_width = cap.bit_width_gp; |
| 610 | eax.split.mask_length = cap.events_mask_len; |
| 611 | |
Like Xu | 2e8cd7a | 2020-06-24 09:59:28 +0800 | [diff] [blame] | 612 | edx.split.num_counters_fixed = min(cap.num_counters_fixed, MAX_FIXED_COUNTERS); |
Gleb Natapov | a6c06ed | 2011-11-10 14:57:28 +0200 | [diff] [blame] | 613 | edx.split.bit_width_fixed = cap.bit_width_fixed; |
| 614 | edx.split.reserved = 0; |
| 615 | |
| 616 | entry->eax = eax.full; |
| 617 | entry->ebx = cap.events_mask; |
| 618 | entry->ecx = 0; |
| 619 | entry->edx = edx.full; |
| 620 | break; |
| 621 | } |
Like Xu | a87f2d3 | 2019-06-06 09:18:45 +0800 | [diff] [blame] | 622 | /* |
| 623 | * Per Intel's SDM, the 0x1f is a superset of 0xb, |
| 624 | * thus they can be handled by common code. |
| 625 | */ |
| 626 | case 0x1f: |
Sean Christopherson | 74fa0bc | 2020-03-02 15:56:17 -0800 | [diff] [blame] | 627 | case 0xb: |
Jim Mattson | a1a640b | 2019-09-25 11:17:14 -0700 | [diff] [blame] | 628 | /* |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 629 | * Populate entries until the level type (ECX[15:8]) of the |
| 630 | * previous entry is zero. Note, CPUID EAX.{0x1f,0xb}.0 is |
| 631 | * the starting entry, filled by the primary do_host_cpuid(). |
Jim Mattson | a1a640b | 2019-09-25 11:17:14 -0700 | [diff] [blame] | 632 | */ |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 633 | for (i = 1; entry->ecx & 0xff00; ++i) { |
| 634 | entry = do_host_cpuid(array, function, i); |
| 635 | if (!entry) |
Sasha Levin | 831bf66 | 2011-11-28 11:20:29 +0200 | [diff] [blame] | 636 | goto out; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 637 | } |
| 638 | break; |
Sean Christopherson | cfc4818 | 2020-03-02 15:56:23 -0800 | [diff] [blame] | 639 | case 0xd: |
| 640 | entry->eax &= supported_xcr0; |
| 641 | entry->ebx = xstate_required_size(supported_xcr0, false); |
Radim Krčmář | e08e833 | 2014-12-04 18:30:41 +0100 | [diff] [blame] | 642 | entry->ecx = entry->ebx; |
Sean Christopherson | cfc4818 | 2020-03-02 15:56:23 -0800 | [diff] [blame] | 643 | entry->edx &= supported_xcr0 >> 32; |
| 644 | if (!supported_xcr0) |
Paolo Bonzini | b65d6e1 | 2014-11-21 18:13:26 +0100 | [diff] [blame] | 645 | break; |
| 646 | |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 647 | entry = do_host_cpuid(array, function, 1); |
| 648 | if (!entry) |
Sean Christopherson | 3dc4a9c | 2020-03-02 15:56:09 -0800 | [diff] [blame] | 649 | goto out; |
| 650 | |
Sean Christopherson | bd79199 | 2020-03-02 15:56:53 -0800 | [diff] [blame] | 651 | cpuid_entry_override(entry, CPUID_D_1_EAX); |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 652 | if (entry->eax & (F(XSAVES)|F(XSAVEC))) |
Paolo Bonzini | 408e9a3 | 2020-03-05 16:11:56 +0100 | [diff] [blame] | 653 | entry->ebx = xstate_required_size(supported_xcr0 | supported_xss, |
| 654 | true); |
| 655 | else { |
| 656 | WARN_ON_ONCE(supported_xss != 0); |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 657 | entry->ebx = 0; |
Paolo Bonzini | 408e9a3 | 2020-03-05 16:11:56 +0100 | [diff] [blame] | 658 | } |
| 659 | entry->ecx &= supported_xss; |
| 660 | entry->edx &= supported_xss >> 32; |
Sean Christopherson | 3dc4a9c | 2020-03-02 15:56:09 -0800 | [diff] [blame] | 661 | |
Sean Christopherson | 0eee8f9 | 2020-03-02 15:56:21 -0800 | [diff] [blame] | 662 | for (i = 2; i < 64; ++i) { |
Paolo Bonzini | 408e9a3 | 2020-03-05 16:11:56 +0100 | [diff] [blame] | 663 | bool s_state; |
| 664 | if (supported_xcr0 & BIT_ULL(i)) |
| 665 | s_state = false; |
| 666 | else if (supported_xss & BIT_ULL(i)) |
| 667 | s_state = true; |
| 668 | else |
Sean Christopherson | 1893c94 | 2020-03-02 15:56:10 -0800 | [diff] [blame] | 669 | continue; |
Sean Christopherson | 3dc4a9c | 2020-03-02 15:56:09 -0800 | [diff] [blame] | 670 | |
Sean Christopherson | 0eee8f9 | 2020-03-02 15:56:21 -0800 | [diff] [blame] | 671 | entry = do_host_cpuid(array, function, i); |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 672 | if (!entry) |
Sasha Levin | 831bf66 | 2011-11-28 11:20:29 +0200 | [diff] [blame] | 673 | goto out; |
| 674 | |
Sean Christopherson | 91001d4 | 2020-03-02 15:56:11 -0800 | [diff] [blame] | 675 | /* |
Sean Christopherson | cfc4818 | 2020-03-02 15:56:23 -0800 | [diff] [blame] | 676 | * The supported check above should have filtered out |
Paolo Bonzini | 408e9a3 | 2020-03-05 16:11:56 +0100 | [diff] [blame] | 677 | * invalid sub-leafs. Only valid sub-leafs should |
Sean Christopherson | 91001d4 | 2020-03-02 15:56:11 -0800 | [diff] [blame] | 678 | * reach this point, and they should have a non-zero |
Paolo Bonzini | 408e9a3 | 2020-03-05 16:11:56 +0100 | [diff] [blame] | 679 | * save state size. Furthermore, check whether the |
| 680 | * processor agrees with supported_xcr0/supported_xss |
| 681 | * on whether this is an XCR0- or IA32_XSS-managed area. |
Sean Christopherson | 91001d4 | 2020-03-02 15:56:11 -0800 | [diff] [blame] | 682 | */ |
Paolo Bonzini | 408e9a3 | 2020-03-05 16:11:56 +0100 | [diff] [blame] | 683 | if (WARN_ON_ONCE(!entry->eax || (entry->ecx & 0x1) != s_state)) { |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 684 | --array->nent; |
Sean Christopherson | 3dc4a9c | 2020-03-02 15:56:09 -0800 | [diff] [blame] | 685 | continue; |
Sean Christopherson | 8b2fc44 | 2020-03-02 15:56:12 -0800 | [diff] [blame] | 686 | } |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 687 | entry->edx = 0; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 688 | } |
| 689 | break; |
Chao Peng | 86f5201 | 2018-10-24 16:05:11 +0800 | [diff] [blame] | 690 | /* Intel PT */ |
Sean Christopherson | 74fa0bc | 2020-03-02 15:56:17 -0800 | [diff] [blame] | 691 | case 0x14: |
Sean Christopherson | dd69cc2 | 2020-03-02 15:56:55 -0800 | [diff] [blame] | 692 | if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT)) { |
Sean Christopherson | 7392079 | 2020-03-02 15:56:26 -0800 | [diff] [blame] | 693 | entry->eax = entry->ebx = entry->ecx = entry->edx = 0; |
Chao Peng | 86f5201 | 2018-10-24 16:05:11 +0800 | [diff] [blame] | 694 | break; |
Sean Christopherson | 7392079 | 2020-03-02 15:56:26 -0800 | [diff] [blame] | 695 | } |
Chao Peng | 86f5201 | 2018-10-24 16:05:11 +0800 | [diff] [blame] | 696 | |
Sean Christopherson | 74fa0bc | 2020-03-02 15:56:17 -0800 | [diff] [blame] | 697 | for (i = 1, max_idx = entry->eax; i <= max_idx; ++i) { |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 698 | if (!do_host_cpuid(array, function, i)) |
Chao Peng | 86f5201 | 2018-10-24 16:05:11 +0800 | [diff] [blame] | 699 | goto out; |
Chao Peng | 86f5201 | 2018-10-24 16:05:11 +0800 | [diff] [blame] | 700 | } |
| 701 | break; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 702 | case KVM_CPUID_SIGNATURE: { |
Mathias Krause | 326d07c | 2012-08-30 01:30:13 +0200 | [diff] [blame] | 703 | static const char signature[12] = "KVMKVMKVM\0\0"; |
| 704 | const u32 *sigptr = (const u32 *)signature; |
Michael S. Tsirkin | 57c22e5 | 2012-05-02 17:55:56 +0300 | [diff] [blame] | 705 | entry->eax = KVM_CPUID_FEATURES; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 706 | entry->ebx = sigptr[0]; |
| 707 | entry->ecx = sigptr[1]; |
| 708 | entry->edx = sigptr[2]; |
| 709 | break; |
| 710 | } |
| 711 | case KVM_CPUID_FEATURES: |
| 712 | entry->eax = (1 << KVM_FEATURE_CLOCKSOURCE) | |
| 713 | (1 << KVM_FEATURE_NOP_IO_DELAY) | |
| 714 | (1 << KVM_FEATURE_CLOCKSOURCE2) | |
| 715 | (1 << KVM_FEATURE_ASYNC_PF) | |
Michael S. Tsirkin | ae7a2a3 | 2012-06-24 19:25:07 +0300 | [diff] [blame] | 716 | (1 << KVM_FEATURE_PV_EOI) | |
Srivatsa Vaddagiri | 6aef266 | 2013-08-26 14:18:34 +0530 | [diff] [blame] | 717 | (1 << KVM_FEATURE_CLOCKSOURCE_STABLE_BIT) | |
Wanpeng Li | f38a7b7 | 2017-12-12 17:33:04 -0800 | [diff] [blame] | 718 | (1 << KVM_FEATURE_PV_UNHALT) | |
Radim Krčmář | fe2a302 | 2018-02-01 22:16:21 +0100 | [diff] [blame] | 719 | (1 << KVM_FEATURE_PV_TLB_FLUSH) | |
Wanpeng Li | 4180bf1 | 2018-07-23 14:39:54 +0800 | [diff] [blame] | 720 | (1 << KVM_FEATURE_ASYNC_PF_VMEXIT) | |
Marcelo Tosatti | 2d5ba19 | 2019-06-03 19:52:44 -0300 | [diff] [blame] | 721 | (1 << KVM_FEATURE_PV_SEND_IPI) | |
Wanpeng Li | 32b72ec | 2019-06-11 20:23:50 +0800 | [diff] [blame] | 722 | (1 << KVM_FEATURE_POLL_CONTROL) | |
Vitaly Kuznetsov | 72de5fa4c | 2020-05-25 16:41:22 +0200 | [diff] [blame] | 723 | (1 << KVM_FEATURE_PV_SCHED_YIELD) | |
| 724 | (1 << KVM_FEATURE_ASYNC_PF_INT); |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 725 | |
| 726 | if (sched_info_on()) |
| 727 | entry->eax |= (1 << KVM_FEATURE_STEAL_TIME); |
| 728 | |
| 729 | entry->ebx = 0; |
| 730 | entry->ecx = 0; |
| 731 | entry->edx = 0; |
| 732 | break; |
| 733 | case 0x80000000: |
Brijesh Singh | 8765d75 | 2017-12-04 10:57:25 -0600 | [diff] [blame] | 734 | entry->eax = min(entry->eax, 0x8000001f); |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 735 | break; |
| 736 | case 0x80000001: |
Sean Christopherson | bd79199 | 2020-03-02 15:56:53 -0800 | [diff] [blame] | 737 | cpuid_entry_override(entry, CPUID_8000_0001_EDX); |
| 738 | cpuid_entry_override(entry, CPUID_8000_0001_ECX); |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 739 | break; |
Eric Northup | 43d05de | 2020-04-14 18:23:20 -0700 | [diff] [blame] | 740 | case 0x80000006: |
| 741 | /* L2 cache and TLB: pass through host info. */ |
| 742 | break; |
Marcelo Tosatti | e4c9a5a1 | 2014-04-26 22:30:23 -0300 | [diff] [blame] | 743 | case 0x80000007: /* Advanced power management */ |
| 744 | /* invariant TSC is CPUID.80000007H:EDX[8] */ |
| 745 | entry->edx &= (1 << 8); |
| 746 | /* mask against host */ |
| 747 | entry->edx &= boot_cpu_data.x86_power; |
| 748 | entry->eax = entry->ebx = entry->ecx = 0; |
| 749 | break; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 750 | case 0x80000008: { |
| 751 | unsigned g_phys_as = (entry->eax >> 16) & 0xff; |
| 752 | unsigned virt_as = max((entry->eax >> 8) & 0xff, 48U); |
| 753 | unsigned phys_as = entry->eax & 0xff; |
| 754 | |
| 755 | if (!g_phys_as) |
| 756 | g_phys_as = phys_as; |
| 757 | entry->eax = g_phys_as | (virt_as << 8); |
Ashok Raj | 15d4507 | 2018-02-01 22:59:43 +0100 | [diff] [blame] | 758 | entry->edx = 0; |
Sean Christopherson | bd79199 | 2020-03-02 15:56:53 -0800 | [diff] [blame] | 759 | cpuid_entry_override(entry, CPUID_8000_0008_EBX); |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 760 | break; |
| 761 | } |
Sean Christopherson | 2570387 | 2020-03-02 15:57:09 -0800 | [diff] [blame] | 762 | case 0x8000000A: |
| 763 | if (!kvm_cpu_cap_has(X86_FEATURE_SVM)) { |
| 764 | entry->eax = entry->ebx = entry->ecx = entry->edx = 0; |
| 765 | break; |
| 766 | } |
| 767 | entry->eax = 1; /* SVM revision 1 */ |
| 768 | entry->ebx = 8; /* Lets support 8 ASIDs in case we add proper |
| 769 | ASID emulation to nested SVM */ |
| 770 | entry->ecx = 0; /* Reserved */ |
| 771 | cpuid_entry_override(entry, CPUID_8000_000A_EDX); |
| 772 | break; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 773 | case 0x80000019: |
| 774 | entry->ecx = entry->edx = 0; |
| 775 | break; |
| 776 | case 0x8000001a: |
Jim Mattson | 382409b | 2019-03-27 13:15:37 -0700 | [diff] [blame] | 777 | case 0x8000001e: |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 778 | break; |
Peter Gonda | c1de0f2 | 2019-11-21 12:33:43 -0800 | [diff] [blame] | 779 | /* Support memory encryption cpuid if host supports it */ |
| 780 | case 0x8000001F: |
| 781 | if (!boot_cpu_has(X86_FEATURE_SEV)) |
| 782 | entry->eax = entry->ebx = entry->ecx = entry->edx = 0; |
| 783 | break; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 784 | /*Add support for Centaur's CPUID instruction*/ |
| 785 | case 0xC0000000: |
| 786 | /*Just support up to 0xC0000004 now*/ |
| 787 | entry->eax = min(entry->eax, 0xC0000004); |
| 788 | break; |
| 789 | case 0xC0000001: |
Sean Christopherson | bd79199 | 2020-03-02 15:56:53 -0800 | [diff] [blame] | 790 | cpuid_entry_override(entry, CPUID_C000_0001_EDX); |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 791 | break; |
| 792 | case 3: /* Processor serial number */ |
| 793 | case 5: /* MONITOR/MWAIT */ |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 794 | case 0xC0000002: |
| 795 | case 0xC0000003: |
| 796 | case 0xC0000004: |
| 797 | default: |
| 798 | entry->eax = entry->ebx = entry->ecx = entry->edx = 0; |
| 799 | break; |
| 800 | } |
| 801 | |
Sasha Levin | 831bf66 | 2011-11-28 11:20:29 +0200 | [diff] [blame] | 802 | r = 0; |
| 803 | |
| 804 | out: |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 805 | put_cpu(); |
Sasha Levin | 831bf66 | 2011-11-28 11:20:29 +0200 | [diff] [blame] | 806 | |
| 807 | return r; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 808 | } |
| 809 | |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 810 | static int do_cpuid_func(struct kvm_cpuid_array *array, u32 func, |
| 811 | unsigned int type) |
Borislav Petkov | 9c15bb1 | 2013-09-22 16:44:50 +0200 | [diff] [blame] | 812 | { |
| 813 | if (type == KVM_GET_EMULATED_CPUID) |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 814 | return __do_cpuid_func_emulated(array, func); |
Borislav Petkov | 9c15bb1 | 2013-09-22 16:44:50 +0200 | [diff] [blame] | 815 | |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 816 | return __do_cpuid_func(array, func); |
Borislav Petkov | 9c15bb1 | 2013-09-22 16:44:50 +0200 | [diff] [blame] | 817 | } |
| 818 | |
Sean Christopherson | 8b86079 | 2020-03-02 15:56:06 -0800 | [diff] [blame] | 819 | #define CENTAUR_CPUID_SIGNATURE 0xC0000000 |
Sasha Levin | 831bf66 | 2011-11-28 11:20:29 +0200 | [diff] [blame] | 820 | |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 821 | static int get_cpuid_func(struct kvm_cpuid_array *array, u32 func, |
| 822 | unsigned int type) |
Sean Christopherson | 619a17f | 2020-03-02 15:56:05 -0800 | [diff] [blame] | 823 | { |
| 824 | u32 limit; |
| 825 | int r; |
| 826 | |
Sean Christopherson | 8b86079 | 2020-03-02 15:56:06 -0800 | [diff] [blame] | 827 | if (func == CENTAUR_CPUID_SIGNATURE && |
| 828 | boot_cpu_data.x86_vendor != X86_VENDOR_CENTAUR) |
| 829 | return 0; |
| 830 | |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 831 | r = do_cpuid_func(array, func, type); |
Sean Christopherson | 619a17f | 2020-03-02 15:56:05 -0800 | [diff] [blame] | 832 | if (r) |
| 833 | return r; |
| 834 | |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 835 | limit = array->entries[array->nent - 1].eax; |
Sean Christopherson | 619a17f | 2020-03-02 15:56:05 -0800 | [diff] [blame] | 836 | for (func = func + 1; func <= limit; ++func) { |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 837 | r = do_cpuid_func(array, func, type); |
Sean Christopherson | 619a17f | 2020-03-02 15:56:05 -0800 | [diff] [blame] | 838 | if (r) |
| 839 | break; |
| 840 | } |
| 841 | |
| 842 | return r; |
| 843 | } |
| 844 | |
Borislav Petkov | 9c15bb1 | 2013-09-22 16:44:50 +0200 | [diff] [blame] | 845 | static bool sanity_check_entries(struct kvm_cpuid_entry2 __user *entries, |
| 846 | __u32 num_entries, unsigned int ioctl_type) |
| 847 | { |
| 848 | int i; |
Borislav Petkov | 1b2ca42 | 2013-11-06 15:46:02 +0100 | [diff] [blame] | 849 | __u32 pad[3]; |
Borislav Petkov | 9c15bb1 | 2013-09-22 16:44:50 +0200 | [diff] [blame] | 850 | |
| 851 | if (ioctl_type != KVM_GET_EMULATED_CPUID) |
| 852 | return false; |
| 853 | |
| 854 | /* |
| 855 | * We want to make sure that ->padding is being passed clean from |
| 856 | * userspace in case we want to use it for something in the future. |
| 857 | * |
| 858 | * Sadly, this wasn't enforced for KVM_GET_SUPPORTED_CPUID and so we |
| 859 | * have to give ourselves satisfied only with the emulated side. /me |
| 860 | * sheds a tear. |
| 861 | */ |
| 862 | for (i = 0; i < num_entries; i++) { |
Borislav Petkov | 1b2ca42 | 2013-11-06 15:46:02 +0100 | [diff] [blame] | 863 | if (copy_from_user(pad, entries[i].padding, sizeof(pad))) |
| 864 | return true; |
| 865 | |
| 866 | if (pad[0] || pad[1] || pad[2]) |
Borislav Petkov | 9c15bb1 | 2013-09-22 16:44:50 +0200 | [diff] [blame] | 867 | return true; |
| 868 | } |
| 869 | return false; |
| 870 | } |
| 871 | |
| 872 | int kvm_dev_ioctl_get_cpuid(struct kvm_cpuid2 *cpuid, |
| 873 | struct kvm_cpuid_entry2 __user *entries, |
| 874 | unsigned int type) |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 875 | { |
Sean Christopherson | 8b86079 | 2020-03-02 15:56:06 -0800 | [diff] [blame] | 876 | static const u32 funcs[] = { |
| 877 | 0, 0x80000000, CENTAUR_CPUID_SIGNATURE, KVM_CPUID_SIGNATURE, |
Sasha Levin | 831bf66 | 2011-11-28 11:20:29 +0200 | [diff] [blame] | 878 | }; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 879 | |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 880 | struct kvm_cpuid_array array = { |
| 881 | .nent = 0, |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 882 | }; |
| 883 | int r, i; |
Sean Christopherson | d5a661d | 2020-03-02 15:56:07 -0800 | [diff] [blame] | 884 | |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 885 | if (cpuid->nent < 1) |
Sean Christopherson | d5a661d | 2020-03-02 15:56:07 -0800 | [diff] [blame] | 886 | return -E2BIG; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 887 | if (cpuid->nent > KVM_MAX_CPUID_ENTRIES) |
| 888 | cpuid->nent = KVM_MAX_CPUID_ENTRIES; |
Borislav Petkov | 9c15bb1 | 2013-09-22 16:44:50 +0200 | [diff] [blame] | 889 | |
| 890 | if (sanity_check_entries(entries, cpuid->nent, type)) |
| 891 | return -EINVAL; |
| 892 | |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 893 | array.entries = vzalloc(array_size(sizeof(struct kvm_cpuid_entry2), |
Kees Cook | fad953c | 2018-06-12 14:27:37 -0700 | [diff] [blame] | 894 | cpuid->nent)); |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 895 | if (!array.entries) |
Sean Christopherson | d5a661d | 2020-03-02 15:56:07 -0800 | [diff] [blame] | 896 | return -ENOMEM; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 897 | |
Xiaoyao Li | 65b1891 | 2020-06-04 12:16:36 +0800 | [diff] [blame] | 898 | array.maxnent = cpuid->nent; |
| 899 | |
Sean Christopherson | 8b86079 | 2020-03-02 15:56:06 -0800 | [diff] [blame] | 900 | for (i = 0; i < ARRAY_SIZE(funcs); i++) { |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 901 | r = get_cpuid_func(&array, funcs[i], type); |
Sasha Levin | 831bf66 | 2011-11-28 11:20:29 +0200 | [diff] [blame] | 902 | if (r) |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 903 | goto out_free; |
| 904 | } |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 905 | cpuid->nent = array.nent; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 906 | |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 907 | if (copy_to_user(entries, array.entries, |
| 908 | array.nent * sizeof(struct kvm_cpuid_entry2))) |
Sean Christopherson | d5a661d | 2020-03-02 15:56:07 -0800 | [diff] [blame] | 909 | r = -EFAULT; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 910 | |
| 911 | out_free: |
Sean Christopherson | e53c95e | 2020-03-02 15:56:19 -0800 | [diff] [blame] | 912 | vfree(array.entries); |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 913 | return r; |
| 914 | } |
| 915 | |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 916 | struct kvm_cpuid_entry2 *kvm_find_cpuid_entry(struct kvm_vcpu *vcpu, |
| 917 | u32 function, u32 index) |
| 918 | { |
Sean Christopherson | 7ff6c03 | 2020-03-02 15:56:51 -0800 | [diff] [blame] | 919 | struct kvm_cpuid_entry2 *e; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 920 | int i; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 921 | |
| 922 | for (i = 0; i < vcpu->arch.cpuid_nent; ++i) { |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 923 | e = &vcpu->arch.cpuid_entries[i]; |
Sean Christopherson | 7ff6c03 | 2020-03-02 15:56:51 -0800 | [diff] [blame] | 924 | |
| 925 | if (e->function == function && (e->index == index || |
| 926 | !(e->flags & KVM_CPUID_FLAG_SIGNIFCANT_INDEX))) |
| 927 | return e; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 928 | } |
Sean Christopherson | 7ff6c03 | 2020-03-02 15:56:51 -0800 | [diff] [blame] | 929 | return NULL; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 930 | } |
| 931 | EXPORT_SYMBOL_GPL(kvm_find_cpuid_entry); |
| 932 | |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 933 | /* |
Sean Christopherson | 8d89231 | 2020-03-04 17:34:34 -0800 | [diff] [blame] | 934 | * Intel CPUID semantics treats any query for an out-of-range leaf as if the |
| 935 | * highest basic leaf (i.e. CPUID.0H:EAX) were requested. AMD CPUID semantics |
| 936 | * returns all zeroes for any undefined leaf, whether or not the leaf is in |
| 937 | * range. Centaur/VIA follows Intel semantics. |
| 938 | * |
| 939 | * A leaf is considered out-of-range if its function is higher than the maximum |
| 940 | * supported leaf of its associated class or if its associated class does not |
| 941 | * exist. |
| 942 | * |
| 943 | * There are three primary classes to be considered, with their respective |
| 944 | * ranges described as "<base> - <top>[,<base2> - <top2>] inclusive. A primary |
| 945 | * class exists if a guest CPUID entry for its <base> leaf exists. For a given |
| 946 | * class, CPUID.<base>.EAX contains the max supported leaf for the class. |
| 947 | * |
| 948 | * - Basic: 0x00000000 - 0x3fffffff, 0x50000000 - 0x7fffffff |
| 949 | * - Hypervisor: 0x40000000 - 0x4fffffff |
| 950 | * - Extended: 0x80000000 - 0xbfffffff |
| 951 | * - Centaur: 0xc0000000 - 0xcfffffff |
| 952 | * |
| 953 | * The Hypervisor class is further subdivided into sub-classes that each act as |
| 954 | * their own indepdent class associated with a 0x100 byte range. E.g. if Qemu |
| 955 | * is advertising support for both HyperV and KVM, the resulting Hypervisor |
| 956 | * CPUID sub-classes are: |
| 957 | * |
| 958 | * - HyperV: 0x40000000 - 0x400000ff |
| 959 | * - KVM: 0x40000100 - 0x400001ff |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 960 | */ |
Sean Christopherson | 09c7431 | 2020-03-04 17:34:36 -0800 | [diff] [blame] | 961 | static struct kvm_cpuid_entry2 * |
| 962 | get_out_of_range_cpuid_entry(struct kvm_vcpu *vcpu, u32 *fn_ptr, u32 index) |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 963 | { |
Sean Christopherson | 8d89231 | 2020-03-04 17:34:34 -0800 | [diff] [blame] | 964 | struct kvm_cpuid_entry2 *basic, *class; |
Sean Christopherson | 09c7431 | 2020-03-04 17:34:36 -0800 | [diff] [blame] | 965 | u32 function = *fn_ptr; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 966 | |
Sean Christopherson | 8d89231 | 2020-03-04 17:34:34 -0800 | [diff] [blame] | 967 | basic = kvm_find_cpuid_entry(vcpu, 0, 0); |
| 968 | if (!basic) |
Sean Christopherson | 09c7431 | 2020-03-04 17:34:36 -0800 | [diff] [blame] | 969 | return NULL; |
| 970 | |
| 971 | if (is_guest_vendor_amd(basic->ebx, basic->ecx, basic->edx) || |
| 972 | is_guest_vendor_hygon(basic->ebx, basic->ecx, basic->edx)) |
| 973 | return NULL; |
Sean Christopherson | 8d89231 | 2020-03-04 17:34:34 -0800 | [diff] [blame] | 974 | |
| 975 | if (function >= 0x40000000 && function <= 0x4fffffff) |
| 976 | class = kvm_find_cpuid_entry(vcpu, function & 0xffffff00, 0); |
| 977 | else if (function >= 0xc0000000) |
| 978 | class = kvm_find_cpuid_entry(vcpu, 0xc0000000, 0); |
| 979 | else |
| 980 | class = kvm_find_cpuid_entry(vcpu, function & 0x80000000, 0); |
| 981 | |
Sean Christopherson | 09c7431 | 2020-03-04 17:34:36 -0800 | [diff] [blame] | 982 | if (class && function <= class->eax) |
| 983 | return NULL; |
| 984 | |
| 985 | /* |
| 986 | * Leaf specific adjustments are also applied when redirecting to the |
| 987 | * max basic entry, e.g. if the max basic leaf is 0xb but there is no |
| 988 | * entry for CPUID.0xb.index (see below), then the output value for EDX |
| 989 | * needs to be pulled from CPUID.0xb.1. |
| 990 | */ |
| 991 | *fn_ptr = basic->eax; |
| 992 | |
| 993 | /* |
| 994 | * The class does not exist or the requested function is out of range; |
| 995 | * the effective CPUID entry is the max basic leaf. Note, the index of |
| 996 | * the original requested leaf is observed! |
| 997 | */ |
| 998 | return kvm_find_cpuid_entry(vcpu, basic->eax, index); |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 999 | } |
| 1000 | |
Yu Zhang | e911eb3 | 2017-08-24 20:27:52 +0800 | [diff] [blame] | 1001 | bool kvm_cpuid(struct kvm_vcpu *vcpu, u32 *eax, u32 *ebx, |
Sean Christopherson | f91af51 | 2020-03-04 17:34:37 -0800 | [diff] [blame] | 1002 | u32 *ecx, u32 *edx, bool exact_only) |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 1003 | { |
Jan Kiszka | b7fb848 | 2020-03-04 17:34:31 -0800 | [diff] [blame] | 1004 | u32 orig_function = *eax, function = *eax, index = *ecx; |
Jim Mattson | 4356112 | 2019-09-25 17:04:17 -0700 | [diff] [blame] | 1005 | struct kvm_cpuid_entry2 *entry; |
Sean Christopherson | 2b110b6 | 2020-03-17 12:53:54 -0700 | [diff] [blame] | 1006 | bool exact, used_max_basic = false; |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 1007 | |
Jim Mattson | 4356112 | 2019-09-25 17:04:17 -0700 | [diff] [blame] | 1008 | entry = kvm_find_cpuid_entry(vcpu, function, index); |
Sean Christopherson | f91af51 | 2020-03-04 17:34:37 -0800 | [diff] [blame] | 1009 | exact = !!entry; |
Sean Christopherson | 09c7431 | 2020-03-04 17:34:36 -0800 | [diff] [blame] | 1010 | |
Sean Christopherson | 2b110b6 | 2020-03-17 12:53:54 -0700 | [diff] [blame] | 1011 | if (!entry && !exact_only) { |
Sean Christopherson | 09c7431 | 2020-03-04 17:34:36 -0800 | [diff] [blame] | 1012 | entry = get_out_of_range_cpuid_entry(vcpu, &function, index); |
Sean Christopherson | 2b110b6 | 2020-03-17 12:53:54 -0700 | [diff] [blame] | 1013 | used_max_basic = !!entry; |
| 1014 | } |
Sean Christopherson | 09c7431 | 2020-03-04 17:34:36 -0800 | [diff] [blame] | 1015 | |
Jim Mattson | 4356112 | 2019-09-25 17:04:17 -0700 | [diff] [blame] | 1016 | if (entry) { |
| 1017 | *eax = entry->eax; |
| 1018 | *ebx = entry->ebx; |
| 1019 | *ecx = entry->ecx; |
| 1020 | *edx = entry->edx; |
Paolo Bonzini | edef5c3 | 2019-11-18 12:23:00 -0500 | [diff] [blame] | 1021 | if (function == 7 && index == 0) { |
| 1022 | u64 data; |
| 1023 | if (!__kvm_get_msr(vcpu, MSR_IA32_TSX_CTRL, &data, true) && |
| 1024 | (data & TSX_CTRL_CPUID_CLEAR)) |
| 1025 | *ebx &= ~(F(RTM) | F(HLE)); |
| 1026 | } |
Jim Mattson | 4356112 | 2019-09-25 17:04:17 -0700 | [diff] [blame] | 1027 | } else { |
Avi Kivity | 62046e5 | 2012-06-07 14:07:48 +0300 | [diff] [blame] | 1028 | *eax = *ebx = *ecx = *edx = 0; |
Jim Mattson | 4356112 | 2019-09-25 17:04:17 -0700 | [diff] [blame] | 1029 | /* |
| 1030 | * When leaf 0BH or 1FH is defined, CL is pass-through |
| 1031 | * and EDX is always the x2APIC ID, even for undefined |
| 1032 | * subleaves. Index 1 will exist iff the leaf is |
| 1033 | * implemented, so we pass through CL iff leaf 1 |
| 1034 | * exists. EDX can be copied from any existing index. |
| 1035 | */ |
| 1036 | if (function == 0xb || function == 0x1f) { |
| 1037 | entry = kvm_find_cpuid_entry(vcpu, function, 1); |
| 1038 | if (entry) { |
| 1039 | *ecx = index & 0xff; |
| 1040 | *edx = entry->edx; |
| 1041 | } |
| 1042 | } |
| 1043 | } |
Sean Christopherson | 2b110b6 | 2020-03-17 12:53:54 -0700 | [diff] [blame] | 1044 | trace_kvm_cpuid(orig_function, index, *eax, *ebx, *ecx, *edx, exact, |
| 1045 | used_max_basic); |
Sean Christopherson | f91af51 | 2020-03-04 17:34:37 -0800 | [diff] [blame] | 1046 | return exact; |
Avi Kivity | 62046e5 | 2012-06-07 14:07:48 +0300 | [diff] [blame] | 1047 | } |
Julian Stecklina | 66f7b72 | 2012-12-05 15:26:19 +0100 | [diff] [blame] | 1048 | EXPORT_SYMBOL_GPL(kvm_cpuid); |
Avi Kivity | 62046e5 | 2012-06-07 14:07:48 +0300 | [diff] [blame] | 1049 | |
Kyle Huey | 6a908b6 | 2016-11-29 12:40:37 -0800 | [diff] [blame] | 1050 | int kvm_emulate_cpuid(struct kvm_vcpu *vcpu) |
Avi Kivity | 62046e5 | 2012-06-07 14:07:48 +0300 | [diff] [blame] | 1051 | { |
Jiang Biao | 1e13175 | 2016-11-07 08:55:49 +0800 | [diff] [blame] | 1052 | u32 eax, ebx, ecx, edx; |
Avi Kivity | 62046e5 | 2012-06-07 14:07:48 +0300 | [diff] [blame] | 1053 | |
Kyle Huey | db2336a | 2017-03-20 01:16:28 -0700 | [diff] [blame] | 1054 | if (cpuid_fault_enabled(vcpu) && !kvm_require_cpl(vcpu, 0)) |
| 1055 | return 1; |
| 1056 | |
Sean Christopherson | de3cd11 | 2019-04-30 10:36:17 -0700 | [diff] [blame] | 1057 | eax = kvm_rax_read(vcpu); |
| 1058 | ecx = kvm_rcx_read(vcpu); |
Sean Christopherson | f91af51 | 2020-03-04 17:34:37 -0800 | [diff] [blame] | 1059 | kvm_cpuid(vcpu, &eax, &ebx, &ecx, &edx, false); |
Sean Christopherson | de3cd11 | 2019-04-30 10:36:17 -0700 | [diff] [blame] | 1060 | kvm_rax_write(vcpu, eax); |
| 1061 | kvm_rbx_write(vcpu, ebx); |
| 1062 | kvm_rcx_write(vcpu, ecx); |
| 1063 | kvm_rdx_write(vcpu, edx); |
Kyle Huey | 6affcbe | 2016-11-29 12:40:40 -0800 | [diff] [blame] | 1064 | return kvm_skip_emulated_instruction(vcpu); |
Avi Kivity | 00b27a3 | 2011-11-23 16:30:32 +0200 | [diff] [blame] | 1065 | } |
| 1066 | EXPORT_SYMBOL_GPL(kvm_emulate_cpuid); |