blob: 08280d8a2ac982131cc7975fdc933764a4f895c7 [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 vcpu->arch.guest_xstate_size = XSAVE_HDR_SIZE + XSAVE_HDR_OFFSET;
90 } else {
Paolo Bonzinid7876f12013-10-02 16:06:15 +020091 vcpu->arch.guest_supported_xcr0 =
Sean Christophersoncfc48182020-03-02 15:56:23 -080092 (best->eax | ((u64)best->edx << 32)) & supported_xcr0;
Liu, Jinsong56c103e2014-02-21 17:39:02 +000093 vcpu->arch.guest_xstate_size = best->ebx =
Paolo Bonzini412a3c42014-12-03 14:38:01 +010094 xstate_required_size(vcpu->arch.xcr0, false);
Paolo Bonzini4344ee92013-10-02 16:06:16 +020095 }
Paolo Bonzinid7876f12013-10-02 16:06:15 +020096
Paolo Bonzini412a3c42014-12-03 14:38:01 +010097 best = kvm_find_cpuid_entry(vcpu, 0xD, 1);
Sean Christopherson4c615342020-03-02 15:56:30 -080098 if (best && (cpuid_entry_has(best, X86_FEATURE_XSAVES) ||
99 cpuid_entry_has(best, X86_FEATURE_XSAVEC)))
Paolo Bonzini412a3c42014-12-03 14:38:01 +0100100 best->ebx = xstate_required_size(vcpu->arch.xcr0, true);
101
Nadav Amitdd598092014-09-16 15:10:03 +0300102 /*
Yu Zhangfd8cb432017-08-24 20:27:56 +0800103 * The existing code assumes virtual address is 48-bit or 57-bit in the
104 * canonical address checks; exit if it is ever changed.
Nadav Amitdd598092014-09-16 15:10:03 +0300105 */
106 best = kvm_find_cpuid_entry(vcpu, 0x80000008, 0);
Yu Zhangfd8cb432017-08-24 20:27:56 +0800107 if (best) {
108 int vaddr_bits = (best->eax & 0xff00) >> 8;
109
110 if (vaddr_bits != 48 && vaddr_bits != 57 && vaddr_bits != 0)
111 return -EINVAL;
112 }
Nadav Amitdd598092014-09-16 15:10:03 +0300113
Wanpeng Licaa057a2018-03-12 04:53:03 -0700114 best = kvm_find_cpuid_entry(vcpu, KVM_CPUID_FEATURES, 0);
115 if (kvm_hlt_in_guest(vcpu->kvm) && best &&
116 (best->eax & (1 << KVM_FEATURE_PV_UNHALT)))
117 best->eax &= ~(1 << KVM_FEATURE_PV_UNHALT);
118
Wanpeng Li511a85562019-05-21 14:06:54 +0800119 if (!kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_MISC_ENABLE_NO_MWAIT)) {
120 best = kvm_find_cpuid_entry(vcpu, 0x1, 0);
Sean Christophersonb32666b2020-03-02 15:56:31 -0800121 if (best)
122 cpuid_entry_change(best, X86_FEATURE_MWAIT,
123 vcpu->arch.ia32_misc_enable_msr &
124 MSR_IA32_MISC_ENABLE_MWAIT);
Wanpeng Li511a85562019-05-21 14:06:54 +0800125 }
126
Eugene Korenevsky5a4f55c2015-03-29 23:56:12 +0300127 /* Update physical-address width */
128 vcpu->arch.maxphyaddr = cpuid_query_maxphyaddr(vcpu);
Yu Zhang855feb62017-08-24 20:27:55 +0800129 kvm_mmu_reset_context(vcpu);
Eugene Korenevsky5a4f55c2015-03-29 23:56:12 +0300130
Wei Huangc6702c92015-06-19 13:44:45 +0200131 kvm_pmu_refresh(vcpu);
Nadav Amitdd598092014-09-16 15:10:03 +0300132 return 0;
Avi Kivity00b27a32011-11-23 16:30:32 +0200133}
134
135static int is_efer_nx(void)
136{
Sean Christopherson91661982020-03-02 15:57:06 -0800137 return host_efer & EFER_NX;
Avi Kivity00b27a32011-11-23 16:30:32 +0200138}
139
140static 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 Christopherson4c615342020-03-02 15:56:30 -0800153 if (entry && cpuid_entry_has(entry, X86_FEATURE_NX) && !is_efer_nx()) {
Sean Christophersonb32666b2020-03-02 15:56:31 -0800154 cpuid_entry_clear(entry, X86_FEATURE_NX);
Avi Kivity00b27a32011-11-23 16:30:32 +0200155 printk(KERN_INFO "kvm: guest NX capability removed\n");
156 }
157}
158
Eugene Korenevsky5a4f55c2015-03-29 23:56:12 +0300159int 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;
169not_found:
170 return 36;
171}
172EXPORT_SYMBOL_GPL(cpuid_query_maxphyaddr);
173
Avi Kivity00b27a32011-11-23 16:30:32 +0200174/* when an old userspace process fills a new kernel module */
175int 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 Bonzini83676e92016-06-01 14:09:19 +0200180 struct kvm_cpuid_entry *cpuid_entries = NULL;
Avi Kivity00b27a32011-11-23 16:30:32 +0200181
182 r = -E2BIG;
183 if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
184 goto out;
185 r = -ENOMEM;
Paolo Bonzini83676e92016-06-01 14:09:19 +0200186 if (cpuid->nent) {
Kees Cook42bc47b2018-06-12 14:27:11 -0700187 cpuid_entries =
188 vmalloc(array_size(sizeof(struct kvm_cpuid_entry),
189 cpuid->nent));
Paolo Bonzini83676e92016-06-01 14:09:19 +0200190 if (!cpuid_entries)
191 goto out;
192 r = -EFAULT;
193 if (copy_from_user(cpuid_entries, entries,
194 cpuid->nent * sizeof(struct kvm_cpuid_entry)))
195 goto out;
196 }
Avi Kivity00b27a32011-11-23 16:30:32 +0200197 for (i = 0; i < cpuid->nent; i++) {
198 vcpu->arch.cpuid_entries[i].function = cpuid_entries[i].function;
199 vcpu->arch.cpuid_entries[i].eax = cpuid_entries[i].eax;
200 vcpu->arch.cpuid_entries[i].ebx = cpuid_entries[i].ebx;
201 vcpu->arch.cpuid_entries[i].ecx = cpuid_entries[i].ecx;
202 vcpu->arch.cpuid_entries[i].edx = cpuid_entries[i].edx;
203 vcpu->arch.cpuid_entries[i].index = 0;
204 vcpu->arch.cpuid_entries[i].flags = 0;
205 vcpu->arch.cpuid_entries[i].padding[0] = 0;
206 vcpu->arch.cpuid_entries[i].padding[1] = 0;
207 vcpu->arch.cpuid_entries[i].padding[2] = 0;
208 }
209 vcpu->arch.cpuid_nent = cpuid->nent;
210 cpuid_fix_nx_cap(vcpu);
Avi Kivity00b27a32011-11-23 16:30:32 +0200211 kvm_apic_set_version(vcpu);
212 kvm_x86_ops->cpuid_update(vcpu);
Nadav Amitdd598092014-09-16 15:10:03 +0300213 r = kvm_update_cpuid(vcpu);
Avi Kivity00b27a32011-11-23 16:30:32 +0200214
Avi Kivity00b27a32011-11-23 16:30:32 +0200215out:
Paolo Bonzini83676e92016-06-01 14:09:19 +0200216 vfree(cpuid_entries);
Avi Kivity00b27a32011-11-23 16:30:32 +0200217 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);
235 kvm_x86_ops->cpuid_update(vcpu);
Nadav Amitdd598092014-09-16 15:10:03 +0300236 r = kvm_update_cpuid(vcpu);
Avi Kivity00b27a32011-11-23 16:30:32 +0200237out:
238 return r;
239}
240
241int kvm_vcpu_ioctl_get_cpuid2(struct kvm_vcpu *vcpu,
242 struct kvm_cpuid2 *cpuid,
243 struct kvm_cpuid_entry2 __user *entries)
244{
245 int r;
246
247 r = -E2BIG;
248 if (cpuid->nent < vcpu->arch.cpuid_nent)
249 goto out;
250 r = -EFAULT;
251 if (copy_to_user(entries, &vcpu->arch.cpuid_entries,
252 vcpu->arch.cpuid_nent * sizeof(struct kvm_cpuid_entry2)))
253 goto out;
254 return 0;
255
256out:
257 cpuid->nent = vcpu->arch.cpuid_nent;
258 return r;
259}
260
Sean Christopherson66a69502020-03-02 15:56:41 -0800261static __always_inline void kvm_cpu_cap_mask(enum cpuid_leafs leaf, u32 mask)
262{
Sean Christophersond8577a42020-03-02 15:56:52 -0800263 const struct cpuid_reg cpuid = x86_feature_cpuid(leaf * 32);
264 struct kvm_cpuid_entry2 entry;
265
Sean Christopherson66a69502020-03-02 15:56:41 -0800266 reverse_cpuid_check(leaf);
267 kvm_cpu_caps[leaf] &= mask;
Sean Christophersond8577a42020-03-02 15:56:52 -0800268
269 cpuid_count(cpuid.function, cpuid.index,
270 &entry.eax, &entry.ebx, &entry.ecx, &entry.edx);
271
272 kvm_cpu_caps[leaf] &= *__cpuid_entry_get_reg(&entry, &cpuid);
Sean Christopherson66a69502020-03-02 15:56:41 -0800273}
274
275void kvm_set_cpu_caps(void)
276{
277 unsigned int f_nx = is_efer_nx() ? F(NX) : 0;
278#ifdef CONFIG_X86_64
279 unsigned int f_gbpages = F(GBPAGES);
280 unsigned int f_lm = F(LM);
281#else
282 unsigned int f_gbpages = 0;
283 unsigned int f_lm = 0;
284#endif
285
286 BUILD_BUG_ON(sizeof(kvm_cpu_caps) >
287 sizeof(boot_cpu_data.x86_capability));
288
289 memcpy(&kvm_cpu_caps, &boot_cpu_data.x86_capability,
290 sizeof(kvm_cpu_caps));
291
292 kvm_cpu_cap_mask(CPUID_1_ECX,
293 /*
294 * NOTE: MONITOR (and MWAIT) are emulated as NOP, but *not*
295 * advertised to guests via CPUID!
296 */
297 F(XMM3) | F(PCLMULQDQ) | 0 /* DTES64, MONITOR */ |
298 0 /* DS-CPL, VMX, SMX, EST */ |
299 0 /* TM2 */ | F(SSSE3) | 0 /* CNXT-ID */ | 0 /* Reserved */ |
300 F(FMA) | F(CX16) | 0 /* xTPR Update, PDCM */ |
301 F(PCID) | 0 /* Reserved, DCA */ | F(XMM4_1) |
302 F(XMM4_2) | F(X2APIC) | F(MOVBE) | F(POPCNT) |
303 0 /* Reserved*/ | F(AES) | F(XSAVE) | 0 /* OSXSAVE */ | F(AVX) |
304 F(F16C) | F(RDRAND)
305 );
Sean Christopherson93c380e2020-03-02 15:56:54 -0800306 /* KVM emulates x2apic in software irrespective of host support. */
307 kvm_cpu_cap_set(X86_FEATURE_X2APIC);
Sean Christopherson66a69502020-03-02 15:56:41 -0800308
309 kvm_cpu_cap_mask(CPUID_1_EDX,
310 F(FPU) | F(VME) | F(DE) | F(PSE) |
311 F(TSC) | F(MSR) | F(PAE) | F(MCE) |
312 F(CX8) | F(APIC) | 0 /* Reserved */ | F(SEP) |
313 F(MTRR) | F(PGE) | F(MCA) | F(CMOV) |
314 F(PAT) | F(PSE36) | 0 /* PSN */ | F(CLFLUSH) |
315 0 /* Reserved, DS, ACPI */ | F(MMX) |
316 F(FXSR) | F(XMM) | F(XMM2) | F(SELFSNOOP) |
317 0 /* HTT, TM, Reserved, PBE */
318 );
319
320 kvm_cpu_cap_mask(CPUID_7_0_EBX,
321 F(FSGSBASE) | F(BMI1) | F(HLE) | F(AVX2) | F(SMEP) |
322 F(BMI2) | F(ERMS) | 0 /*INVPCID*/ | F(RTM) | 0 /*MPX*/ | F(RDSEED) |
323 F(ADX) | F(SMAP) | F(AVX512IFMA) | F(AVX512F) | F(AVX512PF) |
324 F(AVX512ER) | F(AVX512CD) | F(CLFLUSHOPT) | F(CLWB) | F(AVX512DQ) |
325 F(SHA_NI) | F(AVX512BW) | F(AVX512VL) | 0 /*INTEL_PT*/
326 );
327
328 kvm_cpu_cap_mask(CPUID_7_ECX,
329 F(AVX512VBMI) | F(LA57) | 0 /*PKU*/ | 0 /*OSPKE*/ | F(RDPID) |
330 F(AVX512_VPOPCNTDQ) | F(UMIP) | F(AVX512_VBMI2) | F(GFNI) |
331 F(VAES) | F(VPCLMULQDQ) | F(AVX512_VNNI) | F(AVX512_BITALG) |
332 F(CLDEMOTE) | F(MOVDIRI) | F(MOVDIR64B) | 0 /*WAITPKG*/
333 );
334 /* Set LA57 based on hardware capability. */
335 if (cpuid_ecx(7) & F(LA57))
336 kvm_cpu_cap_set(X86_FEATURE_LA57);
337
338 kvm_cpu_cap_mask(CPUID_7_EDX,
339 F(AVX512_4VNNIW) | F(AVX512_4FMAPS) | F(SPEC_CTRL) |
340 F(SPEC_CTRL_SSBD) | F(ARCH_CAPABILITIES) | F(INTEL_STIBP) |
341 F(MD_CLEAR)
342 );
343
Sean Christopherson93c380e2020-03-02 15:56:54 -0800344 /* TSC_ADJUST and ARCH_CAPABILITIES are emulated in software. */
345 kvm_cpu_cap_set(X86_FEATURE_TSC_ADJUST);
346 kvm_cpu_cap_set(X86_FEATURE_ARCH_CAPABILITIES);
347
348 if (boot_cpu_has(X86_FEATURE_IBPB) && boot_cpu_has(X86_FEATURE_IBRS))
349 kvm_cpu_cap_set(X86_FEATURE_SPEC_CTRL);
350 if (boot_cpu_has(X86_FEATURE_STIBP))
351 kvm_cpu_cap_set(X86_FEATURE_INTEL_STIBP);
352 if (boot_cpu_has(X86_FEATURE_AMD_SSBD))
353 kvm_cpu_cap_set(X86_FEATURE_SPEC_CTRL_SSBD);
354
Sean Christopherson66a69502020-03-02 15:56:41 -0800355 kvm_cpu_cap_mask(CPUID_7_1_EAX,
356 F(AVX512_BF16)
357 );
358
359 kvm_cpu_cap_mask(CPUID_D_1_EAX,
360 F(XSAVEOPT) | F(XSAVEC) | F(XGETBV1) | F(XSAVES)
361 );
362
363 kvm_cpu_cap_mask(CPUID_8000_0001_ECX,
364 F(LAHF_LM) | F(CMP_LEGACY) | 0 /*SVM*/ | 0 /* ExtApicSpace */ |
365 F(CR8_LEGACY) | F(ABM) | F(SSE4A) | F(MISALIGNSSE) |
366 F(3DNOWPREFETCH) | F(OSVW) | 0 /* IBS */ | F(XOP) |
367 0 /* SKINIT, WDT, LWP */ | F(FMA4) | F(TBM) |
368 F(TOPOEXT) | F(PERFCTR_CORE)
369 );
370
371 kvm_cpu_cap_mask(CPUID_8000_0001_EDX,
372 F(FPU) | F(VME) | F(DE) | F(PSE) |
373 F(TSC) | F(MSR) | F(PAE) | F(MCE) |
374 F(CX8) | F(APIC) | 0 /* Reserved */ | F(SYSCALL) |
375 F(MTRR) | F(PGE) | F(MCA) | F(CMOV) |
376 F(PAT) | F(PSE36) | 0 /* Reserved */ |
377 f_nx | 0 /* Reserved */ | F(MMXEXT) | F(MMX) |
378 F(FXSR) | F(FXSR_OPT) | f_gbpages | F(RDTSCP) |
379 0 /* Reserved */ | f_lm | F(3DNOWEXT) | F(3DNOW)
380 );
381
382 if (!tdp_enabled && IS_ENABLED(CONFIG_X86_64))
383 kvm_cpu_cap_set(X86_FEATURE_GBPAGES);
384
385 kvm_cpu_cap_mask(CPUID_8000_0008_EBX,
386 F(CLZERO) | F(XSAVEERPTR) |
387 F(WBNOINVD) | F(AMD_IBPB) | F(AMD_IBRS) | F(AMD_SSBD) | F(VIRT_SSBD) |
388 F(AMD_SSB_NO) | F(AMD_STIBP) | F(AMD_STIBP_ALWAYS_ON)
389 );
390
Sean Christopherson9b58b982020-03-02 15:56:42 -0800391 /*
Sean Christopherson93c380e2020-03-02 15:56:54 -0800392 * AMD has separate bits for each SPEC_CTRL bit.
393 * arch/x86/kernel/cpu/bugs.c is kind enough to
394 * record that in cpufeatures so use them.
395 */
396 if (boot_cpu_has(X86_FEATURE_IBPB))
397 kvm_cpu_cap_set(X86_FEATURE_AMD_IBPB);
398 if (boot_cpu_has(X86_FEATURE_IBRS))
399 kvm_cpu_cap_set(X86_FEATURE_AMD_IBRS);
400 if (boot_cpu_has(X86_FEATURE_STIBP))
401 kvm_cpu_cap_set(X86_FEATURE_AMD_STIBP);
402 if (boot_cpu_has(X86_FEATURE_SPEC_CTRL_SSBD))
403 kvm_cpu_cap_set(X86_FEATURE_AMD_SSBD);
404 if (!boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS))
405 kvm_cpu_cap_set(X86_FEATURE_AMD_SSB_NO);
406 /*
407 * The preference is to use SPEC CTRL MSR instead of the
408 * VIRT_SPEC MSR.
409 */
410 if (boot_cpu_has(X86_FEATURE_LS_CFG_SSBD) &&
411 !boot_cpu_has(X86_FEATURE_AMD_SSBD))
412 kvm_cpu_cap_set(X86_FEATURE_VIRT_SSBD);
413
414 /*
Sean Christopherson9b58b982020-03-02 15:56:42 -0800415 * Hide all SVM features by default, SVM will set the cap bits for
416 * features it emulates and/or exposes for L1.
417 */
418 kvm_cpu_cap_mask(CPUID_8000_000A_EDX, 0);
419
Sean Christopherson66a69502020-03-02 15:56:41 -0800420 kvm_cpu_cap_mask(CPUID_C000_0001_EDX,
421 F(XSTORE) | F(XSTORE_EN) | F(XCRYPT) | F(XCRYPT_EN) |
422 F(ACE2) | F(ACE2_EN) | F(PHE) | F(PHE_EN) |
423 F(PMM) | F(PMM_EN)
424 );
425}
426EXPORT_SYMBOL_GPL(kvm_set_cpu_caps);
427
Sean Christophersone53c95e2020-03-02 15:56:19 -0800428struct kvm_cpuid_array {
429 struct kvm_cpuid_entry2 *entries;
430 const int maxnent;
431 int nent;
432};
433
434static struct kvm_cpuid_entry2 *do_host_cpuid(struct kvm_cpuid_array *array,
Sean Christophersonaa10a7d2020-03-02 15:56:16 -0800435 u32 function, u32 index)
Avi Kivity00b27a32011-11-23 16:30:32 +0200436{
Sean Christophersone53c95e2020-03-02 15:56:19 -0800437 struct kvm_cpuid_entry2 *entry;
438
439 if (array->nent >= array->maxnent)
Sean Christophersonaa10a7d2020-03-02 15:56:16 -0800440 return NULL;
Sean Christophersone53c95e2020-03-02 15:56:19 -0800441
442 entry = &array->entries[array->nent++];
Sean Christophersonaa10a7d2020-03-02 15:56:16 -0800443
Avi Kivity00b27a32011-11-23 16:30:32 +0200444 entry->function = function;
445 entry->index = index;
Paolo Bonziniab8bcf62019-06-24 10:23:33 +0200446 entry->flags = 0;
447
Avi Kivity00b27a32011-11-23 16:30:32 +0200448 cpuid_count(entry->function, entry->index,
449 &entry->eax, &entry->ebx, &entry->ecx, &entry->edx);
Paolo Bonzinid9aadaf2019-07-04 12:20:48 +0200450
451 switch (function) {
Paolo Bonzinid9aadaf2019-07-04 12:20:48 +0200452 case 4:
453 case 7:
454 case 0xb:
455 case 0xd:
Jim Mattsona06dcd62019-09-12 09:55:03 -0700456 case 0xf:
457 case 0x10:
458 case 0x12:
Paolo Bonzinid9aadaf2019-07-04 12:20:48 +0200459 case 0x14:
Jim Mattsona06dcd62019-09-12 09:55:03 -0700460 case 0x17:
461 case 0x18:
462 case 0x1f:
Paolo Bonzinid9aadaf2019-07-04 12:20:48 +0200463 case 0x8000001d:
464 entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
465 break;
466 }
Sean Christophersonaa10a7d2020-03-02 15:56:16 -0800467
468 return entry;
Avi Kivity00b27a32011-11-23 16:30:32 +0200469}
470
Sean Christophersone53c95e2020-03-02 15:56:19 -0800471static int __do_cpuid_func_emulated(struct kvm_cpuid_array *array, u32 func)
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200472{
Sean Christopherson7c7f9542020-03-02 15:56:56 -0800473 struct kvm_cpuid_entry2 *entry;
Sean Christophersone53c95e2020-03-02 15:56:19 -0800474
Sean Christopherson7c7f9542020-03-02 15:56:56 -0800475 if (array->nent >= array->maxnent)
476 return -E2BIG;
477
478 entry = &array->entries[array->nent];
Paolo Bonziniab8bcf62019-06-24 10:23:33 +0200479 entry->function = func;
480 entry->index = 0;
481 entry->flags = 0;
482
Borislav Petkov84cffe42013-10-29 12:54:56 +0100483 switch (func) {
484 case 0:
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +0200485 entry->eax = 7;
Sean Christophersone53c95e2020-03-02 15:56:19 -0800486 ++array->nent;
Borislav Petkov84cffe42013-10-29 12:54:56 +0100487 break;
488 case 1:
489 entry->ecx = F(MOVBE);
Sean Christophersone53c95e2020-03-02 15:56:19 -0800490 ++array->nent;
Borislav Petkov84cffe42013-10-29 12:54:56 +0100491 break;
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +0200492 case 7:
493 entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
Paolo Bonziniab8bcf62019-06-24 10:23:33 +0200494 entry->eax = 0;
495 entry->ecx = F(RDPID);
Sean Christophersone53c95e2020-03-02 15:56:19 -0800496 ++array->nent;
Borislav Petkov84cffe42013-10-29 12:54:56 +0100497 default:
498 break;
499 }
500
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200501 return 0;
502}
503
Sean Christophersone53c95e2020-03-02 15:56:19 -0800504static inline int __do_cpuid_func(struct kvm_cpuid_array *array, u32 function)
Avi Kivity00b27a32011-11-23 16:30:32 +0200505{
Sean Christophersone53c95e2020-03-02 15:56:19 -0800506 struct kvm_cpuid_entry2 *entry;
Sean Christopherson74fa0bc2020-03-02 15:56:17 -0800507 int r, i, max_idx;
Avi Kivity00b27a32011-11-23 16:30:32 +0200508
Avi Kivity00b27a32011-11-23 16:30:32 +0200509 /* all calls to cpuid_count() should be made on the same cpu */
510 get_cpu();
Sasha Levin831bf662011-11-28 11:20:29 +0200511
512 r = -E2BIG;
513
Sean Christophersone53c95e2020-03-02 15:56:19 -0800514 entry = do_host_cpuid(array, function, 0);
Sean Christopherson7c7f9542020-03-02 15:56:56 -0800515 if (!entry)
Sasha Levin831bf662011-11-28 11:20:29 +0200516 goto out;
517
Avi Kivity00b27a32011-11-23 16:30:32 +0200518 switch (function) {
519 case 0:
Like Xua87f2d32019-06-06 09:18:45 +0800520 /* Limited to the highest leaf implemented in KVM. */
521 entry->eax = min(entry->eax, 0x1fU);
Avi Kivity00b27a32011-11-23 16:30:32 +0200522 break;
523 case 1:
Sean Christophersonbd791992020-03-02 15:56:53 -0800524 cpuid_entry_override(entry, CPUID_1_EDX);
525 cpuid_entry_override(entry, CPUID_1_ECX);
Avi Kivity00b27a32011-11-23 16:30:32 +0200526 break;
Sean Christopherson74fa0bc2020-03-02 15:56:17 -0800527 case 2:
Sean Christophersonc571a142020-03-02 15:56:50 -0800528 /*
529 * On ancient CPUs, function 2 entries are STATEFUL. That is,
530 * CPUID(function=2, index=0) may return different results each
531 * time, with the least-significant byte in EAX enumerating the
532 * number of times software should do CPUID(2, 0).
533 *
Sean Christopherson7ff6c032020-03-02 15:56:51 -0800534 * Modern CPUs, i.e. every CPU KVM has *ever* run on are less
535 * idiotic. Intel's SDM states that EAX & 0xff "will always
536 * return 01H. Software should ignore this value and not
Sean Christophersonc571a142020-03-02 15:56:50 -0800537 * interpret it as an informational descriptor", while AMD's
538 * APM states that CPUID(2) is reserved.
Sean Christopherson7ff6c032020-03-02 15:56:51 -0800539 *
540 * WARN if a frankenstein CPU that supports virtualization and
541 * a stateful CPUID.0x2 is encountered.
Sean Christophersonc571a142020-03-02 15:56:50 -0800542 */
Sean Christopherson7ff6c032020-03-02 15:56:51 -0800543 WARN_ON_ONCE((entry->eax & 0xff) > 1);
Avi Kivity00b27a32011-11-23 16:30:32 +0200544 break;
Jim Mattson32a243d2019-03-27 13:15:36 -0700545 /* functions 4 and 0x8000001d have additional index. */
546 case 4:
Sean Christophersonc8629032020-03-02 15:56:18 -0800547 case 0x8000001d:
548 /*
549 * Read entries until the cache type in the previous entry is
550 * zero, i.e. indicates an invalid entry.
551 */
Sean Christophersone53c95e2020-03-02 15:56:19 -0800552 for (i = 1; entry->eax & 0x1f; ++i) {
553 entry = do_host_cpuid(array, function, i);
554 if (!entry)
Sean Christopherson0fc62672020-03-02 15:56:08 -0800555 goto out;
Avi Kivity00b27a32011-11-23 16:30:32 +0200556 }
557 break;
Jan Kiszkae453aa02015-05-24 17:22:38 +0200558 case 6: /* Thermal management */
559 entry->eax = 0x4; /* allow ARAT */
560 entry->ebx = 0;
561 entry->ecx = 0;
562 entry->edx = 0;
563 break;
Paolo Bonzini54d360d2019-07-04 12:18:13 +0200564 /* function 7 has additional index. */
Sean Christopherson74fa0bc2020-03-02 15:56:17 -0800565 case 7:
Sean Christopherson09f628a2020-03-02 15:56:48 -0800566 entry->eax = min(entry->eax, 1u);
Sean Christophersonbd791992020-03-02 15:56:53 -0800567 cpuid_entry_override(entry, CPUID_7_0_EBX);
568 cpuid_entry_override(entry, CPUID_7_ECX);
569 cpuid_entry_override(entry, CPUID_7_EDX);
Sean Christopherson09f628a2020-03-02 15:56:48 -0800570
Sean Christophersonbcf600c2020-03-02 15:56:49 -0800571 /* KVM only supports 0x7.0 and 0x7.1, capped above via min(). */
572 if (entry->eax == 1) {
573 entry = do_host_cpuid(array, function, 1);
Sean Christophersone53c95e2020-03-02 15:56:19 -0800574 if (!entry)
Paolo Bonzini54d360d2019-07-04 12:18:13 +0200575 goto out;
576
Sean Christophersonbd791992020-03-02 15:56:53 -0800577 cpuid_entry_override(entry, CPUID_7_1_EAX);
Sean Christopherson09f628a2020-03-02 15:56:48 -0800578 entry->ebx = 0;
579 entry->ecx = 0;
580 entry->edx = 0;
Paolo Bonzini54d360d2019-07-04 12:18:13 +0200581 }
Avi Kivity00b27a32011-11-23 16:30:32 +0200582 break;
Avi Kivity00b27a32011-11-23 16:30:32 +0200583 case 9:
584 break;
Gleb Natapova6c06ed2011-11-10 14:57:28 +0200585 case 0xa: { /* Architectural Performance Monitoring */
586 struct x86_pmu_capability cap;
587 union cpuid10_eax eax;
588 union cpuid10_edx edx;
589
590 perf_get_x86_pmu_capability(&cap);
591
592 /*
593 * Only support guest architectural pmu on a host
594 * with architectural pmu.
595 */
596 if (!cap.version)
597 memset(&cap, 0, sizeof(cap));
598
599 eax.split.version_id = min(cap.version, 2);
600 eax.split.num_counters = cap.num_counters_gp;
601 eax.split.bit_width = cap.bit_width_gp;
602 eax.split.mask_length = cap.events_mask_len;
603
604 edx.split.num_counters_fixed = cap.num_counters_fixed;
605 edx.split.bit_width_fixed = cap.bit_width_fixed;
606 edx.split.reserved = 0;
607
608 entry->eax = eax.full;
609 entry->ebx = cap.events_mask;
610 entry->ecx = 0;
611 entry->edx = edx.full;
612 break;
613 }
Like Xua87f2d32019-06-06 09:18:45 +0800614 /*
615 * Per Intel's SDM, the 0x1f is a superset of 0xb,
616 * thus they can be handled by common code.
617 */
618 case 0x1f:
Sean Christopherson74fa0bc2020-03-02 15:56:17 -0800619 case 0xb:
Jim Mattsona1a640b2019-09-25 11:17:14 -0700620 /*
Sean Christophersone53c95e2020-03-02 15:56:19 -0800621 * Populate entries until the level type (ECX[15:8]) of the
622 * previous entry is zero. Note, CPUID EAX.{0x1f,0xb}.0 is
623 * the starting entry, filled by the primary do_host_cpuid().
Jim Mattsona1a640b2019-09-25 11:17:14 -0700624 */
Sean Christophersone53c95e2020-03-02 15:56:19 -0800625 for (i = 1; entry->ecx & 0xff00; ++i) {
626 entry = do_host_cpuid(array, function, i);
627 if (!entry)
Sasha Levin831bf662011-11-28 11:20:29 +0200628 goto out;
Avi Kivity00b27a32011-11-23 16:30:32 +0200629 }
630 break;
Sean Christophersoncfc48182020-03-02 15:56:23 -0800631 case 0xd:
632 entry->eax &= supported_xcr0;
633 entry->ebx = xstate_required_size(supported_xcr0, false);
Radim Krčmáře08e8332014-12-04 18:30:41 +0100634 entry->ecx = entry->ebx;
Sean Christophersoncfc48182020-03-02 15:56:23 -0800635 entry->edx &= supported_xcr0 >> 32;
636 if (!supported_xcr0)
Paolo Bonzinib65d6e12014-11-21 18:13:26 +0100637 break;
638
Sean Christophersone53c95e2020-03-02 15:56:19 -0800639 entry = do_host_cpuid(array, function, 1);
640 if (!entry)
Sean Christopherson3dc4a9c2020-03-02 15:56:09 -0800641 goto out;
642
Sean Christophersonbd791992020-03-02 15:56:53 -0800643 cpuid_entry_override(entry, CPUID_D_1_EAX);
Sean Christophersone53c95e2020-03-02 15:56:19 -0800644 if (entry->eax & (F(XSAVES)|F(XSAVEC)))
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100645 entry->ebx = xstate_required_size(supported_xcr0 | supported_xss,
646 true);
647 else {
648 WARN_ON_ONCE(supported_xss != 0);
Sean Christophersone53c95e2020-03-02 15:56:19 -0800649 entry->ebx = 0;
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100650 }
651 entry->ecx &= supported_xss;
652 entry->edx &= supported_xss >> 32;
Sean Christopherson3dc4a9c2020-03-02 15:56:09 -0800653
Sean Christopherson0eee8f92020-03-02 15:56:21 -0800654 for (i = 2; i < 64; ++i) {
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100655 bool s_state;
656 if (supported_xcr0 & BIT_ULL(i))
657 s_state = false;
658 else if (supported_xss & BIT_ULL(i))
659 s_state = true;
660 else
Sean Christopherson1893c942020-03-02 15:56:10 -0800661 continue;
Sean Christopherson3dc4a9c2020-03-02 15:56:09 -0800662
Sean Christopherson0eee8f92020-03-02 15:56:21 -0800663 entry = do_host_cpuid(array, function, i);
Sean Christophersone53c95e2020-03-02 15:56:19 -0800664 if (!entry)
Sasha Levin831bf662011-11-28 11:20:29 +0200665 goto out;
666
Sean Christopherson91001d42020-03-02 15:56:11 -0800667 /*
Sean Christophersoncfc48182020-03-02 15:56:23 -0800668 * The supported check above should have filtered out
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100669 * invalid sub-leafs. Only valid sub-leafs should
Sean Christopherson91001d42020-03-02 15:56:11 -0800670 * reach this point, and they should have a non-zero
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100671 * save state size. Furthermore, check whether the
672 * processor agrees with supported_xcr0/supported_xss
673 * on whether this is an XCR0- or IA32_XSS-managed area.
Sean Christopherson91001d42020-03-02 15:56:11 -0800674 */
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100675 if (WARN_ON_ONCE(!entry->eax || (entry->ecx & 0x1) != s_state)) {
Sean Christophersone53c95e2020-03-02 15:56:19 -0800676 --array->nent;
Sean Christopherson3dc4a9c2020-03-02 15:56:09 -0800677 continue;
Sean Christopherson8b2fc442020-03-02 15:56:12 -0800678 }
Sean Christophersone53c95e2020-03-02 15:56:19 -0800679 entry->edx = 0;
Avi Kivity00b27a32011-11-23 16:30:32 +0200680 }
681 break;
Chao Peng86f52012018-10-24 16:05:11 +0800682 /* Intel PT */
Sean Christopherson74fa0bc2020-03-02 15:56:17 -0800683 case 0x14:
Sean Christophersondd69cc22020-03-02 15:56:55 -0800684 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT)) {
Sean Christopherson73920792020-03-02 15:56:26 -0800685 entry->eax = entry->ebx = entry->ecx = entry->edx = 0;
Chao Peng86f52012018-10-24 16:05:11 +0800686 break;
Sean Christopherson73920792020-03-02 15:56:26 -0800687 }
Chao Peng86f52012018-10-24 16:05:11 +0800688
Sean Christopherson74fa0bc2020-03-02 15:56:17 -0800689 for (i = 1, max_idx = entry->eax; i <= max_idx; ++i) {
Sean Christophersone53c95e2020-03-02 15:56:19 -0800690 if (!do_host_cpuid(array, function, i))
Chao Peng86f52012018-10-24 16:05:11 +0800691 goto out;
Chao Peng86f52012018-10-24 16:05:11 +0800692 }
693 break;
Avi Kivity00b27a32011-11-23 16:30:32 +0200694 case KVM_CPUID_SIGNATURE: {
Mathias Krause326d07c2012-08-30 01:30:13 +0200695 static const char signature[12] = "KVMKVMKVM\0\0";
696 const u32 *sigptr = (const u32 *)signature;
Michael S. Tsirkin57c22e52012-05-02 17:55:56 +0300697 entry->eax = KVM_CPUID_FEATURES;
Avi Kivity00b27a32011-11-23 16:30:32 +0200698 entry->ebx = sigptr[0];
699 entry->ecx = sigptr[1];
700 entry->edx = sigptr[2];
701 break;
702 }
703 case KVM_CPUID_FEATURES:
704 entry->eax = (1 << KVM_FEATURE_CLOCKSOURCE) |
705 (1 << KVM_FEATURE_NOP_IO_DELAY) |
706 (1 << KVM_FEATURE_CLOCKSOURCE2) |
707 (1 << KVM_FEATURE_ASYNC_PF) |
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300708 (1 << KVM_FEATURE_PV_EOI) |
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +0530709 (1 << KVM_FEATURE_CLOCKSOURCE_STABLE_BIT) |
Wanpeng Lif38a7b72017-12-12 17:33:04 -0800710 (1 << KVM_FEATURE_PV_UNHALT) |
Radim Krčmářfe2a3022018-02-01 22:16:21 +0100711 (1 << KVM_FEATURE_PV_TLB_FLUSH) |
Wanpeng Li4180bf12018-07-23 14:39:54 +0800712 (1 << KVM_FEATURE_ASYNC_PF_VMEXIT) |
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -0300713 (1 << KVM_FEATURE_PV_SEND_IPI) |
Wanpeng Li32b72ec2019-06-11 20:23:50 +0800714 (1 << KVM_FEATURE_POLL_CONTROL) |
715 (1 << KVM_FEATURE_PV_SCHED_YIELD);
Avi Kivity00b27a32011-11-23 16:30:32 +0200716
717 if (sched_info_on())
718 entry->eax |= (1 << KVM_FEATURE_STEAL_TIME);
719
720 entry->ebx = 0;
721 entry->ecx = 0;
722 entry->edx = 0;
723 break;
724 case 0x80000000:
Brijesh Singh8765d752017-12-04 10:57:25 -0600725 entry->eax = min(entry->eax, 0x8000001f);
Avi Kivity00b27a32011-11-23 16:30:32 +0200726 break;
727 case 0x80000001:
Sean Christophersonbd791992020-03-02 15:56:53 -0800728 cpuid_entry_override(entry, CPUID_8000_0001_EDX);
729 cpuid_entry_override(entry, CPUID_8000_0001_ECX);
Avi Kivity00b27a32011-11-23 16:30:32 +0200730 break;
Marcelo Tosattie4c9a5a12014-04-26 22:30:23 -0300731 case 0x80000007: /* Advanced power management */
732 /* invariant TSC is CPUID.80000007H:EDX[8] */
733 entry->edx &= (1 << 8);
734 /* mask against host */
735 entry->edx &= boot_cpu_data.x86_power;
736 entry->eax = entry->ebx = entry->ecx = 0;
737 break;
Avi Kivity00b27a32011-11-23 16:30:32 +0200738 case 0x80000008: {
739 unsigned g_phys_as = (entry->eax >> 16) & 0xff;
740 unsigned virt_as = max((entry->eax >> 8) & 0xff, 48U);
741 unsigned phys_as = entry->eax & 0xff;
742
743 if (!g_phys_as)
744 g_phys_as = phys_as;
745 entry->eax = g_phys_as | (virt_as << 8);
Ashok Raj15d45072018-02-01 22:59:43 +0100746 entry->edx = 0;
Sean Christophersonbd791992020-03-02 15:56:53 -0800747 cpuid_entry_override(entry, CPUID_8000_0008_EBX);
Avi Kivity00b27a32011-11-23 16:30:32 +0200748 break;
749 }
Sean Christopherson25703872020-03-02 15:57:09 -0800750 case 0x8000000A:
751 if (!kvm_cpu_cap_has(X86_FEATURE_SVM)) {
752 entry->eax = entry->ebx = entry->ecx = entry->edx = 0;
753 break;
754 }
755 entry->eax = 1; /* SVM revision 1 */
756 entry->ebx = 8; /* Lets support 8 ASIDs in case we add proper
757 ASID emulation to nested SVM */
758 entry->ecx = 0; /* Reserved */
759 cpuid_entry_override(entry, CPUID_8000_000A_EDX);
760 break;
Avi Kivity00b27a32011-11-23 16:30:32 +0200761 case 0x80000019:
762 entry->ecx = entry->edx = 0;
763 break;
764 case 0x8000001a:
Jim Mattson382409b2019-03-27 13:15:37 -0700765 case 0x8000001e:
Avi Kivity00b27a32011-11-23 16:30:32 +0200766 break;
Peter Gondac1de0f22019-11-21 12:33:43 -0800767 /* Support memory encryption cpuid if host supports it */
768 case 0x8000001F:
769 if (!boot_cpu_has(X86_FEATURE_SEV))
770 entry->eax = entry->ebx = entry->ecx = entry->edx = 0;
771 break;
Avi Kivity00b27a32011-11-23 16:30:32 +0200772 /*Add support for Centaur's CPUID instruction*/
773 case 0xC0000000:
774 /*Just support up to 0xC0000004 now*/
775 entry->eax = min(entry->eax, 0xC0000004);
776 break;
777 case 0xC0000001:
Sean Christophersonbd791992020-03-02 15:56:53 -0800778 cpuid_entry_override(entry, CPUID_C000_0001_EDX);
Avi Kivity00b27a32011-11-23 16:30:32 +0200779 break;
780 case 3: /* Processor serial number */
781 case 5: /* MONITOR/MWAIT */
Avi Kivity00b27a32011-11-23 16:30:32 +0200782 case 0xC0000002:
783 case 0xC0000003:
784 case 0xC0000004:
785 default:
786 entry->eax = entry->ebx = entry->ecx = entry->edx = 0;
787 break;
788 }
789
Sasha Levin831bf662011-11-28 11:20:29 +0200790 r = 0;
791
792out:
Avi Kivity00b27a32011-11-23 16:30:32 +0200793 put_cpu();
Sasha Levin831bf662011-11-28 11:20:29 +0200794
795 return r;
Avi Kivity00b27a32011-11-23 16:30:32 +0200796}
797
Sean Christophersone53c95e2020-03-02 15:56:19 -0800798static int do_cpuid_func(struct kvm_cpuid_array *array, u32 func,
799 unsigned int type)
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200800{
801 if (type == KVM_GET_EMULATED_CPUID)
Sean Christophersone53c95e2020-03-02 15:56:19 -0800802 return __do_cpuid_func_emulated(array, func);
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200803
Sean Christophersone53c95e2020-03-02 15:56:19 -0800804 return __do_cpuid_func(array, func);
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200805}
806
Sean Christopherson8b860792020-03-02 15:56:06 -0800807#define CENTAUR_CPUID_SIGNATURE 0xC0000000
Sasha Levin831bf662011-11-28 11:20:29 +0200808
Sean Christophersone53c95e2020-03-02 15:56:19 -0800809static int get_cpuid_func(struct kvm_cpuid_array *array, u32 func,
810 unsigned int type)
Sean Christopherson619a17f2020-03-02 15:56:05 -0800811{
812 u32 limit;
813 int r;
814
Sean Christopherson8b860792020-03-02 15:56:06 -0800815 if (func == CENTAUR_CPUID_SIGNATURE &&
816 boot_cpu_data.x86_vendor != X86_VENDOR_CENTAUR)
817 return 0;
818
Sean Christophersone53c95e2020-03-02 15:56:19 -0800819 r = do_cpuid_func(array, func, type);
Sean Christopherson619a17f2020-03-02 15:56:05 -0800820 if (r)
821 return r;
822
Sean Christophersone53c95e2020-03-02 15:56:19 -0800823 limit = array->entries[array->nent - 1].eax;
Sean Christopherson619a17f2020-03-02 15:56:05 -0800824 for (func = func + 1; func <= limit; ++func) {
Sean Christophersone53c95e2020-03-02 15:56:19 -0800825 r = do_cpuid_func(array, func, type);
Sean Christopherson619a17f2020-03-02 15:56:05 -0800826 if (r)
827 break;
828 }
829
830 return r;
831}
832
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200833static bool sanity_check_entries(struct kvm_cpuid_entry2 __user *entries,
834 __u32 num_entries, unsigned int ioctl_type)
835{
836 int i;
Borislav Petkov1b2ca422013-11-06 15:46:02 +0100837 __u32 pad[3];
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200838
839 if (ioctl_type != KVM_GET_EMULATED_CPUID)
840 return false;
841
842 /*
843 * We want to make sure that ->padding is being passed clean from
844 * userspace in case we want to use it for something in the future.
845 *
846 * Sadly, this wasn't enforced for KVM_GET_SUPPORTED_CPUID and so we
847 * have to give ourselves satisfied only with the emulated side. /me
848 * sheds a tear.
849 */
850 for (i = 0; i < num_entries; i++) {
Borislav Petkov1b2ca422013-11-06 15:46:02 +0100851 if (copy_from_user(pad, entries[i].padding, sizeof(pad)))
852 return true;
853
854 if (pad[0] || pad[1] || pad[2])
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200855 return true;
856 }
857 return false;
858}
859
860int kvm_dev_ioctl_get_cpuid(struct kvm_cpuid2 *cpuid,
861 struct kvm_cpuid_entry2 __user *entries,
862 unsigned int type)
Avi Kivity00b27a32011-11-23 16:30:32 +0200863{
Sean Christopherson8b860792020-03-02 15:56:06 -0800864 static const u32 funcs[] = {
865 0, 0x80000000, CENTAUR_CPUID_SIGNATURE, KVM_CPUID_SIGNATURE,
Sasha Levin831bf662011-11-28 11:20:29 +0200866 };
Avi Kivity00b27a32011-11-23 16:30:32 +0200867
Sean Christophersone53c95e2020-03-02 15:56:19 -0800868 struct kvm_cpuid_array array = {
869 .nent = 0,
870 .maxnent = cpuid->nent,
871 };
872 int r, i;
Sean Christophersond5a661d2020-03-02 15:56:07 -0800873
Avi Kivity00b27a32011-11-23 16:30:32 +0200874 if (cpuid->nent < 1)
Sean Christophersond5a661d2020-03-02 15:56:07 -0800875 return -E2BIG;
Avi Kivity00b27a32011-11-23 16:30:32 +0200876 if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
877 cpuid->nent = KVM_MAX_CPUID_ENTRIES;
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200878
879 if (sanity_check_entries(entries, cpuid->nent, type))
880 return -EINVAL;
881
Sean Christophersone53c95e2020-03-02 15:56:19 -0800882 array.entries = vzalloc(array_size(sizeof(struct kvm_cpuid_entry2),
Kees Cookfad953c2018-06-12 14:27:37 -0700883 cpuid->nent));
Sean Christophersone53c95e2020-03-02 15:56:19 -0800884 if (!array.entries)
Sean Christophersond5a661d2020-03-02 15:56:07 -0800885 return -ENOMEM;
Avi Kivity00b27a32011-11-23 16:30:32 +0200886
Sean Christopherson8b860792020-03-02 15:56:06 -0800887 for (i = 0; i < ARRAY_SIZE(funcs); i++) {
Sean Christophersone53c95e2020-03-02 15:56:19 -0800888 r = get_cpuid_func(&array, funcs[i], type);
Sasha Levin831bf662011-11-28 11:20:29 +0200889 if (r)
Avi Kivity00b27a32011-11-23 16:30:32 +0200890 goto out_free;
891 }
Sean Christophersone53c95e2020-03-02 15:56:19 -0800892 cpuid->nent = array.nent;
Avi Kivity00b27a32011-11-23 16:30:32 +0200893
Sean Christophersone53c95e2020-03-02 15:56:19 -0800894 if (copy_to_user(entries, array.entries,
895 array.nent * sizeof(struct kvm_cpuid_entry2)))
Sean Christophersond5a661d2020-03-02 15:56:07 -0800896 r = -EFAULT;
Avi Kivity00b27a32011-11-23 16:30:32 +0200897
898out_free:
Sean Christophersone53c95e2020-03-02 15:56:19 -0800899 vfree(array.entries);
Avi Kivity00b27a32011-11-23 16:30:32 +0200900 return r;
901}
902
Avi Kivity00b27a32011-11-23 16:30:32 +0200903struct kvm_cpuid_entry2 *kvm_find_cpuid_entry(struct kvm_vcpu *vcpu,
904 u32 function, u32 index)
905{
Sean Christopherson7ff6c032020-03-02 15:56:51 -0800906 struct kvm_cpuid_entry2 *e;
Avi Kivity00b27a32011-11-23 16:30:32 +0200907 int i;
Avi Kivity00b27a32011-11-23 16:30:32 +0200908
909 for (i = 0; i < vcpu->arch.cpuid_nent; ++i) {
Avi Kivity00b27a32011-11-23 16:30:32 +0200910 e = &vcpu->arch.cpuid_entries[i];
Sean Christopherson7ff6c032020-03-02 15:56:51 -0800911
912 if (e->function == function && (e->index == index ||
913 !(e->flags & KVM_CPUID_FLAG_SIGNIFCANT_INDEX)))
914 return e;
Avi Kivity00b27a32011-11-23 16:30:32 +0200915 }
Sean Christopherson7ff6c032020-03-02 15:56:51 -0800916 return NULL;
Avi Kivity00b27a32011-11-23 16:30:32 +0200917}
918EXPORT_SYMBOL_GPL(kvm_find_cpuid_entry);
919
Avi Kivity00b27a32011-11-23 16:30:32 +0200920/*
Sean Christopherson8d892312020-03-04 17:34:34 -0800921 * Intel CPUID semantics treats any query for an out-of-range leaf as if the
922 * highest basic leaf (i.e. CPUID.0H:EAX) were requested. AMD CPUID semantics
923 * returns all zeroes for any undefined leaf, whether or not the leaf is in
924 * range. Centaur/VIA follows Intel semantics.
925 *
926 * A leaf is considered out-of-range if its function is higher than the maximum
927 * supported leaf of its associated class or if its associated class does not
928 * exist.
929 *
930 * There are three primary classes to be considered, with their respective
931 * ranges described as "<base> - <top>[,<base2> - <top2>] inclusive. A primary
932 * class exists if a guest CPUID entry for its <base> leaf exists. For a given
933 * class, CPUID.<base>.EAX contains the max supported leaf for the class.
934 *
935 * - Basic: 0x00000000 - 0x3fffffff, 0x50000000 - 0x7fffffff
936 * - Hypervisor: 0x40000000 - 0x4fffffff
937 * - Extended: 0x80000000 - 0xbfffffff
938 * - Centaur: 0xc0000000 - 0xcfffffff
939 *
940 * The Hypervisor class is further subdivided into sub-classes that each act as
941 * their own indepdent class associated with a 0x100 byte range. E.g. if Qemu
942 * is advertising support for both HyperV and KVM, the resulting Hypervisor
943 * CPUID sub-classes are:
944 *
945 * - HyperV: 0x40000000 - 0x400000ff
946 * - KVM: 0x40000100 - 0x400001ff
Avi Kivity00b27a32011-11-23 16:30:32 +0200947 */
Sean Christopherson09c74312020-03-04 17:34:36 -0800948static struct kvm_cpuid_entry2 *
949get_out_of_range_cpuid_entry(struct kvm_vcpu *vcpu, u32 *fn_ptr, u32 index)
Avi Kivity00b27a32011-11-23 16:30:32 +0200950{
Sean Christopherson8d892312020-03-04 17:34:34 -0800951 struct kvm_cpuid_entry2 *basic, *class;
Sean Christopherson09c74312020-03-04 17:34:36 -0800952 u32 function = *fn_ptr;
Avi Kivity00b27a32011-11-23 16:30:32 +0200953
Sean Christopherson8d892312020-03-04 17:34:34 -0800954 basic = kvm_find_cpuid_entry(vcpu, 0, 0);
955 if (!basic)
Sean Christopherson09c74312020-03-04 17:34:36 -0800956 return NULL;
957
958 if (is_guest_vendor_amd(basic->ebx, basic->ecx, basic->edx) ||
959 is_guest_vendor_hygon(basic->ebx, basic->ecx, basic->edx))
960 return NULL;
Sean Christopherson8d892312020-03-04 17:34:34 -0800961
962 if (function >= 0x40000000 && function <= 0x4fffffff)
963 class = kvm_find_cpuid_entry(vcpu, function & 0xffffff00, 0);
964 else if (function >= 0xc0000000)
965 class = kvm_find_cpuid_entry(vcpu, 0xc0000000, 0);
966 else
967 class = kvm_find_cpuid_entry(vcpu, function & 0x80000000, 0);
968
Sean Christopherson09c74312020-03-04 17:34:36 -0800969 if (class && function <= class->eax)
970 return NULL;
971
972 /*
973 * Leaf specific adjustments are also applied when redirecting to the
974 * max basic entry, e.g. if the max basic leaf is 0xb but there is no
975 * entry for CPUID.0xb.index (see below), then the output value for EDX
976 * needs to be pulled from CPUID.0xb.1.
977 */
978 *fn_ptr = basic->eax;
979
980 /*
981 * The class does not exist or the requested function is out of range;
982 * the effective CPUID entry is the max basic leaf. Note, the index of
983 * the original requested leaf is observed!
984 */
985 return kvm_find_cpuid_entry(vcpu, basic->eax, index);
Avi Kivity00b27a32011-11-23 16:30:32 +0200986}
987
Yu Zhange911eb32017-08-24 20:27:52 +0800988bool kvm_cpuid(struct kvm_vcpu *vcpu, u32 *eax, u32 *ebx,
Sean Christophersonf91af512020-03-04 17:34:37 -0800989 u32 *ecx, u32 *edx, bool exact_only)
Avi Kivity00b27a32011-11-23 16:30:32 +0200990{
Jan Kiszkab7fb8482020-03-04 17:34:31 -0800991 u32 orig_function = *eax, function = *eax, index = *ecx;
Jim Mattson43561122019-09-25 17:04:17 -0700992 struct kvm_cpuid_entry2 *entry;
Sean Christophersonf91af512020-03-04 17:34:37 -0800993 bool exact;
Avi Kivity00b27a32011-11-23 16:30:32 +0200994
Jim Mattson43561122019-09-25 17:04:17 -0700995 entry = kvm_find_cpuid_entry(vcpu, function, index);
Sean Christophersonf91af512020-03-04 17:34:37 -0800996 exact = !!entry;
Sean Christopherson09c74312020-03-04 17:34:36 -0800997
Sean Christophersonf91af512020-03-04 17:34:37 -0800998 if (!entry && !exact_only)
Sean Christopherson09c74312020-03-04 17:34:36 -0800999 entry = get_out_of_range_cpuid_entry(vcpu, &function, index);
1000
Jim Mattson43561122019-09-25 17:04:17 -07001001 if (entry) {
1002 *eax = entry->eax;
1003 *ebx = entry->ebx;
1004 *ecx = entry->ecx;
1005 *edx = entry->edx;
Paolo Bonziniedef5c32019-11-18 12:23:00 -05001006 if (function == 7 && index == 0) {
1007 u64 data;
1008 if (!__kvm_get_msr(vcpu, MSR_IA32_TSX_CTRL, &data, true) &&
1009 (data & TSX_CTRL_CPUID_CLEAR))
1010 *ebx &= ~(F(RTM) | F(HLE));
1011 }
Jim Mattson43561122019-09-25 17:04:17 -07001012 } else {
Avi Kivity62046e52012-06-07 14:07:48 +03001013 *eax = *ebx = *ecx = *edx = 0;
Jim Mattson43561122019-09-25 17:04:17 -07001014 /*
1015 * When leaf 0BH or 1FH is defined, CL is pass-through
1016 * and EDX is always the x2APIC ID, even for undefined
1017 * subleaves. Index 1 will exist iff the leaf is
1018 * implemented, so we pass through CL iff leaf 1
1019 * exists. EDX can be copied from any existing index.
1020 */
1021 if (function == 0xb || function == 0x1f) {
1022 entry = kvm_find_cpuid_entry(vcpu, function, 1);
1023 if (entry) {
1024 *ecx = index & 0xff;
1025 *edx = entry->edx;
1026 }
1027 }
1028 }
Sean Christophersonf91af512020-03-04 17:34:37 -08001029 trace_kvm_cpuid(orig_function, *eax, *ebx, *ecx, *edx, exact);
1030 return exact;
Avi Kivity62046e52012-06-07 14:07:48 +03001031}
Julian Stecklina66f7b722012-12-05 15:26:19 +01001032EXPORT_SYMBOL_GPL(kvm_cpuid);
Avi Kivity62046e52012-06-07 14:07:48 +03001033
Kyle Huey6a908b62016-11-29 12:40:37 -08001034int kvm_emulate_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity62046e52012-06-07 14:07:48 +03001035{
Jiang Biao1e131752016-11-07 08:55:49 +08001036 u32 eax, ebx, ecx, edx;
Avi Kivity62046e52012-06-07 14:07:48 +03001037
Kyle Hueydb2336a2017-03-20 01:16:28 -07001038 if (cpuid_fault_enabled(vcpu) && !kvm_require_cpl(vcpu, 0))
1039 return 1;
1040
Sean Christophersonde3cd112019-04-30 10:36:17 -07001041 eax = kvm_rax_read(vcpu);
1042 ecx = kvm_rcx_read(vcpu);
Sean Christophersonf91af512020-03-04 17:34:37 -08001043 kvm_cpuid(vcpu, &eax, &ebx, &ecx, &edx, false);
Sean Christophersonde3cd112019-04-30 10:36:17 -07001044 kvm_rax_write(vcpu, eax);
1045 kvm_rbx_write(vcpu, ebx);
1046 kvm_rcx_write(vcpu, ecx);
1047 kvm_rdx_write(vcpu, edx);
Kyle Huey6affcbe2016-11-29 12:40:40 -08001048 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity00b27a32011-11-23 16:30:32 +02001049}
1050EXPORT_SYMBOL_GPL(kvm_emulate_cpuid);