blob: f6f760d4800d91571923002a4e26fb386fb4e6c0 [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);
Xiaoyao Li0d3b2ba2020-07-08 14:50:48 +080063 if (best) {
64 /* Update OSXSAVE bit */
65 if (boot_cpu_has(X86_FEATURE_XSAVE))
66 cpuid_entry_change(best, X86_FEATURE_OSXSAVE,
Sean Christophersonb32666b2020-03-02 15:56:31 -080067 kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE));
Avi Kivity00b27a32011-11-23 16:30:32 +020068
Xiaoyao Li0d3b2ba2020-07-08 14:50:48 +080069 cpuid_entry_change(best, X86_FEATURE_APIC,
Sean Christophersonb32666b2020-03-02 15:56:31 -080070 vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE);
Xiaoyao Li0d3b2ba2020-07-08 14:50:48 +080071 }
Jim Mattsonc7dd15b2016-11-09 09:50:11 -080072
Xiaoyao Li0d3b2ba2020-07-08 14:50:48 +080073 if (best && apic) {
Sean Christopherson4c615342020-03-02 15:56:30 -080074 if (cpuid_entry_has(best, X86_FEATURE_TSC_DEADLINE_TIMER))
Avi Kivity00b27a32011-11-23 16:30:32 +020075 apic->lapic_timer.timer_mode_mask = 3 << 17;
76 else
77 apic->lapic_timer.timer_mode_mask = 1 << 17;
78 }
Gleb Natapovf5132b02011-11-10 14:57:22 +020079
Huaitong Hanb9baba82016-03-22 16:51:21 +080080 best = kvm_find_cpuid_entry(vcpu, 7, 0);
Sean Christophersonb32666b2020-03-02 15:56:31 -080081 if (best && boot_cpu_has(X86_FEATURE_PKU) && best->function == 0x7)
82 cpuid_entry_change(best, X86_FEATURE_OSPKE,
83 kvm_read_cr4_bits(vcpu, X86_CR4_PKE));
Huaitong Hanb9baba82016-03-22 16:51:21 +080084
Paolo Bonzinid7876f12013-10-02 16:06:15 +020085 best = kvm_find_cpuid_entry(vcpu, 0xD, 0);
Paolo Bonzini4344ee92013-10-02 16:06:16 +020086 if (!best) {
Paolo Bonzinid7876f12013-10-02 16:06:15 +020087 vcpu->arch.guest_supported_xcr0 = 0;
Paolo Bonzini4344ee92013-10-02 16:06:16 +020088 } else {
Paolo Bonzinid7876f12013-10-02 16:06:15 +020089 vcpu->arch.guest_supported_xcr0 =
Sean Christophersoncfc48182020-03-02 15:56:23 -080090 (best->eax | ((u64)best->edx << 32)) & supported_xcr0;
Xiaoyao Lia71936ab2020-04-29 23:43:12 +080091 best->ebx = xstate_required_size(vcpu->arch.xcr0, false);
Paolo Bonzini4344ee92013-10-02 16:06:16 +020092 }
Paolo Bonzinid7876f12013-10-02 16:06:15 +020093
Paolo Bonzini412a3c42014-12-03 14:38:01 +010094 best = kvm_find_cpuid_entry(vcpu, 0xD, 1);
Sean Christopherson4c615342020-03-02 15:56:30 -080095 if (best && (cpuid_entry_has(best, X86_FEATURE_XSAVES) ||
96 cpuid_entry_has(best, X86_FEATURE_XSAVEC)))
Paolo Bonzini412a3c42014-12-03 14:38:01 +010097 best->ebx = xstate_required_size(vcpu->arch.xcr0, true);
98
Nadav Amitdd598092014-09-16 15:10:03 +030099 /*
Yu Zhangfd8cb432017-08-24 20:27:56 +0800100 * The existing code assumes virtual address is 48-bit or 57-bit in the
101 * canonical address checks; exit if it is ever changed.
Nadav Amitdd598092014-09-16 15:10:03 +0300102 */
103 best = kvm_find_cpuid_entry(vcpu, 0x80000008, 0);
Yu Zhangfd8cb432017-08-24 20:27:56 +0800104 if (best) {
105 int vaddr_bits = (best->eax & 0xff00) >> 8;
106
107 if (vaddr_bits != 48 && vaddr_bits != 57 && vaddr_bits != 0)
108 return -EINVAL;
109 }
Nadav Amitdd598092014-09-16 15:10:03 +0300110
Wanpeng Licaa057a2018-03-12 04:53:03 -0700111 best = kvm_find_cpuid_entry(vcpu, KVM_CPUID_FEATURES, 0);
112 if (kvm_hlt_in_guest(vcpu->kvm) && best &&
113 (best->eax & (1 << KVM_FEATURE_PV_UNHALT)))
114 best->eax &= ~(1 << KVM_FEATURE_PV_UNHALT);
115
Wanpeng Li511a85562019-05-21 14:06:54 +0800116 if (!kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_MISC_ENABLE_NO_MWAIT)) {
117 best = kvm_find_cpuid_entry(vcpu, 0x1, 0);
Sean Christophersonb32666b2020-03-02 15:56:31 -0800118 if (best)
119 cpuid_entry_change(best, X86_FEATURE_MWAIT,
120 vcpu->arch.ia32_misc_enable_msr &
121 MSR_IA32_MISC_ENABLE_MWAIT);
Wanpeng Li511a85562019-05-21 14:06:54 +0800122 }
123
Sean Christophersone93fd3b2020-05-01 21:32:34 -0700124 /* Note, maxphyaddr must be updated before tdp_level. */
Eugene Korenevsky5a4f55c2015-03-29 23:56:12 +0300125 vcpu->arch.maxphyaddr = cpuid_query_maxphyaddr(vcpu);
Sean Christophersone93fd3b2020-05-01 21:32:34 -0700126 vcpu->arch.tdp_level = kvm_x86_ops.get_tdp_level(vcpu);
Yu Zhang855feb62017-08-24 20:27:55 +0800127 kvm_mmu_reset_context(vcpu);
Eugene Korenevsky5a4f55c2015-03-29 23:56:12 +0300128
Wei Huangc6702c92015-06-19 13:44:45 +0200129 kvm_pmu_refresh(vcpu);
Krish Sadhukhanb899c132020-07-08 00:39:55 +0000130 vcpu->arch.cr4_guest_rsvd_bits =
131 __cr4_reserved_bits(guest_cpuid_has, 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;
Paolo Bonzini83676e92016-06-01 14:09:19 +0200185 if (cpuid->nent) {
Denis Efremov7ec28e22020-06-03 13:11:31 +0300186 cpuid_entries = vmemdup_user(entries,
187 array_size(sizeof(struct kvm_cpuid_entry),
188 cpuid->nent));
189 if (IS_ERR(cpuid_entries)) {
190 r = PTR_ERR(cpuid_entries);
Paolo Bonzini83676e92016-06-01 14:09:19 +0200191 goto out;
Denis Efremov7ec28e22020-06-03 13:11:31 +0300192 }
Paolo Bonzini83676e92016-06-01 14:09:19 +0200193 }
Avi Kivity00b27a32011-11-23 16:30:32 +0200194 for (i = 0; i < cpuid->nent; i++) {
195 vcpu->arch.cpuid_entries[i].function = cpuid_entries[i].function;
196 vcpu->arch.cpuid_entries[i].eax = cpuid_entries[i].eax;
197 vcpu->arch.cpuid_entries[i].ebx = cpuid_entries[i].ebx;
198 vcpu->arch.cpuid_entries[i].ecx = cpuid_entries[i].ecx;
199 vcpu->arch.cpuid_entries[i].edx = cpuid_entries[i].edx;
200 vcpu->arch.cpuid_entries[i].index = 0;
201 vcpu->arch.cpuid_entries[i].flags = 0;
202 vcpu->arch.cpuid_entries[i].padding[0] = 0;
203 vcpu->arch.cpuid_entries[i].padding[1] = 0;
204 vcpu->arch.cpuid_entries[i].padding[2] = 0;
205 }
206 vcpu->arch.cpuid_nent = cpuid->nent;
207 cpuid_fix_nx_cap(vcpu);
Avi Kivity00b27a32011-11-23 16:30:32 +0200208 kvm_apic_set_version(vcpu);
Sean Christophersonafaf0b22020-03-21 13:26:00 -0700209 kvm_x86_ops.cpuid_update(vcpu);
Nadav Amitdd598092014-09-16 15:10:03 +0300210 r = kvm_update_cpuid(vcpu);
Xiaoyao Li18964092020-07-08 14:50:47 +0800211 if (r)
212 vcpu->arch.cpuid_nent = 0;
Avi Kivity00b27a32011-11-23 16:30:32 +0200213
Denis Efremov7ec28e22020-06-03 13:11:31 +0300214 kvfree(cpuid_entries);
Avi Kivity00b27a32011-11-23 16:30:32 +0200215out:
216 return r;
217}
218
219int kvm_vcpu_ioctl_set_cpuid2(struct kvm_vcpu *vcpu,
220 struct kvm_cpuid2 *cpuid,
221 struct kvm_cpuid_entry2 __user *entries)
222{
223 int r;
224
225 r = -E2BIG;
226 if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
227 goto out;
228 r = -EFAULT;
229 if (copy_from_user(&vcpu->arch.cpuid_entries, entries,
230 cpuid->nent * sizeof(struct kvm_cpuid_entry2)))
231 goto out;
232 vcpu->arch.cpuid_nent = cpuid->nent;
233 kvm_apic_set_version(vcpu);
Sean Christophersonafaf0b22020-03-21 13:26:00 -0700234 kvm_x86_ops.cpuid_update(vcpu);
Nadav Amitdd598092014-09-16 15:10:03 +0300235 r = kvm_update_cpuid(vcpu);
Xiaoyao Li18964092020-07-08 14:50:47 +0800236 if (r)
237 vcpu->arch.cpuid_nent = 0;
Avi Kivity00b27a32011-11-23 16:30:32 +0200238out:
239 return r;
240}
241
242int kvm_vcpu_ioctl_get_cpuid2(struct kvm_vcpu *vcpu,
243 struct kvm_cpuid2 *cpuid,
244 struct kvm_cpuid_entry2 __user *entries)
245{
246 int r;
247
248 r = -E2BIG;
249 if (cpuid->nent < vcpu->arch.cpuid_nent)
250 goto out;
251 r = -EFAULT;
252 if (copy_to_user(entries, &vcpu->arch.cpuid_entries,
253 vcpu->arch.cpuid_nent * sizeof(struct kvm_cpuid_entry2)))
254 goto out;
255 return 0;
256
257out:
258 cpuid->nent = vcpu->arch.cpuid_nent;
259 return r;
260}
261
Sean Christopherson66a69502020-03-02 15:56:41 -0800262static __always_inline void kvm_cpu_cap_mask(enum cpuid_leafs leaf, u32 mask)
263{
Sean Christophersond8577a42020-03-02 15:56:52 -0800264 const struct cpuid_reg cpuid = x86_feature_cpuid(leaf * 32);
265 struct kvm_cpuid_entry2 entry;
266
Sean Christopherson66a69502020-03-02 15:56:41 -0800267 reverse_cpuid_check(leaf);
268 kvm_cpu_caps[leaf] &= mask;
Sean Christophersond8577a42020-03-02 15:56:52 -0800269
270 cpuid_count(cpuid.function, cpuid.index,
271 &entry.eax, &entry.ebx, &entry.ecx, &entry.edx);
272
Sean Christopherson855c7e92020-03-25 12:12:59 -0700273 kvm_cpu_caps[leaf] &= *__cpuid_entry_get_reg(&entry, cpuid.reg);
Sean Christopherson66a69502020-03-02 15:56:41 -0800274}
275
276void kvm_set_cpu_caps(void)
277{
278 unsigned int f_nx = is_efer_nx() ? F(NX) : 0;
279#ifdef CONFIG_X86_64
280 unsigned int f_gbpages = F(GBPAGES);
281 unsigned int f_lm = F(LM);
282#else
283 unsigned int f_gbpages = 0;
284 unsigned int f_lm = 0;
285#endif
286
287 BUILD_BUG_ON(sizeof(kvm_cpu_caps) >
288 sizeof(boot_cpu_data.x86_capability));
289
290 memcpy(&kvm_cpu_caps, &boot_cpu_data.x86_capability,
291 sizeof(kvm_cpu_caps));
292
293 kvm_cpu_cap_mask(CPUID_1_ECX,
294 /*
295 * NOTE: MONITOR (and MWAIT) are emulated as NOP, but *not*
296 * advertised to guests via CPUID!
297 */
298 F(XMM3) | F(PCLMULQDQ) | 0 /* DTES64, MONITOR */ |
299 0 /* DS-CPL, VMX, SMX, EST */ |
300 0 /* TM2 */ | F(SSSE3) | 0 /* CNXT-ID */ | 0 /* Reserved */ |
Like Xu27461da32020-05-29 15:43:45 +0800301 F(FMA) | F(CX16) | 0 /* xTPR Update */ | F(PDCM) |
Sean Christopherson66a69502020-03-02 15:56:41 -0800302 F(PCID) | 0 /* Reserved, DCA */ | F(XMM4_1) |
303 F(XMM4_2) | F(X2APIC) | F(MOVBE) | F(POPCNT) |
304 0 /* Reserved*/ | F(AES) | F(XSAVE) | 0 /* OSXSAVE */ | F(AVX) |
305 F(F16C) | F(RDRAND)
306 );
Sean Christopherson93c380e2020-03-02 15:56:54 -0800307 /* KVM emulates x2apic in software irrespective of host support. */
308 kvm_cpu_cap_set(X86_FEATURE_X2APIC);
Sean Christopherson66a69502020-03-02 15:56:41 -0800309
310 kvm_cpu_cap_mask(CPUID_1_EDX,
311 F(FPU) | F(VME) | F(DE) | F(PSE) |
312 F(TSC) | F(MSR) | F(PAE) | F(MCE) |
313 F(CX8) | F(APIC) | 0 /* Reserved */ | F(SEP) |
314 F(MTRR) | F(PGE) | F(MCA) | F(CMOV) |
315 F(PAT) | F(PSE36) | 0 /* PSN */ | F(CLFLUSH) |
316 0 /* Reserved, DS, ACPI */ | F(MMX) |
317 F(FXSR) | F(XMM) | F(XMM2) | F(SELFSNOOP) |
318 0 /* HTT, TM, Reserved, PBE */
319 );
320
321 kvm_cpu_cap_mask(CPUID_7_0_EBX,
322 F(FSGSBASE) | F(BMI1) | F(HLE) | F(AVX2) | F(SMEP) |
323 F(BMI2) | F(ERMS) | 0 /*INVPCID*/ | F(RTM) | 0 /*MPX*/ | F(RDSEED) |
324 F(ADX) | F(SMAP) | F(AVX512IFMA) | F(AVX512F) | F(AVX512PF) |
325 F(AVX512ER) | F(AVX512CD) | F(CLFLUSHOPT) | F(CLWB) | F(AVX512DQ) |
326 F(SHA_NI) | F(AVX512BW) | F(AVX512VL) | 0 /*INTEL_PT*/
327 );
328
329 kvm_cpu_cap_mask(CPUID_7_ECX,
Babu Mogerfa44b822020-05-12 18:59:16 -0500330 F(AVX512VBMI) | F(LA57) | F(PKU) | 0 /*OSPKE*/ | F(RDPID) |
Sean Christopherson66a69502020-03-02 15:56:41 -0800331 F(AVX512_VPOPCNTDQ) | F(UMIP) | F(AVX512_VBMI2) | F(GFNI) |
332 F(VAES) | F(VPCLMULQDQ) | F(AVX512_VNNI) | F(AVX512_BITALG) |
333 F(CLDEMOTE) | F(MOVDIRI) | F(MOVDIR64B) | 0 /*WAITPKG*/
334 );
335 /* Set LA57 based on hardware capability. */
336 if (cpuid_ecx(7) & F(LA57))
337 kvm_cpu_cap_set(X86_FEATURE_LA57);
338
Babu Mogerfa44b822020-05-12 18:59:16 -0500339 /*
340 * PKU not yet implemented for shadow paging and requires OSPKE
341 * to be set on the host. Clear it if that is not the case
342 */
343 if (!tdp_enabled || !boot_cpu_has(X86_FEATURE_OSPKE))
344 kvm_cpu_cap_clear(X86_FEATURE_PKU);
345
Sean Christopherson66a69502020-03-02 15:56:41 -0800346 kvm_cpu_cap_mask(CPUID_7_EDX,
347 F(AVX512_4VNNIW) | F(AVX512_4FMAPS) | F(SPEC_CTRL) |
348 F(SPEC_CTRL_SSBD) | F(ARCH_CAPABILITIES) | F(INTEL_STIBP) |
Zhenyu Wange3747402020-03-23 17:22:36 +0800349 F(MD_CLEAR) | F(AVX512_VP2INTERSECT) | F(FSRM)
Sean Christopherson66a69502020-03-02 15:56:41 -0800350 );
351
Sean Christopherson93c380e2020-03-02 15:56:54 -0800352 /* TSC_ADJUST and ARCH_CAPABILITIES are emulated in software. */
353 kvm_cpu_cap_set(X86_FEATURE_TSC_ADJUST);
354 kvm_cpu_cap_set(X86_FEATURE_ARCH_CAPABILITIES);
355
356 if (boot_cpu_has(X86_FEATURE_IBPB) && boot_cpu_has(X86_FEATURE_IBRS))
357 kvm_cpu_cap_set(X86_FEATURE_SPEC_CTRL);
358 if (boot_cpu_has(X86_FEATURE_STIBP))
359 kvm_cpu_cap_set(X86_FEATURE_INTEL_STIBP);
360 if (boot_cpu_has(X86_FEATURE_AMD_SSBD))
361 kvm_cpu_cap_set(X86_FEATURE_SPEC_CTRL_SSBD);
362
Sean Christopherson66a69502020-03-02 15:56:41 -0800363 kvm_cpu_cap_mask(CPUID_7_1_EAX,
364 F(AVX512_BF16)
365 );
366
367 kvm_cpu_cap_mask(CPUID_D_1_EAX,
368 F(XSAVEOPT) | F(XSAVEC) | F(XGETBV1) | F(XSAVES)
369 );
370
371 kvm_cpu_cap_mask(CPUID_8000_0001_ECX,
372 F(LAHF_LM) | F(CMP_LEGACY) | 0 /*SVM*/ | 0 /* ExtApicSpace */ |
373 F(CR8_LEGACY) | F(ABM) | F(SSE4A) | F(MISALIGNSSE) |
374 F(3DNOWPREFETCH) | F(OSVW) | 0 /* IBS */ | F(XOP) |
375 0 /* SKINIT, WDT, LWP */ | F(FMA4) | F(TBM) |
376 F(TOPOEXT) | F(PERFCTR_CORE)
377 );
378
379 kvm_cpu_cap_mask(CPUID_8000_0001_EDX,
380 F(FPU) | F(VME) | F(DE) | F(PSE) |
381 F(TSC) | F(MSR) | F(PAE) | F(MCE) |
382 F(CX8) | F(APIC) | 0 /* Reserved */ | F(SYSCALL) |
383 F(MTRR) | F(PGE) | F(MCA) | F(CMOV) |
384 F(PAT) | F(PSE36) | 0 /* Reserved */ |
385 f_nx | 0 /* Reserved */ | F(MMXEXT) | F(MMX) |
386 F(FXSR) | F(FXSR_OPT) | f_gbpages | F(RDTSCP) |
387 0 /* Reserved */ | f_lm | F(3DNOWEXT) | F(3DNOW)
388 );
389
390 if (!tdp_enabled && IS_ENABLED(CONFIG_X86_64))
391 kvm_cpu_cap_set(X86_FEATURE_GBPAGES);
392
393 kvm_cpu_cap_mask(CPUID_8000_0008_EBX,
394 F(CLZERO) | F(XSAVEERPTR) |
395 F(WBNOINVD) | F(AMD_IBPB) | F(AMD_IBRS) | F(AMD_SSBD) | F(VIRT_SSBD) |
396 F(AMD_SSB_NO) | F(AMD_STIBP) | F(AMD_STIBP_ALWAYS_ON)
397 );
398
Sean Christopherson9b58b982020-03-02 15:56:42 -0800399 /*
Sean Christopherson93c380e2020-03-02 15:56:54 -0800400 * AMD has separate bits for each SPEC_CTRL bit.
401 * arch/x86/kernel/cpu/bugs.c is kind enough to
402 * record that in cpufeatures so use them.
403 */
404 if (boot_cpu_has(X86_FEATURE_IBPB))
405 kvm_cpu_cap_set(X86_FEATURE_AMD_IBPB);
406 if (boot_cpu_has(X86_FEATURE_IBRS))
407 kvm_cpu_cap_set(X86_FEATURE_AMD_IBRS);
408 if (boot_cpu_has(X86_FEATURE_STIBP))
409 kvm_cpu_cap_set(X86_FEATURE_AMD_STIBP);
410 if (boot_cpu_has(X86_FEATURE_SPEC_CTRL_SSBD))
411 kvm_cpu_cap_set(X86_FEATURE_AMD_SSBD);
412 if (!boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS))
413 kvm_cpu_cap_set(X86_FEATURE_AMD_SSB_NO);
414 /*
415 * The preference is to use SPEC CTRL MSR instead of the
416 * VIRT_SPEC MSR.
417 */
418 if (boot_cpu_has(X86_FEATURE_LS_CFG_SSBD) &&
419 !boot_cpu_has(X86_FEATURE_AMD_SSBD))
420 kvm_cpu_cap_set(X86_FEATURE_VIRT_SSBD);
421
422 /*
Sean Christopherson9b58b982020-03-02 15:56:42 -0800423 * Hide all SVM features by default, SVM will set the cap bits for
424 * features it emulates and/or exposes for L1.
425 */
426 kvm_cpu_cap_mask(CPUID_8000_000A_EDX, 0);
427
Sean Christopherson66a69502020-03-02 15:56:41 -0800428 kvm_cpu_cap_mask(CPUID_C000_0001_EDX,
429 F(XSTORE) | F(XSTORE_EN) | F(XCRYPT) | F(XCRYPT_EN) |
430 F(ACE2) | F(ACE2_EN) | F(PHE) | F(PHE_EN) |
431 F(PMM) | F(PMM_EN)
432 );
433}
434EXPORT_SYMBOL_GPL(kvm_set_cpu_caps);
435
Sean Christophersone53c95e2020-03-02 15:56:19 -0800436struct kvm_cpuid_array {
437 struct kvm_cpuid_entry2 *entries;
Xiaoyao Li65b18912020-06-04 12:16:36 +0800438 int maxnent;
Sean Christophersone53c95e2020-03-02 15:56:19 -0800439 int nent;
440};
441
442static struct kvm_cpuid_entry2 *do_host_cpuid(struct kvm_cpuid_array *array,
Sean Christophersonaa10a7d2020-03-02 15:56:16 -0800443 u32 function, u32 index)
Avi Kivity00b27a32011-11-23 16:30:32 +0200444{
Sean Christophersone53c95e2020-03-02 15:56:19 -0800445 struct kvm_cpuid_entry2 *entry;
446
447 if (array->nent >= array->maxnent)
Sean Christophersonaa10a7d2020-03-02 15:56:16 -0800448 return NULL;
Sean Christophersone53c95e2020-03-02 15:56:19 -0800449
450 entry = &array->entries[array->nent++];
Sean Christophersonaa10a7d2020-03-02 15:56:16 -0800451
Avi Kivity00b27a32011-11-23 16:30:32 +0200452 entry->function = function;
453 entry->index = index;
Paolo Bonziniab8bcf62019-06-24 10:23:33 +0200454 entry->flags = 0;
455
Avi Kivity00b27a32011-11-23 16:30:32 +0200456 cpuid_count(entry->function, entry->index,
457 &entry->eax, &entry->ebx, &entry->ecx, &entry->edx);
Paolo Bonzinid9aadaf2019-07-04 12:20:48 +0200458
459 switch (function) {
Paolo Bonzinid9aadaf2019-07-04 12:20:48 +0200460 case 4:
461 case 7:
462 case 0xb:
463 case 0xd:
Jim Mattsona06dcd62019-09-12 09:55:03 -0700464 case 0xf:
465 case 0x10:
466 case 0x12:
Paolo Bonzinid9aadaf2019-07-04 12:20:48 +0200467 case 0x14:
Jim Mattsona06dcd62019-09-12 09:55:03 -0700468 case 0x17:
469 case 0x18:
470 case 0x1f:
Paolo Bonzinid9aadaf2019-07-04 12:20:48 +0200471 case 0x8000001d:
472 entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
473 break;
474 }
Sean Christophersonaa10a7d2020-03-02 15:56:16 -0800475
476 return entry;
Avi Kivity00b27a32011-11-23 16:30:32 +0200477}
478
Sean Christophersone53c95e2020-03-02 15:56:19 -0800479static int __do_cpuid_func_emulated(struct kvm_cpuid_array *array, u32 func)
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200480{
Sean Christopherson7c7f9542020-03-02 15:56:56 -0800481 struct kvm_cpuid_entry2 *entry;
Sean Christophersone53c95e2020-03-02 15:56:19 -0800482
Sean Christopherson7c7f9542020-03-02 15:56:56 -0800483 if (array->nent >= array->maxnent)
484 return -E2BIG;
485
486 entry = &array->entries[array->nent];
Paolo Bonziniab8bcf62019-06-24 10:23:33 +0200487 entry->function = func;
488 entry->index = 0;
489 entry->flags = 0;
490
Borislav Petkov84cffe42013-10-29 12:54:56 +0100491 switch (func) {
492 case 0:
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +0200493 entry->eax = 7;
Sean Christophersone53c95e2020-03-02 15:56:19 -0800494 ++array->nent;
Borislav Petkov84cffe42013-10-29 12:54:56 +0100495 break;
496 case 1:
497 entry->ecx = F(MOVBE);
Sean Christophersone53c95e2020-03-02 15:56:19 -0800498 ++array->nent;
Borislav Petkov84cffe42013-10-29 12:54:56 +0100499 break;
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +0200500 case 7:
501 entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
Paolo Bonziniab8bcf62019-06-24 10:23:33 +0200502 entry->eax = 0;
503 entry->ecx = F(RDPID);
Sean Christophersone53c95e2020-03-02 15:56:19 -0800504 ++array->nent;
Borislav Petkov84cffe42013-10-29 12:54:56 +0100505 default:
506 break;
507 }
508
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200509 return 0;
510}
511
Sean Christophersone53c95e2020-03-02 15:56:19 -0800512static inline int __do_cpuid_func(struct kvm_cpuid_array *array, u32 function)
Avi Kivity00b27a32011-11-23 16:30:32 +0200513{
Sean Christophersone53c95e2020-03-02 15:56:19 -0800514 struct kvm_cpuid_entry2 *entry;
Sean Christopherson74fa0bc2020-03-02 15:56:17 -0800515 int r, i, max_idx;
Avi Kivity00b27a32011-11-23 16:30:32 +0200516
Avi Kivity00b27a32011-11-23 16:30:32 +0200517 /* all calls to cpuid_count() should be made on the same cpu */
518 get_cpu();
Sasha Levin831bf662011-11-28 11:20:29 +0200519
520 r = -E2BIG;
521
Sean Christophersone53c95e2020-03-02 15:56:19 -0800522 entry = do_host_cpuid(array, function, 0);
Sean Christopherson7c7f9542020-03-02 15:56:56 -0800523 if (!entry)
Sasha Levin831bf662011-11-28 11:20:29 +0200524 goto out;
525
Avi Kivity00b27a32011-11-23 16:30:32 +0200526 switch (function) {
527 case 0:
Like Xua87f2d32019-06-06 09:18:45 +0800528 /* Limited to the highest leaf implemented in KVM. */
529 entry->eax = min(entry->eax, 0x1fU);
Avi Kivity00b27a32011-11-23 16:30:32 +0200530 break;
531 case 1:
Sean Christophersonbd791992020-03-02 15:56:53 -0800532 cpuid_entry_override(entry, CPUID_1_EDX);
533 cpuid_entry_override(entry, CPUID_1_ECX);
Avi Kivity00b27a32011-11-23 16:30:32 +0200534 break;
Sean Christopherson74fa0bc2020-03-02 15:56:17 -0800535 case 2:
Sean Christophersonc571a142020-03-02 15:56:50 -0800536 /*
537 * On ancient CPUs, function 2 entries are STATEFUL. That is,
538 * CPUID(function=2, index=0) may return different results each
539 * time, with the least-significant byte in EAX enumerating the
540 * number of times software should do CPUID(2, 0).
541 *
Sean Christopherson7ff6c032020-03-02 15:56:51 -0800542 * Modern CPUs, i.e. every CPU KVM has *ever* run on are less
543 * idiotic. Intel's SDM states that EAX & 0xff "will always
544 * return 01H. Software should ignore this value and not
Sean Christophersonc571a142020-03-02 15:56:50 -0800545 * interpret it as an informational descriptor", while AMD's
546 * APM states that CPUID(2) is reserved.
Sean Christopherson7ff6c032020-03-02 15:56:51 -0800547 *
548 * WARN if a frankenstein CPU that supports virtualization and
549 * a stateful CPUID.0x2 is encountered.
Sean Christophersonc571a142020-03-02 15:56:50 -0800550 */
Sean Christopherson7ff6c032020-03-02 15:56:51 -0800551 WARN_ON_ONCE((entry->eax & 0xff) > 1);
Avi Kivity00b27a32011-11-23 16:30:32 +0200552 break;
Jim Mattson32a243d2019-03-27 13:15:36 -0700553 /* functions 4 and 0x8000001d have additional index. */
554 case 4:
Sean Christophersonc8629032020-03-02 15:56:18 -0800555 case 0x8000001d:
556 /*
557 * Read entries until the cache type in the previous entry is
558 * zero, i.e. indicates an invalid entry.
559 */
Sean Christophersone53c95e2020-03-02 15:56:19 -0800560 for (i = 1; entry->eax & 0x1f; ++i) {
561 entry = do_host_cpuid(array, function, i);
562 if (!entry)
Sean Christopherson0fc62672020-03-02 15:56:08 -0800563 goto out;
Avi Kivity00b27a32011-11-23 16:30:32 +0200564 }
565 break;
Jan Kiszkae453aa02015-05-24 17:22:38 +0200566 case 6: /* Thermal management */
567 entry->eax = 0x4; /* allow ARAT */
568 entry->ebx = 0;
569 entry->ecx = 0;
570 entry->edx = 0;
571 break;
Paolo Bonzini54d360d2019-07-04 12:18:13 +0200572 /* function 7 has additional index. */
Sean Christopherson74fa0bc2020-03-02 15:56:17 -0800573 case 7:
Sean Christopherson09f628a2020-03-02 15:56:48 -0800574 entry->eax = min(entry->eax, 1u);
Sean Christophersonbd791992020-03-02 15:56:53 -0800575 cpuid_entry_override(entry, CPUID_7_0_EBX);
576 cpuid_entry_override(entry, CPUID_7_ECX);
577 cpuid_entry_override(entry, CPUID_7_EDX);
Sean Christopherson09f628a2020-03-02 15:56:48 -0800578
Sean Christophersonbcf600c2020-03-02 15:56:49 -0800579 /* KVM only supports 0x7.0 and 0x7.1, capped above via min(). */
580 if (entry->eax == 1) {
581 entry = do_host_cpuid(array, function, 1);
Sean Christophersone53c95e2020-03-02 15:56:19 -0800582 if (!entry)
Paolo Bonzini54d360d2019-07-04 12:18:13 +0200583 goto out;
584
Sean Christophersonbd791992020-03-02 15:56:53 -0800585 cpuid_entry_override(entry, CPUID_7_1_EAX);
Sean Christopherson09f628a2020-03-02 15:56:48 -0800586 entry->ebx = 0;
587 entry->ecx = 0;
588 entry->edx = 0;
Paolo Bonzini54d360d2019-07-04 12:18:13 +0200589 }
Avi Kivity00b27a32011-11-23 16:30:32 +0200590 break;
Avi Kivity00b27a32011-11-23 16:30:32 +0200591 case 9:
592 break;
Gleb Natapova6c06ed2011-11-10 14:57:28 +0200593 case 0xa: { /* Architectural Performance Monitoring */
594 struct x86_pmu_capability cap;
595 union cpuid10_eax eax;
596 union cpuid10_edx edx;
597
598 perf_get_x86_pmu_capability(&cap);
599
600 /*
601 * Only support guest architectural pmu on a host
602 * with architectural pmu.
603 */
604 if (!cap.version)
605 memset(&cap, 0, sizeof(cap));
606
607 eax.split.version_id = min(cap.version, 2);
608 eax.split.num_counters = cap.num_counters_gp;
609 eax.split.bit_width = cap.bit_width_gp;
610 eax.split.mask_length = cap.events_mask_len;
611
Like Xu2e8cd7a2020-06-24 09:59:28 +0800612 edx.split.num_counters_fixed = min(cap.num_counters_fixed, MAX_FIXED_COUNTERS);
Gleb Natapova6c06ed2011-11-10 14:57:28 +0200613 edx.split.bit_width_fixed = cap.bit_width_fixed;
614 edx.split.reserved = 0;
615
616 entry->eax = eax.full;
617 entry->ebx = cap.events_mask;
618 entry->ecx = 0;
619 entry->edx = edx.full;
620 break;
621 }
Like Xua87f2d32019-06-06 09:18:45 +0800622 /*
623 * Per Intel's SDM, the 0x1f is a superset of 0xb,
624 * thus they can be handled by common code.
625 */
626 case 0x1f:
Sean Christopherson74fa0bc2020-03-02 15:56:17 -0800627 case 0xb:
Jim Mattsona1a640b2019-09-25 11:17:14 -0700628 /*
Sean Christophersone53c95e2020-03-02 15:56:19 -0800629 * Populate entries until the level type (ECX[15:8]) of the
630 * previous entry is zero. Note, CPUID EAX.{0x1f,0xb}.0 is
631 * the starting entry, filled by the primary do_host_cpuid().
Jim Mattsona1a640b2019-09-25 11:17:14 -0700632 */
Sean Christophersone53c95e2020-03-02 15:56:19 -0800633 for (i = 1; entry->ecx & 0xff00; ++i) {
634 entry = do_host_cpuid(array, function, i);
635 if (!entry)
Sasha Levin831bf662011-11-28 11:20:29 +0200636 goto out;
Avi Kivity00b27a32011-11-23 16:30:32 +0200637 }
638 break;
Sean Christophersoncfc48182020-03-02 15:56:23 -0800639 case 0xd:
640 entry->eax &= supported_xcr0;
641 entry->ebx = xstate_required_size(supported_xcr0, false);
Radim Krčmáře08e8332014-12-04 18:30:41 +0100642 entry->ecx = entry->ebx;
Sean Christophersoncfc48182020-03-02 15:56:23 -0800643 entry->edx &= supported_xcr0 >> 32;
644 if (!supported_xcr0)
Paolo Bonzinib65d6e12014-11-21 18:13:26 +0100645 break;
646
Sean Christophersone53c95e2020-03-02 15:56:19 -0800647 entry = do_host_cpuid(array, function, 1);
648 if (!entry)
Sean Christopherson3dc4a9c2020-03-02 15:56:09 -0800649 goto out;
650
Sean Christophersonbd791992020-03-02 15:56:53 -0800651 cpuid_entry_override(entry, CPUID_D_1_EAX);
Sean Christophersone53c95e2020-03-02 15:56:19 -0800652 if (entry->eax & (F(XSAVES)|F(XSAVEC)))
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100653 entry->ebx = xstate_required_size(supported_xcr0 | supported_xss,
654 true);
655 else {
656 WARN_ON_ONCE(supported_xss != 0);
Sean Christophersone53c95e2020-03-02 15:56:19 -0800657 entry->ebx = 0;
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100658 }
659 entry->ecx &= supported_xss;
660 entry->edx &= supported_xss >> 32;
Sean Christopherson3dc4a9c2020-03-02 15:56:09 -0800661
Sean Christopherson0eee8f92020-03-02 15:56:21 -0800662 for (i = 2; i < 64; ++i) {
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100663 bool s_state;
664 if (supported_xcr0 & BIT_ULL(i))
665 s_state = false;
666 else if (supported_xss & BIT_ULL(i))
667 s_state = true;
668 else
Sean Christopherson1893c942020-03-02 15:56:10 -0800669 continue;
Sean Christopherson3dc4a9c2020-03-02 15:56:09 -0800670
Sean Christopherson0eee8f92020-03-02 15:56:21 -0800671 entry = do_host_cpuid(array, function, i);
Sean Christophersone53c95e2020-03-02 15:56:19 -0800672 if (!entry)
Sasha Levin831bf662011-11-28 11:20:29 +0200673 goto out;
674
Sean Christopherson91001d42020-03-02 15:56:11 -0800675 /*
Sean Christophersoncfc48182020-03-02 15:56:23 -0800676 * The supported check above should have filtered out
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100677 * invalid sub-leafs. Only valid sub-leafs should
Sean Christopherson91001d42020-03-02 15:56:11 -0800678 * reach this point, and they should have a non-zero
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100679 * save state size. Furthermore, check whether the
680 * processor agrees with supported_xcr0/supported_xss
681 * on whether this is an XCR0- or IA32_XSS-managed area.
Sean Christopherson91001d42020-03-02 15:56:11 -0800682 */
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100683 if (WARN_ON_ONCE(!entry->eax || (entry->ecx & 0x1) != s_state)) {
Sean Christophersone53c95e2020-03-02 15:56:19 -0800684 --array->nent;
Sean Christopherson3dc4a9c2020-03-02 15:56:09 -0800685 continue;
Sean Christopherson8b2fc442020-03-02 15:56:12 -0800686 }
Sean Christophersone53c95e2020-03-02 15:56:19 -0800687 entry->edx = 0;
Avi Kivity00b27a32011-11-23 16:30:32 +0200688 }
689 break;
Chao Peng86f52012018-10-24 16:05:11 +0800690 /* Intel PT */
Sean Christopherson74fa0bc2020-03-02 15:56:17 -0800691 case 0x14:
Sean Christophersondd69cc22020-03-02 15:56:55 -0800692 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT)) {
Sean Christopherson73920792020-03-02 15:56:26 -0800693 entry->eax = entry->ebx = entry->ecx = entry->edx = 0;
Chao Peng86f52012018-10-24 16:05:11 +0800694 break;
Sean Christopherson73920792020-03-02 15:56:26 -0800695 }
Chao Peng86f52012018-10-24 16:05:11 +0800696
Sean Christopherson74fa0bc2020-03-02 15:56:17 -0800697 for (i = 1, max_idx = entry->eax; i <= max_idx; ++i) {
Sean Christophersone53c95e2020-03-02 15:56:19 -0800698 if (!do_host_cpuid(array, function, i))
Chao Peng86f52012018-10-24 16:05:11 +0800699 goto out;
Chao Peng86f52012018-10-24 16:05:11 +0800700 }
701 break;
Avi Kivity00b27a32011-11-23 16:30:32 +0200702 case KVM_CPUID_SIGNATURE: {
Mathias Krause326d07c2012-08-30 01:30:13 +0200703 static const char signature[12] = "KVMKVMKVM\0\0";
704 const u32 *sigptr = (const u32 *)signature;
Michael S. Tsirkin57c22e52012-05-02 17:55:56 +0300705 entry->eax = KVM_CPUID_FEATURES;
Avi Kivity00b27a32011-11-23 16:30:32 +0200706 entry->ebx = sigptr[0];
707 entry->ecx = sigptr[1];
708 entry->edx = sigptr[2];
709 break;
710 }
711 case KVM_CPUID_FEATURES:
712 entry->eax = (1 << KVM_FEATURE_CLOCKSOURCE) |
713 (1 << KVM_FEATURE_NOP_IO_DELAY) |
714 (1 << KVM_FEATURE_CLOCKSOURCE2) |
715 (1 << KVM_FEATURE_ASYNC_PF) |
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300716 (1 << KVM_FEATURE_PV_EOI) |
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +0530717 (1 << KVM_FEATURE_CLOCKSOURCE_STABLE_BIT) |
Wanpeng Lif38a7b72017-12-12 17:33:04 -0800718 (1 << KVM_FEATURE_PV_UNHALT) |
Radim Krčmářfe2a3022018-02-01 22:16:21 +0100719 (1 << KVM_FEATURE_PV_TLB_FLUSH) |
Wanpeng Li4180bf12018-07-23 14:39:54 +0800720 (1 << KVM_FEATURE_ASYNC_PF_VMEXIT) |
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -0300721 (1 << KVM_FEATURE_PV_SEND_IPI) |
Wanpeng Li32b72ec2019-06-11 20:23:50 +0800722 (1 << KVM_FEATURE_POLL_CONTROL) |
Vitaly Kuznetsov72de5fa4c2020-05-25 16:41:22 +0200723 (1 << KVM_FEATURE_PV_SCHED_YIELD) |
724 (1 << KVM_FEATURE_ASYNC_PF_INT);
Avi Kivity00b27a32011-11-23 16:30:32 +0200725
726 if (sched_info_on())
727 entry->eax |= (1 << KVM_FEATURE_STEAL_TIME);
728
729 entry->ebx = 0;
730 entry->ecx = 0;
731 entry->edx = 0;
732 break;
733 case 0x80000000:
Brijesh Singh8765d752017-12-04 10:57:25 -0600734 entry->eax = min(entry->eax, 0x8000001f);
Avi Kivity00b27a32011-11-23 16:30:32 +0200735 break;
736 case 0x80000001:
Sean Christophersonbd791992020-03-02 15:56:53 -0800737 cpuid_entry_override(entry, CPUID_8000_0001_EDX);
738 cpuid_entry_override(entry, CPUID_8000_0001_ECX);
Avi Kivity00b27a32011-11-23 16:30:32 +0200739 break;
Eric Northup43d05de2020-04-14 18:23:20 -0700740 case 0x80000006:
741 /* L2 cache and TLB: pass through host info. */
742 break;
Marcelo Tosattie4c9a5a12014-04-26 22:30:23 -0300743 case 0x80000007: /* Advanced power management */
744 /* invariant TSC is CPUID.80000007H:EDX[8] */
745 entry->edx &= (1 << 8);
746 /* mask against host */
747 entry->edx &= boot_cpu_data.x86_power;
748 entry->eax = entry->ebx = entry->ecx = 0;
749 break;
Avi Kivity00b27a32011-11-23 16:30:32 +0200750 case 0x80000008: {
751 unsigned g_phys_as = (entry->eax >> 16) & 0xff;
752 unsigned virt_as = max((entry->eax >> 8) & 0xff, 48U);
753 unsigned phys_as = entry->eax & 0xff;
754
755 if (!g_phys_as)
756 g_phys_as = phys_as;
757 entry->eax = g_phys_as | (virt_as << 8);
Ashok Raj15d45072018-02-01 22:59:43 +0100758 entry->edx = 0;
Sean Christophersonbd791992020-03-02 15:56:53 -0800759 cpuid_entry_override(entry, CPUID_8000_0008_EBX);
Avi Kivity00b27a32011-11-23 16:30:32 +0200760 break;
761 }
Sean Christopherson25703872020-03-02 15:57:09 -0800762 case 0x8000000A:
763 if (!kvm_cpu_cap_has(X86_FEATURE_SVM)) {
764 entry->eax = entry->ebx = entry->ecx = entry->edx = 0;
765 break;
766 }
767 entry->eax = 1; /* SVM revision 1 */
768 entry->ebx = 8; /* Lets support 8 ASIDs in case we add proper
769 ASID emulation to nested SVM */
770 entry->ecx = 0; /* Reserved */
771 cpuid_entry_override(entry, CPUID_8000_000A_EDX);
772 break;
Avi Kivity00b27a32011-11-23 16:30:32 +0200773 case 0x80000019:
774 entry->ecx = entry->edx = 0;
775 break;
776 case 0x8000001a:
Jim Mattson382409b2019-03-27 13:15:37 -0700777 case 0x8000001e:
Avi Kivity00b27a32011-11-23 16:30:32 +0200778 break;
Peter Gondac1de0f22019-11-21 12:33:43 -0800779 /* Support memory encryption cpuid if host supports it */
780 case 0x8000001F:
781 if (!boot_cpu_has(X86_FEATURE_SEV))
782 entry->eax = entry->ebx = entry->ecx = entry->edx = 0;
783 break;
Avi Kivity00b27a32011-11-23 16:30:32 +0200784 /*Add support for Centaur's CPUID instruction*/
785 case 0xC0000000:
786 /*Just support up to 0xC0000004 now*/
787 entry->eax = min(entry->eax, 0xC0000004);
788 break;
789 case 0xC0000001:
Sean Christophersonbd791992020-03-02 15:56:53 -0800790 cpuid_entry_override(entry, CPUID_C000_0001_EDX);
Avi Kivity00b27a32011-11-23 16:30:32 +0200791 break;
792 case 3: /* Processor serial number */
793 case 5: /* MONITOR/MWAIT */
Avi Kivity00b27a32011-11-23 16:30:32 +0200794 case 0xC0000002:
795 case 0xC0000003:
796 case 0xC0000004:
797 default:
798 entry->eax = entry->ebx = entry->ecx = entry->edx = 0;
799 break;
800 }
801
Sasha Levin831bf662011-11-28 11:20:29 +0200802 r = 0;
803
804out:
Avi Kivity00b27a32011-11-23 16:30:32 +0200805 put_cpu();
Sasha Levin831bf662011-11-28 11:20:29 +0200806
807 return r;
Avi Kivity00b27a32011-11-23 16:30:32 +0200808}
809
Sean Christophersone53c95e2020-03-02 15:56:19 -0800810static int do_cpuid_func(struct kvm_cpuid_array *array, u32 func,
811 unsigned int type)
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200812{
813 if (type == KVM_GET_EMULATED_CPUID)
Sean Christophersone53c95e2020-03-02 15:56:19 -0800814 return __do_cpuid_func_emulated(array, func);
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200815
Sean Christophersone53c95e2020-03-02 15:56:19 -0800816 return __do_cpuid_func(array, func);
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200817}
818
Sean Christopherson8b860792020-03-02 15:56:06 -0800819#define CENTAUR_CPUID_SIGNATURE 0xC0000000
Sasha Levin831bf662011-11-28 11:20:29 +0200820
Sean Christophersone53c95e2020-03-02 15:56:19 -0800821static int get_cpuid_func(struct kvm_cpuid_array *array, u32 func,
822 unsigned int type)
Sean Christopherson619a17f2020-03-02 15:56:05 -0800823{
824 u32 limit;
825 int r;
826
Sean Christopherson8b860792020-03-02 15:56:06 -0800827 if (func == CENTAUR_CPUID_SIGNATURE &&
828 boot_cpu_data.x86_vendor != X86_VENDOR_CENTAUR)
829 return 0;
830
Sean Christophersone53c95e2020-03-02 15:56:19 -0800831 r = do_cpuid_func(array, func, type);
Sean Christopherson619a17f2020-03-02 15:56:05 -0800832 if (r)
833 return r;
834
Sean Christophersone53c95e2020-03-02 15:56:19 -0800835 limit = array->entries[array->nent - 1].eax;
Sean Christopherson619a17f2020-03-02 15:56:05 -0800836 for (func = func + 1; func <= limit; ++func) {
Sean Christophersone53c95e2020-03-02 15:56:19 -0800837 r = do_cpuid_func(array, func, type);
Sean Christopherson619a17f2020-03-02 15:56:05 -0800838 if (r)
839 break;
840 }
841
842 return r;
843}
844
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200845static bool sanity_check_entries(struct kvm_cpuid_entry2 __user *entries,
846 __u32 num_entries, unsigned int ioctl_type)
847{
848 int i;
Borislav Petkov1b2ca422013-11-06 15:46:02 +0100849 __u32 pad[3];
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200850
851 if (ioctl_type != KVM_GET_EMULATED_CPUID)
852 return false;
853
854 /*
855 * We want to make sure that ->padding is being passed clean from
856 * userspace in case we want to use it for something in the future.
857 *
858 * Sadly, this wasn't enforced for KVM_GET_SUPPORTED_CPUID and so we
859 * have to give ourselves satisfied only with the emulated side. /me
860 * sheds a tear.
861 */
862 for (i = 0; i < num_entries; i++) {
Borislav Petkov1b2ca422013-11-06 15:46:02 +0100863 if (copy_from_user(pad, entries[i].padding, sizeof(pad)))
864 return true;
865
866 if (pad[0] || pad[1] || pad[2])
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200867 return true;
868 }
869 return false;
870}
871
872int kvm_dev_ioctl_get_cpuid(struct kvm_cpuid2 *cpuid,
873 struct kvm_cpuid_entry2 __user *entries,
874 unsigned int type)
Avi Kivity00b27a32011-11-23 16:30:32 +0200875{
Sean Christopherson8b860792020-03-02 15:56:06 -0800876 static const u32 funcs[] = {
877 0, 0x80000000, CENTAUR_CPUID_SIGNATURE, KVM_CPUID_SIGNATURE,
Sasha Levin831bf662011-11-28 11:20:29 +0200878 };
Avi Kivity00b27a32011-11-23 16:30:32 +0200879
Sean Christophersone53c95e2020-03-02 15:56:19 -0800880 struct kvm_cpuid_array array = {
881 .nent = 0,
Sean Christophersone53c95e2020-03-02 15:56:19 -0800882 };
883 int r, i;
Sean Christophersond5a661d2020-03-02 15:56:07 -0800884
Avi Kivity00b27a32011-11-23 16:30:32 +0200885 if (cpuid->nent < 1)
Sean Christophersond5a661d2020-03-02 15:56:07 -0800886 return -E2BIG;
Avi Kivity00b27a32011-11-23 16:30:32 +0200887 if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
888 cpuid->nent = KVM_MAX_CPUID_ENTRIES;
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200889
890 if (sanity_check_entries(entries, cpuid->nent, type))
891 return -EINVAL;
892
Sean Christophersone53c95e2020-03-02 15:56:19 -0800893 array.entries = vzalloc(array_size(sizeof(struct kvm_cpuid_entry2),
Kees Cookfad953c2018-06-12 14:27:37 -0700894 cpuid->nent));
Sean Christophersone53c95e2020-03-02 15:56:19 -0800895 if (!array.entries)
Sean Christophersond5a661d2020-03-02 15:56:07 -0800896 return -ENOMEM;
Avi Kivity00b27a32011-11-23 16:30:32 +0200897
Xiaoyao Li65b18912020-06-04 12:16:36 +0800898 array.maxnent = cpuid->nent;
899
Sean Christopherson8b860792020-03-02 15:56:06 -0800900 for (i = 0; i < ARRAY_SIZE(funcs); i++) {
Sean Christophersone53c95e2020-03-02 15:56:19 -0800901 r = get_cpuid_func(&array, funcs[i], type);
Sasha Levin831bf662011-11-28 11:20:29 +0200902 if (r)
Avi Kivity00b27a32011-11-23 16:30:32 +0200903 goto out_free;
904 }
Sean Christophersone53c95e2020-03-02 15:56:19 -0800905 cpuid->nent = array.nent;
Avi Kivity00b27a32011-11-23 16:30:32 +0200906
Sean Christophersone53c95e2020-03-02 15:56:19 -0800907 if (copy_to_user(entries, array.entries,
908 array.nent * sizeof(struct kvm_cpuid_entry2)))
Sean Christophersond5a661d2020-03-02 15:56:07 -0800909 r = -EFAULT;
Avi Kivity00b27a32011-11-23 16:30:32 +0200910
911out_free:
Sean Christophersone53c95e2020-03-02 15:56:19 -0800912 vfree(array.entries);
Avi Kivity00b27a32011-11-23 16:30:32 +0200913 return r;
914}
915
Avi Kivity00b27a32011-11-23 16:30:32 +0200916struct kvm_cpuid_entry2 *kvm_find_cpuid_entry(struct kvm_vcpu *vcpu,
917 u32 function, u32 index)
918{
Sean Christopherson7ff6c032020-03-02 15:56:51 -0800919 struct kvm_cpuid_entry2 *e;
Avi Kivity00b27a32011-11-23 16:30:32 +0200920 int i;
Avi Kivity00b27a32011-11-23 16:30:32 +0200921
922 for (i = 0; i < vcpu->arch.cpuid_nent; ++i) {
Avi Kivity00b27a32011-11-23 16:30:32 +0200923 e = &vcpu->arch.cpuid_entries[i];
Sean Christopherson7ff6c032020-03-02 15:56:51 -0800924
925 if (e->function == function && (e->index == index ||
926 !(e->flags & KVM_CPUID_FLAG_SIGNIFCANT_INDEX)))
927 return e;
Avi Kivity00b27a32011-11-23 16:30:32 +0200928 }
Sean Christopherson7ff6c032020-03-02 15:56:51 -0800929 return NULL;
Avi Kivity00b27a32011-11-23 16:30:32 +0200930}
931EXPORT_SYMBOL_GPL(kvm_find_cpuid_entry);
932
Avi Kivity00b27a32011-11-23 16:30:32 +0200933/*
Sean Christopherson8d892312020-03-04 17:34:34 -0800934 * Intel CPUID semantics treats any query for an out-of-range leaf as if the
935 * highest basic leaf (i.e. CPUID.0H:EAX) were requested. AMD CPUID semantics
936 * returns all zeroes for any undefined leaf, whether or not the leaf is in
937 * range. Centaur/VIA follows Intel semantics.
938 *
939 * A leaf is considered out-of-range if its function is higher than the maximum
940 * supported leaf of its associated class or if its associated class does not
941 * exist.
942 *
943 * There are three primary classes to be considered, with their respective
944 * ranges described as "<base> - <top>[,<base2> - <top2>] inclusive. A primary
945 * class exists if a guest CPUID entry for its <base> leaf exists. For a given
946 * class, CPUID.<base>.EAX contains the max supported leaf for the class.
947 *
948 * - Basic: 0x00000000 - 0x3fffffff, 0x50000000 - 0x7fffffff
949 * - Hypervisor: 0x40000000 - 0x4fffffff
950 * - Extended: 0x80000000 - 0xbfffffff
951 * - Centaur: 0xc0000000 - 0xcfffffff
952 *
953 * The Hypervisor class is further subdivided into sub-classes that each act as
954 * their own indepdent class associated with a 0x100 byte range. E.g. if Qemu
955 * is advertising support for both HyperV and KVM, the resulting Hypervisor
956 * CPUID sub-classes are:
957 *
958 * - HyperV: 0x40000000 - 0x400000ff
959 * - KVM: 0x40000100 - 0x400001ff
Avi Kivity00b27a32011-11-23 16:30:32 +0200960 */
Sean Christopherson09c74312020-03-04 17:34:36 -0800961static struct kvm_cpuid_entry2 *
962get_out_of_range_cpuid_entry(struct kvm_vcpu *vcpu, u32 *fn_ptr, u32 index)
Avi Kivity00b27a32011-11-23 16:30:32 +0200963{
Sean Christopherson8d892312020-03-04 17:34:34 -0800964 struct kvm_cpuid_entry2 *basic, *class;
Sean Christopherson09c74312020-03-04 17:34:36 -0800965 u32 function = *fn_ptr;
Avi Kivity00b27a32011-11-23 16:30:32 +0200966
Sean Christopherson8d892312020-03-04 17:34:34 -0800967 basic = kvm_find_cpuid_entry(vcpu, 0, 0);
968 if (!basic)
Sean Christopherson09c74312020-03-04 17:34:36 -0800969 return NULL;
970
971 if (is_guest_vendor_amd(basic->ebx, basic->ecx, basic->edx) ||
972 is_guest_vendor_hygon(basic->ebx, basic->ecx, basic->edx))
973 return NULL;
Sean Christopherson8d892312020-03-04 17:34:34 -0800974
975 if (function >= 0x40000000 && function <= 0x4fffffff)
976 class = kvm_find_cpuid_entry(vcpu, function & 0xffffff00, 0);
977 else if (function >= 0xc0000000)
978 class = kvm_find_cpuid_entry(vcpu, 0xc0000000, 0);
979 else
980 class = kvm_find_cpuid_entry(vcpu, function & 0x80000000, 0);
981
Sean Christopherson09c74312020-03-04 17:34:36 -0800982 if (class && function <= class->eax)
983 return NULL;
984
985 /*
986 * Leaf specific adjustments are also applied when redirecting to the
987 * max basic entry, e.g. if the max basic leaf is 0xb but there is no
988 * entry for CPUID.0xb.index (see below), then the output value for EDX
989 * needs to be pulled from CPUID.0xb.1.
990 */
991 *fn_ptr = basic->eax;
992
993 /*
994 * The class does not exist or the requested function is out of range;
995 * the effective CPUID entry is the max basic leaf. Note, the index of
996 * the original requested leaf is observed!
997 */
998 return kvm_find_cpuid_entry(vcpu, basic->eax, index);
Avi Kivity00b27a32011-11-23 16:30:32 +0200999}
1000
Yu Zhange911eb32017-08-24 20:27:52 +08001001bool kvm_cpuid(struct kvm_vcpu *vcpu, u32 *eax, u32 *ebx,
Sean Christophersonf91af512020-03-04 17:34:37 -08001002 u32 *ecx, u32 *edx, bool exact_only)
Avi Kivity00b27a32011-11-23 16:30:32 +02001003{
Jan Kiszkab7fb8482020-03-04 17:34:31 -08001004 u32 orig_function = *eax, function = *eax, index = *ecx;
Jim Mattson43561122019-09-25 17:04:17 -07001005 struct kvm_cpuid_entry2 *entry;
Sean Christopherson2b110b62020-03-17 12:53:54 -07001006 bool exact, used_max_basic = false;
Avi Kivity00b27a32011-11-23 16:30:32 +02001007
Jim Mattson43561122019-09-25 17:04:17 -07001008 entry = kvm_find_cpuid_entry(vcpu, function, index);
Sean Christophersonf91af512020-03-04 17:34:37 -08001009 exact = !!entry;
Sean Christopherson09c74312020-03-04 17:34:36 -08001010
Sean Christopherson2b110b62020-03-17 12:53:54 -07001011 if (!entry && !exact_only) {
Sean Christopherson09c74312020-03-04 17:34:36 -08001012 entry = get_out_of_range_cpuid_entry(vcpu, &function, index);
Sean Christopherson2b110b62020-03-17 12:53:54 -07001013 used_max_basic = !!entry;
1014 }
Sean Christopherson09c74312020-03-04 17:34:36 -08001015
Jim Mattson43561122019-09-25 17:04:17 -07001016 if (entry) {
1017 *eax = entry->eax;
1018 *ebx = entry->ebx;
1019 *ecx = entry->ecx;
1020 *edx = entry->edx;
Paolo Bonziniedef5c32019-11-18 12:23:00 -05001021 if (function == 7 && index == 0) {
1022 u64 data;
1023 if (!__kvm_get_msr(vcpu, MSR_IA32_TSX_CTRL, &data, true) &&
1024 (data & TSX_CTRL_CPUID_CLEAR))
1025 *ebx &= ~(F(RTM) | F(HLE));
1026 }
Jim Mattson43561122019-09-25 17:04:17 -07001027 } else {
Avi Kivity62046e52012-06-07 14:07:48 +03001028 *eax = *ebx = *ecx = *edx = 0;
Jim Mattson43561122019-09-25 17:04:17 -07001029 /*
1030 * When leaf 0BH or 1FH is defined, CL is pass-through
1031 * and EDX is always the x2APIC ID, even for undefined
1032 * subleaves. Index 1 will exist iff the leaf is
1033 * implemented, so we pass through CL iff leaf 1
1034 * exists. EDX can be copied from any existing index.
1035 */
1036 if (function == 0xb || function == 0x1f) {
1037 entry = kvm_find_cpuid_entry(vcpu, function, 1);
1038 if (entry) {
1039 *ecx = index & 0xff;
1040 *edx = entry->edx;
1041 }
1042 }
1043 }
Sean Christopherson2b110b62020-03-17 12:53:54 -07001044 trace_kvm_cpuid(orig_function, index, *eax, *ebx, *ecx, *edx, exact,
1045 used_max_basic);
Sean Christophersonf91af512020-03-04 17:34:37 -08001046 return exact;
Avi Kivity62046e52012-06-07 14:07:48 +03001047}
Julian Stecklina66f7b722012-12-05 15:26:19 +01001048EXPORT_SYMBOL_GPL(kvm_cpuid);
Avi Kivity62046e52012-06-07 14:07:48 +03001049
Kyle Huey6a908b62016-11-29 12:40:37 -08001050int kvm_emulate_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity62046e52012-06-07 14:07:48 +03001051{
Jiang Biao1e131752016-11-07 08:55:49 +08001052 u32 eax, ebx, ecx, edx;
Avi Kivity62046e52012-06-07 14:07:48 +03001053
Kyle Hueydb2336a2017-03-20 01:16:28 -07001054 if (cpuid_fault_enabled(vcpu) && !kvm_require_cpl(vcpu, 0))
1055 return 1;
1056
Sean Christophersonde3cd112019-04-30 10:36:17 -07001057 eax = kvm_rax_read(vcpu);
1058 ecx = kvm_rcx_read(vcpu);
Sean Christophersonf91af512020-03-04 17:34:37 -08001059 kvm_cpuid(vcpu, &eax, &ebx, &ecx, &edx, false);
Sean Christophersonde3cd112019-04-30 10:36:17 -07001060 kvm_rax_write(vcpu, eax);
1061 kvm_rbx_write(vcpu, ebx);
1062 kvm_rcx_write(vcpu, ecx);
1063 kvm_rdx_write(vcpu, edx);
Kyle Huey6affcbe2016-11-29 12:40:40 -08001064 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity00b27a32011-11-23 16:30:32 +02001065}
1066EXPORT_SYMBOL_GPL(kvm_emulate_cpuid);