blob: ce658c9fa002c1f9bc469c81efc96f2182275a29 [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
Oliver Upton01b4f512020-10-27 16:10:42 -070093void kvm_update_pv_runtime(struct kvm_vcpu *vcpu)
94{
95 struct kvm_cpuid_entry2 *best;
96
97 best = kvm_find_cpuid_entry(vcpu, KVM_CPUID_FEATURES, 0);
98
99 /*
100 * save the feature bitmap to avoid cpuid lookup for every PV
101 * operation
102 */
103 if (best)
104 vcpu->arch.pv_cpuid.features = best->eax;
105}
106
Xiaoyao Liaedbaf42020-07-09 12:34:23 +0800107void kvm_update_cpuid_runtime(struct kvm_vcpu *vcpu)
Avi Kivity00b27a32011-11-23 16:30:32 +0200108{
109 struct kvm_cpuid_entry2 *best;
Avi Kivity00b27a32011-11-23 16:30:32 +0200110
111 best = kvm_find_cpuid_entry(vcpu, 1, 0);
Xiaoyao Li0d3b2ba2020-07-08 14:50:48 +0800112 if (best) {
113 /* Update OSXSAVE bit */
114 if (boot_cpu_has(X86_FEATURE_XSAVE))
115 cpuid_entry_change(best, X86_FEATURE_OSXSAVE,
Sean Christophersonb32666b2020-03-02 15:56:31 -0800116 kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE));
Avi Kivity00b27a32011-11-23 16:30:32 +0200117
Xiaoyao Li0d3b2ba2020-07-08 14:50:48 +0800118 cpuid_entry_change(best, X86_FEATURE_APIC,
Sean Christophersonb32666b2020-03-02 15:56:31 -0800119 vcpu->arch.apic_base & MSR_IA32_APICBASE_ENABLE);
Xiaoyao Li0d3b2ba2020-07-08 14:50:48 +0800120 }
Jim Mattsonc7dd15b2016-11-09 09:50:11 -0800121
Huaitong Hanb9baba82016-03-22 16:51:21 +0800122 best = kvm_find_cpuid_entry(vcpu, 7, 0);
Sean Christophersonb32666b2020-03-02 15:56:31 -0800123 if (best && boot_cpu_has(X86_FEATURE_PKU) && best->function == 0x7)
124 cpuid_entry_change(best, X86_FEATURE_OSPKE,
125 kvm_read_cr4_bits(vcpu, X86_CR4_PKE));
Huaitong Hanb9baba82016-03-22 16:51:21 +0800126
Paolo Bonzinid7876f12013-10-02 16:06:15 +0200127 best = kvm_find_cpuid_entry(vcpu, 0xD, 0);
Xiaoyao Liaedbaf42020-07-09 12:34:23 +0800128 if (best)
Xiaoyao Lia71936ab2020-04-29 23:43:12 +0800129 best->ebx = xstate_required_size(vcpu->arch.xcr0, false);
Paolo Bonzinid7876f12013-10-02 16:06:15 +0200130
Paolo Bonzini412a3c42014-12-03 14:38:01 +0100131 best = kvm_find_cpuid_entry(vcpu, 0xD, 1);
Sean Christopherson4c615342020-03-02 15:56:30 -0800132 if (best && (cpuid_entry_has(best, X86_FEATURE_XSAVES) ||
133 cpuid_entry_has(best, X86_FEATURE_XSAVEC)))
Paolo Bonzini412a3c42014-12-03 14:38:01 +0100134 best->ebx = xstate_required_size(vcpu->arch.xcr0, true);
135
Wanpeng Licaa057a2018-03-12 04:53:03 -0700136 best = kvm_find_cpuid_entry(vcpu, KVM_CPUID_FEATURES, 0);
137 if (kvm_hlt_in_guest(vcpu->kvm) && best &&
138 (best->eax & (1 << KVM_FEATURE_PV_UNHALT)))
139 best->eax &= ~(1 << KVM_FEATURE_PV_UNHALT);
140
Wanpeng Li511a85562019-05-21 14:06:54 +0800141 if (!kvm_check_has_quirk(vcpu->kvm, KVM_X86_QUIRK_MISC_ENABLE_NO_MWAIT)) {
142 best = kvm_find_cpuid_entry(vcpu, 0x1, 0);
Sean Christophersonb32666b2020-03-02 15:56:31 -0800143 if (best)
144 cpuid_entry_change(best, X86_FEATURE_MWAIT,
145 vcpu->arch.ia32_misc_enable_msr &
146 MSR_IA32_MISC_ENABLE_MWAIT);
Wanpeng Li511a85562019-05-21 14:06:54 +0800147 }
Xiaoyao Liaedbaf42020-07-09 12:34:23 +0800148}
Jim Mattson2259c172020-10-29 10:06:48 -0700149EXPORT_SYMBOL_GPL(kvm_update_cpuid_runtime);
Xiaoyao Liaedbaf42020-07-09 12:34:23 +0800150
Xiaoyao Li346ce352020-07-09 12:34:24 +0800151static void kvm_vcpu_after_set_cpuid(struct kvm_vcpu *vcpu)
Xiaoyao Liaedbaf42020-07-09 12:34:23 +0800152{
153 struct kvm_lapic *apic = vcpu->arch.apic;
154 struct kvm_cpuid_entry2 *best;
155
156 best = kvm_find_cpuid_entry(vcpu, 1, 0);
157 if (best && apic) {
158 if (cpuid_entry_has(best, X86_FEATURE_TSC_DEADLINE_TIMER))
159 apic->lapic_timer.timer_mode_mask = 3 << 17;
160 else
161 apic->lapic_timer.timer_mode_mask = 1 << 17;
162
163 kvm_apic_set_version(vcpu);
164 }
165
166 best = kvm_find_cpuid_entry(vcpu, 0xD, 0);
167 if (!best)
168 vcpu->arch.guest_supported_xcr0 = 0;
169 else
170 vcpu->arch.guest_supported_xcr0 =
171 (best->eax | ((u64)best->edx << 32)) & supported_xcr0;
Wanpeng Li511a85562019-05-21 14:06:54 +0800172
Oliver Upton01b4f512020-10-27 16:10:42 -0700173 kvm_update_pv_runtime(vcpu);
174
Eugene Korenevsky5a4f55c2015-03-29 23:56:12 +0300175 vcpu->arch.maxphyaddr = cpuid_query_maxphyaddr(vcpu);
Yu Zhang855feb62017-08-24 20:27:55 +0800176 kvm_mmu_reset_context(vcpu);
Eugene Korenevsky5a4f55c2015-03-29 23:56:12 +0300177
Wei Huangc6702c92015-06-19 13:44:45 +0200178 kvm_pmu_refresh(vcpu);
Krish Sadhukhanb899c132020-07-08 00:39:55 +0000179 vcpu->arch.cr4_guest_rsvd_bits =
180 __cr4_reserved_bits(guest_cpuid_has, vcpu);
Sean Christophersonc44d9b32020-09-29 21:16:56 -0700181
Babu Moger01079732020-11-12 16:17:56 -0600182 vcpu->arch.cr3_lm_rsvd_bits = rsvd_bits(cpuid_maxphyaddr(vcpu), 63);
183
Sean Christophersonc44d9b32020-09-29 21:16:56 -0700184 /* Invoke the vendor callback only after the above state is updated. */
185 kvm_x86_ops.vcpu_after_set_cpuid(vcpu);
Avi Kivity00b27a32011-11-23 16:30:32 +0200186}
187
188static int is_efer_nx(void)
189{
Sean Christopherson91661982020-03-02 15:57:06 -0800190 return host_efer & EFER_NX;
Avi Kivity00b27a32011-11-23 16:30:32 +0200191}
192
193static void cpuid_fix_nx_cap(struct kvm_vcpu *vcpu)
194{
195 int i;
196 struct kvm_cpuid_entry2 *e, *entry;
197
198 entry = NULL;
199 for (i = 0; i < vcpu->arch.cpuid_nent; ++i) {
200 e = &vcpu->arch.cpuid_entries[i];
201 if (e->function == 0x80000001) {
202 entry = e;
203 break;
204 }
205 }
Sean Christopherson4c615342020-03-02 15:56:30 -0800206 if (entry && cpuid_entry_has(entry, X86_FEATURE_NX) && !is_efer_nx()) {
Sean Christophersonb32666b2020-03-02 15:56:31 -0800207 cpuid_entry_clear(entry, X86_FEATURE_NX);
Avi Kivity00b27a32011-11-23 16:30:32 +0200208 printk(KERN_INFO "kvm: guest NX capability removed\n");
209 }
210}
211
Eugene Korenevsky5a4f55c2015-03-29 23:56:12 +0300212int cpuid_query_maxphyaddr(struct kvm_vcpu *vcpu)
213{
214 struct kvm_cpuid_entry2 *best;
215
216 best = kvm_find_cpuid_entry(vcpu, 0x80000000, 0);
217 if (!best || best->eax < 0x80000008)
218 goto not_found;
219 best = kvm_find_cpuid_entry(vcpu, 0x80000008, 0);
220 if (best)
221 return best->eax & 0xff;
222not_found:
223 return 36;
224}
Eugene Korenevsky5a4f55c2015-03-29 23:56:12 +0300225
Avi Kivity00b27a32011-11-23 16:30:32 +0200226/* when an old userspace process fills a new kernel module */
227int kvm_vcpu_ioctl_set_cpuid(struct kvm_vcpu *vcpu,
228 struct kvm_cpuid *cpuid,
229 struct kvm_cpuid_entry __user *entries)
230{
231 int r, i;
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +0200232 struct kvm_cpuid_entry *e = NULL;
233 struct kvm_cpuid_entry2 *e2 = NULL;
Avi Kivity00b27a32011-11-23 16:30:32 +0200234
Avi Kivity00b27a32011-11-23 16:30:32 +0200235 if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +0200236 return -E2BIG;
237
Paolo Bonzini83676e92016-06-01 14:09:19 +0200238 if (cpuid->nent) {
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +0200239 e = vmemdup_user(entries, array_size(sizeof(*e), cpuid->nent));
240 if (IS_ERR(e))
241 return PTR_ERR(e);
242
243 e2 = kvmalloc_array(cpuid->nent, sizeof(*e2), GFP_KERNEL_ACCOUNT);
244 if (!e2) {
245 r = -ENOMEM;
246 goto out_free_cpuid;
Denis Efremov7ec28e22020-06-03 13:11:31 +0300247 }
Paolo Bonzini83676e92016-06-01 14:09:19 +0200248 }
Avi Kivity00b27a32011-11-23 16:30:32 +0200249 for (i = 0; i < cpuid->nent; i++) {
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +0200250 e2[i].function = e[i].function;
251 e2[i].eax = e[i].eax;
252 e2[i].ebx = e[i].ebx;
253 e2[i].ecx = e[i].ecx;
254 e2[i].edx = e[i].edx;
255 e2[i].index = 0;
256 e2[i].flags = 0;
257 e2[i].padding[0] = 0;
258 e2[i].padding[1] = 0;
259 e2[i].padding[2] = 0;
Avi Kivity00b27a32011-11-23 16:30:32 +0200260 }
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +0200261
262 r = kvm_check_cpuid(e2, cpuid->nent);
Xiaoyao Lia76733a2020-07-09 12:34:22 +0800263 if (r) {
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +0200264 kvfree(e2);
265 goto out_free_cpuid;
Xiaoyao Lia76733a2020-07-09 12:34:22 +0800266 }
267
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +0200268 kvfree(vcpu->arch.cpuid_entries);
269 vcpu->arch.cpuid_entries = e2;
270 vcpu->arch.cpuid_nent = cpuid->nent;
271
Avi Kivity00b27a32011-11-23 16:30:32 +0200272 cpuid_fix_nx_cap(vcpu);
Xiaoyao Liaedbaf42020-07-09 12:34:23 +0800273 kvm_update_cpuid_runtime(vcpu);
Xiaoyao Li346ce352020-07-09 12:34:24 +0800274 kvm_vcpu_after_set_cpuid(vcpu);
Avi Kivity00b27a32011-11-23 16:30:32 +0200275
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +0200276out_free_cpuid:
277 kvfree(e);
278
Avi Kivity00b27a32011-11-23 16:30:32 +0200279 return r;
280}
281
282int kvm_vcpu_ioctl_set_cpuid2(struct kvm_vcpu *vcpu,
283 struct kvm_cpuid2 *cpuid,
284 struct kvm_cpuid_entry2 __user *entries)
285{
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +0200286 struct kvm_cpuid_entry2 *e2 = NULL;
Avi Kivity00b27a32011-11-23 16:30:32 +0200287 int r;
288
Avi Kivity00b27a32011-11-23 16:30:32 +0200289 if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +0200290 return -E2BIG;
291
292 if (cpuid->nent) {
293 e2 = vmemdup_user(entries, array_size(sizeof(*e2), cpuid->nent));
294 if (IS_ERR(e2))
295 return PTR_ERR(e2);
Xiaoyao Lia76733a2020-07-09 12:34:22 +0800296 }
297
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +0200298 r = kvm_check_cpuid(e2, cpuid->nent);
299 if (r) {
300 kvfree(e2);
301 return r;
302 }
303
304 kvfree(vcpu->arch.cpuid_entries);
305 vcpu->arch.cpuid_entries = e2;
306 vcpu->arch.cpuid_nent = cpuid->nent;
307
Xiaoyao Liaedbaf42020-07-09 12:34:23 +0800308 kvm_update_cpuid_runtime(vcpu);
Xiaoyao Li346ce352020-07-09 12:34:24 +0800309 kvm_vcpu_after_set_cpuid(vcpu);
Vitaly Kuznetsov255cbec2020-10-01 15:05:40 +0200310
311 return 0;
Avi Kivity00b27a32011-11-23 16:30:32 +0200312}
313
314int kvm_vcpu_ioctl_get_cpuid2(struct kvm_vcpu *vcpu,
315 struct kvm_cpuid2 *cpuid,
316 struct kvm_cpuid_entry2 __user *entries)
317{
318 int r;
319
320 r = -E2BIG;
321 if (cpuid->nent < vcpu->arch.cpuid_nent)
322 goto out;
323 r = -EFAULT;
Michael Roth181f4942021-01-27 20:44:51 -0600324 if (copy_to_user(entries, vcpu->arch.cpuid_entries,
Avi Kivity00b27a32011-11-23 16:30:32 +0200325 vcpu->arch.cpuid_nent * sizeof(struct kvm_cpuid_entry2)))
326 goto out;
327 return 0;
328
329out:
330 cpuid->nent = vcpu->arch.cpuid_nent;
331 return r;
332}
333
Sean Christopherson66a69502020-03-02 15:56:41 -0800334static __always_inline void kvm_cpu_cap_mask(enum cpuid_leafs leaf, u32 mask)
335{
Sean Christophersond8577a42020-03-02 15:56:52 -0800336 const struct cpuid_reg cpuid = x86_feature_cpuid(leaf * 32);
337 struct kvm_cpuid_entry2 entry;
338
Sean Christopherson66a69502020-03-02 15:56:41 -0800339 reverse_cpuid_check(leaf);
340 kvm_cpu_caps[leaf] &= mask;
Sean Christophersond8577a42020-03-02 15:56:52 -0800341
342 cpuid_count(cpuid.function, cpuid.index,
343 &entry.eax, &entry.ebx, &entry.ecx, &entry.edx);
344
Sean Christopherson855c7e92020-03-25 12:12:59 -0700345 kvm_cpu_caps[leaf] &= *__cpuid_entry_get_reg(&entry, cpuid.reg);
Sean Christopherson66a69502020-03-02 15:56:41 -0800346}
347
348void kvm_set_cpu_caps(void)
349{
350 unsigned int f_nx = is_efer_nx() ? F(NX) : 0;
351#ifdef CONFIG_X86_64
352 unsigned int f_gbpages = F(GBPAGES);
353 unsigned int f_lm = F(LM);
354#else
355 unsigned int f_gbpages = 0;
356 unsigned int f_lm = 0;
357#endif
358
359 BUILD_BUG_ON(sizeof(kvm_cpu_caps) >
360 sizeof(boot_cpu_data.x86_capability));
361
362 memcpy(&kvm_cpu_caps, &boot_cpu_data.x86_capability,
363 sizeof(kvm_cpu_caps));
364
365 kvm_cpu_cap_mask(CPUID_1_ECX,
366 /*
367 * NOTE: MONITOR (and MWAIT) are emulated as NOP, but *not*
368 * advertised to guests via CPUID!
369 */
370 F(XMM3) | F(PCLMULQDQ) | 0 /* DTES64, MONITOR */ |
371 0 /* DS-CPL, VMX, SMX, EST */ |
372 0 /* TM2 */ | F(SSSE3) | 0 /* CNXT-ID */ | 0 /* Reserved */ |
Like Xu27461da32020-05-29 15:43:45 +0800373 F(FMA) | F(CX16) | 0 /* xTPR Update */ | F(PDCM) |
Sean Christopherson66a69502020-03-02 15:56:41 -0800374 F(PCID) | 0 /* Reserved, DCA */ | F(XMM4_1) |
375 F(XMM4_2) | F(X2APIC) | F(MOVBE) | F(POPCNT) |
376 0 /* Reserved*/ | F(AES) | F(XSAVE) | 0 /* OSXSAVE */ | F(AVX) |
377 F(F16C) | F(RDRAND)
378 );
Sean Christopherson93c380e2020-03-02 15:56:54 -0800379 /* KVM emulates x2apic in software irrespective of host support. */
380 kvm_cpu_cap_set(X86_FEATURE_X2APIC);
Sean Christopherson66a69502020-03-02 15:56:41 -0800381
382 kvm_cpu_cap_mask(CPUID_1_EDX,
383 F(FPU) | F(VME) | F(DE) | F(PSE) |
384 F(TSC) | F(MSR) | F(PAE) | F(MCE) |
385 F(CX8) | F(APIC) | 0 /* Reserved */ | F(SEP) |
386 F(MTRR) | F(PGE) | F(MCA) | F(CMOV) |
387 F(PAT) | F(PSE36) | 0 /* PSN */ | F(CLFLUSH) |
388 0 /* Reserved, DS, ACPI */ | F(MMX) |
389 F(FXSR) | F(XMM) | F(XMM2) | F(SELFSNOOP) |
390 0 /* HTT, TM, Reserved, PBE */
391 );
392
393 kvm_cpu_cap_mask(CPUID_7_0_EBX,
394 F(FSGSBASE) | F(BMI1) | F(HLE) | F(AVX2) | F(SMEP) |
395 F(BMI2) | F(ERMS) | 0 /*INVPCID*/ | F(RTM) | 0 /*MPX*/ | F(RDSEED) |
396 F(ADX) | F(SMAP) | F(AVX512IFMA) | F(AVX512F) | F(AVX512PF) |
397 F(AVX512ER) | F(AVX512CD) | F(CLFLUSHOPT) | F(CLWB) | F(AVX512DQ) |
398 F(SHA_NI) | F(AVX512BW) | F(AVX512VL) | 0 /*INTEL_PT*/
399 );
400
401 kvm_cpu_cap_mask(CPUID_7_ECX,
Babu Mogerfa44b822020-05-12 18:59:16 -0500402 F(AVX512VBMI) | F(LA57) | F(PKU) | 0 /*OSPKE*/ | F(RDPID) |
Sean Christopherson66a69502020-03-02 15:56:41 -0800403 F(AVX512_VPOPCNTDQ) | F(UMIP) | F(AVX512_VBMI2) | F(GFNI) |
404 F(VAES) | F(VPCLMULQDQ) | F(AVX512_VNNI) | F(AVX512_BITALG) |
405 F(CLDEMOTE) | F(MOVDIRI) | F(MOVDIR64B) | 0 /*WAITPKG*/
406 );
407 /* Set LA57 based on hardware capability. */
408 if (cpuid_ecx(7) & F(LA57))
409 kvm_cpu_cap_set(X86_FEATURE_LA57);
410
Babu Mogerfa44b822020-05-12 18:59:16 -0500411 /*
412 * PKU not yet implemented for shadow paging and requires OSPKE
413 * to be set on the host. Clear it if that is not the case
414 */
415 if (!tdp_enabled || !boot_cpu_has(X86_FEATURE_OSPKE))
416 kvm_cpu_cap_clear(X86_FEATURE_PKU);
417
Sean Christopherson66a69502020-03-02 15:56:41 -0800418 kvm_cpu_cap_mask(CPUID_7_EDX,
419 F(AVX512_4VNNIW) | F(AVX512_4FMAPS) | F(SPEC_CTRL) |
420 F(SPEC_CTRL_SSBD) | F(ARCH_CAPABILITIES) | F(INTEL_STIBP) |
Paolo Bonzini43bd9ef2020-08-09 13:04:56 -0400421 F(MD_CLEAR) | F(AVX512_VP2INTERSECT) | F(FSRM) |
Cathy Zhang2224fc92020-12-07 19:34:41 -0800422 F(SERIALIZE) | F(TSXLDTRK) | F(AVX512_FP16)
Sean Christopherson66a69502020-03-02 15:56:41 -0800423 );
424
Sean Christopherson93c380e2020-03-02 15:56:54 -0800425 /* TSC_ADJUST and ARCH_CAPABILITIES are emulated in software. */
426 kvm_cpu_cap_set(X86_FEATURE_TSC_ADJUST);
427 kvm_cpu_cap_set(X86_FEATURE_ARCH_CAPABILITIES);
428
429 if (boot_cpu_has(X86_FEATURE_IBPB) && boot_cpu_has(X86_FEATURE_IBRS))
430 kvm_cpu_cap_set(X86_FEATURE_SPEC_CTRL);
431 if (boot_cpu_has(X86_FEATURE_STIBP))
432 kvm_cpu_cap_set(X86_FEATURE_INTEL_STIBP);
433 if (boot_cpu_has(X86_FEATURE_AMD_SSBD))
434 kvm_cpu_cap_set(X86_FEATURE_SPEC_CTRL_SSBD);
435
Sean Christopherson66a69502020-03-02 15:56:41 -0800436 kvm_cpu_cap_mask(CPUID_7_1_EAX,
Yang Zhong1085a6b2021-01-05 08:49:09 +0800437 F(AVX_VNNI) | F(AVX512_BF16)
Sean Christopherson66a69502020-03-02 15:56:41 -0800438 );
439
440 kvm_cpu_cap_mask(CPUID_D_1_EAX,
441 F(XSAVEOPT) | F(XSAVEC) | F(XGETBV1) | F(XSAVES)
442 );
443
444 kvm_cpu_cap_mask(CPUID_8000_0001_ECX,
445 F(LAHF_LM) | F(CMP_LEGACY) | 0 /*SVM*/ | 0 /* ExtApicSpace */ |
446 F(CR8_LEGACY) | F(ABM) | F(SSE4A) | F(MISALIGNSSE) |
447 F(3DNOWPREFETCH) | F(OSVW) | 0 /* IBS */ | F(XOP) |
448 0 /* SKINIT, WDT, LWP */ | F(FMA4) | F(TBM) |
449 F(TOPOEXT) | F(PERFCTR_CORE)
450 );
451
452 kvm_cpu_cap_mask(CPUID_8000_0001_EDX,
453 F(FPU) | F(VME) | F(DE) | F(PSE) |
454 F(TSC) | F(MSR) | F(PAE) | F(MCE) |
455 F(CX8) | F(APIC) | 0 /* Reserved */ | F(SYSCALL) |
456 F(MTRR) | F(PGE) | F(MCA) | F(CMOV) |
457 F(PAT) | F(PSE36) | 0 /* Reserved */ |
458 f_nx | 0 /* Reserved */ | F(MMXEXT) | F(MMX) |
459 F(FXSR) | F(FXSR_OPT) | f_gbpages | F(RDTSCP) |
460 0 /* Reserved */ | f_lm | F(3DNOWEXT) | F(3DNOW)
461 );
462
463 if (!tdp_enabled && IS_ENABLED(CONFIG_X86_64))
464 kvm_cpu_cap_set(X86_FEATURE_GBPAGES);
465
466 kvm_cpu_cap_mask(CPUID_8000_0008_EBX,
467 F(CLZERO) | F(XSAVEERPTR) |
468 F(WBNOINVD) | F(AMD_IBPB) | F(AMD_IBRS) | F(AMD_SSBD) | F(VIRT_SSBD) |
469 F(AMD_SSB_NO) | F(AMD_STIBP) | F(AMD_STIBP_ALWAYS_ON)
470 );
471
Sean Christopherson9b58b982020-03-02 15:56:42 -0800472 /*
Sean Christopherson93c380e2020-03-02 15:56:54 -0800473 * AMD has separate bits for each SPEC_CTRL bit.
474 * arch/x86/kernel/cpu/bugs.c is kind enough to
475 * record that in cpufeatures so use them.
476 */
477 if (boot_cpu_has(X86_FEATURE_IBPB))
478 kvm_cpu_cap_set(X86_FEATURE_AMD_IBPB);
479 if (boot_cpu_has(X86_FEATURE_IBRS))
480 kvm_cpu_cap_set(X86_FEATURE_AMD_IBRS);
481 if (boot_cpu_has(X86_FEATURE_STIBP))
482 kvm_cpu_cap_set(X86_FEATURE_AMD_STIBP);
483 if (boot_cpu_has(X86_FEATURE_SPEC_CTRL_SSBD))
484 kvm_cpu_cap_set(X86_FEATURE_AMD_SSBD);
485 if (!boot_cpu_has_bug(X86_BUG_SPEC_STORE_BYPASS))
486 kvm_cpu_cap_set(X86_FEATURE_AMD_SSB_NO);
487 /*
488 * The preference is to use SPEC CTRL MSR instead of the
489 * VIRT_SPEC MSR.
490 */
491 if (boot_cpu_has(X86_FEATURE_LS_CFG_SSBD) &&
492 !boot_cpu_has(X86_FEATURE_AMD_SSBD))
493 kvm_cpu_cap_set(X86_FEATURE_VIRT_SSBD);
494
495 /*
Sean Christopherson9b58b982020-03-02 15:56:42 -0800496 * Hide all SVM features by default, SVM will set the cap bits for
497 * features it emulates and/or exposes for L1.
498 */
499 kvm_cpu_cap_mask(CPUID_8000_000A_EDX, 0);
500
Sean Christopherson66a69502020-03-02 15:56:41 -0800501 kvm_cpu_cap_mask(CPUID_C000_0001_EDX,
502 F(XSTORE) | F(XSTORE_EN) | F(XCRYPT) | F(XCRYPT_EN) |
503 F(ACE2) | F(ACE2_EN) | F(PHE) | F(PHE_EN) |
504 F(PMM) | F(PMM_EN)
505 );
506}
507EXPORT_SYMBOL_GPL(kvm_set_cpu_caps);
508
Sean Christophersone53c95e2020-03-02 15:56:19 -0800509struct kvm_cpuid_array {
510 struct kvm_cpuid_entry2 *entries;
Xiaoyao Li65b18912020-06-04 12:16:36 +0800511 int maxnent;
Sean Christophersone53c95e2020-03-02 15:56:19 -0800512 int nent;
513};
514
515static struct kvm_cpuid_entry2 *do_host_cpuid(struct kvm_cpuid_array *array,
Sean Christophersonaa10a7d2020-03-02 15:56:16 -0800516 u32 function, u32 index)
Avi Kivity00b27a32011-11-23 16:30:32 +0200517{
Sean Christophersone53c95e2020-03-02 15:56:19 -0800518 struct kvm_cpuid_entry2 *entry;
519
520 if (array->nent >= array->maxnent)
Sean Christophersonaa10a7d2020-03-02 15:56:16 -0800521 return NULL;
Sean Christophersone53c95e2020-03-02 15:56:19 -0800522
523 entry = &array->entries[array->nent++];
Sean Christophersonaa10a7d2020-03-02 15:56:16 -0800524
Avi Kivity00b27a32011-11-23 16:30:32 +0200525 entry->function = function;
526 entry->index = index;
Paolo Bonziniab8bcf62019-06-24 10:23:33 +0200527 entry->flags = 0;
528
Avi Kivity00b27a32011-11-23 16:30:32 +0200529 cpuid_count(entry->function, entry->index,
530 &entry->eax, &entry->ebx, &entry->ecx, &entry->edx);
Paolo Bonzinid9aadaf2019-07-04 12:20:48 +0200531
532 switch (function) {
Paolo Bonzinid9aadaf2019-07-04 12:20:48 +0200533 case 4:
534 case 7:
535 case 0xb:
536 case 0xd:
Jim Mattsona06dcd62019-09-12 09:55:03 -0700537 case 0xf:
538 case 0x10:
539 case 0x12:
Paolo Bonzinid9aadaf2019-07-04 12:20:48 +0200540 case 0x14:
Jim Mattsona06dcd62019-09-12 09:55:03 -0700541 case 0x17:
542 case 0x18:
543 case 0x1f:
Paolo Bonzinid9aadaf2019-07-04 12:20:48 +0200544 case 0x8000001d:
545 entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
546 break;
547 }
Sean Christophersonaa10a7d2020-03-02 15:56:16 -0800548
549 return entry;
Avi Kivity00b27a32011-11-23 16:30:32 +0200550}
551
Sean Christophersone53c95e2020-03-02 15:56:19 -0800552static int __do_cpuid_func_emulated(struct kvm_cpuid_array *array, u32 func)
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200553{
Sean Christopherson7c7f9542020-03-02 15:56:56 -0800554 struct kvm_cpuid_entry2 *entry;
Sean Christophersone53c95e2020-03-02 15:56:19 -0800555
Sean Christopherson7c7f9542020-03-02 15:56:56 -0800556 if (array->nent >= array->maxnent)
557 return -E2BIG;
558
559 entry = &array->entries[array->nent];
Paolo Bonziniab8bcf62019-06-24 10:23:33 +0200560 entry->function = func;
561 entry->index = 0;
562 entry->flags = 0;
563
Borislav Petkov84cffe42013-10-29 12:54:56 +0100564 switch (func) {
565 case 0:
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +0200566 entry->eax = 7;
Sean Christophersone53c95e2020-03-02 15:56:19 -0800567 ++array->nent;
Borislav Petkov84cffe42013-10-29 12:54:56 +0100568 break;
569 case 1:
570 entry->ecx = F(MOVBE);
Sean Christophersone53c95e2020-03-02 15:56:19 -0800571 ++array->nent;
Borislav Petkov84cffe42013-10-29 12:54:56 +0100572 break;
Paolo Bonzinifb6d4d32016-07-12 11:04:26 +0200573 case 7:
574 entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
Paolo Bonziniab8bcf62019-06-24 10:23:33 +0200575 entry->eax = 0;
576 entry->ecx = F(RDPID);
Sean Christophersone53c95e2020-03-02 15:56:19 -0800577 ++array->nent;
Borislav Petkov84cffe42013-10-29 12:54:56 +0100578 default:
579 break;
580 }
581
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200582 return 0;
583}
584
Sean Christophersone53c95e2020-03-02 15:56:19 -0800585static inline int __do_cpuid_func(struct kvm_cpuid_array *array, u32 function)
Avi Kivity00b27a32011-11-23 16:30:32 +0200586{
Sean Christophersone53c95e2020-03-02 15:56:19 -0800587 struct kvm_cpuid_entry2 *entry;
Sean Christopherson74fa0bc2020-03-02 15:56:17 -0800588 int r, i, max_idx;
Avi Kivity00b27a32011-11-23 16:30:32 +0200589
Avi Kivity00b27a32011-11-23 16:30:32 +0200590 /* all calls to cpuid_count() should be made on the same cpu */
591 get_cpu();
Sasha Levin831bf662011-11-28 11:20:29 +0200592
593 r = -E2BIG;
594
Sean Christophersone53c95e2020-03-02 15:56:19 -0800595 entry = do_host_cpuid(array, function, 0);
Sean Christopherson7c7f9542020-03-02 15:56:56 -0800596 if (!entry)
Sasha Levin831bf662011-11-28 11:20:29 +0200597 goto out;
598
Avi Kivity00b27a32011-11-23 16:30:32 +0200599 switch (function) {
600 case 0:
Like Xua87f2d32019-06-06 09:18:45 +0800601 /* Limited to the highest leaf implemented in KVM. */
602 entry->eax = min(entry->eax, 0x1fU);
Avi Kivity00b27a32011-11-23 16:30:32 +0200603 break;
604 case 1:
Sean Christophersonbd791992020-03-02 15:56:53 -0800605 cpuid_entry_override(entry, CPUID_1_EDX);
606 cpuid_entry_override(entry, CPUID_1_ECX);
Avi Kivity00b27a32011-11-23 16:30:32 +0200607 break;
Sean Christopherson74fa0bc2020-03-02 15:56:17 -0800608 case 2:
Sean Christophersonc571a142020-03-02 15:56:50 -0800609 /*
610 * On ancient CPUs, function 2 entries are STATEFUL. That is,
611 * CPUID(function=2, index=0) may return different results each
612 * time, with the least-significant byte in EAX enumerating the
613 * number of times software should do CPUID(2, 0).
614 *
Sean Christopherson7ff6c032020-03-02 15:56:51 -0800615 * Modern CPUs, i.e. every CPU KVM has *ever* run on are less
616 * idiotic. Intel's SDM states that EAX & 0xff "will always
617 * return 01H. Software should ignore this value and not
Sean Christophersonc571a142020-03-02 15:56:50 -0800618 * interpret it as an informational descriptor", while AMD's
619 * APM states that CPUID(2) is reserved.
Sean Christopherson7ff6c032020-03-02 15:56:51 -0800620 *
621 * WARN if a frankenstein CPU that supports virtualization and
622 * a stateful CPUID.0x2 is encountered.
Sean Christophersonc571a142020-03-02 15:56:50 -0800623 */
Sean Christopherson7ff6c032020-03-02 15:56:51 -0800624 WARN_ON_ONCE((entry->eax & 0xff) > 1);
Avi Kivity00b27a32011-11-23 16:30:32 +0200625 break;
Jim Mattson32a243d2019-03-27 13:15:36 -0700626 /* functions 4 and 0x8000001d have additional index. */
627 case 4:
Sean Christophersonc8629032020-03-02 15:56:18 -0800628 case 0x8000001d:
629 /*
630 * Read entries until the cache type in the previous entry is
631 * zero, i.e. indicates an invalid entry.
632 */
Sean Christophersone53c95e2020-03-02 15:56:19 -0800633 for (i = 1; entry->eax & 0x1f; ++i) {
634 entry = do_host_cpuid(array, function, i);
635 if (!entry)
Sean Christopherson0fc62672020-03-02 15:56:08 -0800636 goto out;
Avi Kivity00b27a32011-11-23 16:30:32 +0200637 }
638 break;
Jan Kiszkae453aa02015-05-24 17:22:38 +0200639 case 6: /* Thermal management */
640 entry->eax = 0x4; /* allow ARAT */
641 entry->ebx = 0;
642 entry->ecx = 0;
643 entry->edx = 0;
644 break;
Paolo Bonzini54d360d2019-07-04 12:18:13 +0200645 /* function 7 has additional index. */
Sean Christopherson74fa0bc2020-03-02 15:56:17 -0800646 case 7:
Sean Christopherson09f628a2020-03-02 15:56:48 -0800647 entry->eax = min(entry->eax, 1u);
Sean Christophersonbd791992020-03-02 15:56:53 -0800648 cpuid_entry_override(entry, CPUID_7_0_EBX);
649 cpuid_entry_override(entry, CPUID_7_ECX);
650 cpuid_entry_override(entry, CPUID_7_EDX);
Sean Christopherson09f628a2020-03-02 15:56:48 -0800651
Sean Christophersonbcf600c2020-03-02 15:56:49 -0800652 /* KVM only supports 0x7.0 and 0x7.1, capped above via min(). */
653 if (entry->eax == 1) {
654 entry = do_host_cpuid(array, function, 1);
Sean Christophersone53c95e2020-03-02 15:56:19 -0800655 if (!entry)
Paolo Bonzini54d360d2019-07-04 12:18:13 +0200656 goto out;
657
Sean Christophersonbd791992020-03-02 15:56:53 -0800658 cpuid_entry_override(entry, CPUID_7_1_EAX);
Sean Christopherson09f628a2020-03-02 15:56:48 -0800659 entry->ebx = 0;
660 entry->ecx = 0;
661 entry->edx = 0;
Paolo Bonzini54d360d2019-07-04 12:18:13 +0200662 }
Avi Kivity00b27a32011-11-23 16:30:32 +0200663 break;
Avi Kivity00b27a32011-11-23 16:30:32 +0200664 case 9:
665 break;
Gleb Natapova6c06ed2011-11-10 14:57:28 +0200666 case 0xa: { /* Architectural Performance Monitoring */
667 struct x86_pmu_capability cap;
668 union cpuid10_eax eax;
669 union cpuid10_edx edx;
670
671 perf_get_x86_pmu_capability(&cap);
672
673 /*
674 * Only support guest architectural pmu on a host
675 * with architectural pmu.
676 */
677 if (!cap.version)
678 memset(&cap, 0, sizeof(cap));
679
680 eax.split.version_id = min(cap.version, 2);
681 eax.split.num_counters = cap.num_counters_gp;
682 eax.split.bit_width = cap.bit_width_gp;
683 eax.split.mask_length = cap.events_mask_len;
684
Like Xu2e8cd7a2020-06-24 09:59:28 +0800685 edx.split.num_counters_fixed = min(cap.num_counters_fixed, MAX_FIXED_COUNTERS);
Gleb Natapova6c06ed2011-11-10 14:57:28 +0200686 edx.split.bit_width_fixed = cap.bit_width_fixed;
Stephane Eraniancadbaa02020-10-28 12:42:47 -0700687 edx.split.anythread_deprecated = 1;
688 edx.split.reserved1 = 0;
689 edx.split.reserved2 = 0;
Gleb Natapova6c06ed2011-11-10 14:57:28 +0200690
691 entry->eax = eax.full;
692 entry->ebx = cap.events_mask;
693 entry->ecx = 0;
694 entry->edx = edx.full;
695 break;
696 }
Like Xua87f2d32019-06-06 09:18:45 +0800697 /*
698 * Per Intel's SDM, the 0x1f is a superset of 0xb,
699 * thus they can be handled by common code.
700 */
701 case 0x1f:
Sean Christopherson74fa0bc2020-03-02 15:56:17 -0800702 case 0xb:
Jim Mattsona1a640b2019-09-25 11:17:14 -0700703 /*
Sean Christophersone53c95e2020-03-02 15:56:19 -0800704 * Populate entries until the level type (ECX[15:8]) of the
705 * previous entry is zero. Note, CPUID EAX.{0x1f,0xb}.0 is
706 * the starting entry, filled by the primary do_host_cpuid().
Jim Mattsona1a640b2019-09-25 11:17:14 -0700707 */
Sean Christophersone53c95e2020-03-02 15:56:19 -0800708 for (i = 1; entry->ecx & 0xff00; ++i) {
709 entry = do_host_cpuid(array, function, i);
710 if (!entry)
Sasha Levin831bf662011-11-28 11:20:29 +0200711 goto out;
Avi Kivity00b27a32011-11-23 16:30:32 +0200712 }
713 break;
Sean Christophersoncfc48182020-03-02 15:56:23 -0800714 case 0xd:
715 entry->eax &= supported_xcr0;
716 entry->ebx = xstate_required_size(supported_xcr0, false);
Radim Krčmáře08e8332014-12-04 18:30:41 +0100717 entry->ecx = entry->ebx;
Sean Christophersoncfc48182020-03-02 15:56:23 -0800718 entry->edx &= supported_xcr0 >> 32;
719 if (!supported_xcr0)
Paolo Bonzinib65d6e12014-11-21 18:13:26 +0100720 break;
721
Sean Christophersone53c95e2020-03-02 15:56:19 -0800722 entry = do_host_cpuid(array, function, 1);
723 if (!entry)
Sean Christopherson3dc4a9c2020-03-02 15:56:09 -0800724 goto out;
725
Sean Christophersonbd791992020-03-02 15:56:53 -0800726 cpuid_entry_override(entry, CPUID_D_1_EAX);
Sean Christophersone53c95e2020-03-02 15:56:19 -0800727 if (entry->eax & (F(XSAVES)|F(XSAVEC)))
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100728 entry->ebx = xstate_required_size(supported_xcr0 | supported_xss,
729 true);
730 else {
731 WARN_ON_ONCE(supported_xss != 0);
Sean Christophersone53c95e2020-03-02 15:56:19 -0800732 entry->ebx = 0;
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100733 }
734 entry->ecx &= supported_xss;
735 entry->edx &= supported_xss >> 32;
Sean Christopherson3dc4a9c2020-03-02 15:56:09 -0800736
Sean Christopherson0eee8f92020-03-02 15:56:21 -0800737 for (i = 2; i < 64; ++i) {
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100738 bool s_state;
739 if (supported_xcr0 & BIT_ULL(i))
740 s_state = false;
741 else if (supported_xss & BIT_ULL(i))
742 s_state = true;
743 else
Sean Christopherson1893c942020-03-02 15:56:10 -0800744 continue;
Sean Christopherson3dc4a9c2020-03-02 15:56:09 -0800745
Sean Christopherson0eee8f92020-03-02 15:56:21 -0800746 entry = do_host_cpuid(array, function, i);
Sean Christophersone53c95e2020-03-02 15:56:19 -0800747 if (!entry)
Sasha Levin831bf662011-11-28 11:20:29 +0200748 goto out;
749
Sean Christopherson91001d42020-03-02 15:56:11 -0800750 /*
Sean Christophersoncfc48182020-03-02 15:56:23 -0800751 * The supported check above should have filtered out
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100752 * invalid sub-leafs. Only valid sub-leafs should
Sean Christopherson91001d42020-03-02 15:56:11 -0800753 * reach this point, and they should have a non-zero
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100754 * save state size. Furthermore, check whether the
755 * processor agrees with supported_xcr0/supported_xss
756 * on whether this is an XCR0- or IA32_XSS-managed area.
Sean Christopherson91001d42020-03-02 15:56:11 -0800757 */
Paolo Bonzini408e9a32020-03-05 16:11:56 +0100758 if (WARN_ON_ONCE(!entry->eax || (entry->ecx & 0x1) != s_state)) {
Sean Christophersone53c95e2020-03-02 15:56:19 -0800759 --array->nent;
Sean Christopherson3dc4a9c2020-03-02 15:56:09 -0800760 continue;
Sean Christopherson8b2fc442020-03-02 15:56:12 -0800761 }
Sean Christophersone53c95e2020-03-02 15:56:19 -0800762 entry->edx = 0;
Avi Kivity00b27a32011-11-23 16:30:32 +0200763 }
764 break;
Chao Peng86f52012018-10-24 16:05:11 +0800765 /* Intel PT */
Sean Christopherson74fa0bc2020-03-02 15:56:17 -0800766 case 0x14:
Sean Christophersondd69cc22020-03-02 15:56:55 -0800767 if (!kvm_cpu_cap_has(X86_FEATURE_INTEL_PT)) {
Sean Christopherson73920792020-03-02 15:56:26 -0800768 entry->eax = entry->ebx = entry->ecx = entry->edx = 0;
Chao Peng86f52012018-10-24 16:05:11 +0800769 break;
Sean Christopherson73920792020-03-02 15:56:26 -0800770 }
Chao Peng86f52012018-10-24 16:05:11 +0800771
Sean Christopherson74fa0bc2020-03-02 15:56:17 -0800772 for (i = 1, max_idx = entry->eax; i <= max_idx; ++i) {
Sean Christophersone53c95e2020-03-02 15:56:19 -0800773 if (!do_host_cpuid(array, function, i))
Chao Peng86f52012018-10-24 16:05:11 +0800774 goto out;
Chao Peng86f52012018-10-24 16:05:11 +0800775 }
776 break;
Avi Kivity00b27a32011-11-23 16:30:32 +0200777 case KVM_CPUID_SIGNATURE: {
Mathias Krause326d07c2012-08-30 01:30:13 +0200778 static const char signature[12] = "KVMKVMKVM\0\0";
779 const u32 *sigptr = (const u32 *)signature;
Michael S. Tsirkin57c22e52012-05-02 17:55:56 +0300780 entry->eax = KVM_CPUID_FEATURES;
Avi Kivity00b27a32011-11-23 16:30:32 +0200781 entry->ebx = sigptr[0];
782 entry->ecx = sigptr[1];
783 entry->edx = sigptr[2];
784 break;
785 }
786 case KVM_CPUID_FEATURES:
787 entry->eax = (1 << KVM_FEATURE_CLOCKSOURCE) |
788 (1 << KVM_FEATURE_NOP_IO_DELAY) |
789 (1 << KVM_FEATURE_CLOCKSOURCE2) |
790 (1 << KVM_FEATURE_ASYNC_PF) |
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300791 (1 << KVM_FEATURE_PV_EOI) |
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +0530792 (1 << KVM_FEATURE_CLOCKSOURCE_STABLE_BIT) |
Wanpeng Lif38a7b72017-12-12 17:33:04 -0800793 (1 << KVM_FEATURE_PV_UNHALT) |
Radim Krčmářfe2a3022018-02-01 22:16:21 +0100794 (1 << KVM_FEATURE_PV_TLB_FLUSH) |
Wanpeng Li4180bf12018-07-23 14:39:54 +0800795 (1 << KVM_FEATURE_ASYNC_PF_VMEXIT) |
Marcelo Tosatti2d5ba192019-06-03 19:52:44 -0300796 (1 << KVM_FEATURE_PV_SEND_IPI) |
Wanpeng Li32b72ec2019-06-11 20:23:50 +0800797 (1 << KVM_FEATURE_POLL_CONTROL) |
Vitaly Kuznetsov72de5fa4c2020-05-25 16:41:22 +0200798 (1 << KVM_FEATURE_PV_SCHED_YIELD) |
799 (1 << KVM_FEATURE_ASYNC_PF_INT);
Avi Kivity00b27a32011-11-23 16:30:32 +0200800
801 if (sched_info_on())
802 entry->eax |= (1 << KVM_FEATURE_STEAL_TIME);
803
804 entry->ebx = 0;
805 entry->ecx = 0;
806 entry->edx = 0;
807 break;
808 case 0x80000000:
Brijesh Singh8765d752017-12-04 10:57:25 -0600809 entry->eax = min(entry->eax, 0x8000001f);
Avi Kivity00b27a32011-11-23 16:30:32 +0200810 break;
811 case 0x80000001:
Sean Christophersonbd791992020-03-02 15:56:53 -0800812 cpuid_entry_override(entry, CPUID_8000_0001_EDX);
813 cpuid_entry_override(entry, CPUID_8000_0001_ECX);
Avi Kivity00b27a32011-11-23 16:30:32 +0200814 break;
Eric Northup43d05de2020-04-14 18:23:20 -0700815 case 0x80000006:
816 /* L2 cache and TLB: pass through host info. */
817 break;
Marcelo Tosattie4c9a5a12014-04-26 22:30:23 -0300818 case 0x80000007: /* Advanced power management */
819 /* invariant TSC is CPUID.80000007H:EDX[8] */
820 entry->edx &= (1 << 8);
821 /* mask against host */
822 entry->edx &= boot_cpu_data.x86_power;
823 entry->eax = entry->ebx = entry->ecx = 0;
824 break;
Avi Kivity00b27a32011-11-23 16:30:32 +0200825 case 0x80000008: {
826 unsigned g_phys_as = (entry->eax >> 16) & 0xff;
827 unsigned virt_as = max((entry->eax >> 8) & 0xff, 48U);
828 unsigned phys_as = entry->eax & 0xff;
829
830 if (!g_phys_as)
831 g_phys_as = phys_as;
832 entry->eax = g_phys_as | (virt_as << 8);
Ashok Raj15d45072018-02-01 22:59:43 +0100833 entry->edx = 0;
Sean Christophersonbd791992020-03-02 15:56:53 -0800834 cpuid_entry_override(entry, CPUID_8000_0008_EBX);
Avi Kivity00b27a32011-11-23 16:30:32 +0200835 break;
836 }
Sean Christopherson25703872020-03-02 15:57:09 -0800837 case 0x8000000A:
838 if (!kvm_cpu_cap_has(X86_FEATURE_SVM)) {
839 entry->eax = entry->ebx = entry->ecx = entry->edx = 0;
840 break;
841 }
842 entry->eax = 1; /* SVM revision 1 */
843 entry->ebx = 8; /* Lets support 8 ASIDs in case we add proper
844 ASID emulation to nested SVM */
845 entry->ecx = 0; /* Reserved */
846 cpuid_entry_override(entry, CPUID_8000_000A_EDX);
847 break;
Avi Kivity00b27a32011-11-23 16:30:32 +0200848 case 0x80000019:
849 entry->ecx = entry->edx = 0;
850 break;
851 case 0x8000001a:
Jim Mattson382409b2019-03-27 13:15:37 -0700852 case 0x8000001e:
Avi Kivity00b27a32011-11-23 16:30:32 +0200853 break;
Peter Gondac1de0f22019-11-21 12:33:43 -0800854 /* Support memory encryption cpuid if host supports it */
855 case 0x8000001F:
856 if (!boot_cpu_has(X86_FEATURE_SEV))
857 entry->eax = entry->ebx = entry->ecx = entry->edx = 0;
858 break;
Avi Kivity00b27a32011-11-23 16:30:32 +0200859 /*Add support for Centaur's CPUID instruction*/
860 case 0xC0000000:
861 /*Just support up to 0xC0000004 now*/
862 entry->eax = min(entry->eax, 0xC0000004);
863 break;
864 case 0xC0000001:
Sean Christophersonbd791992020-03-02 15:56:53 -0800865 cpuid_entry_override(entry, CPUID_C000_0001_EDX);
Avi Kivity00b27a32011-11-23 16:30:32 +0200866 break;
867 case 3: /* Processor serial number */
868 case 5: /* MONITOR/MWAIT */
Avi Kivity00b27a32011-11-23 16:30:32 +0200869 case 0xC0000002:
870 case 0xC0000003:
871 case 0xC0000004:
872 default:
873 entry->eax = entry->ebx = entry->ecx = entry->edx = 0;
874 break;
875 }
876
Sasha Levin831bf662011-11-28 11:20:29 +0200877 r = 0;
878
879out:
Avi Kivity00b27a32011-11-23 16:30:32 +0200880 put_cpu();
Sasha Levin831bf662011-11-28 11:20:29 +0200881
882 return r;
Avi Kivity00b27a32011-11-23 16:30:32 +0200883}
884
Sean Christophersone53c95e2020-03-02 15:56:19 -0800885static int do_cpuid_func(struct kvm_cpuid_array *array, u32 func,
886 unsigned int type)
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200887{
888 if (type == KVM_GET_EMULATED_CPUID)
Sean Christophersone53c95e2020-03-02 15:56:19 -0800889 return __do_cpuid_func_emulated(array, func);
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200890
Sean Christophersone53c95e2020-03-02 15:56:19 -0800891 return __do_cpuid_func(array, func);
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200892}
893
Sean Christopherson8b860792020-03-02 15:56:06 -0800894#define CENTAUR_CPUID_SIGNATURE 0xC0000000
Sasha Levin831bf662011-11-28 11:20:29 +0200895
Sean Christophersone53c95e2020-03-02 15:56:19 -0800896static int get_cpuid_func(struct kvm_cpuid_array *array, u32 func,
897 unsigned int type)
Sean Christopherson619a17f2020-03-02 15:56:05 -0800898{
899 u32 limit;
900 int r;
901
Sean Christopherson8b860792020-03-02 15:56:06 -0800902 if (func == CENTAUR_CPUID_SIGNATURE &&
903 boot_cpu_data.x86_vendor != X86_VENDOR_CENTAUR)
904 return 0;
905
Sean Christophersone53c95e2020-03-02 15:56:19 -0800906 r = do_cpuid_func(array, func, type);
Sean Christopherson619a17f2020-03-02 15:56:05 -0800907 if (r)
908 return r;
909
Sean Christophersone53c95e2020-03-02 15:56:19 -0800910 limit = array->entries[array->nent - 1].eax;
Sean Christopherson619a17f2020-03-02 15:56:05 -0800911 for (func = func + 1; func <= limit; ++func) {
Sean Christophersone53c95e2020-03-02 15:56:19 -0800912 r = do_cpuid_func(array, func, type);
Sean Christopherson619a17f2020-03-02 15:56:05 -0800913 if (r)
914 break;
915 }
916
917 return r;
918}
919
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200920static bool sanity_check_entries(struct kvm_cpuid_entry2 __user *entries,
921 __u32 num_entries, unsigned int ioctl_type)
922{
923 int i;
Borislav Petkov1b2ca422013-11-06 15:46:02 +0100924 __u32 pad[3];
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200925
926 if (ioctl_type != KVM_GET_EMULATED_CPUID)
927 return false;
928
929 /*
930 * We want to make sure that ->padding is being passed clean from
931 * userspace in case we want to use it for something in the future.
932 *
933 * Sadly, this wasn't enforced for KVM_GET_SUPPORTED_CPUID and so we
934 * have to give ourselves satisfied only with the emulated side. /me
935 * sheds a tear.
936 */
937 for (i = 0; i < num_entries; i++) {
Borislav Petkov1b2ca422013-11-06 15:46:02 +0100938 if (copy_from_user(pad, entries[i].padding, sizeof(pad)))
939 return true;
940
941 if (pad[0] || pad[1] || pad[2])
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200942 return true;
943 }
944 return false;
945}
946
947int kvm_dev_ioctl_get_cpuid(struct kvm_cpuid2 *cpuid,
948 struct kvm_cpuid_entry2 __user *entries,
949 unsigned int type)
Avi Kivity00b27a32011-11-23 16:30:32 +0200950{
Sean Christopherson8b860792020-03-02 15:56:06 -0800951 static const u32 funcs[] = {
952 0, 0x80000000, CENTAUR_CPUID_SIGNATURE, KVM_CPUID_SIGNATURE,
Sasha Levin831bf662011-11-28 11:20:29 +0200953 };
Avi Kivity00b27a32011-11-23 16:30:32 +0200954
Sean Christophersone53c95e2020-03-02 15:56:19 -0800955 struct kvm_cpuid_array array = {
956 .nent = 0,
Sean Christophersone53c95e2020-03-02 15:56:19 -0800957 };
958 int r, i;
Sean Christophersond5a661d2020-03-02 15:56:07 -0800959
Avi Kivity00b27a32011-11-23 16:30:32 +0200960 if (cpuid->nent < 1)
Sean Christophersond5a661d2020-03-02 15:56:07 -0800961 return -E2BIG;
Avi Kivity00b27a32011-11-23 16:30:32 +0200962 if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
963 cpuid->nent = KVM_MAX_CPUID_ENTRIES;
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200964
965 if (sanity_check_entries(entries, cpuid->nent, type))
966 return -EINVAL;
967
Sean Christophersone53c95e2020-03-02 15:56:19 -0800968 array.entries = vzalloc(array_size(sizeof(struct kvm_cpuid_entry2),
Kees Cookfad953c2018-06-12 14:27:37 -0700969 cpuid->nent));
Sean Christophersone53c95e2020-03-02 15:56:19 -0800970 if (!array.entries)
Sean Christophersond5a661d2020-03-02 15:56:07 -0800971 return -ENOMEM;
Avi Kivity00b27a32011-11-23 16:30:32 +0200972
Xiaoyao Li65b18912020-06-04 12:16:36 +0800973 array.maxnent = cpuid->nent;
974
Sean Christopherson8b860792020-03-02 15:56:06 -0800975 for (i = 0; i < ARRAY_SIZE(funcs); i++) {
Sean Christophersone53c95e2020-03-02 15:56:19 -0800976 r = get_cpuid_func(&array, funcs[i], type);
Sasha Levin831bf662011-11-28 11:20:29 +0200977 if (r)
Avi Kivity00b27a32011-11-23 16:30:32 +0200978 goto out_free;
979 }
Sean Christophersone53c95e2020-03-02 15:56:19 -0800980 cpuid->nent = array.nent;
Avi Kivity00b27a32011-11-23 16:30:32 +0200981
Sean Christophersone53c95e2020-03-02 15:56:19 -0800982 if (copy_to_user(entries, array.entries,
983 array.nent * sizeof(struct kvm_cpuid_entry2)))
Sean Christophersond5a661d2020-03-02 15:56:07 -0800984 r = -EFAULT;
Avi Kivity00b27a32011-11-23 16:30:32 +0200985
986out_free:
Sean Christophersone53c95e2020-03-02 15:56:19 -0800987 vfree(array.entries);
Avi Kivity00b27a32011-11-23 16:30:32 +0200988 return r;
989}
990
Avi Kivity00b27a32011-11-23 16:30:32 +0200991struct kvm_cpuid_entry2 *kvm_find_cpuid_entry(struct kvm_vcpu *vcpu,
992 u32 function, u32 index)
993{
Vitaly Kuznetsovf69858f2020-10-01 15:05:39 +0200994 return cpuid_entry2_find(vcpu->arch.cpuid_entries, vcpu->arch.cpuid_nent,
995 function, index);
Avi Kivity00b27a32011-11-23 16:30:32 +0200996}
997EXPORT_SYMBOL_GPL(kvm_find_cpuid_entry);
998
Avi Kivity00b27a32011-11-23 16:30:32 +0200999/*
Sean Christopherson8d892312020-03-04 17:34:34 -08001000 * Intel CPUID semantics treats any query for an out-of-range leaf as if the
1001 * highest basic leaf (i.e. CPUID.0H:EAX) were requested. AMD CPUID semantics
1002 * returns all zeroes for any undefined leaf, whether or not the leaf is in
1003 * range. Centaur/VIA follows Intel semantics.
1004 *
1005 * A leaf is considered out-of-range if its function is higher than the maximum
1006 * supported leaf of its associated class or if its associated class does not
1007 * exist.
1008 *
1009 * There are three primary classes to be considered, with their respective
1010 * ranges described as "<base> - <top>[,<base2> - <top2>] inclusive. A primary
1011 * class exists if a guest CPUID entry for its <base> leaf exists. For a given
1012 * class, CPUID.<base>.EAX contains the max supported leaf for the class.
1013 *
1014 * - Basic: 0x00000000 - 0x3fffffff, 0x50000000 - 0x7fffffff
1015 * - Hypervisor: 0x40000000 - 0x4fffffff
1016 * - Extended: 0x80000000 - 0xbfffffff
1017 * - Centaur: 0xc0000000 - 0xcfffffff
1018 *
1019 * The Hypervisor class is further subdivided into sub-classes that each act as
1020 * their own indepdent class associated with a 0x100 byte range. E.g. if Qemu
1021 * is advertising support for both HyperV and KVM, the resulting Hypervisor
1022 * CPUID sub-classes are:
1023 *
1024 * - HyperV: 0x40000000 - 0x400000ff
1025 * - KVM: 0x40000100 - 0x400001ff
Avi Kivity00b27a32011-11-23 16:30:32 +02001026 */
Sean Christopherson09c74312020-03-04 17:34:36 -08001027static struct kvm_cpuid_entry2 *
1028get_out_of_range_cpuid_entry(struct kvm_vcpu *vcpu, u32 *fn_ptr, u32 index)
Avi Kivity00b27a32011-11-23 16:30:32 +02001029{
Sean Christopherson8d892312020-03-04 17:34:34 -08001030 struct kvm_cpuid_entry2 *basic, *class;
Sean Christopherson09c74312020-03-04 17:34:36 -08001031 u32 function = *fn_ptr;
Avi Kivity00b27a32011-11-23 16:30:32 +02001032
Sean Christopherson8d892312020-03-04 17:34:34 -08001033 basic = kvm_find_cpuid_entry(vcpu, 0, 0);
1034 if (!basic)
Sean Christopherson09c74312020-03-04 17:34:36 -08001035 return NULL;
1036
1037 if (is_guest_vendor_amd(basic->ebx, basic->ecx, basic->edx) ||
1038 is_guest_vendor_hygon(basic->ebx, basic->ecx, basic->edx))
1039 return NULL;
Sean Christopherson8d892312020-03-04 17:34:34 -08001040
1041 if (function >= 0x40000000 && function <= 0x4fffffff)
1042 class = kvm_find_cpuid_entry(vcpu, function & 0xffffff00, 0);
1043 else if (function >= 0xc0000000)
1044 class = kvm_find_cpuid_entry(vcpu, 0xc0000000, 0);
1045 else
1046 class = kvm_find_cpuid_entry(vcpu, function & 0x80000000, 0);
1047
Sean Christopherson09c74312020-03-04 17:34:36 -08001048 if (class && function <= class->eax)
1049 return NULL;
1050
1051 /*
1052 * Leaf specific adjustments are also applied when redirecting to the
1053 * max basic entry, e.g. if the max basic leaf is 0xb but there is no
1054 * entry for CPUID.0xb.index (see below), then the output value for EDX
1055 * needs to be pulled from CPUID.0xb.1.
1056 */
1057 *fn_ptr = basic->eax;
1058
1059 /*
1060 * The class does not exist or the requested function is out of range;
1061 * the effective CPUID entry is the max basic leaf. Note, the index of
1062 * the original requested leaf is observed!
1063 */
1064 return kvm_find_cpuid_entry(vcpu, basic->eax, index);
Avi Kivity00b27a32011-11-23 16:30:32 +02001065}
1066
Yu Zhange911eb32017-08-24 20:27:52 +08001067bool kvm_cpuid(struct kvm_vcpu *vcpu, u32 *eax, u32 *ebx,
Sean Christophersonf91af512020-03-04 17:34:37 -08001068 u32 *ecx, u32 *edx, bool exact_only)
Avi Kivity00b27a32011-11-23 16:30:32 +02001069{
Jan Kiszkab7fb8482020-03-04 17:34:31 -08001070 u32 orig_function = *eax, function = *eax, index = *ecx;
Jim Mattson43561122019-09-25 17:04:17 -07001071 struct kvm_cpuid_entry2 *entry;
Sean Christopherson2b110b62020-03-17 12:53:54 -07001072 bool exact, used_max_basic = false;
Avi Kivity00b27a32011-11-23 16:30:32 +02001073
Jim Mattson43561122019-09-25 17:04:17 -07001074 entry = kvm_find_cpuid_entry(vcpu, function, index);
Sean Christophersonf91af512020-03-04 17:34:37 -08001075 exact = !!entry;
Sean Christopherson09c74312020-03-04 17:34:36 -08001076
Sean Christopherson2b110b62020-03-17 12:53:54 -07001077 if (!entry && !exact_only) {
Sean Christopherson09c74312020-03-04 17:34:36 -08001078 entry = get_out_of_range_cpuid_entry(vcpu, &function, index);
Sean Christopherson2b110b62020-03-17 12:53:54 -07001079 used_max_basic = !!entry;
1080 }
Sean Christopherson09c74312020-03-04 17:34:36 -08001081
Jim Mattson43561122019-09-25 17:04:17 -07001082 if (entry) {
1083 *eax = entry->eax;
1084 *ebx = entry->ebx;
1085 *ecx = entry->ecx;
1086 *edx = entry->edx;
Paolo Bonziniedef5c32019-11-18 12:23:00 -05001087 if (function == 7 && index == 0) {
1088 u64 data;
1089 if (!__kvm_get_msr(vcpu, MSR_IA32_TSX_CTRL, &data, true) &&
1090 (data & TSX_CTRL_CPUID_CLEAR))
1091 *ebx &= ~(F(RTM) | F(HLE));
1092 }
Jim Mattson43561122019-09-25 17:04:17 -07001093 } else {
Avi Kivity62046e52012-06-07 14:07:48 +03001094 *eax = *ebx = *ecx = *edx = 0;
Jim Mattson43561122019-09-25 17:04:17 -07001095 /*
1096 * When leaf 0BH or 1FH is defined, CL is pass-through
1097 * and EDX is always the x2APIC ID, even for undefined
1098 * subleaves. Index 1 will exist iff the leaf is
1099 * implemented, so we pass through CL iff leaf 1
1100 * exists. EDX can be copied from any existing index.
1101 */
1102 if (function == 0xb || function == 0x1f) {
1103 entry = kvm_find_cpuid_entry(vcpu, function, 1);
1104 if (entry) {
1105 *ecx = index & 0xff;
1106 *edx = entry->edx;
1107 }
1108 }
1109 }
Sean Christopherson2b110b62020-03-17 12:53:54 -07001110 trace_kvm_cpuid(orig_function, index, *eax, *ebx, *ecx, *edx, exact,
1111 used_max_basic);
Sean Christophersonf91af512020-03-04 17:34:37 -08001112 return exact;
Avi Kivity62046e52012-06-07 14:07:48 +03001113}
Julian Stecklina66f7b722012-12-05 15:26:19 +01001114EXPORT_SYMBOL_GPL(kvm_cpuid);
Avi Kivity62046e52012-06-07 14:07:48 +03001115
Kyle Huey6a908b62016-11-29 12:40:37 -08001116int kvm_emulate_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity62046e52012-06-07 14:07:48 +03001117{
Jiang Biao1e131752016-11-07 08:55:49 +08001118 u32 eax, ebx, ecx, edx;
Avi Kivity62046e52012-06-07 14:07:48 +03001119
Kyle Hueydb2336a2017-03-20 01:16:28 -07001120 if (cpuid_fault_enabled(vcpu) && !kvm_require_cpl(vcpu, 0))
1121 return 1;
1122
Sean Christophersonde3cd112019-04-30 10:36:17 -07001123 eax = kvm_rax_read(vcpu);
1124 ecx = kvm_rcx_read(vcpu);
Sean Christophersonf91af512020-03-04 17:34:37 -08001125 kvm_cpuid(vcpu, &eax, &ebx, &ecx, &edx, false);
Sean Christophersonde3cd112019-04-30 10:36:17 -07001126 kvm_rax_write(vcpu, eax);
1127 kvm_rbx_write(vcpu, ebx);
1128 kvm_rcx_write(vcpu, ecx);
1129 kvm_rdx_write(vcpu, edx);
Kyle Huey6affcbe2016-11-29 12:40:40 -08001130 return kvm_skip_emulated_instruction(vcpu);
Avi Kivity00b27a32011-11-23 16:30:32 +02001131}
1132EXPORT_SYMBOL_GPL(kvm_emulate_cpuid);