blob: b7bbed0de636c7c48b4d1f1f9e7c241f60604e45 [file] [log] [blame]
Thomas Gleixner20c8ccb2019-06-04 10:11:32 +02001// SPDX-License-Identifier: GPL-2.0-only
Avi Kivity00b27a32011-11-23 16:30:32 +02002/*
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 Kivity00b27a32011-11-23 16:30:32 +020010 */
11
12#include <linux/kvm_host.h>
Paul Gortmaker1767e932016-07-13 20:19:00 -040013#include <linux/export.h>
Jan Kiszkabb5a7982011-12-14 17:58:18 +010014#include <linux/vmalloc.h>
15#include <linux/uaccess.h>
Ingo Molnar3905f9a2017-02-05 12:07:04 +010016#include <linux/sched/stat.h>
17
Luwei Kang4504b5c2016-11-07 14:03:20 +080018#include <asm/processor.h>
Avi Kivity00b27a32011-11-23 16:30:32 +020019#include <asm/user.h>
Ingo Molnar669ebab2015-04-28 08:41:33 +020020#include <asm/fpu/xstate.h>
Avi Kivity00b27a32011-11-23 16:30:32 +020021#include "cpuid.h"
22#include "lapic.h"
23#include "mmu.h"
24#include "trace.h"
Wei Huang474a5bb2015-06-19 13:54:23 +020025#include "pmu.h"
Avi Kivity00b27a32011-11-23 16:30:32 +020026
Sean Christopherson66a69502020-03-02 15:56:41 -080027/*
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 */
31u32 kvm_cpu_caps[NCAPINTS] __read_mostly;
32EXPORT_SYMBOL_GPL(kvm_cpu_caps);
33
Paolo Bonzini412a3c42014-12-03 14:38:01 +010034static u32 xstate_required_size(u64 xstate_bv, bool compacted)
Paolo Bonzini4344ee92013-10-02 16:06:16 +020035{
36 int feature_bit = 0;
37 u32 ret = XSAVE_HDR_SIZE + XSAVE_HDR_OFFSET;
38
Dave Hansend91cab72015-09-02 16:31:26 -070039 xstate_bv &= XFEATURE_MASK_EXTEND;
Paolo Bonzini4344ee92013-10-02 16:06:16 +020040 while (xstate_bv) {
41 if (xstate_bv & 0x1) {
Paolo Bonzini412a3c42014-12-03 14:38:01 +010042 u32 eax, ebx, ecx, edx, offset;
Paolo Bonzini4344ee92013-10-02 16:06:16 +020043 cpuid_count(0xD, feature_bit, &eax, &ebx, &ecx, &edx);
Paolo Bonzini412a3c42014-12-03 14:38:01 +010044 offset = compacted ? ret : ebx;
45 ret = max(ret, offset + eax);
Paolo Bonzini4344ee92013-10-02 16:06:16 +020046 }
47
48 xstate_bv >>= 1;
49 feature_bit++;
50 }
51
52 return ret;
53}
54
Sean Christopherson87382002019-12-17 13:32:42 -080055#define F feature_bit
Paolo Bonzini5c404ca2014-12-03 14:34:47 +010056
Nadav Amitdd598092014-09-16 15:10:03 +030057int kvm_update_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity00b27a32011-11-23 16:30:32 +020058{
59 struct kvm_cpuid_entry2 *best;
60 struct kvm_lapic *apic = vcpu->arch.apic;
61
62 best = kvm_find_cpuid_entry(vcpu, 1, 0);
63 if (!best)
Nadav Amitdd598092014-09-16 15:10:03 +030064 return 0;
Avi Kivity00b27a32011-11-23 16:30:32 +020065
66 /* Update OSXSAVE bit */
Sean Christophersonb32666b2020-03-02 15:56:31 -080067 if (boot_cpu_has(X86_FEATURE_XSAVE) && best->function == 0x1)
68 cpuid_entry_change(best, X86_FEATURE_OSXSAVE,
69 kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE));
Avi Kivity00b27a32011-11-23 16:30:32 +020070
Sean Christophersonb32666b2020-03-02 15:56:31 -080071 cpuid_entry_change(best, X86_FEATURE_APIC,
72 vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE);
Jim Mattsonc7dd15b2016-11-09 09:50:11 -080073
Avi Kivity00b27a32011-11-23 16:30:32 +020074 if (apic) {
Sean Christopherson4c615342020-03-02 15:56:30 -080075 if (cpuid_entry_has(best, X86_FEATURE_TSC_DEADLINE_TIMER))
Avi Kivity00b27a32011-11-23 16:30:32 +020076 apic->lapic_timer.timer_mode_mask = 3 << 17;
77 else
78 apic->lapic_timer.timer_mode_mask = 1 << 17;
79 }
Gleb Natapovf5132b02011-11-10 14:57:22 +020080
Huaitong Hanb9baba82016-03-22 16:51:21 +080081 best = kvm_find_cpuid_entry(vcpu, 7, 0);
Sean Christophersonb32666b2020-03-02 15:56:31 -080082 if (best && boot_cpu_has(X86_FEATURE_PKU) && best->function == 0x7)
83 cpuid_entry_change(best, X86_FEATURE_OSPKE,
84 kvm_read_cr4_bits(vcpu, X86_CR4_PKE));
Huaitong Hanb9baba82016-03-22 16:51:21 +080085
Paolo Bonzinid7876f12013-10-02 16:06:15 +020086 best = kvm_find_cpuid_entry(vcpu, 0xD, 0);
Paolo Bonzini4344ee92013-10-02 16:06:16 +020087 if (!best) {
Paolo Bonzinid7876f12013-10-02 16:06:15 +020088 vcpu->arch.guest_supported_xcr0 = 0;
Paolo Bonzini4344ee92013-10-02 16:06:16 +020089 } else {
Paolo Bonzinid7876f12013-10-02 16:06:15 +020090 vcpu->arch.guest_supported_xcr0 =
Sean Christophersoncfc48182020-03-02 15:56:23 -080091 (best->eax | ((u64)best->edx << 32)) & supported_xcr0;
Xiaoyao Lia71936ab2020-04-29 23:43:12 +080092 best->ebx = xstate_required_size(vcpu->arch.xcr0, false);
Paolo Bonzini4344ee92013-10-02 16:06:16 +020093 }
Paolo Bonzinid7876f12013-10-02 16:06:15 +020094
Paolo Bonzini412a3c42014-12-03 14:38:01 +010095 best = kvm_find_cpuid_entry(vcpu, 0xD, 1);
Sean Christopherson4c615342020-03-02 15:56:30 -080096 if (best && (cpuid_entry_has(best, X86_FEATURE_XSAVES) ||
97 cpuid_entry_has(best, X86_FEATURE_XSAVEC)))
Paolo Bonzini412a3c42014-12-03 14:38:01 +010098 best->ebx = xstate_required_size(vcpu->arch.xcr0, true);
99
Nadav Amitdd598092014-09-16 15:10:03 +0300100 /*
Yu Zhangfd8cb432017-08-24 20:27:56 +0800101 * The existing code assumes virtual address is 48-bit or 57-bit in the
102 * canonical address checks; exit if it is ever changed.
Nadav Amitdd598092014-09-16 15:10:03 +0300103 */
104 best = kvm_find_cpuid_entry(vcpu, 0x80000008, 0);
Yu Zhangfd8cb432017-08-24 20:27:56 +0800105 if (best) {
106 int vaddr_bits = (best->eax & 0xff00) >> 8;
107
108 if (vaddr_bits != 48 && vaddr_bits != 57 && vaddr_bits != 0)
109 return -EINVAL;
110 }
Nadav Amitdd598092014-09-16 15:10:03 +0300111
Wanpeng Licaa057a2018-03-12 04:53:03 -0700112 best = kvm_find_cpuid_entry(vcpu, KVM_CPUID_FEATURES, 0);
113 if (kvm_hlt_in_guest(vcpu->kvm) && best &&
114 (best->eax & (1 << KVM_FEATURE_PV_UNHALT)))
115 best->eax &= ~(1 << KVM_FEATURE_PV_UNHALT);
116
Wanpeng Li511a85562019-05-21 14:06:54 +0800117 if (!kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_MISC_ENABLE_NO_MWAIT)) {
118 best = kvm_find_cpuid_entry(vcpu, 0x1, 0);
Sean Christophersonb32666b2020-03-02 15:56:31 -0800119 if (best)
120 cpuid_entry_change(best, X86_FEATURE_MWAIT,
121 vcpu->arch.ia32_misc_enable_msr &
122 MSR_IA32_MISC_ENABLE_MWAIT);
Wanpeng Li511a85562019-05-21 14:06:54 +0800123 }
124
Sean Christophersone93fd3b2020-05-01 21:32:34 -0700125 /* Note, maxphyaddr must be updated before tdp_level. */
Eugene Korenevsky5a4f55c2015-03-29 23:56:12 +0300126 vcpu->arch.maxphyaddr = cpuid_query_maxphyaddr(vcpu);
Sean Christophersone93fd3b2020-05-01 21:32:34 -0700127 vcpu->arch.tdp_level = kvm_x86_ops.get_tdp_level(vcpu);
Yu Zhang855feb62017-08-24 20:27:55 +0800128 kvm_mmu_reset_context(vcpu);
Eugene Korenevsky5a4f55c2015-03-29 23:56:12 +0300129
Wei Huangc6702c92015-06-19 13:44:45 +0200130 kvm_pmu_refresh(vcpu);
Krish Sadhukhanb899c132020-07-08 00:39:55 +0000131 vcpu->arch.cr4_guest_rsvd_bits =
132 __cr4_reserved_bits(guest_cpuid_has, vcpu);
Nadav Amitdd598092014-09-16 15:10:03 +0300133 return 0;
Avi Kivity00b27a32011-11-23 16:30:32 +0200134}
135
136static int is_efer_nx(void)
137{
Sean Christopherson91661982020-03-02 15:57:06 -0800138 return host_efer & EFER_NX;
Avi Kivity00b27a32011-11-23 16:30:32 +0200139}
140
141static void cpuid_fix_nx_cap(struct kvm_vcpu *vcpu)
142{
143 int i;
144 struct kvm_cpuid_entry2 *e, *entry;
145
146 entry = NULL;
147 for (i = 0; i < vcpu->arch.cpuid_nent; ++i) {
148 e = &vcpu->arch.cpuid_entries[i];
149 if (e->function == 0x80000001) {
150 entry = e;
151 break;
152 }
153 }
Sean Christopherson4c615342020-03-02 15:56:30 -0800154 if (entry && cpuid_entry_has(entry, X86_FEATURE_NX) && !is_efer_nx()) {
Sean Christophersonb32666b2020-03-02 15:56:31 -0800155 cpuid_entry_clear(entry, X86_FEATURE_NX);
Avi Kivity00b27a32011-11-23 16:30:32 +0200156 printk(KERN_INFO "kvm: guest NX capability removed\n");
157 }
158}
159
Eugene Korenevsky5a4f55c2015-03-29 23:56:12 +0300160int cpuid_query_maxphyaddr(struct kvm_vcpu *vcpu)
161{
162 struct kvm_cpuid_entry2 *best;
163
164 best = kvm_find_cpuid_entry(vcpu, 0x80000000, 0);
165 if (!best || best->eax < 0x80000008)
166 goto not_found;
167 best = kvm_find_cpuid_entry(vcpu, 0x80000008, 0);
168 if (best)
169 return best->eax & 0xff;
170not_found:
171 return 36;
172}
173EXPORT_SYMBOL_GPL(cpuid_query_maxphyaddr);
174
Avi Kivity00b27a32011-11-23 16:30:32 +0200175/* when an old userspace process fills a new kernel module */
176int kvm_vcpu_ioctl_set_cpuid(struct kvm_vcpu *vcpu,
177 struct kvm_cpuid *cpuid,
178 struct kvm_cpuid_entry __user *entries)
179{
180 int r, i;
Paolo Bonzini83676e92016-06-01 14:09:19 +0200181 struct kvm_cpuid_entry *cpuid_entries = NULL;
Avi Kivity00b27a32011-11-23 16:30:32 +0200182
183 r = -E2BIG;
184 if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
185 goto out;
Paolo Bonzini83676e92016-06-01 14:09:19 +0200186 if (cpuid->nent) {
Denis Efremov7ec28e22020-06-03 13:11:31 +0300187 cpuid_entries = vmemdup_user(entries,
188 array_size(sizeof(struct kvm_cpuid_entry),
189 cpuid->nent));
190 if (IS_ERR(cpuid_entries)) {
191 r = PTR_ERR(cpuid_entries);
Paolo Bonzini83676e92016-06-01 14:09:19 +0200192 goto out;
Denis Efremov7ec28e22020-06-03 13:11:31 +0300193 }
Paolo Bonzini83676e92016-06-01 14:09:19 +0200194 }
Avi Kivity00b27a32011-11-23 16:30:32 +0200195 for (i = 0; i < cpuid->nent; i++) {
196 vcpu->arch.cpuid_entries[i].function = cpuid_entries[i].function;
197 vcpu->arch.cpuid_entries[i].eax = cpuid_entries[i].eax;
198 vcpu->arch.cpuid_entries[i].ebx = cpuid_entries[i].ebx;
199 vcpu->arch.cpuid_entries[i].ecx = cpuid_entries[i].ecx;
200 vcpu->arch.cpuid_entries[i].edx = cpuid_entries[i].edx;
201 vcpu->arch.cpuid_entries[i].index = 0;
202 vcpu->arch.cpuid_entries[i].flags = 0;
203 vcpu->arch.cpuid_entries[i].padding[0] = 0;
204 vcpu->arch.cpuid_entries[i].padding[1] = 0;
205 vcpu->arch.cpuid_entries[i].padding[2] = 0;
206 }
207 vcpu->arch.cpuid_nent = cpuid->nent;
208 cpuid_fix_nx_cap(vcpu);
Avi Kivity00b27a32011-11-23 16:30:32 +0200209 kvm_apic_set_version(vcpu);
Sean Christophersonafaf0b22020-03-21 13:26:00 -0700210 kvm_x86_ops.cpuid_update(vcpu);
Nadav Amitdd598092014-09-16 15:10:03 +0300211 r = kvm_update_cpuid(vcpu);
Xiaoyao Li18964092020-07-08 14:50:47 +0800212 if (r)
213 vcpu->arch.cpuid_nent = 0;
Avi Kivity00b27a32011-11-23 16:30:32 +0200214
Denis Efremov7ec28e22020-06-03 13:11:31 +0300215 kvfree(cpuid_entries);
Avi Kivity00b27a32011-11-23 16:30:32 +0200216out:
217 return r;
218}
219
220int kvm_vcpu_ioctl_set_cpuid2(struct kvm_vcpu *vcpu,
221 struct kvm_cpuid2 *cpuid,
222 struct kvm_cpuid_entry2 __user *entries)
223{
224 int r;
225
226 r = -E2BIG;
227 if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
228 goto out;
229 r = -EFAULT;
230 if (copy_from_user(&vcpu->arch.cpuid_entries, entries,
231 cpuid->nent * sizeof(struct kvm_cpuid_entry2)))
232 goto out;
233 vcpu->arch.cpuid_nent = cpuid->nent;
234 kvm_apic_set_version(vcpu);
Sean Christophersonafaf0b22020-03-21 13:26:00 -0700235 kvm_x86_ops.cpuid_update(vcpu);
Nadav Amitdd598092014-09-16 15:10:03 +0300236 r = kvm_update_cpuid(vcpu);
Xiaoyao Li18964092020-07-08 14:50:47 +0800237 if (r)
238 vcpu->arch.cpuid_nent = 0;
Avi Kivity00b27a32011-11-23 16:30:32 +0200239out:
240 return r;
241}
242
243int kvm_vcpu_ioctl_get_cpuid2(struct kvm_vcpu *vcpu,
244 struct kvm_cpuid2 *cpuid,
245 struct kvm_cpuid_entry2 __user *entries)
246{
247 int r;
248
249 r = -E2BIG;
250 if (cpuid->nent < vcpu->arch.cpuid_nent)
251 goto out;
252 r = -EFAULT;
253 if (copy_to_user(entries, &vcpu->arch.cpuid_entries,
254 vcpu->arch.cpuid_nent * sizeof(struct kvm_cpuid_entry2)))
255 goto out;
256 return 0;
257
258out:
259 cpuid->nent = vcpu->arch.cpuid_nent;
260 return r;
261}
262
Sean Christopherson66a69502020-03-02 15:56:41 -0800263static __always_inline void kvm_cpu_cap_mask(enum cpuid_leafs leaf, u32 mask)
264{
Sean Christophersond8577a42020-03-02 15:56:52 -0800265 const struct cpuid_reg cpuid = x86_feature_cpuid(leaf * 32);
266 struct kvm_cpuid_entry2 entry;
267
Sean Christopherson66a69502020-03-02 15:56:41 -0800268 reverse_cpuid_check(leaf);
269 kvm_cpu_caps[leaf] &= mask;
Sean Christophersond8577a42020-03-02 15:56:52 -0800270
271 cpuid_count(cpuid.function, cpuid.index,
272 &entry.eax, &entry.ebx, &entry.ecx, &entry.edx);
273
Sean Christopherson855c7e92020-03-25 12:12:59 -0700274 kvm_cpu_caps[leaf] &= *__cpuid_entry_get_reg(&entry, cpuid.reg);
Sean Christopherson66a69502020-03-02 15:56:41 -0800275}
276
277void kvm_set_cpu_caps(void)
278{
279 unsigned int f_nx = is_efer_nx() ? F(NX) : 0;
280#ifdef CONFIG_X86_64
281 unsigned int f_gbpages = F(GBPAGES);
282 unsigned int f_lm = F(LM);
283#else
284 unsigned int f_gbpages = 0;
285 unsigned int f_lm = 0;
286#endif
287
288 BUILD_BUG_ON(sizeof(kvm_cpu_caps) >
289 sizeof(boot_cpu_data.x86_capability));
290
291 memcpy(&kvm_cpu_caps, &boot_cpu_data.x86_capability,
292 sizeof(kvm_cpu_caps));
293
294 kvm_cpu_cap_mask(CPUID_1_ECX,
295 /*
296 * NOTE: MONITOR (and MWAIT) are emulated as NOP, but *not*
297 * advertised to guests via CPUID!
298 */
299 F(XMM3) | F(PCLMULQDQ) | 0 /* DTES64, MONITOR */ |
300 0 /* DS-CPL, VMX, SMX, EST */ |
301 0 /* TM2 */ | F(SSSE3) | 0 /* CNXT-ID */ | 0 /* Reserved */ |
Like Xu27461da32020-05-29 15:43:45 +0800302 F(FMA) | F(CX16) | 0 /* xTPR Update */ | F(PDCM) |
Sean Christopherson66a69502020-03-02 15:56:41 -0800303 F(PCID) | 0 /* Reserved, DCA */ | F(XMM4_1) |
304 F(XMM4_2) | F(X2APIC) | F(MOVBE) | F(POPCNT) |
305 0 /* Reserved*/ | F(AES) | F(XSAVE) | 0 /* OSXSAVE */ | F(AVX) |
306 F(F16C) | F(RDRAND)
307 );
Sean Christopherson93c380e2020-03-02 15:56:54 -0800308 /* KVM emulates x2apic in software irrespective of host support. */
309 kvm_cpu_cap_set(X86_FEATURE_X2APIC);
Sean Christopherson66a69502020-03-02 15:56:41 -0800310
311 kvm_cpu_cap_mask(CPUID_1_EDX,
312 F(FPU) | F(VME) | F(DE) | F(PSE) |
313 F(TSC) | F(MSR) | F(PAE) | F(MCE) |
314 F(CX8) | F(APIC) | 0 /* Reserved */ | F(SEP) |
315 F(MTRR) | F(PGE) | F(MCA) | F(CMOV) |
316 F(PAT) | F(PSE36) | 0 /* PSN */ | F(CLFLUSH) |
317 0 /* Reserved, DS, ACPI */ | F(MMX) |
318 F(FXSR) | F(XMM) | F(XMM2) | F(SELFSNOOP) |
319 0 /* HTT, TM, Reserved, PBE */
320 );
321
322 kvm_cpu_cap_mask(CPUID_7_0_EBX,
323 F(FSGSBASE) | F(BMI1) | F(HLE) | F(AVX2) | F(SMEP) |
324 F(BMI2) | F(ERMS) | 0 /*INVPCID*/ | F(RTM) | 0 /*MPX*/ | F(RDSEED) |
325 F(ADX) | F(SMAP) | F(AVX512IFMA) | F(AVX512F) | F(AVX512PF) |
326 F(AVX512ER) | F(AVX512CD) | F(CLFLUSHOPT) | F(CLWB) | F(AVX512DQ) |
327 F(SHA_NI) | F(AVX512BW) | F(AVX512VL) | 0 /*INTEL_PT*/
328 );
329
330 kvm_cpu_cap_mask(CPUID_7_ECX,
Babu Mogerfa44b822020-05-12 18:59:16 -0500331 F(AVX512VBMI) | F(LA57) | F(PKU) | 0 /*OSPKE*/ | F(RDPID) |
Sean Christopherson66a69502020-03-02 15:56:41 -0800332 F(AVX512_VPOPCNTDQ) | F(UMIP) | F(AVX512_VBMI2) | F(GFNI) |
333 F(VAES) | F(VPCLMULQDQ) | F(AVX512_VNNI) | F(AVX512_BITALG) |
334 F(CLDEMOTE) | F(MOVDIRI) | F(MOVDIR64B) | 0 /*WAITPKG*/
335 );
336 /* Set LA57 based on hardware capability. */
337 if (cpuid_ecx(7) & F(LA57))
338 kvm_cpu_cap_set(X86_FEATURE_LA57);
339
Babu Mogerfa44b822020-05-12 18:59:16 -0500340 /*
341 * PKU not yet implemented for shadow paging and requires OSPKE
342 * to be set on the host. Clear it if that is not the case
343 */
344 if (!tdp_enabled || !boot_cpu_has(X86_FEATURE_OSPKE))
345 kvm_cpu_cap_clear(X86_FEATURE_PKU);
346
Sean Christopherson66a69502020-03-02 15:56:41 -0800347 kvm_cpu_cap_mask(CPUID_7_EDX,
348 F(AVX512_4VNNIW) | F(AVX512_4FMAPS) | F(SPEC_CTRL) |
349 F(SPEC_CTRL_SSBD) | F(ARCH_CAPABILITIES) | F(INTEL_STIBP) |
Zhenyu Wange3747402020-03-23 17:22:36 +0800350 F(MD_CLEAR) | F(AVX512_VP2INTERSECT) | F(FSRM)
Sean Christopherson66a69502020-03-02 15:56:41 -0800351 );
352
Sean Christopherson93c380e2020-03-02 15:56:54 -0800353 /* TSC_ADJUST and ARCH_CAPABILITIES are emulated in software. */
354 kvm_cpu_cap_set(X86_FEATURE_TSC_ADJUST);
355 kvm_cpu_cap_set(X86_FEATURE_ARCH_CAPABILITIES);
356
357 if (boot_cpu_has(X86_FEATURE_IBPB) && boot_cpu_has(X86_FEATURE_IBRS))
358 kvm_cpu_cap_set(X86_FEATURE_SPEC_CTRL);
359 if (boot_cpu_has(X86_FEATURE_STIBP))
360 kvm_cpu_cap_set(X86_FEATURE_INTEL_STIBP);
361 if (boot_cpu_has(X86_FEATURE_AMD_SSBD))
362 kvm_cpu_cap_set(X86_FEATURE_SPEC_CTRL_SSBD);
363
Sean Christopherson66a69502020-03-02 15:56:41 -0800364 kvm_cpu_cap_mask(CPUID_7_1_EAX,
365 F(AVX512_BF16)
366 );
367
368 kvm_cpu_cap_mask(CPUID_D_1_EAX,
369 F(XSAVEOPT) | F(XSAVEC) | F(XGETBV1) | F(XSAVES)
370 );
371
372 kvm_cpu_cap_mask(CPUID_8000_0001_ECX,
373 F(LAHF_LM) | F(CMP_LEGACY) | 0 /*SVM*/ | 0 /* ExtApicSpace */ |
374 F(CR8_LEGACY) | F(ABM) | F(SSE4A) | F(MISALIGNSSE) |
375 F(3DNOWPREFETCH) | F(OSVW) | 0 /* IBS */ | F(XOP) |
376 0 /* SKINIT, WDT, LWP */ | F(FMA4) | F(TBM) |
377 F(TOPOEXT) | F(PERFCTR_CORE)
378 );
379
380 kvm_cpu_cap_mask(CPUID_8000_0001_EDX,
381 F(FPU) | F(VME) | F(DE) | F(PSE) |
382 F(TSC) | F(MSR) | F(PAE) | F(MCE) |
383 F(CX8) | F(APIC) | 0 /* Reserved */ | F(SYSCALL) |
384 F(MTRR) | F(PGE) | F(MCA) | F(CMOV) |
385 F(PAT) | F(PSE36) | 0 /* Reserved */ |
386 f_nx | 0 /* Reserved */ | F(MMXEXT) | F(MMX) |
387 F(FXSR) | F(FXSR_OPT) | f_gbpages | F(RDTSCP) |
388 0 /* Reserved */ | f_lm | F(3DNOWEXT) | F(3DNOW)
389 );
390
391 if (!tdp_enabled && IS_ENABLED(CONFIG_X86_64))
392 kvm_cpu_cap_set(X86_FEATURE_GBPAGES);
393
394 kvm_cpu_cap_mask(CPUID_8000_0008_EBX,
395 F(CLZERO) | F(XSAVEERPTR) |
396 F(WBNOINVD) | F(AMD_IBPB) | F(AMD_IBRS) | F(AMD_SSBD) | F(VIRT_SSBD) |
397 F(AMD_SSB_NO) | F(AMD_STIBP) | F(AMD_STIBP_ALWAYS_ON)
398 );
399
Sean Christopherson9b58b982020-03-02 15:56:42 -0800400 /*
Sean Christopherson93c380e2020-03-02 15:56:54 -0800401 * AMD has separate bits for each SPEC_CTRL bit.
402 * arch/x86/kernel/cpu/bugs.c is kind enough to
403 * record that in cpufeatures so use them.
404 */
405 if (boot_cpu_has(X86_FEATURE_IBPB))
406 kvm_cpu_cap_set(X86_FEATURE_AMD_IBPB);
407 if (boot_cpu_has(X86_FEATURE_IBRS))
408 kvm_cpu_cap_set(X86_FEATURE_AMD_IBRS);
409 if (boot_cpu_has(X86_FEATURE_STIBP))
410 kvm_cpu_cap_set(X86_FEATURE_AMD_STIBP);
411 if (boot_cpu_has(X86_FEATURE_SPEC_CTRL_SSBD))
412 kvm_cpu_cap_set(X86_FEATURE_AMD_SSBD);
413 if (!boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS))
414 kvm_cpu_cap_set(X86_FEATURE_AMD_SSB_NO);
415 /*
416 * The preference is to use SPEC CTRL MSR instead of the
417 * VIRT_SPEC MSR.
418 */
419 if (boot_cpu_has(X86_FEATURE_LS_CFG_SSBD) &&
420 !boot_cpu_has(X86_FEATURE_AMD_SSBD))
421 kvm_cpu_cap_set(X86_FEATURE_VIRT_SSBD);
422
423 /*
Sean Christopherson9b58b982020-03-02 15:56:42 -0800424 * Hide all SVM features by default, SVM will set the cap bits for
425 * features it emulates and/or exposes for L1.
426 */
427 kvm_cpu_cap_mask(CPUID_8000_000A_EDX, 0);
428
Sean Christopherson66a69502020-03-02 15:56:41 -0800429 kvm_cpu_cap_mask(CPUID_C000_0001_EDX,
430 F(XSTORE) | F(XSTORE_EN) | F(XCRYPT) | F(XCRYPT_EN) |
431 F(ACE2) | F(ACE2_EN) | F(PHE) | F(PHE_EN) |
432 F(PMM) | F(PMM_EN)
433 );
434}
435EXPORT_SYMBOL_GPL(kvm_set_cpu_caps);
436
Sean Christophersone53c95e2020-03-02 15:56:19 -0800437struct kvm_cpuid_array {
438 struct kvm_cpuid_entry2 *entries;
Xiaoyao Li65b18912020-06-04 12:16:36 +0800439 int maxnent;
Sean Christophersone53c95e2020-03-02 15:56:19 -0800440 int nent;
441};
442
443static struct kvm_cpuid_entry2 *do_host_cpuid(struct kvm_cpuid_array *array,
Sean Christophersonaa10a7d2020-03-02 15:56:16 -0800444 u32 function, u32 index)
Avi Kivity00b27a32011-11-23 16:30:32 +0200445{
Sean Christophersone53c95e2020-03-02 15:56:19 -0800446 struct kvm_cpuid_entry2 *entry;
447
448 if (array->nent >= array->maxnent)
Sean Christophersonaa10a7d2020-03-02 15:56:16 -0800449 return NULL;
Sean Christophersone53c95e2020-03-02 15:56:19 -0800450
451 entry = &array->entries[array->nent++];
Sean Christophersonaa10a7d2020-03-02 15:56:16 -0800452
Avi Kivity00b27a32011-11-23 16:30:32 +0200453 entry->function = function;
454 entry->index = index;
Paolo Bonziniab8bcf62019-06-24 10:23:33 +0200455 entry->flags = 0;
456
Avi Kivity00b27a32011-11-23 16:30:32 +0200457 cpuid_count(entry->function, entry->index,
458 &entry->eax, &entry->ebx, &entry->ecx, &entry->edx);
Paolo Bonzinid9aadaf2019-07-04 12:20:48 +0200459
460 switch (function) {
Paolo Bonzinid9aadaf2019-07-04 12:20:48 +0200461 case 4:
462 case 7:
463 case 0xb:
464 case 0xd:
Jim Mattsona06dcd62019-09-12 09:55:03 -0700465 case 0xf:
466 case 0x10:
467 case 0x12:
Paolo Bonzinid9aadaf2019-07-04 12:20:48 +0200468 case 0x14:
Jim Mattsona06dcd62019-09-12 09:55:03 -0700469 case 0x17:
470 case 0x18:
471 case 0x1f:
Paolo Bonzinid9aadaf2019-07-04 12:20:48 +0200472 case 0x8000001d:
473 entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
474 break;
475 }
Sean Christophersonaa10a7d2020-03-02 15:56:16 -0800476
477 return entry;
Avi Kivity00b27a32011-11-23 16:30:32 +0200478}
479
Sean Christophersone53c95e2020-03-02 15:56:19 -0800480static int __do_cpuid_func_emulated(struct kvm_cpuid_array *array, u32 func)
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200481{
Sean Christopherson7c7f9542020-03-02 15:56:56 -0800482 struct kvm_cpuid_entry2 *entry;
Sean Christophersone53c95e2020-03-02 15:56:19 -0800483
Sean Christopherson7c7f9542020-03-02 15:56:56 -0800484 if (array->nent >= array->maxnent)
485 return -E2BIG;
486
487 entry = &array->entries[array->nent];
Paolo Bonziniab8bcf62019-06-24 10:23:33 +0200488 entry->function = func;
489 entry->index = 0;
490 entry->flags = 0;
491
Borislav Petkov84cffe42013-10-29 12:54:56 +0100492 switch (func) {
493 case 0:
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +0200494 entry->eax = 7;
Sean Christophersone53c95e2020-03-02 15:56:19 -0800495 ++array->nent;
Borislav Petkov84cffe42013-10-29 12:54:56 +0100496 break;
497 case 1:
498 entry->ecx = F(MOVBE);
Sean Christophersone53c95e2020-03-02 15:56:19 -0800499 ++array->nent;
Borislav Petkov84cffe42013-10-29 12:54:56 +0100500 break;
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +0200501 case 7:
502 entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
Paolo Bonziniab8bcf62019-06-24 10:23:33 +0200503 entry->eax = 0;
504 entry->ecx = F(RDPID);
Sean Christophersone53c95e2020-03-02 15:56:19 -0800505 ++array->nent;
Borislav Petkov84cffe42013-10-29 12:54:56 +0100506 default:
507 break;
508 }
509
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200510 return 0;
511}
512
Sean Christophersone53c95e2020-03-02 15:56:19 -0800513static inline int __do_cpuid_func(struct kvm_cpuid_array *array, u32 function)
Avi Kivity00b27a32011-11-23 16:30:32 +0200514{
Sean Christophersone53c95e2020-03-02 15:56:19 -0800515 struct kvm_cpuid_entry2 *entry;
Sean Christopherson74fa0bc2020-03-02 15:56:17 -0800516 int r, i, max_idx;
Avi Kivity00b27a32011-11-23 16:30:32 +0200517
Avi Kivity00b27a32011-11-23 16:30:32 +0200518 /* all calls to cpuid_count() should be made on the same cpu */
519 get_cpu();
Sasha Levin831bf662011-11-28 11:20:29 +0200520
521 r = -E2BIG;
522
Sean Christophersone53c95e2020-03-02 15:56:19 -0800523 entry = do_host_cpuid(array, function, 0);
Sean Christopherson7c7f9542020-03-02 15:56:56 -0800524 if (!entry)
Sasha Levin831bf662011-11-28 11:20:29 +0200525 goto out;
526
Avi Kivity00b27a32011-11-23 16:30:32 +0200527 switch (function) {
528 case 0:
Like Xua87f2d32019-06-06 09:18:45 +0800529 /* Limited to the highest leaf implemented in KVM. */
530 entry->eax = min(entry->eax, 0x1fU);
Avi Kivity00b27a32011-11-23 16:30:32 +0200531 break;
532 case 1:
Sean Christophersonbd791992020-03-02 15:56:53 -0800533 cpuid_entry_override(entry, CPUID_1_EDX);
534 cpuid_entry_override(entry, CPUID_1_ECX);
Avi Kivity00b27a32011-11-23 16:30:32 +0200535 break;
Sean Christopherson74fa0bc2020-03-02 15:56:17 -0800536 case 2:
Sean Christophersonc571a142020-03-02 15:56:50 -0800537 /*
538 * On ancient CPUs, function 2 entries are STATEFUL. That is,
539 * CPUID(function=2, index=0) may return different results each
540 * time, with the least-significant byte in EAX enumerating the
541 * number of times software should do CPUID(2, 0).
542 *
Sean Christopherson7ff6c032020-03-02 15:56:51 -0800543 * Modern CPUs, i.e. every CPU KVM has *ever* run on are less
544 * idiotic. Intel's SDM states that EAX & 0xff "will always
545 * return 01H. Software should ignore this value and not
Sean Christophersonc571a142020-03-02 15:56:50 -0800546 * interpret it as an informational descriptor", while AMD's
547 * APM states that CPUID(2) is reserved.
Sean Christopherson7ff6c032020-03-02 15:56:51 -0800548 *
549 * WARN if a frankenstein CPU that supports virtualization and
550 * a stateful CPUID.0x2 is encountered.
Sean Christophersonc571a142020-03-02 15:56:50 -0800551 */
Sean Christopherson7ff6c032020-03-02 15:56:51 -0800552 WARN_ON_ONCE((entry->eax & 0xff) > 1);
Avi Kivity00b27a32011-11-23 16:30:32 +0200553 break;
Jim Mattson32a243d2019-03-27 13:15:36 -0700554 /* functions 4 and 0x8000001d have additional index. */
555 case 4:
Sean Christophersonc8629032020-03-02 15:56:18 -0800556 case 0x8000001d:
557 /*
558 * Read entries until the cache type in the previous entry is
559 * zero, i.e. indicates an invalid entry.
560 */
Sean Christophersone53c95e2020-03-02 15:56:19 -0800561 for (i = 1; entry->eax & 0x1f; ++i) {
562 entry = do_host_cpuid(array, function, i);
563 if (!entry)
Sean Christopherson0fc62672020-03-02 15:56:08 -0800564 goto out;
Avi Kivity00b27a32011-11-23 16:30:32 +0200565 }
566 break;
Jan Kiszkae453aa02015-05-24 17:22:38 +0200567 case 6: /* Thermal management */
568 entry->eax = 0x4; /* allow ARAT */
569 entry->ebx = 0;
570 entry->ecx = 0;
571 entry->edx = 0;
572 break;
Paolo Bonzini54d360d2019-07-04 12:18:13 +0200573 /* function 7 has additional index. */
Sean Christopherson74fa0bc2020-03-02 15:56:17 -0800574 case 7:
Sean Christopherson09f628a2020-03-02 15:56:48 -0800575 entry->eax = min(entry->eax, 1u);
Sean Christophersonbd791992020-03-02 15:56:53 -0800576 cpuid_entry_override(entry, CPUID_7_0_EBX);
577 cpuid_entry_override(entry, CPUID_7_ECX);
578 cpuid_entry_override(entry, CPUID_7_EDX);
Sean Christopherson09f628a2020-03-02 15:56:48 -0800579
Sean Christophersonbcf600c2020-03-02 15:56:49 -0800580 /* KVM only supports 0x7.0 and 0x7.1, capped above via min(). */
581 if (entry->eax == 1) {
582 entry = do_host_cpuid(array, function, 1);
Sean Christophersone53c95e2020-03-02 15:56:19 -0800583 if (!entry)
Paolo Bonzini54d360d2019-07-04 12:18:13 +0200584 goto out;
585
Sean Christophersonbd791992020-03-02 15:56:53 -0800586 cpuid_entry_override(entry, CPUID_7_1_EAX);
Sean Christopherson09f628a2020-03-02 15:56:48 -0800587 entry->ebx = 0;
588 entry->ecx = 0;
589 entry->edx = 0;
Paolo Bonzini54d360d2019-07-04 12:18:13 +0200590 }
Avi Kivity00b27a32011-11-23 16:30:32 +0200591 break;
Avi Kivity00b27a32011-11-23 16:30:32 +0200592 case 9:
593 break;
Gleb Natapova6c06ed2011-11-10 14:57:28 +0200594 case 0xa: { /* Architectural Performance Monitoring */
595 struct x86_pmu_capability cap;
596 union cpuid10_eax eax;
597 union cpuid10_edx edx;
598
599 perf_get_x86_pmu_capability(&cap);
600
601 /*
602 * Only support guest architectural pmu on a host
603 * with architectural pmu.
604 */
605 if (!cap.version)
606 memset(&cap, 0, sizeof(cap));
607
608 eax.split.version_id = min(cap.version, 2);
609 eax.split.num_counters = cap.num_counters_gp;
610 eax.split.bit_width = cap.bit_width_gp;
611 eax.split.mask_length = cap.events_mask_len;
612
Like Xu2e8cd7a2020-06-24 09:59:28 +0800613 edx.split.num_counters_fixed = min(cap.num_counters_fixed, MAX_FIXED_COUNTERS);
Gleb Natapova6c06ed2011-11-10 14:57:28 +0200614 edx.split.bit_width_fixed = cap.bit_width_fixed;
615 edx.split.reserved = 0;
616
617 entry->eax = eax.full;
618 entry->ebx = cap.events_mask;
619 entry->ecx = 0;
620 entry->edx = edx.full;
621 break;
622 }
Like Xua87f2d32019-06-06 09:18:45 +0800623 /*
624 * Per Intel's SDM, the 0x1f is a superset of 0xb,
625 * thus they can be handled by common code.
626 */
627 case 0x1f:
Sean Christopherson74fa0bc2020-03-02 15:56:17 -0800628 case 0xb:
Jim Mattsona1a640b2019-09-25 11:17:14 -0700629 /*
Sean Christophersone53c95e2020-03-02 15:56:19 -0800630 * Populate entries until the level type (ECX[15:8]) of the
631 * previous entry is zero. Note, CPUID EAX.{0x1f,0xb}.0 is
632 * the starting entry, filled by the primary do_host_cpuid().
Jim Mattsona1a640b2019-09-25 11:17:14 -0700633 */
Sean Christophersone53c95e2020-03-02 15:56:19 -0800634 for (i = 1; entry->ecx & 0xff00; ++i) {
635 entry = do_host_cpuid(array, function, i);
636 if (!entry)
Sasha Levin831bf662011-11-28 11:20:29 +0200637 goto out;
Avi Kivity00b27a32011-11-23 16:30:32 +0200638 }
639 break;
Sean Christophersoncfc48182020-03-02 15:56:23 -0800640 case 0xd:
641 entry->eax &= supported_xcr0;
642 entry->ebx = xstate_required_size(supported_xcr0, false);
Radim Krčmáře08e8332014-12-04 18:30:41 +0100643 entry->ecx = entry->ebx;
Sean Christophersoncfc48182020-03-02 15:56:23 -0800644 entry->edx &= supported_xcr0 >> 32;
645 if (!supported_xcr0)
Paolo Bonzinib65d6e12014-11-21 18:13:26 +0100646 break;
647
Sean Christophersone53c95e2020-03-02 15:56:19 -0800648 entry = do_host_cpuid(array, function, 1);
649 if (!entry)
Sean Christopherson3dc4a9c2020-03-02 15:56:09 -0800650 goto out;
651
Sean Christophersonbd791992020-03-02 15:56:53 -0800652 cpuid_entry_override(entry, CPUID_D_1_EAX);
Sean Christophersone53c95e2020-03-02 15:56:19 -0800653 if (entry->eax & (F(XSAVES)|F(XSAVEC)))
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100654 entry->ebx = xstate_required_size(supported_xcr0 | supported_xss,
655 true);
656 else {
657 WARN_ON_ONCE(supported_xss != 0);
Sean Christophersone53c95e2020-03-02 15:56:19 -0800658 entry->ebx = 0;
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100659 }
660 entry->ecx &= supported_xss;
661 entry->edx &= supported_xss >> 32;
Sean Christopherson3dc4a9c2020-03-02 15:56:09 -0800662
Sean Christopherson0eee8f92020-03-02 15:56:21 -0800663 for (i = 2; i < 64; ++i) {
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100664 bool s_state;
665 if (supported_xcr0 & BIT_ULL(i))
666 s_state = false;
667 else if (supported_xss & BIT_ULL(i))
668 s_state = true;
669 else
Sean Christopherson1893c942020-03-02 15:56:10 -0800670 continue;
Sean Christopherson3dc4a9c2020-03-02 15:56:09 -0800671
Sean Christopherson0eee8f92020-03-02 15:56:21 -0800672 entry = do_host_cpuid(array, function, i);
Sean Christophersone53c95e2020-03-02 15:56:19 -0800673 if (!entry)
Sasha Levin831bf662011-11-28 11:20:29 +0200674 goto out;
675
Sean Christopherson91001d42020-03-02 15:56:11 -0800676 /*
Sean Christophersoncfc48182020-03-02 15:56:23 -0800677 * The supported check above should have filtered out
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100678 * invalid sub-leafs. Only valid sub-leafs should
Sean Christopherson91001d42020-03-02 15:56:11 -0800679 * reach this point, and they should have a non-zero
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100680 * save state size. Furthermore, check whether the
681 * processor agrees with supported_xcr0/supported_xss
682 * on whether this is an XCR0- or IA32_XSS-managed area.
Sean Christopherson91001d42020-03-02 15:56:11 -0800683 */
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100684 if (WARN_ON_ONCE(!entry->eax || (entry->ecx & 0x1) != s_state)) {
Sean Christophersone53c95e2020-03-02 15:56:19 -0800685 --array->nent;
Sean Christopherson3dc4a9c2020-03-02 15:56:09 -0800686 continue;
Sean Christopherson8b2fc442020-03-02 15:56:12 -0800687 }
Sean Christophersone53c95e2020-03-02 15:56:19 -0800688 entry->edx = 0;
Avi Kivity00b27a32011-11-23 16:30:32 +0200689 }
690 break;
Chao Peng86f52012018-10-24 16:05:11 +0800691 /* Intel PT */
Sean Christopherson74fa0bc2020-03-02 15:56:17 -0800692 case 0x14:
Sean Christophersondd69cc22020-03-02 15:56:55 -0800693 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT)) {
Sean Christopherson73920792020-03-02 15:56:26 -0800694 entry->eax = entry->ebx = entry->ecx = entry->edx = 0;
Chao Peng86f52012018-10-24 16:05:11 +0800695 break;
Sean Christopherson73920792020-03-02 15:56:26 -0800696 }
Chao Peng86f52012018-10-24 16:05:11 +0800697
Sean Christopherson74fa0bc2020-03-02 15:56:17 -0800698 for (i = 1, max_idx = entry->eax; i <= max_idx; ++i) {
Sean Christophersone53c95e2020-03-02 15:56:19 -0800699 if (!do_host_cpuid(array, function, i))
Chao Peng86f52012018-10-24 16:05:11 +0800700 goto out;
Chao Peng86f52012018-10-24 16:05:11 +0800701 }
702 break;
Avi Kivity00b27a32011-11-23 16:30:32 +0200703 case KVM_CPUID_SIGNATURE: {
Mathias Krause326d07c2012-08-30 01:30:13 +0200704 static const char signature[12] = "KVMKVMKVM\0\0";
705 const u32 *sigptr = (const u32 *)signature;
Michael S. Tsirkin57c22e52012-05-02 17:55:56 +0300706 entry->eax = KVM_CPUID_FEATURES;
Avi Kivity00b27a32011-11-23 16:30:32 +0200707 entry->ebx = sigptr[0];
708 entry->ecx = sigptr[1];
709 entry->edx = sigptr[2];
710 break;
711 }
712 case KVM_CPUID_FEATURES:
713 entry->eax = (1 << KVM_FEATURE_CLOCKSOURCE) |
714 (1 << KVM_FEATURE_NOP_IO_DELAY) |
715 (1 << KVM_FEATURE_CLOCKSOURCE2) |
716 (1 << KVM_FEATURE_ASYNC_PF) |
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300717 (1 << KVM_FEATURE_PV_EOI) |
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +0530718 (1 << KVM_FEATURE_CLOCKSOURCE_STABLE_BIT) |
Wanpeng Lif38a7b72017-12-12 17:33:04 -0800719 (1 << KVM_FEATURE_PV_UNHALT) |
Radim Krčmářfe2a3022018-02-01 22:16:21 +0100720 (1 << KVM_FEATURE_PV_TLB_FLUSH) |
Wanpeng Li4180bf12018-07-23 14:39:54 +0800721 (1 << KVM_FEATURE_ASYNC_PF_VMEXIT) |
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -0300722 (1 << KVM_FEATURE_PV_SEND_IPI) |
Wanpeng Li32b72ec2019-06-11 20:23:50 +0800723 (1 << KVM_FEATURE_POLL_CONTROL) |
Vitaly Kuznetsov72de5fa4c2020-05-25 16:41:22 +0200724 (1 << KVM_FEATURE_PV_SCHED_YIELD) |
725 (1 << KVM_FEATURE_ASYNC_PF_INT);
Avi Kivity00b27a32011-11-23 16:30:32 +0200726
727 if (sched_info_on())
728 entry->eax |= (1 << KVM_FEATURE_STEAL_TIME);
729
730 entry->ebx = 0;
731 entry->ecx = 0;
732 entry->edx = 0;
733 break;
734 case 0x80000000:
Brijesh Singh8765d752017-12-04 10:57:25 -0600735 entry->eax = min(entry->eax, 0x8000001f);
Avi Kivity00b27a32011-11-23 16:30:32 +0200736 break;
737 case 0x80000001:
Sean Christophersonbd791992020-03-02 15:56:53 -0800738 cpuid_entry_override(entry, CPUID_8000_0001_EDX);
739 cpuid_entry_override(entry, CPUID_8000_0001_ECX);
Avi Kivity00b27a32011-11-23 16:30:32 +0200740 break;
Eric Northup43d05de2020-04-14 18:23:20 -0700741 case 0x80000006:
742 /* L2 cache and TLB: pass through host info. */
743 break;
Marcelo Tosattie4c9a5a12014-04-26 22:30:23 -0300744 case 0x80000007: /* Advanced power management */
745 /* invariant TSC is CPUID.80000007H:EDX[8] */
746 entry->edx &= (1 << 8);
747 /* mask against host */
748 entry->edx &= boot_cpu_data.x86_power;
749 entry->eax = entry->ebx = entry->ecx = 0;
750 break;
Avi Kivity00b27a32011-11-23 16:30:32 +0200751 case 0x80000008: {
752 unsigned g_phys_as = (entry->eax >> 16) & 0xff;
753 unsigned virt_as = max((entry->eax >> 8) & 0xff, 48U);
754 unsigned phys_as = entry->eax & 0xff;
755
756 if (!g_phys_as)
757 g_phys_as = phys_as;
758 entry->eax = g_phys_as | (virt_as << 8);
Ashok Raj15d45072018-02-01 22:59:43 +0100759 entry->edx = 0;
Sean Christophersonbd791992020-03-02 15:56:53 -0800760 cpuid_entry_override(entry, CPUID_8000_0008_EBX);
Avi Kivity00b27a32011-11-23 16:30:32 +0200761 break;
762 }
Sean Christopherson25703872020-03-02 15:57:09 -0800763 case 0x8000000A:
764 if (!kvm_cpu_cap_has(X86_FEATURE_SVM)) {
765 entry->eax = entry->ebx = entry->ecx = entry->edx = 0;
766 break;
767 }
768 entry->eax = 1; /* SVM revision 1 */
769 entry->ebx = 8; /* Lets support 8 ASIDs in case we add proper
770 ASID emulation to nested SVM */
771 entry->ecx = 0; /* Reserved */
772 cpuid_entry_override(entry, CPUID_8000_000A_EDX);
773 break;
Avi Kivity00b27a32011-11-23 16:30:32 +0200774 case 0x80000019:
775 entry->ecx = entry->edx = 0;
776 break;
777 case 0x8000001a:
Jim Mattson382409b2019-03-27 13:15:37 -0700778 case 0x8000001e:
Avi Kivity00b27a32011-11-23 16:30:32 +0200779 break;
Peter Gondac1de0f22019-11-21 12:33:43 -0800780 /* Support memory encryption cpuid if host supports it */
781 case 0x8000001F:
782 if (!boot_cpu_has(X86_FEATURE_SEV))
783 entry->eax = entry->ebx = entry->ecx = entry->edx = 0;
784 break;
Avi Kivity00b27a32011-11-23 16:30:32 +0200785 /*Add support for Centaur's CPUID instruction*/
786 case 0xC0000000:
787 /*Just support up to 0xC0000004 now*/
788 entry->eax = min(entry->eax, 0xC0000004);
789 break;
790 case 0xC0000001:
Sean Christophersonbd791992020-03-02 15:56:53 -0800791 cpuid_entry_override(entry, CPUID_C000_0001_EDX);
Avi Kivity00b27a32011-11-23 16:30:32 +0200792 break;
793 case 3: /* Processor serial number */
794 case 5: /* MONITOR/MWAIT */
Avi Kivity00b27a32011-11-23 16:30:32 +0200795 case 0xC0000002:
796 case 0xC0000003:
797 case 0xC0000004:
798 default:
799 entry->eax = entry->ebx = entry->ecx = entry->edx = 0;
800 break;
801 }
802
Sasha Levin831bf662011-11-28 11:20:29 +0200803 r = 0;
804
805out:
Avi Kivity00b27a32011-11-23 16:30:32 +0200806 put_cpu();
Sasha Levin831bf662011-11-28 11:20:29 +0200807
808 return r;
Avi Kivity00b27a32011-11-23 16:30:32 +0200809}
810
Sean Christophersone53c95e2020-03-02 15:56:19 -0800811static int do_cpuid_func(struct kvm_cpuid_array *array, u32 func,
812 unsigned int type)
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200813{
814 if (type == KVM_GET_EMULATED_CPUID)
Sean Christophersone53c95e2020-03-02 15:56:19 -0800815 return __do_cpuid_func_emulated(array, func);
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200816
Sean Christophersone53c95e2020-03-02 15:56:19 -0800817 return __do_cpuid_func(array, func);
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200818}
819
Sean Christopherson8b860792020-03-02 15:56:06 -0800820#define CENTAUR_CPUID_SIGNATURE 0xC0000000
Sasha Levin831bf662011-11-28 11:20:29 +0200821
Sean Christophersone53c95e2020-03-02 15:56:19 -0800822static int get_cpuid_func(struct kvm_cpuid_array *array, u32 func,
823 unsigned int type)
Sean Christopherson619a17f2020-03-02 15:56:05 -0800824{
825 u32 limit;
826 int r;
827
Sean Christopherson8b860792020-03-02 15:56:06 -0800828 if (func == CENTAUR_CPUID_SIGNATURE &&
829 boot_cpu_data.x86_vendor != X86_VENDOR_CENTAUR)
830 return 0;
831
Sean Christophersone53c95e2020-03-02 15:56:19 -0800832 r = do_cpuid_func(array, func, type);
Sean Christopherson619a17f2020-03-02 15:56:05 -0800833 if (r)
834 return r;
835
Sean Christophersone53c95e2020-03-02 15:56:19 -0800836 limit = array->entries[array->nent - 1].eax;
Sean Christopherson619a17f2020-03-02 15:56:05 -0800837 for (func = func + 1; func <= limit; ++func) {
Sean Christophersone53c95e2020-03-02 15:56:19 -0800838 r = do_cpuid_func(array, func, type);
Sean Christopherson619a17f2020-03-02 15:56:05 -0800839 if (r)
840 break;
841 }
842
843 return r;
844}
845
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200846static bool sanity_check_entries(struct kvm_cpuid_entry2 __user *entries,
847 __u32 num_entries, unsigned int ioctl_type)
848{
849 int i;
Borislav Petkov1b2ca422013-11-06 15:46:02 +0100850 __u32 pad[3];
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200851
852 if (ioctl_type != KVM_GET_EMULATED_CPUID)
853 return false;
854
855 /*
856 * We want to make sure that ->padding is being passed clean from
857 * userspace in case we want to use it for something in the future.
858 *
859 * Sadly, this wasn't enforced for KVM_GET_SUPPORTED_CPUID and so we
860 * have to give ourselves satisfied only with the emulated side. /me
861 * sheds a tear.
862 */
863 for (i = 0; i < num_entries; i++) {
Borislav Petkov1b2ca422013-11-06 15:46:02 +0100864 if (copy_from_user(pad, entries[i].padding, sizeof(pad)))
865 return true;
866
867 if (pad[0] || pad[1] || pad[2])
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200868 return true;
869 }
870 return false;
871}
872
873int kvm_dev_ioctl_get_cpuid(struct kvm_cpuid2 *cpuid,
874 struct kvm_cpuid_entry2 __user *entries,
875 unsigned int type)
Avi Kivity00b27a32011-11-23 16:30:32 +0200876{
Sean Christopherson8b860792020-03-02 15:56:06 -0800877 static const u32 funcs[] = {
878 0, 0x80000000, CENTAUR_CPUID_SIGNATURE, KVM_CPUID_SIGNATURE,
Sasha Levin831bf662011-11-28 11:20:29 +0200879 };
Avi Kivity00b27a32011-11-23 16:30:32 +0200880
Sean Christophersone53c95e2020-03-02 15:56:19 -0800881 struct kvm_cpuid_array array = {
882 .nent = 0,
Sean Christophersone53c95e2020-03-02 15:56:19 -0800883 };
884 int r, i;
Sean Christophersond5a661d2020-03-02 15:56:07 -0800885
Avi Kivity00b27a32011-11-23 16:30:32 +0200886 if (cpuid->nent < 1)
Sean Christophersond5a661d2020-03-02 15:56:07 -0800887 return -E2BIG;
Avi Kivity00b27a32011-11-23 16:30:32 +0200888 if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
889 cpuid->nent = KVM_MAX_CPUID_ENTRIES;
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200890
891 if (sanity_check_entries(entries, cpuid->nent, type))
892 return -EINVAL;
893
Sean Christophersone53c95e2020-03-02 15:56:19 -0800894 array.entries = vzalloc(array_size(sizeof(struct kvm_cpuid_entry2),
Kees Cookfad953c2018-06-12 14:27:37 -0700895 cpuid->nent));
Sean Christophersone53c95e2020-03-02 15:56:19 -0800896 if (!array.entries)
Sean Christophersond5a661d2020-03-02 15:56:07 -0800897 return -ENOMEM;
Avi Kivity00b27a32011-11-23 16:30:32 +0200898
Xiaoyao Li65b18912020-06-04 12:16:36 +0800899 array.maxnent = cpuid->nent;
900
Sean Christopherson8b860792020-03-02 15:56:06 -0800901 for (i = 0; i < ARRAY_SIZE(funcs); i++) {
Sean Christophersone53c95e2020-03-02 15:56:19 -0800902 r = get_cpuid_func(&array, funcs[i], type);
Sasha Levin831bf662011-11-28 11:20:29 +0200903 if (r)
Avi Kivity00b27a32011-11-23 16:30:32 +0200904 goto out_free;
905 }
Sean Christophersone53c95e2020-03-02 15:56:19 -0800906 cpuid->nent = array.nent;
Avi Kivity00b27a32011-11-23 16:30:32 +0200907
Sean Christophersone53c95e2020-03-02 15:56:19 -0800908 if (copy_to_user(entries, array.entries,
909 array.nent * sizeof(struct kvm_cpuid_entry2)))
Sean Christophersond5a661d2020-03-02 15:56:07 -0800910 r = -EFAULT;
Avi Kivity00b27a32011-11-23 16:30:32 +0200911
912out_free:
Sean Christophersone53c95e2020-03-02 15:56:19 -0800913 vfree(array.entries);
Avi Kivity00b27a32011-11-23 16:30:32 +0200914 return r;
915}
916
Avi Kivity00b27a32011-11-23 16:30:32 +0200917struct kvm_cpuid_entry2 *kvm_find_cpuid_entry(struct kvm_vcpu *vcpu,
918 u32 function, u32 index)
919{
Sean Christopherson7ff6c032020-03-02 15:56:51 -0800920 struct kvm_cpuid_entry2 *e;
Avi Kivity00b27a32011-11-23 16:30:32 +0200921 int i;
Avi Kivity00b27a32011-11-23 16:30:32 +0200922
923 for (i = 0; i < vcpu->arch.cpuid_nent; ++i) {
Avi Kivity00b27a32011-11-23 16:30:32 +0200924 e = &vcpu->arch.cpuid_entries[i];
Sean Christopherson7ff6c032020-03-02 15:56:51 -0800925
926 if (e->function == function && (e->index == index ||
927 !(e->flags & KVM_CPUID_FLAG_SIGNIFCANT_INDEX)))
928 return e;
Avi Kivity00b27a32011-11-23 16:30:32 +0200929 }
Sean Christopherson7ff6c032020-03-02 15:56:51 -0800930 return NULL;
Avi Kivity00b27a32011-11-23 16:30:32 +0200931}
932EXPORT_SYMBOL_GPL(kvm_find_cpuid_entry);
933
Avi Kivity00b27a32011-11-23 16:30:32 +0200934/*
Sean Christopherson8d892312020-03-04 17:34:34 -0800935 * Intel CPUID semantics treats any query for an out-of-range leaf as if the
936 * highest basic leaf (i.e. CPUID.0H:EAX) were requested. AMD CPUID semantics
937 * returns all zeroes for any undefined leaf, whether or not the leaf is in
938 * range. Centaur/VIA follows Intel semantics.
939 *
940 * A leaf is considered out-of-range if its function is higher than the maximum
941 * supported leaf of its associated class or if its associated class does not
942 * exist.
943 *
944 * There are three primary classes to be considered, with their respective
945 * ranges described as "<base> - <top>[,<base2> - <top2>] inclusive. A primary
946 * class exists if a guest CPUID entry for its <base> leaf exists. For a given
947 * class, CPUID.<base>.EAX contains the max supported leaf for the class.
948 *
949 * - Basic: 0x00000000 - 0x3fffffff, 0x50000000 - 0x7fffffff
950 * - Hypervisor: 0x40000000 - 0x4fffffff
951 * - Extended: 0x80000000 - 0xbfffffff
952 * - Centaur: 0xc0000000 - 0xcfffffff
953 *
954 * The Hypervisor class is further subdivided into sub-classes that each act as
955 * their own indepdent class associated with a 0x100 byte range. E.g. if Qemu
956 * is advertising support for both HyperV and KVM, the resulting Hypervisor
957 * CPUID sub-classes are:
958 *
959 * - HyperV: 0x40000000 - 0x400000ff
960 * - KVM: 0x40000100 - 0x400001ff
Avi Kivity00b27a32011-11-23 16:30:32 +0200961 */
Sean Christopherson09c74312020-03-04 17:34:36 -0800962static struct kvm_cpuid_entry2 *
963get_out_of_range_cpuid_entry(struct kvm_vcpu *vcpu, u32 *fn_ptr, u32 index)
Avi Kivity00b27a32011-11-23 16:30:32 +0200964{
Sean Christopherson8d892312020-03-04 17:34:34 -0800965 struct kvm_cpuid_entry2 *basic, *class;
Sean Christopherson09c74312020-03-04 17:34:36 -0800966 u32 function = *fn_ptr;
Avi Kivity00b27a32011-11-23 16:30:32 +0200967
Sean Christopherson8d892312020-03-04 17:34:34 -0800968 basic = kvm_find_cpuid_entry(vcpu, 0, 0);
969 if (!basic)
Sean Christopherson09c74312020-03-04 17:34:36 -0800970 return NULL;
971
972 if (is_guest_vendor_amd(basic->ebx, basic->ecx, basic->edx) ||
973 is_guest_vendor_hygon(basic->ebx, basic->ecx, basic->edx))
974 return NULL;
Sean Christopherson8d892312020-03-04 17:34:34 -0800975
976 if (function >= 0x40000000 && function <= 0x4fffffff)
977 class = kvm_find_cpuid_entry(vcpu, function & 0xffffff00, 0);
978 else if (function >= 0xc0000000)
979 class = kvm_find_cpuid_entry(vcpu, 0xc0000000, 0);
980 else
981 class = kvm_find_cpuid_entry(vcpu, function & 0x80000000, 0);
982
Sean Christopherson09c74312020-03-04 17:34:36 -0800983 if (class && function <= class->eax)
984 return NULL;
985
986 /*
987 * Leaf specific adjustments are also applied when redirecting to the
988 * max basic entry, e.g. if the max basic leaf is 0xb but there is no
989 * entry for CPUID.0xb.index (see below), then the output value for EDX
990 * needs to be pulled from CPUID.0xb.1.
991 */
992 *fn_ptr = basic->eax;
993
994 /*
995 * The class does not exist or the requested function is out of range;
996 * the effective CPUID entry is the max basic leaf. Note, the index of
997 * the original requested leaf is observed!
998 */
999 return kvm_find_cpuid_entry(vcpu, basic->eax, index);
Avi Kivity00b27a32011-11-23 16:30:32 +02001000}
1001
Yu Zhange911eb32017-08-24 20:27:52 +08001002bool kvm_cpuid(struct kvm_vcpu *vcpu, u32 *eax, u32 *ebx,
Sean Christophersonf91af512020-03-04 17:34:37 -08001003 u32 *ecx, u32 *edx, bool exact_only)
Avi Kivity00b27a32011-11-23 16:30:32 +02001004{
Jan Kiszkab7fb8482020-03-04 17:34:31 -08001005 u32 orig_function = *eax, function = *eax, index = *ecx;
Jim Mattson43561122019-09-25 17:04:17 -07001006 struct kvm_cpuid_entry2 *entry;
Sean Christopherson2b110b62020-03-17 12:53:54 -07001007 bool exact, used_max_basic = false;
Avi Kivity00b27a32011-11-23 16:30:32 +02001008
Jim Mattson43561122019-09-25 17:04:17 -07001009 entry = kvm_find_cpuid_entry(vcpu, function, index);
Sean Christophersonf91af512020-03-04 17:34:37 -08001010 exact = !!entry;
Sean Christopherson09c74312020-03-04 17:34:36 -08001011
Sean Christopherson2b110b62020-03-17 12:53:54 -07001012 if (!entry && !exact_only) {
Sean Christopherson09c74312020-03-04 17:34:36 -08001013 entry = get_out_of_range_cpuid_entry(vcpu, &function, index);
Sean Christopherson2b110b62020-03-17 12:53:54 -07001014 used_max_basic = !!entry;
1015 }
Sean Christopherson09c74312020-03-04 17:34:36 -08001016
Jim Mattson43561122019-09-25 17:04:17 -07001017 if (entry) {
1018 *eax = entry->eax;
1019 *ebx = entry->ebx;
1020 *ecx = entry->ecx;
1021 *edx = entry->edx;
Paolo Bonziniedef5c32019-11-18 12:23:00 -05001022 if (function == 7 && index == 0) {
1023 u64 data;
1024 if (!__kvm_get_msr(vcpu, MSR_IA32_TSX_CTRL, &data, true) &&
1025 (data & TSX_CTRL_CPUID_CLEAR))
1026 *ebx &= ~(F(RTM) | F(HLE));
1027 }
Jim Mattson43561122019-09-25 17:04:17 -07001028 } else {
Avi Kivity62046e52012-06-07 14:07:48 +03001029 *eax = *ebx = *ecx = *edx = 0;
Jim Mattson43561122019-09-25 17:04:17 -07001030 /*
1031 * When leaf 0BH or 1FH is defined, CL is pass-through
1032 * and EDX is always the x2APIC ID, even for undefined
1033 * subleaves. Index 1 will exist iff the leaf is
1034 * implemented, so we pass through CL iff leaf 1
1035 * exists. EDX can be copied from any existing index.
1036 */
1037 if (function == 0xb || function == 0x1f) {
1038 entry = kvm_find_cpuid_entry(vcpu, function, 1);
1039 if (entry) {
1040 *ecx = index & 0xff;
1041 *edx = entry->edx;
1042 }
1043 }
1044 }
Sean Christopherson2b110b62020-03-17 12:53:54 -07001045 trace_kvm_cpuid(orig_function, index, *eax, *ebx, *ecx, *edx, exact,
1046 used_max_basic);
Sean Christophersonf91af512020-03-04 17:34:37 -08001047 return exact;
Avi Kivity62046e52012-06-07 14:07:48 +03001048}
Julian Stecklina66f7b722012-12-05 15:26:19 +01001049EXPORT_SYMBOL_GPL(kvm_cpuid);
Avi Kivity62046e52012-06-07 14:07:48 +03001050
Kyle Huey6a908b62016-11-29 12:40:37 -08001051int kvm_emulate_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity62046e52012-06-07 14:07:48 +03001052{
Jiang Biao1e131752016-11-07 08:55:49 +08001053 u32 eax, ebx, ecx, edx;
Avi Kivity62046e52012-06-07 14:07:48 +03001054
Kyle Hueydb2336a2017-03-20 01:16:28 -07001055 if (cpuid_fault_enabled(vcpu) && !kvm_require_cpl(vcpu, 0))
1056 return 1;
1057
Sean Christophersonde3cd112019-04-30 10:36:17 -07001058 eax = kvm_rax_read(vcpu);
1059 ecx = kvm_rcx_read(vcpu);
Sean Christophersonf91af512020-03-04 17:34:37 -08001060 kvm_cpuid(vcpu, &eax, &ebx, &ecx, &edx, false);
Sean Christophersonde3cd112019-04-30 10:36:17 -07001061 kvm_rax_write(vcpu, eax);
1062 kvm_rbx_write(vcpu, ebx);
1063 kvm_rcx_write(vcpu, ecx);
1064 kvm_rdx_write(vcpu, edx);
Kyle Huey6affcbe2016-11-29 12:40:40 -08001065 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity00b27a32011-11-23 16:30:32 +02001066}
1067EXPORT_SYMBOL_GPL(kvm_emulate_cpuid);