blob: 35223eb63242835b7e02be93c20278e14cca82f3 [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
Vitaly Kuznetsovf69858f2020-10-01 15:05:39 +020057static inline struct kvm_cpuid_entry2 *cpuid_entry2_find(
58 struct kvm_cpuid_entry2 *entries, int nent, u32 function, u32 index)
59{
60 struct kvm_cpuid_entry2 *e;
61 int i;
62
63 for (i = 0; i < nent; i++) {
64 e = &entries[i];
65
66 if (e->function == function && (e->index == index ||
67 !(e->flags & KVM_CPUID_FLAG_SIGNIFCANT_INDEX)))
68 return e;
69 }
70
71 return NULL;
72}
73
74static int kvm_check_cpuid(struct kvm_cpuid_entry2 *entries, int nent)
Xiaoyao Lia76733a2020-07-09 12:34:22 +080075{
76 struct kvm_cpuid_entry2 *best;
77
78 /*
79 * The existing code assumes virtual address is 48-bit or 57-bit in the
80 * canonical address checks; exit if it is ever changed.
81 */
Vitaly Kuznetsovf69858f2020-10-01 15:05:39 +020082 best = cpuid_entry2_find(entries, nent, 0x80000008, 0);
Xiaoyao Lia76733a2020-07-09 12:34:22 +080083 if (best) {
84 int vaddr_bits = (best->eax & 0xff00) >> 8;
85
86 if (vaddr_bits != 48 && vaddr_bits != 57 && vaddr_bits != 0)
87 return -EINVAL;
88 }
89
90 return 0;
91}
92
Xiaoyao Liaedbaf42020-07-09 12:34:23 +080093void kvm_update_cpuid_runtime(struct kvm_vcpu *vcpu)
Avi Kivity00b27a32011-11-23 16:30:32 +020094{
95 struct kvm_cpuid_entry2 *best;
Avi Kivity00b27a32011-11-23 16:30:32 +020096
97 best = kvm_find_cpuid_entry(vcpu, 1, 0);
Xiaoyao Li0d3b2ba2020-07-08 14:50:48 +080098 if (best) {
99 /* Update OSXSAVE bit */
100 if (boot_cpu_has(X86_FEATURE_XSAVE))
101 cpuid_entry_change(best, X86_FEATURE_OSXSAVE,
Sean Christophersonb32666b2020-03-02 15:56:31 -0800102 kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE));
Avi Kivity00b27a32011-11-23 16:30:32 +0200103
Xiaoyao Li0d3b2ba2020-07-08 14:50:48 +0800104 cpuid_entry_change(best, X86_FEATURE_APIC,
Sean Christophersonb32666b2020-03-02 15:56:31 -0800105 vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE);
Xiaoyao Li0d3b2ba2020-07-08 14:50:48 +0800106 }
Jim Mattsonc7dd15b2016-11-09 09:50:11 -0800107
Huaitong Hanb9baba82016-03-22 16:51:21 +0800108 best = kvm_find_cpuid_entry(vcpu, 7, 0);
Sean Christophersonb32666b2020-03-02 15:56:31 -0800109 if (best && boot_cpu_has(X86_FEATURE_PKU) && best->function == 0x7)
110 cpuid_entry_change(best, X86_FEATURE_OSPKE,
111 kvm_read_cr4_bits(vcpu, X86_CR4_PKE));
Huaitong Hanb9baba82016-03-22 16:51:21 +0800112
Paolo Bonzinid7876f12013-10-02 16:06:15 +0200113 best = kvm_find_cpuid_entry(vcpu, 0xD, 0);
Xiaoyao Liaedbaf42020-07-09 12:34:23 +0800114 if (best)
Xiaoyao Lia71936ab2020-04-29 23:43:12 +0800115 best->ebx = xstate_required_size(vcpu->arch.xcr0, false);
Paolo Bonzinid7876f12013-10-02 16:06:15 +0200116
Paolo Bonzini412a3c42014-12-03 14:38:01 +0100117 best = kvm_find_cpuid_entry(vcpu, 0xD, 1);
Sean Christopherson4c615342020-03-02 15:56:30 -0800118 if (best && (cpuid_entry_has(best, X86_FEATURE_XSAVES) ||
119 cpuid_entry_has(best, X86_FEATURE_XSAVEC)))
Paolo Bonzini412a3c42014-12-03 14:38:01 +0100120 best->ebx = xstate_required_size(vcpu->arch.xcr0, true);
121
Wanpeng Licaa057a2018-03-12 04:53:03 -0700122 best = kvm_find_cpuid_entry(vcpu, KVM_CPUID_FEATURES, 0);
123 if (kvm_hlt_in_guest(vcpu->kvm) && best &&
124 (best->eax & (1 << KVM_FEATURE_PV_UNHALT)))
125 best->eax &= ~(1 << KVM_FEATURE_PV_UNHALT);
126
Oliver Upton66570e92020-08-18 15:24:28 +0000127 /*
128 * save the feature bitmap to avoid cpuid lookup for every PV
129 * operation
130 */
131 if (best)
132 vcpu->arch.pv_cpuid.features = best->eax;
133
Wanpeng Li511a85562019-05-21 14:06:54 +0800134 if (!kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_MISC_ENABLE_NO_MWAIT)) {
135 best = kvm_find_cpuid_entry(vcpu, 0x1, 0);
Sean Christophersonb32666b2020-03-02 15:56:31 -0800136 if (best)
137 cpuid_entry_change(best, X86_FEATURE_MWAIT,
138 vcpu->arch.ia32_misc_enable_msr &
139 MSR_IA32_MISC_ENABLE_MWAIT);
Wanpeng Li511a85562019-05-21 14:06:54 +0800140 }
Xiaoyao Liaedbaf42020-07-09 12:34:23 +0800141}
142
Xiaoyao Li346ce352020-07-09 12:34:24 +0800143static void kvm_vcpu_after_set_cpuid(struct kvm_vcpu *vcpu)
Xiaoyao Liaedbaf42020-07-09 12:34:23 +0800144{
145 struct kvm_lapic *apic = vcpu->arch.apic;
146 struct kvm_cpuid_entry2 *best;
147
148 best = kvm_find_cpuid_entry(vcpu, 1, 0);
149 if (best && apic) {
150 if (cpuid_entry_has(best, X86_FEATURE_TSC_DEADLINE_TIMER))
151 apic->lapic_timer.timer_mode_mask = 3 << 17;
152 else
153 apic->lapic_timer.timer_mode_mask = 1 << 17;
154
155 kvm_apic_set_version(vcpu);
156 }
157
158 best = kvm_find_cpuid_entry(vcpu, 0xD, 0);
159 if (!best)
160 vcpu->arch.guest_supported_xcr0 = 0;
161 else
162 vcpu->arch.guest_supported_xcr0 =
163 (best->eax | ((u64)best->edx << 32)) & supported_xcr0;
Wanpeng Li511a85562019-05-21 14:06:54 +0800164
Eugene Korenevsky5a4f55c2015-03-29 23:56:12 +0300165 vcpu->arch.maxphyaddr = cpuid_query_maxphyaddr(vcpu);
Yu Zhang855feb62017-08-24 20:27:55 +0800166 kvm_mmu_reset_context(vcpu);
Eugene Korenevsky5a4f55c2015-03-29 23:56:12 +0300167
Wei Huangc6702c92015-06-19 13:44:45 +0200168 kvm_pmu_refresh(vcpu);
Krish Sadhukhanb899c132020-07-08 00:39:55 +0000169 vcpu->arch.cr4_guest_rsvd_bits =
170 __cr4_reserved_bits(guest_cpuid_has, vcpu);
Sean Christophersonc44d9b32020-09-29 21:16:56 -0700171
172 /* Invoke the vendor callback only after the above state is updated. */
173 kvm_x86_ops.vcpu_after_set_cpuid(vcpu);
Paolo Bonzini32de2b52020-07-10 17:48:07 +0200174 kvm_x86_ops.update_exception_bitmap(vcpu);
Avi Kivity00b27a32011-11-23 16:30:32 +0200175}
176
177static int is_efer_nx(void)
178{
Sean Christopherson91661982020-03-02 15:57:06 -0800179 return host_efer & EFER_NX;
Avi Kivity00b27a32011-11-23 16:30:32 +0200180}
181
182static void cpuid_fix_nx_cap(struct kvm_vcpu *vcpu)
183{
184 int i;
185 struct kvm_cpuid_entry2 *e, *entry;
186
187 entry = NULL;
188 for (i = 0; i < vcpu->arch.cpuid_nent; ++i) {
189 e = &vcpu->arch.cpuid_entries[i];
190 if (e->function == 0x80000001) {
191 entry = e;
192 break;
193 }
194 }
Sean Christopherson4c615342020-03-02 15:56:30 -0800195 if (entry && cpuid_entry_has(entry, X86_FEATURE_NX) && !is_efer_nx()) {
Sean Christophersonb32666b2020-03-02 15:56:31 -0800196 cpuid_entry_clear(entry, X86_FEATURE_NX);
Avi Kivity00b27a32011-11-23 16:30:32 +0200197 printk(KERN_INFO "kvm: guest NX capability removed\n");
198 }
199}
200
Eugene Korenevsky5a4f55c2015-03-29 23:56:12 +0300201int cpuid_query_maxphyaddr(struct kvm_vcpu *vcpu)
202{
203 struct kvm_cpuid_entry2 *best;
204
205 best = kvm_find_cpuid_entry(vcpu, 0x80000000, 0);
206 if (!best || best->eax < 0x80000008)
207 goto not_found;
208 best = kvm_find_cpuid_entry(vcpu, 0x80000008, 0);
209 if (best)
210 return best->eax & 0xff;
211not_found:
212 return 36;
213}
Eugene Korenevsky5a4f55c2015-03-29 23:56:12 +0300214
Avi Kivity00b27a32011-11-23 16:30:32 +0200215/* when an old userspace process fills a new kernel module */
216int kvm_vcpu_ioctl_set_cpuid(struct kvm_vcpu *vcpu,
217 struct kvm_cpuid *cpuid,
218 struct kvm_cpuid_entry __user *entries)
219{
220 int r, i;
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +0200221 struct kvm_cpuid_entry *e = NULL;
222 struct kvm_cpuid_entry2 *e2 = NULL;
Avi Kivity00b27a32011-11-23 16:30:32 +0200223
Avi Kivity00b27a32011-11-23 16:30:32 +0200224 if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +0200225 return -E2BIG;
226
Paolo Bonzini83676e92016-06-01 14:09:19 +0200227 if (cpuid->nent) {
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +0200228 e = vmemdup_user(entries, array_size(sizeof(*e), cpuid->nent));
229 if (IS_ERR(e))
230 return PTR_ERR(e);
231
232 e2 = kvmalloc_array(cpuid->nent, sizeof(*e2), GFP_KERNEL_ACCOUNT);
233 if (!e2) {
234 r = -ENOMEM;
235 goto out_free_cpuid;
Denis Efremov7ec28e22020-06-03 13:11:31 +0300236 }
Paolo Bonzini83676e92016-06-01 14:09:19 +0200237 }
Avi Kivity00b27a32011-11-23 16:30:32 +0200238 for (i = 0; i < cpuid->nent; i++) {
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +0200239 e2[i].function = e[i].function;
240 e2[i].eax = e[i].eax;
241 e2[i].ebx = e[i].ebx;
242 e2[i].ecx = e[i].ecx;
243 e2[i].edx = e[i].edx;
244 e2[i].index = 0;
245 e2[i].flags = 0;
246 e2[i].padding[0] = 0;
247 e2[i].padding[1] = 0;
248 e2[i].padding[2] = 0;
Avi Kivity00b27a32011-11-23 16:30:32 +0200249 }
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +0200250
251 r = kvm_check_cpuid(e2, cpuid->nent);
Xiaoyao Lia76733a2020-07-09 12:34:22 +0800252 if (r) {
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +0200253 kvfree(e2);
254 goto out_free_cpuid;
Xiaoyao Lia76733a2020-07-09 12:34:22 +0800255 }
256
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +0200257 kvfree(vcpu->arch.cpuid_entries);
258 vcpu->arch.cpuid_entries = e2;
259 vcpu->arch.cpuid_nent = cpuid->nent;
260
Avi Kivity00b27a32011-11-23 16:30:32 +0200261 cpuid_fix_nx_cap(vcpu);
Xiaoyao Liaedbaf42020-07-09 12:34:23 +0800262 kvm_update_cpuid_runtime(vcpu);
Xiaoyao Li346ce352020-07-09 12:34:24 +0800263 kvm_vcpu_after_set_cpuid(vcpu);
Avi Kivity00b27a32011-11-23 16:30:32 +0200264
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +0200265out_free_cpuid:
266 kvfree(e);
267
Avi Kivity00b27a32011-11-23 16:30:32 +0200268 return r;
269}
270
271int kvm_vcpu_ioctl_set_cpuid2(struct kvm_vcpu *vcpu,
272 struct kvm_cpuid2 *cpuid,
273 struct kvm_cpuid_entry2 __user *entries)
274{
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +0200275 struct kvm_cpuid_entry2 *e2 = NULL;
Avi Kivity00b27a32011-11-23 16:30:32 +0200276 int r;
277
Avi Kivity00b27a32011-11-23 16:30:32 +0200278 if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +0200279 return -E2BIG;
280
281 if (cpuid->nent) {
282 e2 = vmemdup_user(entries, array_size(sizeof(*e2), cpuid->nent));
283 if (IS_ERR(e2))
284 return PTR_ERR(e2);
Xiaoyao Lia76733a2020-07-09 12:34:22 +0800285 }
286
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +0200287 r = kvm_check_cpuid(e2, cpuid->nent);
288 if (r) {
289 kvfree(e2);
290 return r;
291 }
292
293 kvfree(vcpu->arch.cpuid_entries);
294 vcpu->arch.cpuid_entries = e2;
295 vcpu->arch.cpuid_nent = cpuid->nent;
296
Xiaoyao Liaedbaf42020-07-09 12:34:23 +0800297 kvm_update_cpuid_runtime(vcpu);
Xiaoyao Li346ce352020-07-09 12:34:24 +0800298 kvm_vcpu_after_set_cpuid(vcpu);
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +0200299
300 return 0;
Avi Kivity00b27a32011-11-23 16:30:32 +0200301}
302
303int kvm_vcpu_ioctl_get_cpuid2(struct kvm_vcpu *vcpu,
304 struct kvm_cpuid2 *cpuid,
305 struct kvm_cpuid_entry2 __user *entries)
306{
307 int r;
308
309 r = -E2BIG;
310 if (cpuid->nent < vcpu->arch.cpuid_nent)
311 goto out;
312 r = -EFAULT;
313 if (copy_to_user(entries, &vcpu->arch.cpuid_entries,
314 vcpu->arch.cpuid_nent * sizeof(struct kvm_cpuid_entry2)))
315 goto out;
316 return 0;
317
318out:
319 cpuid->nent = vcpu->arch.cpuid_nent;
320 return r;
321}
322
Sean Christopherson66a69502020-03-02 15:56:41 -0800323static __always_inline void kvm_cpu_cap_mask(enum cpuid_leafs leaf, u32 mask)
324{
Sean Christophersond8577a42020-03-02 15:56:52 -0800325 const struct cpuid_reg cpuid = x86_feature_cpuid(leaf * 32);
326 struct kvm_cpuid_entry2 entry;
327
Sean Christopherson66a69502020-03-02 15:56:41 -0800328 reverse_cpuid_check(leaf);
329 kvm_cpu_caps[leaf] &= mask;
Sean Christophersond8577a42020-03-02 15:56:52 -0800330
331 cpuid_count(cpuid.function, cpuid.index,
332 &entry.eax, &entry.ebx, &entry.ecx, &entry.edx);
333
Sean Christopherson855c7e92020-03-25 12:12:59 -0700334 kvm_cpu_caps[leaf] &= *__cpuid_entry_get_reg(&entry, cpuid.reg);
Sean Christopherson66a69502020-03-02 15:56:41 -0800335}
336
337void kvm_set_cpu_caps(void)
338{
339 unsigned int f_nx = is_efer_nx() ? F(NX) : 0;
340#ifdef CONFIG_X86_64
341 unsigned int f_gbpages = F(GBPAGES);
342 unsigned int f_lm = F(LM);
343#else
344 unsigned int f_gbpages = 0;
345 unsigned int f_lm = 0;
346#endif
347
348 BUILD_BUG_ON(sizeof(kvm_cpu_caps) >
349 sizeof(boot_cpu_data.x86_capability));
350
351 memcpy(&kvm_cpu_caps, &boot_cpu_data.x86_capability,
352 sizeof(kvm_cpu_caps));
353
354 kvm_cpu_cap_mask(CPUID_1_ECX,
355 /*
356 * NOTE: MONITOR (and MWAIT) are emulated as NOP, but *not*
357 * advertised to guests via CPUID!
358 */
359 F(XMM3) | F(PCLMULQDQ) | 0 /* DTES64, MONITOR */ |
360 0 /* DS-CPL, VMX, SMX, EST */ |
361 0 /* TM2 */ | F(SSSE3) | 0 /* CNXT-ID */ | 0 /* Reserved */ |
Like Xu27461da32020-05-29 15:43:45 +0800362 F(FMA) | F(CX16) | 0 /* xTPR Update */ | F(PDCM) |
Sean Christopherson66a69502020-03-02 15:56:41 -0800363 F(PCID) | 0 /* Reserved, DCA */ | F(XMM4_1) |
364 F(XMM4_2) | F(X2APIC) | F(MOVBE) | F(POPCNT) |
365 0 /* Reserved*/ | F(AES) | F(XSAVE) | 0 /* OSXSAVE */ | F(AVX) |
366 F(F16C) | F(RDRAND)
367 );
Sean Christopherson93c380e2020-03-02 15:56:54 -0800368 /* KVM emulates x2apic in software irrespective of host support. */
369 kvm_cpu_cap_set(X86_FEATURE_X2APIC);
Sean Christopherson66a69502020-03-02 15:56:41 -0800370
371 kvm_cpu_cap_mask(CPUID_1_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(SEP) |
375 F(MTRR) | F(PGE) | F(MCA) | F(CMOV) |
376 F(PAT) | F(PSE36) | 0 /* PSN */ | F(CLFLUSH) |
377 0 /* Reserved, DS, ACPI */ | F(MMX) |
378 F(FXSR) | F(XMM) | F(XMM2) | F(SELFSNOOP) |
379 0 /* HTT, TM, Reserved, PBE */
380 );
381
382 kvm_cpu_cap_mask(CPUID_7_0_EBX,
383 F(FSGSBASE) | F(BMI1) | F(HLE) | F(AVX2) | F(SMEP) |
384 F(BMI2) | F(ERMS) | 0 /*INVPCID*/ | F(RTM) | 0 /*MPX*/ | F(RDSEED) |
385 F(ADX) | F(SMAP) | F(AVX512IFMA) | F(AVX512F) | F(AVX512PF) |
386 F(AVX512ER) | F(AVX512CD) | F(CLFLUSHOPT) | F(CLWB) | F(AVX512DQ) |
387 F(SHA_NI) | F(AVX512BW) | F(AVX512VL) | 0 /*INTEL_PT*/
388 );
389
390 kvm_cpu_cap_mask(CPUID_7_ECX,
Babu Mogerfa44b822020-05-12 18:59:16 -0500391 F(AVX512VBMI) | F(LA57) | F(PKU) | 0 /*OSPKE*/ | F(RDPID) |
Sean Christopherson66a69502020-03-02 15:56:41 -0800392 F(AVX512_VPOPCNTDQ) | F(UMIP) | F(AVX512_VBMI2) | F(GFNI) |
393 F(VAES) | F(VPCLMULQDQ) | F(AVX512_VNNI) | F(AVX512_BITALG) |
394 F(CLDEMOTE) | F(MOVDIRI) | F(MOVDIR64B) | 0 /*WAITPKG*/
395 );
396 /* Set LA57 based on hardware capability. */
397 if (cpuid_ecx(7) & F(LA57))
398 kvm_cpu_cap_set(X86_FEATURE_LA57);
399
Babu Mogerfa44b822020-05-12 18:59:16 -0500400 /*
401 * PKU not yet implemented for shadow paging and requires OSPKE
402 * to be set on the host. Clear it if that is not the case
403 */
404 if (!tdp_enabled || !boot_cpu_has(X86_FEATURE_OSPKE))
405 kvm_cpu_cap_clear(X86_FEATURE_PKU);
406
Sean Christopherson66a69502020-03-02 15:56:41 -0800407 kvm_cpu_cap_mask(CPUID_7_EDX,
408 F(AVX512_4VNNIW) | F(AVX512_4FMAPS) | F(SPEC_CTRL) |
409 F(SPEC_CTRL_SSBD) | F(ARCH_CAPABILITIES) | F(INTEL_STIBP) |
Paolo Bonzini43bd9ef2020-08-09 13:04:56 -0400410 F(MD_CLEAR) | F(AVX512_VP2INTERSECT) | F(FSRM) |
Cathy Zhang61aa9a02020-08-25 08:47:58 +0800411 F(SERIALIZE) | F(TSXLDTRK)
Sean Christopherson66a69502020-03-02 15:56:41 -0800412 );
413
Sean Christopherson93c380e2020-03-02 15:56:54 -0800414 /* TSC_ADJUST and ARCH_CAPABILITIES are emulated in software. */
415 kvm_cpu_cap_set(X86_FEATURE_TSC_ADJUST);
416 kvm_cpu_cap_set(X86_FEATURE_ARCH_CAPABILITIES);
417
418 if (boot_cpu_has(X86_FEATURE_IBPB) && boot_cpu_has(X86_FEATURE_IBRS))
419 kvm_cpu_cap_set(X86_FEATURE_SPEC_CTRL);
420 if (boot_cpu_has(X86_FEATURE_STIBP))
421 kvm_cpu_cap_set(X86_FEATURE_INTEL_STIBP);
422 if (boot_cpu_has(X86_FEATURE_AMD_SSBD))
423 kvm_cpu_cap_set(X86_FEATURE_SPEC_CTRL_SSBD);
424
Sean Christopherson66a69502020-03-02 15:56:41 -0800425 kvm_cpu_cap_mask(CPUID_7_1_EAX,
426 F(AVX512_BF16)
427 );
428
429 kvm_cpu_cap_mask(CPUID_D_1_EAX,
430 F(XSAVEOPT) | F(XSAVEC) | F(XGETBV1) | F(XSAVES)
431 );
432
433 kvm_cpu_cap_mask(CPUID_8000_0001_ECX,
434 F(LAHF_LM) | F(CMP_LEGACY) | 0 /*SVM*/ | 0 /* ExtApicSpace */ |
435 F(CR8_LEGACY) | F(ABM) | F(SSE4A) | F(MISALIGNSSE) |
436 F(3DNOWPREFETCH) | F(OSVW) | 0 /* IBS */ | F(XOP) |
437 0 /* SKINIT, WDT, LWP */ | F(FMA4) | F(TBM) |
438 F(TOPOEXT) | F(PERFCTR_CORE)
439 );
440
441 kvm_cpu_cap_mask(CPUID_8000_0001_EDX,
442 F(FPU) | F(VME) | F(DE) | F(PSE) |
443 F(TSC) | F(MSR) | F(PAE) | F(MCE) |
444 F(CX8) | F(APIC) | 0 /* Reserved */ | F(SYSCALL) |
445 F(MTRR) | F(PGE) | F(MCA) | F(CMOV) |
446 F(PAT) | F(PSE36) | 0 /* Reserved */ |
447 f_nx | 0 /* Reserved */ | F(MMXEXT) | F(MMX) |
448 F(FXSR) | F(FXSR_OPT) | f_gbpages | F(RDTSCP) |
449 0 /* Reserved */ | f_lm | F(3DNOWEXT) | F(3DNOW)
450 );
451
452 if (!tdp_enabled && IS_ENABLED(CONFIG_X86_64))
453 kvm_cpu_cap_set(X86_FEATURE_GBPAGES);
454
455 kvm_cpu_cap_mask(CPUID_8000_0008_EBX,
456 F(CLZERO) | F(XSAVEERPTR) |
457 F(WBNOINVD) | F(AMD_IBPB) | F(AMD_IBRS) | F(AMD_SSBD) | F(VIRT_SSBD) |
458 F(AMD_SSB_NO) | F(AMD_STIBP) | F(AMD_STIBP_ALWAYS_ON)
459 );
460
Sean Christopherson9b58b982020-03-02 15:56:42 -0800461 /*
Sean Christopherson93c380e2020-03-02 15:56:54 -0800462 * AMD has separate bits for each SPEC_CTRL bit.
463 * arch/x86/kernel/cpu/bugs.c is kind enough to
464 * record that in cpufeatures so use them.
465 */
466 if (boot_cpu_has(X86_FEATURE_IBPB))
467 kvm_cpu_cap_set(X86_FEATURE_AMD_IBPB);
468 if (boot_cpu_has(X86_FEATURE_IBRS))
469 kvm_cpu_cap_set(X86_FEATURE_AMD_IBRS);
470 if (boot_cpu_has(X86_FEATURE_STIBP))
471 kvm_cpu_cap_set(X86_FEATURE_AMD_STIBP);
472 if (boot_cpu_has(X86_FEATURE_SPEC_CTRL_SSBD))
473 kvm_cpu_cap_set(X86_FEATURE_AMD_SSBD);
474 if (!boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS))
475 kvm_cpu_cap_set(X86_FEATURE_AMD_SSB_NO);
476 /*
477 * The preference is to use SPEC CTRL MSR instead of the
478 * VIRT_SPEC MSR.
479 */
480 if (boot_cpu_has(X86_FEATURE_LS_CFG_SSBD) &&
481 !boot_cpu_has(X86_FEATURE_AMD_SSBD))
482 kvm_cpu_cap_set(X86_FEATURE_VIRT_SSBD);
483
484 /*
Sean Christopherson9b58b982020-03-02 15:56:42 -0800485 * Hide all SVM features by default, SVM will set the cap bits for
486 * features it emulates and/or exposes for L1.
487 */
488 kvm_cpu_cap_mask(CPUID_8000_000A_EDX, 0);
489
Sean Christopherson66a69502020-03-02 15:56:41 -0800490 kvm_cpu_cap_mask(CPUID_C000_0001_EDX,
491 F(XSTORE) | F(XSTORE_EN) | F(XCRYPT) | F(XCRYPT_EN) |
492 F(ACE2) | F(ACE2_EN) | F(PHE) | F(PHE_EN) |
493 F(PMM) | F(PMM_EN)
494 );
495}
496EXPORT_SYMBOL_GPL(kvm_set_cpu_caps);
497
Sean Christophersone53c95e2020-03-02 15:56:19 -0800498struct kvm_cpuid_array {
499 struct kvm_cpuid_entry2 *entries;
Xiaoyao Li65b18912020-06-04 12:16:36 +0800500 int maxnent;
Sean Christophersone53c95e2020-03-02 15:56:19 -0800501 int nent;
502};
503
504static struct kvm_cpuid_entry2 *do_host_cpuid(struct kvm_cpuid_array *array,
Sean Christophersonaa10a7d2020-03-02 15:56:16 -0800505 u32 function, u32 index)
Avi Kivity00b27a32011-11-23 16:30:32 +0200506{
Sean Christophersone53c95e2020-03-02 15:56:19 -0800507 struct kvm_cpuid_entry2 *entry;
508
509 if (array->nent >= array->maxnent)
Sean Christophersonaa10a7d2020-03-02 15:56:16 -0800510 return NULL;
Sean Christophersone53c95e2020-03-02 15:56:19 -0800511
512 entry = &array->entries[array->nent++];
Sean Christophersonaa10a7d2020-03-02 15:56:16 -0800513
Avi Kivity00b27a32011-11-23 16:30:32 +0200514 entry->function = function;
515 entry->index = index;
Paolo Bonziniab8bcf62019-06-24 10:23:33 +0200516 entry->flags = 0;
517
Avi Kivity00b27a32011-11-23 16:30:32 +0200518 cpuid_count(entry->function, entry->index,
519 &entry->eax, &entry->ebx, &entry->ecx, &entry->edx);
Paolo Bonzinid9aadaf2019-07-04 12:20:48 +0200520
521 switch (function) {
Paolo Bonzinid9aadaf2019-07-04 12:20:48 +0200522 case 4:
523 case 7:
524 case 0xb:
525 case 0xd:
Jim Mattsona06dcd62019-09-12 09:55:03 -0700526 case 0xf:
527 case 0x10:
528 case 0x12:
Paolo Bonzinid9aadaf2019-07-04 12:20:48 +0200529 case 0x14:
Jim Mattsona06dcd62019-09-12 09:55:03 -0700530 case 0x17:
531 case 0x18:
532 case 0x1f:
Paolo Bonzinid9aadaf2019-07-04 12:20:48 +0200533 case 0x8000001d:
534 entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
535 break;
536 }
Sean Christophersonaa10a7d2020-03-02 15:56:16 -0800537
538 return entry;
Avi Kivity00b27a32011-11-23 16:30:32 +0200539}
540
Sean Christophersone53c95e2020-03-02 15:56:19 -0800541static int __do_cpuid_func_emulated(struct kvm_cpuid_array *array, u32 func)
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200542{
Sean Christopherson7c7f9542020-03-02 15:56:56 -0800543 struct kvm_cpuid_entry2 *entry;
Sean Christophersone53c95e2020-03-02 15:56:19 -0800544
Sean Christopherson7c7f9542020-03-02 15:56:56 -0800545 if (array->nent >= array->maxnent)
546 return -E2BIG;
547
548 entry = &array->entries[array->nent];
Paolo Bonziniab8bcf62019-06-24 10:23:33 +0200549 entry->function = func;
550 entry->index = 0;
551 entry->flags = 0;
552
Borislav Petkov84cffe42013-10-29 12:54:56 +0100553 switch (func) {
554 case 0:
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +0200555 entry->eax = 7;
Sean Christophersone53c95e2020-03-02 15:56:19 -0800556 ++array->nent;
Borislav Petkov84cffe42013-10-29 12:54:56 +0100557 break;
558 case 1:
559 entry->ecx = F(MOVBE);
Sean Christophersone53c95e2020-03-02 15:56:19 -0800560 ++array->nent;
Borislav Petkov84cffe42013-10-29 12:54:56 +0100561 break;
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +0200562 case 7:
563 entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
Paolo Bonziniab8bcf62019-06-24 10:23:33 +0200564 entry->eax = 0;
565 entry->ecx = F(RDPID);
Sean Christophersone53c95e2020-03-02 15:56:19 -0800566 ++array->nent;
Borislav Petkov84cffe42013-10-29 12:54:56 +0100567 default:
568 break;
569 }
570
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200571 return 0;
572}
573
Sean Christophersone53c95e2020-03-02 15:56:19 -0800574static inline int __do_cpuid_func(struct kvm_cpuid_array *array, u32 function)
Avi Kivity00b27a32011-11-23 16:30:32 +0200575{
Sean Christophersone53c95e2020-03-02 15:56:19 -0800576 struct kvm_cpuid_entry2 *entry;
Sean Christopherson74fa0bc2020-03-02 15:56:17 -0800577 int r, i, max_idx;
Avi Kivity00b27a32011-11-23 16:30:32 +0200578
Avi Kivity00b27a32011-11-23 16:30:32 +0200579 /* all calls to cpuid_count() should be made on the same cpu */
580 get_cpu();
Sasha Levin831bf662011-11-28 11:20:29 +0200581
582 r = -E2BIG;
583
Sean Christophersone53c95e2020-03-02 15:56:19 -0800584 entry = do_host_cpuid(array, function, 0);
Sean Christopherson7c7f9542020-03-02 15:56:56 -0800585 if (!entry)
Sasha Levin831bf662011-11-28 11:20:29 +0200586 goto out;
587
Avi Kivity00b27a32011-11-23 16:30:32 +0200588 switch (function) {
589 case 0:
Like Xua87f2d32019-06-06 09:18:45 +0800590 /* Limited to the highest leaf implemented in KVM. */
591 entry->eax = min(entry->eax, 0x1fU);
Avi Kivity00b27a32011-11-23 16:30:32 +0200592 break;
593 case 1:
Sean Christophersonbd791992020-03-02 15:56:53 -0800594 cpuid_entry_override(entry, CPUID_1_EDX);
595 cpuid_entry_override(entry, CPUID_1_ECX);
Avi Kivity00b27a32011-11-23 16:30:32 +0200596 break;
Sean Christopherson74fa0bc2020-03-02 15:56:17 -0800597 case 2:
Sean Christophersonc571a142020-03-02 15:56:50 -0800598 /*
599 * On ancient CPUs, function 2 entries are STATEFUL. That is,
600 * CPUID(function=2, index=0) may return different results each
601 * time, with the least-significant byte in EAX enumerating the
602 * number of times software should do CPUID(2, 0).
603 *
Sean Christopherson7ff6c032020-03-02 15:56:51 -0800604 * Modern CPUs, i.e. every CPU KVM has *ever* run on are less
605 * idiotic. Intel's SDM states that EAX & 0xff "will always
606 * return 01H. Software should ignore this value and not
Sean Christophersonc571a142020-03-02 15:56:50 -0800607 * interpret it as an informational descriptor", while AMD's
608 * APM states that CPUID(2) is reserved.
Sean Christopherson7ff6c032020-03-02 15:56:51 -0800609 *
610 * WARN if a frankenstein CPU that supports virtualization and
611 * a stateful CPUID.0x2 is encountered.
Sean Christophersonc571a142020-03-02 15:56:50 -0800612 */
Sean Christopherson7ff6c032020-03-02 15:56:51 -0800613 WARN_ON_ONCE((entry->eax & 0xff) > 1);
Avi Kivity00b27a32011-11-23 16:30:32 +0200614 break;
Jim Mattson32a243d2019-03-27 13:15:36 -0700615 /* functions 4 and 0x8000001d have additional index. */
616 case 4:
Sean Christophersonc8629032020-03-02 15:56:18 -0800617 case 0x8000001d:
618 /*
619 * Read entries until the cache type in the previous entry is
620 * zero, i.e. indicates an invalid entry.
621 */
Sean Christophersone53c95e2020-03-02 15:56:19 -0800622 for (i = 1; entry->eax & 0x1f; ++i) {
623 entry = do_host_cpuid(array, function, i);
624 if (!entry)
Sean Christopherson0fc62672020-03-02 15:56:08 -0800625 goto out;
Avi Kivity00b27a32011-11-23 16:30:32 +0200626 }
627 break;
Jan Kiszkae453aa02015-05-24 17:22:38 +0200628 case 6: /* Thermal management */
629 entry->eax = 0x4; /* allow ARAT */
630 entry->ebx = 0;
631 entry->ecx = 0;
632 entry->edx = 0;
633 break;
Paolo Bonzini54d360d2019-07-04 12:18:13 +0200634 /* function 7 has additional index. */
Sean Christopherson74fa0bc2020-03-02 15:56:17 -0800635 case 7:
Sean Christopherson09f628a2020-03-02 15:56:48 -0800636 entry->eax = min(entry->eax, 1u);
Sean Christophersonbd791992020-03-02 15:56:53 -0800637 cpuid_entry_override(entry, CPUID_7_0_EBX);
638 cpuid_entry_override(entry, CPUID_7_ECX);
639 cpuid_entry_override(entry, CPUID_7_EDX);
Sean Christopherson09f628a2020-03-02 15:56:48 -0800640
Sean Christophersonbcf600c2020-03-02 15:56:49 -0800641 /* KVM only supports 0x7.0 and 0x7.1, capped above via min(). */
642 if (entry->eax == 1) {
643 entry = do_host_cpuid(array, function, 1);
Sean Christophersone53c95e2020-03-02 15:56:19 -0800644 if (!entry)
Paolo Bonzini54d360d2019-07-04 12:18:13 +0200645 goto out;
646
Sean Christophersonbd791992020-03-02 15:56:53 -0800647 cpuid_entry_override(entry, CPUID_7_1_EAX);
Sean Christopherson09f628a2020-03-02 15:56:48 -0800648 entry->ebx = 0;
649 entry->ecx = 0;
650 entry->edx = 0;
Paolo Bonzini54d360d2019-07-04 12:18:13 +0200651 }
Avi Kivity00b27a32011-11-23 16:30:32 +0200652 break;
Avi Kivity00b27a32011-11-23 16:30:32 +0200653 case 9:
654 break;
Gleb Natapova6c06ed2011-11-10 14:57:28 +0200655 case 0xa: { /* Architectural Performance Monitoring */
656 struct x86_pmu_capability cap;
657 union cpuid10_eax eax;
658 union cpuid10_edx edx;
659
660 perf_get_x86_pmu_capability(&cap);
661
662 /*
663 * Only support guest architectural pmu on a host
664 * with architectural pmu.
665 */
666 if (!cap.version)
667 memset(&cap, 0, sizeof(cap));
668
669 eax.split.version_id = min(cap.version, 2);
670 eax.split.num_counters = cap.num_counters_gp;
671 eax.split.bit_width = cap.bit_width_gp;
672 eax.split.mask_length = cap.events_mask_len;
673
Like Xu2e8cd7a2020-06-24 09:59:28 +0800674 edx.split.num_counters_fixed = min(cap.num_counters_fixed, MAX_FIXED_COUNTERS);
Gleb Natapova6c06ed2011-11-10 14:57:28 +0200675 edx.split.bit_width_fixed = cap.bit_width_fixed;
676 edx.split.reserved = 0;
677
678 entry->eax = eax.full;
679 entry->ebx = cap.events_mask;
680 entry->ecx = 0;
681 entry->edx = edx.full;
682 break;
683 }
Like Xua87f2d32019-06-06 09:18:45 +0800684 /*
685 * Per Intel's SDM, the 0x1f is a superset of 0xb,
686 * thus they can be handled by common code.
687 */
688 case 0x1f:
Sean Christopherson74fa0bc2020-03-02 15:56:17 -0800689 case 0xb:
Jim Mattsona1a640b2019-09-25 11:17:14 -0700690 /*
Sean Christophersone53c95e2020-03-02 15:56:19 -0800691 * Populate entries until the level type (ECX[15:8]) of the
692 * previous entry is zero. Note, CPUID EAX.{0x1f,0xb}.0 is
693 * the starting entry, filled by the primary do_host_cpuid().
Jim Mattsona1a640b2019-09-25 11:17:14 -0700694 */
Sean Christophersone53c95e2020-03-02 15:56:19 -0800695 for (i = 1; entry->ecx & 0xff00; ++i) {
696 entry = do_host_cpuid(array, function, i);
697 if (!entry)
Sasha Levin831bf662011-11-28 11:20:29 +0200698 goto out;
Avi Kivity00b27a32011-11-23 16:30:32 +0200699 }
700 break;
Sean Christophersoncfc48182020-03-02 15:56:23 -0800701 case 0xd:
702 entry->eax &= supported_xcr0;
703 entry->ebx = xstate_required_size(supported_xcr0, false);
Radim Krčmáře08e8332014-12-04 18:30:41 +0100704 entry->ecx = entry->ebx;
Sean Christophersoncfc48182020-03-02 15:56:23 -0800705 entry->edx &= supported_xcr0 >> 32;
706 if (!supported_xcr0)
Paolo Bonzinib65d6e12014-11-21 18:13:26 +0100707 break;
708
Sean Christophersone53c95e2020-03-02 15:56:19 -0800709 entry = do_host_cpuid(array, function, 1);
710 if (!entry)
Sean Christopherson3dc4a9c2020-03-02 15:56:09 -0800711 goto out;
712
Sean Christophersonbd791992020-03-02 15:56:53 -0800713 cpuid_entry_override(entry, CPUID_D_1_EAX);
Sean Christophersone53c95e2020-03-02 15:56:19 -0800714 if (entry->eax & (F(XSAVES)|F(XSAVEC)))
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100715 entry->ebx = xstate_required_size(supported_xcr0 | supported_xss,
716 true);
717 else {
718 WARN_ON_ONCE(supported_xss != 0);
Sean Christophersone53c95e2020-03-02 15:56:19 -0800719 entry->ebx = 0;
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100720 }
721 entry->ecx &= supported_xss;
722 entry->edx &= supported_xss >> 32;
Sean Christopherson3dc4a9c2020-03-02 15:56:09 -0800723
Sean Christopherson0eee8f92020-03-02 15:56:21 -0800724 for (i = 2; i < 64; ++i) {
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100725 bool s_state;
726 if (supported_xcr0 & BIT_ULL(i))
727 s_state = false;
728 else if (supported_xss & BIT_ULL(i))
729 s_state = true;
730 else
Sean Christopherson1893c942020-03-02 15:56:10 -0800731 continue;
Sean Christopherson3dc4a9c2020-03-02 15:56:09 -0800732
Sean Christopherson0eee8f92020-03-02 15:56:21 -0800733 entry = do_host_cpuid(array, function, i);
Sean Christophersone53c95e2020-03-02 15:56:19 -0800734 if (!entry)
Sasha Levin831bf662011-11-28 11:20:29 +0200735 goto out;
736
Sean Christopherson91001d42020-03-02 15:56:11 -0800737 /*
Sean Christophersoncfc48182020-03-02 15:56:23 -0800738 * The supported check above should have filtered out
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100739 * invalid sub-leafs. Only valid sub-leafs should
Sean Christopherson91001d42020-03-02 15:56:11 -0800740 * reach this point, and they should have a non-zero
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100741 * save state size. Furthermore, check whether the
742 * processor agrees with supported_xcr0/supported_xss
743 * on whether this is an XCR0- or IA32_XSS-managed area.
Sean Christopherson91001d42020-03-02 15:56:11 -0800744 */
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100745 if (WARN_ON_ONCE(!entry->eax || (entry->ecx & 0x1) != s_state)) {
Sean Christophersone53c95e2020-03-02 15:56:19 -0800746 --array->nent;
Sean Christopherson3dc4a9c2020-03-02 15:56:09 -0800747 continue;
Sean Christopherson8b2fc442020-03-02 15:56:12 -0800748 }
Sean Christophersone53c95e2020-03-02 15:56:19 -0800749 entry->edx = 0;
Avi Kivity00b27a32011-11-23 16:30:32 +0200750 }
751 break;
Chao Peng86f52012018-10-24 16:05:11 +0800752 /* Intel PT */
Sean Christopherson74fa0bc2020-03-02 15:56:17 -0800753 case 0x14:
Sean Christophersondd69cc22020-03-02 15:56:55 -0800754 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT)) {
Sean Christopherson73920792020-03-02 15:56:26 -0800755 entry->eax = entry->ebx = entry->ecx = entry->edx = 0;
Chao Peng86f52012018-10-24 16:05:11 +0800756 break;
Sean Christopherson73920792020-03-02 15:56:26 -0800757 }
Chao Peng86f52012018-10-24 16:05:11 +0800758
Sean Christopherson74fa0bc2020-03-02 15:56:17 -0800759 for (i = 1, max_idx = entry->eax; i <= max_idx; ++i) {
Sean Christophersone53c95e2020-03-02 15:56:19 -0800760 if (!do_host_cpuid(array, function, i))
Chao Peng86f52012018-10-24 16:05:11 +0800761 goto out;
Chao Peng86f52012018-10-24 16:05:11 +0800762 }
763 break;
Avi Kivity00b27a32011-11-23 16:30:32 +0200764 case KVM_CPUID_SIGNATURE: {
Mathias Krause326d07c2012-08-30 01:30:13 +0200765 static const char signature[12] = "KVMKVMKVM\0\0";
766 const u32 *sigptr = (const u32 *)signature;
Michael S. Tsirkin57c22e52012-05-02 17:55:56 +0300767 entry->eax = KVM_CPUID_FEATURES;
Avi Kivity00b27a32011-11-23 16:30:32 +0200768 entry->ebx = sigptr[0];
769 entry->ecx = sigptr[1];
770 entry->edx = sigptr[2];
771 break;
772 }
773 case KVM_CPUID_FEATURES:
774 entry->eax = (1 << KVM_FEATURE_CLOCKSOURCE) |
775 (1 << KVM_FEATURE_NOP_IO_DELAY) |
776 (1 << KVM_FEATURE_CLOCKSOURCE2) |
777 (1 << KVM_FEATURE_ASYNC_PF) |
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300778 (1 << KVM_FEATURE_PV_EOI) |
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +0530779 (1 << KVM_FEATURE_CLOCKSOURCE_STABLE_BIT) |
Wanpeng Lif38a7b72017-12-12 17:33:04 -0800780 (1 << KVM_FEATURE_PV_UNHALT) |
Radim Krčmářfe2a3022018-02-01 22:16:21 +0100781 (1 << KVM_FEATURE_PV_TLB_FLUSH) |
Wanpeng Li4180bf12018-07-23 14:39:54 +0800782 (1 << KVM_FEATURE_ASYNC_PF_VMEXIT) |
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -0300783 (1 << KVM_FEATURE_PV_SEND_IPI) |
Wanpeng Li32b72ec2019-06-11 20:23:50 +0800784 (1 << KVM_FEATURE_POLL_CONTROL) |
Vitaly Kuznetsov72de5fa4c2020-05-25 16:41:22 +0200785 (1 << KVM_FEATURE_PV_SCHED_YIELD) |
786 (1 << KVM_FEATURE_ASYNC_PF_INT);
Avi Kivity00b27a32011-11-23 16:30:32 +0200787
788 if (sched_info_on())
789 entry->eax |= (1 << KVM_FEATURE_STEAL_TIME);
790
791 entry->ebx = 0;
792 entry->ecx = 0;
793 entry->edx = 0;
794 break;
795 case 0x80000000:
Brijesh Singh8765d752017-12-04 10:57:25 -0600796 entry->eax = min(entry->eax, 0x8000001f);
Avi Kivity00b27a32011-11-23 16:30:32 +0200797 break;
798 case 0x80000001:
Sean Christophersonbd791992020-03-02 15:56:53 -0800799 cpuid_entry_override(entry, CPUID_8000_0001_EDX);
800 cpuid_entry_override(entry, CPUID_8000_0001_ECX);
Avi Kivity00b27a32011-11-23 16:30:32 +0200801 break;
Eric Northup43d05de2020-04-14 18:23:20 -0700802 case 0x80000006:
803 /* L2 cache and TLB: pass through host info. */
804 break;
Marcelo Tosattie4c9a5a12014-04-26 22:30:23 -0300805 case 0x80000007: /* Advanced power management */
806 /* invariant TSC is CPUID.80000007H:EDX[8] */
807 entry->edx &= (1 << 8);
808 /* mask against host */
809 entry->edx &= boot_cpu_data.x86_power;
810 entry->eax = entry->ebx = entry->ecx = 0;
811 break;
Avi Kivity00b27a32011-11-23 16:30:32 +0200812 case 0x80000008: {
813 unsigned g_phys_as = (entry->eax >> 16) & 0xff;
814 unsigned virt_as = max((entry->eax >> 8) & 0xff, 48U);
815 unsigned phys_as = entry->eax & 0xff;
816
817 if (!g_phys_as)
818 g_phys_as = phys_as;
819 entry->eax = g_phys_as | (virt_as << 8);
Ashok Raj15d45072018-02-01 22:59:43 +0100820 entry->edx = 0;
Sean Christophersonbd791992020-03-02 15:56:53 -0800821 cpuid_entry_override(entry, CPUID_8000_0008_EBX);
Avi Kivity00b27a32011-11-23 16:30:32 +0200822 break;
823 }
Sean Christopherson25703872020-03-02 15:57:09 -0800824 case 0x8000000A:
825 if (!kvm_cpu_cap_has(X86_FEATURE_SVM)) {
826 entry->eax = entry->ebx = entry->ecx = entry->edx = 0;
827 break;
828 }
829 entry->eax = 1; /* SVM revision 1 */
830 entry->ebx = 8; /* Lets support 8 ASIDs in case we add proper
831 ASID emulation to nested SVM */
832 entry->ecx = 0; /* Reserved */
833 cpuid_entry_override(entry, CPUID_8000_000A_EDX);
834 break;
Avi Kivity00b27a32011-11-23 16:30:32 +0200835 case 0x80000019:
836 entry->ecx = entry->edx = 0;
837 break;
838 case 0x8000001a:
Jim Mattson382409b2019-03-27 13:15:37 -0700839 case 0x8000001e:
Avi Kivity00b27a32011-11-23 16:30:32 +0200840 break;
Peter Gondac1de0f22019-11-21 12:33:43 -0800841 /* Support memory encryption cpuid if host supports it */
842 case 0x8000001F:
843 if (!boot_cpu_has(X86_FEATURE_SEV))
844 entry->eax = entry->ebx = entry->ecx = entry->edx = 0;
845 break;
Avi Kivity00b27a32011-11-23 16:30:32 +0200846 /*Add support for Centaur's CPUID instruction*/
847 case 0xC0000000:
848 /*Just support up to 0xC0000004 now*/
849 entry->eax = min(entry->eax, 0xC0000004);
850 break;
851 case 0xC0000001:
Sean Christophersonbd791992020-03-02 15:56:53 -0800852 cpuid_entry_override(entry, CPUID_C000_0001_EDX);
Avi Kivity00b27a32011-11-23 16:30:32 +0200853 break;
854 case 3: /* Processor serial number */
855 case 5: /* MONITOR/MWAIT */
Avi Kivity00b27a32011-11-23 16:30:32 +0200856 case 0xC0000002:
857 case 0xC0000003:
858 case 0xC0000004:
859 default:
860 entry->eax = entry->ebx = entry->ecx = entry->edx = 0;
861 break;
862 }
863
Sasha Levin831bf662011-11-28 11:20:29 +0200864 r = 0;
865
866out:
Avi Kivity00b27a32011-11-23 16:30:32 +0200867 put_cpu();
Sasha Levin831bf662011-11-28 11:20:29 +0200868
869 return r;
Avi Kivity00b27a32011-11-23 16:30:32 +0200870}
871
Sean Christophersone53c95e2020-03-02 15:56:19 -0800872static int do_cpuid_func(struct kvm_cpuid_array *array, u32 func,
873 unsigned int type)
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200874{
875 if (type == KVM_GET_EMULATED_CPUID)
Sean Christophersone53c95e2020-03-02 15:56:19 -0800876 return __do_cpuid_func_emulated(array, func);
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200877
Sean Christophersone53c95e2020-03-02 15:56:19 -0800878 return __do_cpuid_func(array, func);
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200879}
880
Sean Christopherson8b860792020-03-02 15:56:06 -0800881#define CENTAUR_CPUID_SIGNATURE 0xC0000000
Sasha Levin831bf662011-11-28 11:20:29 +0200882
Sean Christophersone53c95e2020-03-02 15:56:19 -0800883static int get_cpuid_func(struct kvm_cpuid_array *array, u32 func,
884 unsigned int type)
Sean Christopherson619a17f2020-03-02 15:56:05 -0800885{
886 u32 limit;
887 int r;
888
Sean Christopherson8b860792020-03-02 15:56:06 -0800889 if (func == CENTAUR_CPUID_SIGNATURE &&
890 boot_cpu_data.x86_vendor != X86_VENDOR_CENTAUR)
891 return 0;
892
Sean Christophersone53c95e2020-03-02 15:56:19 -0800893 r = do_cpuid_func(array, func, type);
Sean Christopherson619a17f2020-03-02 15:56:05 -0800894 if (r)
895 return r;
896
Sean Christophersone53c95e2020-03-02 15:56:19 -0800897 limit = array->entries[array->nent - 1].eax;
Sean Christopherson619a17f2020-03-02 15:56:05 -0800898 for (func = func + 1; func <= limit; ++func) {
Sean Christophersone53c95e2020-03-02 15:56:19 -0800899 r = do_cpuid_func(array, func, type);
Sean Christopherson619a17f2020-03-02 15:56:05 -0800900 if (r)
901 break;
902 }
903
904 return r;
905}
906
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200907static bool sanity_check_entries(struct kvm_cpuid_entry2 __user *entries,
908 __u32 num_entries, unsigned int ioctl_type)
909{
910 int i;
Borislav Petkov1b2ca422013-11-06 15:46:02 +0100911 __u32 pad[3];
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200912
913 if (ioctl_type != KVM_GET_EMULATED_CPUID)
914 return false;
915
916 /*
917 * We want to make sure that ->padding is being passed clean from
918 * userspace in case we want to use it for something in the future.
919 *
920 * Sadly, this wasn't enforced for KVM_GET_SUPPORTED_CPUID and so we
921 * have to give ourselves satisfied only with the emulated side. /me
922 * sheds a tear.
923 */
924 for (i = 0; i < num_entries; i++) {
Borislav Petkov1b2ca422013-11-06 15:46:02 +0100925 if (copy_from_user(pad, entries[i].padding, sizeof(pad)))
926 return true;
927
928 if (pad[0] || pad[1] || pad[2])
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200929 return true;
930 }
931 return false;
932}
933
934int kvm_dev_ioctl_get_cpuid(struct kvm_cpuid2 *cpuid,
935 struct kvm_cpuid_entry2 __user *entries,
936 unsigned int type)
Avi Kivity00b27a32011-11-23 16:30:32 +0200937{
Sean Christopherson8b860792020-03-02 15:56:06 -0800938 static const u32 funcs[] = {
939 0, 0x80000000, CENTAUR_CPUID_SIGNATURE, KVM_CPUID_SIGNATURE,
Sasha Levin831bf662011-11-28 11:20:29 +0200940 };
Avi Kivity00b27a32011-11-23 16:30:32 +0200941
Sean Christophersone53c95e2020-03-02 15:56:19 -0800942 struct kvm_cpuid_array array = {
943 .nent = 0,
Sean Christophersone53c95e2020-03-02 15:56:19 -0800944 };
945 int r, i;
Sean Christophersond5a661d2020-03-02 15:56:07 -0800946
Avi Kivity00b27a32011-11-23 16:30:32 +0200947 if (cpuid->nent < 1)
Sean Christophersond5a661d2020-03-02 15:56:07 -0800948 return -E2BIG;
Avi Kivity00b27a32011-11-23 16:30:32 +0200949 if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
950 cpuid->nent = KVM_MAX_CPUID_ENTRIES;
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200951
952 if (sanity_check_entries(entries, cpuid->nent, type))
953 return -EINVAL;
954
Sean Christophersone53c95e2020-03-02 15:56:19 -0800955 array.entries = vzalloc(array_size(sizeof(struct kvm_cpuid_entry2),
Kees Cookfad953c2018-06-12 14:27:37 -0700956 cpuid->nent));
Sean Christophersone53c95e2020-03-02 15:56:19 -0800957 if (!array.entries)
Sean Christophersond5a661d2020-03-02 15:56:07 -0800958 return -ENOMEM;
Avi Kivity00b27a32011-11-23 16:30:32 +0200959
Xiaoyao Li65b18912020-06-04 12:16:36 +0800960 array.maxnent = cpuid->nent;
961
Sean Christopherson8b860792020-03-02 15:56:06 -0800962 for (i = 0; i < ARRAY_SIZE(funcs); i++) {
Sean Christophersone53c95e2020-03-02 15:56:19 -0800963 r = get_cpuid_func(&array, funcs[i], type);
Sasha Levin831bf662011-11-28 11:20:29 +0200964 if (r)
Avi Kivity00b27a32011-11-23 16:30:32 +0200965 goto out_free;
966 }
Sean Christophersone53c95e2020-03-02 15:56:19 -0800967 cpuid->nent = array.nent;
Avi Kivity00b27a32011-11-23 16:30:32 +0200968
Sean Christophersone53c95e2020-03-02 15:56:19 -0800969 if (copy_to_user(entries, array.entries,
970 array.nent * sizeof(struct kvm_cpuid_entry2)))
Sean Christophersond5a661d2020-03-02 15:56:07 -0800971 r = -EFAULT;
Avi Kivity00b27a32011-11-23 16:30:32 +0200972
973out_free:
Sean Christophersone53c95e2020-03-02 15:56:19 -0800974 vfree(array.entries);
Avi Kivity00b27a32011-11-23 16:30:32 +0200975 return r;
976}
977
Avi Kivity00b27a32011-11-23 16:30:32 +0200978struct kvm_cpuid_entry2 *kvm_find_cpuid_entry(struct kvm_vcpu *vcpu,
979 u32 function, u32 index)
980{
Vitaly Kuznetsovf69858f2020-10-01 15:05:39 +0200981 return cpuid_entry2_find(vcpu->arch.cpuid_entries, vcpu->arch.cpuid_nent,
982 function, index);
Avi Kivity00b27a32011-11-23 16:30:32 +0200983}
984EXPORT_SYMBOL_GPL(kvm_find_cpuid_entry);
985
Avi Kivity00b27a32011-11-23 16:30:32 +0200986/*
Sean Christopherson8d892312020-03-04 17:34:34 -0800987 * Intel CPUID semantics treats any query for an out-of-range leaf as if the
988 * highest basic leaf (i.e. CPUID.0H:EAX) were requested. AMD CPUID semantics
989 * returns all zeroes for any undefined leaf, whether or not the leaf is in
990 * range. Centaur/VIA follows Intel semantics.
991 *
992 * A leaf is considered out-of-range if its function is higher than the maximum
993 * supported leaf of its associated class or if its associated class does not
994 * exist.
995 *
996 * There are three primary classes to be considered, with their respective
997 * ranges described as "<base> - <top>[,<base2> - <top2>] inclusive. A primary
998 * class exists if a guest CPUID entry for its <base> leaf exists. For a given
999 * class, CPUID.<base>.EAX contains the max supported leaf for the class.
1000 *
1001 * - Basic: 0x00000000 - 0x3fffffff, 0x50000000 - 0x7fffffff
1002 * - Hypervisor: 0x40000000 - 0x4fffffff
1003 * - Extended: 0x80000000 - 0xbfffffff
1004 * - Centaur: 0xc0000000 - 0xcfffffff
1005 *
1006 * The Hypervisor class is further subdivided into sub-classes that each act as
1007 * their own indepdent class associated with a 0x100 byte range. E.g. if Qemu
1008 * is advertising support for both HyperV and KVM, the resulting Hypervisor
1009 * CPUID sub-classes are:
1010 *
1011 * - HyperV: 0x40000000 - 0x400000ff
1012 * - KVM: 0x40000100 - 0x400001ff
Avi Kivity00b27a32011-11-23 16:30:32 +02001013 */
Sean Christopherson09c74312020-03-04 17:34:36 -08001014static struct kvm_cpuid_entry2 *
1015get_out_of_range_cpuid_entry(struct kvm_vcpu *vcpu, u32 *fn_ptr, u32 index)
Avi Kivity00b27a32011-11-23 16:30:32 +02001016{
Sean Christopherson8d892312020-03-04 17:34:34 -08001017 struct kvm_cpuid_entry2 *basic, *class;
Sean Christopherson09c74312020-03-04 17:34:36 -08001018 u32 function = *fn_ptr;
Avi Kivity00b27a32011-11-23 16:30:32 +02001019
Sean Christopherson8d892312020-03-04 17:34:34 -08001020 basic = kvm_find_cpuid_entry(vcpu, 0, 0);
1021 if (!basic)
Sean Christopherson09c74312020-03-04 17:34:36 -08001022 return NULL;
1023
1024 if (is_guest_vendor_amd(basic->ebx, basic->ecx, basic->edx) ||
1025 is_guest_vendor_hygon(basic->ebx, basic->ecx, basic->edx))
1026 return NULL;
Sean Christopherson8d892312020-03-04 17:34:34 -08001027
1028 if (function >= 0x40000000 && function <= 0x4fffffff)
1029 class = kvm_find_cpuid_entry(vcpu, function & 0xffffff00, 0);
1030 else if (function >= 0xc0000000)
1031 class = kvm_find_cpuid_entry(vcpu, 0xc0000000, 0);
1032 else
1033 class = kvm_find_cpuid_entry(vcpu, function & 0x80000000, 0);
1034
Sean Christopherson09c74312020-03-04 17:34:36 -08001035 if (class && function <= class->eax)
1036 return NULL;
1037
1038 /*
1039 * Leaf specific adjustments are also applied when redirecting to the
1040 * max basic entry, e.g. if the max basic leaf is 0xb but there is no
1041 * entry for CPUID.0xb.index (see below), then the output value for EDX
1042 * needs to be pulled from CPUID.0xb.1.
1043 */
1044 *fn_ptr = basic->eax;
1045
1046 /*
1047 * The class does not exist or the requested function is out of range;
1048 * the effective CPUID entry is the max basic leaf. Note, the index of
1049 * the original requested leaf is observed!
1050 */
1051 return kvm_find_cpuid_entry(vcpu, basic->eax, index);
Avi Kivity00b27a32011-11-23 16:30:32 +02001052}
1053
Yu Zhange911eb32017-08-24 20:27:52 +08001054bool kvm_cpuid(struct kvm_vcpu *vcpu, u32 *eax, u32 *ebx,
Sean Christophersonf91af512020-03-04 17:34:37 -08001055 u32 *ecx, u32 *edx, bool exact_only)
Avi Kivity00b27a32011-11-23 16:30:32 +02001056{
Jan Kiszkab7fb8482020-03-04 17:34:31 -08001057 u32 orig_function = *eax, function = *eax, index = *ecx;
Jim Mattson43561122019-09-25 17:04:17 -07001058 struct kvm_cpuid_entry2 *entry;
Sean Christopherson2b110b62020-03-17 12:53:54 -07001059 bool exact, used_max_basic = false;
Avi Kivity00b27a32011-11-23 16:30:32 +02001060
Jim Mattson43561122019-09-25 17:04:17 -07001061 entry = kvm_find_cpuid_entry(vcpu, function, index);
Sean Christophersonf91af512020-03-04 17:34:37 -08001062 exact = !!entry;
Sean Christopherson09c74312020-03-04 17:34:36 -08001063
Sean Christopherson2b110b62020-03-17 12:53:54 -07001064 if (!entry && !exact_only) {
Sean Christopherson09c74312020-03-04 17:34:36 -08001065 entry = get_out_of_range_cpuid_entry(vcpu, &function, index);
Sean Christopherson2b110b62020-03-17 12:53:54 -07001066 used_max_basic = !!entry;
1067 }
Sean Christopherson09c74312020-03-04 17:34:36 -08001068
Jim Mattson43561122019-09-25 17:04:17 -07001069 if (entry) {
1070 *eax = entry->eax;
1071 *ebx = entry->ebx;
1072 *ecx = entry->ecx;
1073 *edx = entry->edx;
Paolo Bonziniedef5c32019-11-18 12:23:00 -05001074 if (function == 7 && index == 0) {
1075 u64 data;
1076 if (!__kvm_get_msr(vcpu, MSR_IA32_TSX_CTRL, &data, true) &&
1077 (data & TSX_CTRL_CPUID_CLEAR))
1078 *ebx &= ~(F(RTM) | F(HLE));
1079 }
Jim Mattson43561122019-09-25 17:04:17 -07001080 } else {
Avi Kivity62046e52012-06-07 14:07:48 +03001081 *eax = *ebx = *ecx = *edx = 0;
Jim Mattson43561122019-09-25 17:04:17 -07001082 /*
1083 * When leaf 0BH or 1FH is defined, CL is pass-through
1084 * and EDX is always the x2APIC ID, even for undefined
1085 * subleaves. Index 1 will exist iff the leaf is
1086 * implemented, so we pass through CL iff leaf 1
1087 * exists. EDX can be copied from any existing index.
1088 */
1089 if (function == 0xb || function == 0x1f) {
1090 entry = kvm_find_cpuid_entry(vcpu, function, 1);
1091 if (entry) {
1092 *ecx = index & 0xff;
1093 *edx = entry->edx;
1094 }
1095 }
1096 }
Sean Christopherson2b110b62020-03-17 12:53:54 -07001097 trace_kvm_cpuid(orig_function, index, *eax, *ebx, *ecx, *edx, exact,
1098 used_max_basic);
Sean Christophersonf91af512020-03-04 17:34:37 -08001099 return exact;
Avi Kivity62046e52012-06-07 14:07:48 +03001100}
Julian Stecklina66f7b722012-12-05 15:26:19 +01001101EXPORT_SYMBOL_GPL(kvm_cpuid);
Avi Kivity62046e52012-06-07 14:07:48 +03001102
Kyle Huey6a908b62016-11-29 12:40:37 -08001103int kvm_emulate_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity62046e52012-06-07 14:07:48 +03001104{
Jiang Biao1e131752016-11-07 08:55:49 +08001105 u32 eax, ebx, ecx, edx;
Avi Kivity62046e52012-06-07 14:07:48 +03001106
Kyle Hueydb2336a2017-03-20 01:16:28 -07001107 if (cpuid_fault_enabled(vcpu) && !kvm_require_cpl(vcpu, 0))
1108 return 1;
1109
Sean Christophersonde3cd112019-04-30 10:36:17 -07001110 eax = kvm_rax_read(vcpu);
1111 ecx = kvm_rcx_read(vcpu);
Sean Christophersonf91af512020-03-04 17:34:37 -08001112 kvm_cpuid(vcpu, &eax, &ebx, &ecx, &edx, false);
Sean Christophersonde3cd112019-04-30 10:36:17 -07001113 kvm_rax_write(vcpu, eax);
1114 kvm_rbx_write(vcpu, ebx);
1115 kvm_rcx_write(vcpu, ecx);
1116 kvm_rdx_write(vcpu, edx);
Kyle Huey6affcbe2016-11-29 12:40:40 -08001117 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity00b27a32011-11-23 16:30:32 +02001118}
1119EXPORT_SYMBOL_GPL(kvm_emulate_cpuid);