blob: 59b69f6a2844cdce101a69c3bb34eb7ccd30556f [file] [log] [blame]
Avi Kivity00b27a32011-11-23 16:30:32 +02001/*
2 * Kernel-based Virtual Machine driver for Linux
3 * cpuid support routines
4 *
5 * derived from arch/x86/kvm/x86.c
6 *
7 * Copyright 2011 Red Hat, Inc. and/or its affiliates.
8 * Copyright IBM Corporation, 2008
9 *
10 * This work is licensed under the terms of the GNU GPL, version 2. See
11 * the COPYING file in the top-level directory.
12 *
13 */
14
15#include <linux/kvm_host.h>
16#include <linux/module.h>
Jan Kiszkabb5a7982011-12-14 17:58:18 +010017#include <linux/vmalloc.h>
18#include <linux/uaccess.h>
Avi Kivity00b27a32011-11-23 16:30:32 +020019#include <asm/user.h>
20#include <asm/xsave.h>
21#include "cpuid.h"
22#include "lapic.h"
23#include "mmu.h"
24#include "trace.h"
25
Paolo Bonzini412a3c42014-12-03 14:38:01 +010026static u32 xstate_required_size(u64 xstate_bv, bool compacted)
Paolo Bonzini4344ee92013-10-02 16:06:16 +020027{
28 int feature_bit = 0;
29 u32 ret = XSAVE_HDR_SIZE + XSAVE_HDR_OFFSET;
30
Liu, Jinsong56c103e2014-02-21 17:39:02 +000031 xstate_bv &= XSTATE_EXTEND_MASK;
Paolo Bonzini4344ee92013-10-02 16:06:16 +020032 while (xstate_bv) {
33 if (xstate_bv & 0x1) {
Paolo Bonzini412a3c42014-12-03 14:38:01 +010034 u32 eax, ebx, ecx, edx, offset;
Paolo Bonzini4344ee92013-10-02 16:06:16 +020035 cpuid_count(0xD, feature_bit, &eax, &ebx, &ecx, &edx);
Paolo Bonzini412a3c42014-12-03 14:38:01 +010036 offset = compacted ? ret : ebx;
37 ret = max(ret, offset + eax);
Paolo Bonzini4344ee92013-10-02 16:06:16 +020038 }
39
40 xstate_bv >>= 1;
41 feature_bit++;
42 }
43
44 return ret;
45}
46
Paolo Bonzini4ff41732014-02-24 12:15:16 +010047u64 kvm_supported_xcr0(void)
48{
49 u64 xcr0 = KVM_SUPPORTED_XCR0 & host_xcr0;
50
Paolo Bonzini93c4adc2014-03-05 23:19:52 +010051 if (!kvm_x86_ops->mpx_supported())
Paolo Bonzini4ff41732014-02-24 12:15:16 +010052 xcr0 &= ~(XSTATE_BNDREGS | XSTATE_BNDCSR);
53
54 return xcr0;
55}
56
Paolo Bonzini5c404ca2014-12-03 14:34:47 +010057#define F(x) bit(X86_FEATURE_##x)
58
Nadav Amitdd598092014-09-16 15:10:03 +030059int kvm_update_cpuid(struct kvm_vcpu *vcpu)
Avi Kivity00b27a32011-11-23 16:30:32 +020060{
61 struct kvm_cpuid_entry2 *best;
62 struct kvm_lapic *apic = vcpu->arch.apic;
63
64 best = kvm_find_cpuid_entry(vcpu, 1, 0);
65 if (!best)
Nadav Amitdd598092014-09-16 15:10:03 +030066 return 0;
Avi Kivity00b27a32011-11-23 16:30:32 +020067
68 /* Update OSXSAVE bit */
69 if (cpu_has_xsave && best->function == 0x1) {
Paolo Bonzini5c404ca2014-12-03 14:34:47 +010070 best->ecx &= ~F(OSXSAVE);
Avi Kivity00b27a32011-11-23 16:30:32 +020071 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE))
Paolo Bonzini5c404ca2014-12-03 14:34:47 +010072 best->ecx |= F(OSXSAVE);
Avi Kivity00b27a32011-11-23 16:30:32 +020073 }
74
75 if (apic) {
Paolo Bonzini5c404ca2014-12-03 14:34:47 +010076 if (best->ecx & F(TSC_DEADLINE_TIMER))
Avi Kivity00b27a32011-11-23 16:30:32 +020077 apic->lapic_timer.timer_mode_mask = 3 << 17;
78 else
79 apic->lapic_timer.timer_mode_mask = 1 << 17;
80 }
Gleb Natapovf5132b02011-11-10 14:57:22 +020081
Paolo Bonzinid7876f12013-10-02 16:06:15 +020082 best = kvm_find_cpuid_entry(vcpu, 0xD, 0);
Paolo Bonzini4344ee92013-10-02 16:06:16 +020083 if (!best) {
Paolo Bonzinid7876f12013-10-02 16:06:15 +020084 vcpu->arch.guest_supported_xcr0 = 0;
Paolo Bonzini4344ee92013-10-02 16:06:16 +020085 vcpu->arch.guest_xstate_size = XSAVE_HDR_SIZE + XSAVE_HDR_OFFSET;
86 } else {
Paolo Bonzinid7876f12013-10-02 16:06:15 +020087 vcpu->arch.guest_supported_xcr0 =
88 (best->eax | ((u64)best->edx << 32)) &
Paolo Bonzini4ff41732014-02-24 12:15:16 +010089 kvm_supported_xcr0();
Liu, Jinsong56c103e2014-02-21 17:39:02 +000090 vcpu->arch.guest_xstate_size = best->ebx =
Paolo Bonzini412a3c42014-12-03 14:38:01 +010091 xstate_required_size(vcpu->arch.xcr0, false);
Paolo Bonzini4344ee92013-10-02 16:06:16 +020092 }
Paolo Bonzinid7876f12013-10-02 16:06:15 +020093
Paolo Bonzini412a3c42014-12-03 14:38:01 +010094 best = kvm_find_cpuid_entry(vcpu, 0xD, 1);
95 if (best && (best->eax & (F(XSAVES) | F(XSAVEC))))
96 best->ebx = xstate_required_size(vcpu->arch.xcr0, true);
97
Nadav Amitdd598092014-09-16 15:10:03 +030098 /*
99 * The existing code assumes virtual address is 48-bit in the canonical
100 * address checks; exit if it is ever changed.
101 */
102 best = kvm_find_cpuid_entry(vcpu, 0x80000008, 0);
103 if (best && ((best->eax & 0xff00) >> 8) != 48 &&
104 ((best->eax & 0xff00) >> 8) != 0)
105 return -EINVAL;
106
Eugene Korenevsky5a4f55c2015-03-29 23:56:12 +0300107 /* Update physical-address width */
108 vcpu->arch.maxphyaddr = cpuid_query_maxphyaddr(vcpu);
109
Gleb Natapovf5132b02011-11-10 14:57:22 +0200110 kvm_pmu_cpuid_update(vcpu);
Nadav Amitdd598092014-09-16 15:10:03 +0300111 return 0;
Avi Kivity00b27a32011-11-23 16:30:32 +0200112}
113
114static int is_efer_nx(void)
115{
116 unsigned long long efer = 0;
117
118 rdmsrl_safe(MSR_EFER, &efer);
119 return efer & EFER_NX;
120}
121
122static void cpuid_fix_nx_cap(struct kvm_vcpu *vcpu)
123{
124 int i;
125 struct kvm_cpuid_entry2 *e, *entry;
126
127 entry = NULL;
128 for (i = 0; i < vcpu->arch.cpuid_nent; ++i) {
129 e = &vcpu->arch.cpuid_entries[i];
130 if (e->function == 0x80000001) {
131 entry = e;
132 break;
133 }
134 }
Paolo Bonzini5c404ca2014-12-03 14:34:47 +0100135 if (entry && (entry->edx & F(NX)) && !is_efer_nx()) {
136 entry->edx &= ~F(NX);
Avi Kivity00b27a32011-11-23 16:30:32 +0200137 printk(KERN_INFO "kvm: guest NX capability removed\n");
138 }
139}
140
Eugene Korenevsky5a4f55c2015-03-29 23:56:12 +0300141int cpuid_query_maxphyaddr(struct kvm_vcpu *vcpu)
142{
143 struct kvm_cpuid_entry2 *best;
144
145 best = kvm_find_cpuid_entry(vcpu, 0x80000000, 0);
146 if (!best || best->eax < 0x80000008)
147 goto not_found;
148 best = kvm_find_cpuid_entry(vcpu, 0x80000008, 0);
149 if (best)
150 return best->eax & 0xff;
151not_found:
152 return 36;
153}
154EXPORT_SYMBOL_GPL(cpuid_query_maxphyaddr);
155
Avi Kivity00b27a32011-11-23 16:30:32 +0200156/* when an old userspace process fills a new kernel module */
157int kvm_vcpu_ioctl_set_cpuid(struct kvm_vcpu *vcpu,
158 struct kvm_cpuid *cpuid,
159 struct kvm_cpuid_entry __user *entries)
160{
161 int r, i;
162 struct kvm_cpuid_entry *cpuid_entries;
163
164 r = -E2BIG;
165 if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
166 goto out;
167 r = -ENOMEM;
168 cpuid_entries = vmalloc(sizeof(struct kvm_cpuid_entry) * cpuid->nent);
169 if (!cpuid_entries)
170 goto out;
171 r = -EFAULT;
172 if (copy_from_user(cpuid_entries, entries,
173 cpuid->nent * sizeof(struct kvm_cpuid_entry)))
174 goto out_free;
175 for (i = 0; i < cpuid->nent; i++) {
176 vcpu->arch.cpuid_entries[i].function = cpuid_entries[i].function;
177 vcpu->arch.cpuid_entries[i].eax = cpuid_entries[i].eax;
178 vcpu->arch.cpuid_entries[i].ebx = cpuid_entries[i].ebx;
179 vcpu->arch.cpuid_entries[i].ecx = cpuid_entries[i].ecx;
180 vcpu->arch.cpuid_entries[i].edx = cpuid_entries[i].edx;
181 vcpu->arch.cpuid_entries[i].index = 0;
182 vcpu->arch.cpuid_entries[i].flags = 0;
183 vcpu->arch.cpuid_entries[i].padding[0] = 0;
184 vcpu->arch.cpuid_entries[i].padding[1] = 0;
185 vcpu->arch.cpuid_entries[i].padding[2] = 0;
186 }
187 vcpu->arch.cpuid_nent = cpuid->nent;
188 cpuid_fix_nx_cap(vcpu);
Avi Kivity00b27a32011-11-23 16:30:32 +0200189 kvm_apic_set_version(vcpu);
190 kvm_x86_ops->cpuid_update(vcpu);
Nadav Amitdd598092014-09-16 15:10:03 +0300191 r = kvm_update_cpuid(vcpu);
Avi Kivity00b27a32011-11-23 16:30:32 +0200192
193out_free:
194 vfree(cpuid_entries);
195out:
196 return r;
197}
198
199int kvm_vcpu_ioctl_set_cpuid2(struct kvm_vcpu *vcpu,
200 struct kvm_cpuid2 *cpuid,
201 struct kvm_cpuid_entry2 __user *entries)
202{
203 int r;
204
205 r = -E2BIG;
206 if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
207 goto out;
208 r = -EFAULT;
209 if (copy_from_user(&vcpu->arch.cpuid_entries, entries,
210 cpuid->nent * sizeof(struct kvm_cpuid_entry2)))
211 goto out;
212 vcpu->arch.cpuid_nent = cpuid->nent;
213 kvm_apic_set_version(vcpu);
214 kvm_x86_ops->cpuid_update(vcpu);
Nadav Amitdd598092014-09-16 15:10:03 +0300215 r = kvm_update_cpuid(vcpu);
Avi Kivity00b27a32011-11-23 16:30:32 +0200216out:
217 return r;
218}
219
220int kvm_vcpu_ioctl_get_cpuid2(struct kvm_vcpu *vcpu,
221 struct kvm_cpuid2 *cpuid,
222 struct kvm_cpuid_entry2 __user *entries)
223{
224 int r;
225
226 r = -E2BIG;
227 if (cpuid->nent < vcpu->arch.cpuid_nent)
228 goto out;
229 r = -EFAULT;
230 if (copy_to_user(entries, &vcpu->arch.cpuid_entries,
231 vcpu->arch.cpuid_nent * sizeof(struct kvm_cpuid_entry2)))
232 goto out;
233 return 0;
234
235out:
236 cpuid->nent = vcpu->arch.cpuid_nent;
237 return r;
238}
239
240static void cpuid_mask(u32 *word, int wordnum)
241{
242 *word &= boot_cpu_data.x86_capability[wordnum];
243}
244
245static void do_cpuid_1_ent(struct kvm_cpuid_entry2 *entry, u32 function,
246 u32 index)
247{
248 entry->function = function;
249 entry->index = index;
250 cpuid_count(entry->function, entry->index,
251 &entry->eax, &entry->ebx, &entry->ecx, &entry->edx);
252 entry->flags = 0;
253}
254
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200255static int __do_cpuid_ent_emulated(struct kvm_cpuid_entry2 *entry,
256 u32 func, u32 index, int *nent, int maxnent)
257{
Borislav Petkov84cffe42013-10-29 12:54:56 +0100258 switch (func) {
259 case 0:
260 entry->eax = 1; /* only one leaf currently */
261 ++*nent;
262 break;
263 case 1:
264 entry->ecx = F(MOVBE);
265 ++*nent;
266 break;
267 default:
268 break;
269 }
270
271 entry->function = func;
272 entry->index = index;
273
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200274 return 0;
275}
276
277static inline int __do_cpuid_ent(struct kvm_cpuid_entry2 *entry, u32 function,
278 u32 index, int *nent, int maxnent)
Avi Kivity00b27a32011-11-23 16:30:32 +0200279{
Sasha Levin831bf662011-11-28 11:20:29 +0200280 int r;
Avi Kivity00b27a32011-11-23 16:30:32 +0200281 unsigned f_nx = is_efer_nx() ? F(NX) : 0;
282#ifdef CONFIG_X86_64
283 unsigned f_gbpages = (kvm_x86_ops->get_lpage_level() == PT_PDPE_LEVEL)
284 ? F(GBPAGES) : 0;
285 unsigned f_lm = F(LM);
286#else
287 unsigned f_gbpages = 0;
288 unsigned f_lm = 0;
289#endif
290 unsigned f_rdtscp = kvm_x86_ops->rdtscp_supported() ? F(RDTSCP) : 0;
Mao, Junjiead756a12012-07-02 01:18:48 +0000291 unsigned f_invpcid = kvm_x86_ops->invpcid_supported() ? F(INVPCID) : 0;
Paolo Bonzini93c4adc2014-03-05 23:19:52 +0100292 unsigned f_mpx = kvm_x86_ops->mpx_supported() ? F(MPX) : 0;
Wanpeng Li55412b22014-12-02 19:21:30 +0800293 unsigned f_xsaves = kvm_x86_ops->xsaves_supported() ? F(XSAVES) : 0;
Avi Kivity00b27a32011-11-23 16:30:32 +0200294
295 /* cpuid 1.edx */
296 const u32 kvm_supported_word0_x86_features =
297 F(FPU) | F(VME) | F(DE) | F(PSE) |
298 F(TSC) | F(MSR) | F(PAE) | F(MCE) |
299 F(CX8) | F(APIC) | 0 /* Reserved */ | F(SEP) |
300 F(MTRR) | F(PGE) | F(MCA) | F(CMOV) |
H. Peter Anvin840d2832014-02-27 08:31:30 -0800301 F(PAT) | F(PSE36) | 0 /* PSN */ | F(CLFLUSH) |
Avi Kivity00b27a32011-11-23 16:30:32 +0200302 0 /* Reserved, DS, ACPI */ | F(MMX) |
303 F(FXSR) | F(XMM) | F(XMM2) | F(SELFSNOOP) |
304 0 /* HTT, TM, Reserved, PBE */;
305 /* cpuid 0x80000001.edx */
306 const u32 kvm_supported_word1_x86_features =
307 F(FPU) | F(VME) | F(DE) | F(PSE) |
308 F(TSC) | F(MSR) | F(PAE) | F(MCE) |
309 F(CX8) | F(APIC) | 0 /* Reserved */ | F(SYSCALL) |
310 F(MTRR) | F(PGE) | F(MCA) | F(CMOV) |
311 F(PAT) | F(PSE36) | 0 /* Reserved */ |
312 f_nx | 0 /* Reserved */ | F(MMXEXT) | F(MMX) |
313 F(FXSR) | F(FXSR_OPT) | f_gbpages | f_rdtscp |
314 0 /* Reserved */ | f_lm | F(3DNOWEXT) | F(3DNOW);
315 /* cpuid 1.ecx */
316 const u32 kvm_supported_word4_x86_features =
Gabriel L. Somlo87c00572014-05-07 16:52:13 -0400317 /* NOTE: MONITOR (and MWAIT) are emulated as NOP,
318 * but *not* advertised to guests via CPUID ! */
Avi Kivity00b27a32011-11-23 16:30:32 +0200319 F(XMM3) | F(PCLMULQDQ) | 0 /* DTES64, MONITOR */ |
320 0 /* DS-CPL, VMX, SMX, EST */ |
321 0 /* TM2 */ | F(SSSE3) | 0 /* CNXT-ID */ | 0 /* Reserved */ |
Liu, Jinsongfb215362011-11-28 03:55:19 -0800322 F(FMA) | F(CX16) | 0 /* xTPR Update, PDCM */ |
Mao, Junjiead756a12012-07-02 01:18:48 +0000323 F(PCID) | 0 /* Reserved, DCA */ | F(XMM4_1) |
Avi Kivity00b27a32011-11-23 16:30:32 +0200324 F(XMM4_2) | F(X2APIC) | F(MOVBE) | F(POPCNT) |
325 0 /* Reserved*/ | F(AES) | F(XSAVE) | 0 /* OSXSAVE */ | F(AVX) |
326 F(F16C) | F(RDRAND);
327 /* cpuid 0x80000001.ecx */
328 const u32 kvm_supported_word6_x86_features =
329 F(LAHF_LM) | F(CMP_LEGACY) | 0 /*SVM*/ | 0 /* ExtApicSpace */ |
330 F(CR8_LEGACY) | F(ABM) | F(SSE4A) | F(MISALIGNSSE) |
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500331 F(3DNOWPREFETCH) | F(OSVW) | 0 /* IBS */ | F(XOP) |
Avi Kivity00b27a32011-11-23 16:30:32 +0200332 0 /* SKINIT, WDT, LWP */ | F(FMA4) | F(TBM);
333
334 /* cpuid 0xC0000001.edx */
335 const u32 kvm_supported_word5_x86_features =
336 F(XSTORE) | F(XSTORE_EN) | F(XCRYPT) | F(XCRYPT_EN) |
337 F(ACE2) | F(ACE2_EN) | F(PHE) | F(PHE_EN) |
338 F(PMM) | F(PMM_EN);
339
340 /* cpuid 7.0.ebx */
341 const u32 kvm_supported_word9_x86_features =
Liu, Jinsong83c52912012-02-28 05:15:46 +0000342 F(FSGSBASE) | F(BMI1) | F(HLE) | F(AVX2) | F(SMEP) |
Liu, Jinsong390bd522014-02-24 10:58:09 +0000343 F(BMI2) | F(ERMS) | f_invpcid | F(RTM) | f_mpx | F(RDSEED) |
Chao Peng612263b2014-10-22 17:35:24 +0800344 F(ADX) | F(SMAP) | F(AVX512F) | F(AVX512PF) | F(AVX512ER) |
345 F(AVX512CD);
Avi Kivity00b27a32011-11-23 16:30:32 +0200346
Paolo Bonzinib65d6e12014-11-21 18:13:26 +0100347 /* cpuid 0xD.1.eax */
348 const u32 kvm_supported_word10_x86_features =
Wanpeng Li55412b22014-12-02 19:21:30 +0800349 F(XSAVEOPT) | F(XSAVEC) | F(XGETBV1) | f_xsaves;
Paolo Bonzinib65d6e12014-11-21 18:13:26 +0100350
Avi Kivity00b27a32011-11-23 16:30:32 +0200351 /* all calls to cpuid_count() should be made on the same cpu */
352 get_cpu();
Sasha Levin831bf662011-11-28 11:20:29 +0200353
354 r = -E2BIG;
355
356 if (*nent >= maxnent)
357 goto out;
358
Avi Kivity00b27a32011-11-23 16:30:32 +0200359 do_cpuid_1_ent(entry, function, index);
360 ++*nent;
361
362 switch (function) {
363 case 0:
364 entry->eax = min(entry->eax, (u32)0xd);
365 break;
366 case 1:
367 entry->edx &= kvm_supported_word0_x86_features;
368 cpuid_mask(&entry->edx, 0);
369 entry->ecx &= kvm_supported_word4_x86_features;
370 cpuid_mask(&entry->ecx, 4);
371 /* we support x2apic emulation even if host does not support
372 * it since we emulate x2apic in software */
373 entry->ecx |= F(X2APIC);
374 break;
375 /* function 2 entries are STATEFUL. That is, repeated cpuid commands
376 * may return different values. This forces us to get_cpu() before
377 * issuing the first command, and also to emulate this annoying behavior
378 * in kvm_emulate_cpuid() using KVM_CPUID_FLAG_STATE_READ_NEXT */
379 case 2: {
380 int t, times = entry->eax & 0xff;
381
382 entry->flags |= KVM_CPUID_FLAG_STATEFUL_FUNC;
383 entry->flags |= KVM_CPUID_FLAG_STATE_READ_NEXT;
Sasha Levin831bf662011-11-28 11:20:29 +0200384 for (t = 1; t < times; ++t) {
385 if (*nent >= maxnent)
386 goto out;
387
Avi Kivity00b27a32011-11-23 16:30:32 +0200388 do_cpuid_1_ent(&entry[t], function, 0);
389 entry[t].flags |= KVM_CPUID_FLAG_STATEFUL_FUNC;
390 ++*nent;
391 }
392 break;
393 }
394 /* function 4 has additional index. */
395 case 4: {
396 int i, cache_type;
397
398 entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
399 /* read more entries until cache_type is zero */
Sasha Levin831bf662011-11-28 11:20:29 +0200400 for (i = 1; ; ++i) {
401 if (*nent >= maxnent)
402 goto out;
403
Avi Kivity00b27a32011-11-23 16:30:32 +0200404 cache_type = entry[i - 1].eax & 0x1f;
405 if (!cache_type)
406 break;
407 do_cpuid_1_ent(&entry[i], function, i);
408 entry[i].flags |=
409 KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
410 ++*nent;
411 }
412 break;
413 }
414 case 7: {
415 entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
Guo Chaobbbda792012-06-28 15:20:58 +0800416 /* Mask ebx against host capability word 9 */
Avi Kivity00b27a32011-11-23 16:30:32 +0200417 if (index == 0) {
418 entry->ebx &= kvm_supported_word9_x86_features;
419 cpuid_mask(&entry->ebx, 9);
Will Auldba904632012-11-29 12:42:50 -0800420 // TSC_ADJUST is emulated
421 entry->ebx |= F(TSC_ADJUST);
Avi Kivity00b27a32011-11-23 16:30:32 +0200422 } else
423 entry->ebx = 0;
424 entry->eax = 0;
425 entry->ecx = 0;
426 entry->edx = 0;
427 break;
428 }
429 case 9:
430 break;
Gleb Natapova6c06ed2011-11-10 14:57:28 +0200431 case 0xa: { /* Architectural Performance Monitoring */
432 struct x86_pmu_capability cap;
433 union cpuid10_eax eax;
434 union cpuid10_edx edx;
435
436 perf_get_x86_pmu_capability(&cap);
437
438 /*
439 * Only support guest architectural pmu on a host
440 * with architectural pmu.
441 */
442 if (!cap.version)
443 memset(&cap, 0, sizeof(cap));
444
445 eax.split.version_id = min(cap.version, 2);
446 eax.split.num_counters = cap.num_counters_gp;
447 eax.split.bit_width = cap.bit_width_gp;
448 eax.split.mask_length = cap.events_mask_len;
449
450 edx.split.num_counters_fixed = cap.num_counters_fixed;
451 edx.split.bit_width_fixed = cap.bit_width_fixed;
452 edx.split.reserved = 0;
453
454 entry->eax = eax.full;
455 entry->ebx = cap.events_mask;
456 entry->ecx = 0;
457 entry->edx = edx.full;
458 break;
459 }
Avi Kivity00b27a32011-11-23 16:30:32 +0200460 /* function 0xb has additional index. */
461 case 0xb: {
462 int i, level_type;
463
464 entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
465 /* read more entries until level_type is zero */
Sasha Levin831bf662011-11-28 11:20:29 +0200466 for (i = 1; ; ++i) {
467 if (*nent >= maxnent)
468 goto out;
469
Avi Kivity00b27a32011-11-23 16:30:32 +0200470 level_type = entry[i - 1].ecx & 0xff00;
471 if (!level_type)
472 break;
473 do_cpuid_1_ent(&entry[i], function, i);
474 entry[i].flags |=
475 KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
476 ++*nent;
477 }
478 break;
479 }
480 case 0xd: {
481 int idx, i;
Paolo Bonzini4ff41732014-02-24 12:15:16 +0100482 u64 supported = kvm_supported_xcr0();
Avi Kivity00b27a32011-11-23 16:30:32 +0200483
Paolo Bonzini4ff41732014-02-24 12:15:16 +0100484 entry->eax &= supported;
Radim Krčmáře08e8332014-12-04 18:30:41 +0100485 entry->ebx = xstate_required_size(supported, false);
486 entry->ecx = entry->ebx;
Paolo Bonzini4ff41732014-02-24 12:15:16 +0100487 entry->edx &= supported >> 32;
Avi Kivity00b27a32011-11-23 16:30:32 +0200488 entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
Paolo Bonzinib65d6e12014-11-21 18:13:26 +0100489 if (!supported)
490 break;
491
Sasha Levin831bf662011-11-28 11:20:29 +0200492 for (idx = 1, i = 1; idx < 64; ++idx) {
Paolo Bonzini4ff41732014-02-24 12:15:16 +0100493 u64 mask = ((u64)1 << idx);
Sasha Levin831bf662011-11-28 11:20:29 +0200494 if (*nent >= maxnent)
495 goto out;
496
Avi Kivity00b27a32011-11-23 16:30:32 +0200497 do_cpuid_1_ent(&entry[i], function, idx);
Paolo Bonzini412a3c42014-12-03 14:38:01 +0100498 if (idx == 1) {
Paolo Bonzinib65d6e12014-11-21 18:13:26 +0100499 entry[i].eax &= kvm_supported_word10_x86_features;
Paolo Bonzini412a3c42014-12-03 14:38:01 +0100500 entry[i].ebx = 0;
501 if (entry[i].eax & (F(XSAVES)|F(XSAVEC)))
502 entry[i].ebx =
503 xstate_required_size(supported,
504 true);
Paolo Bonzini404e0a12014-12-04 15:11:11 +0100505 } else {
506 if (entry[i].eax == 0 || !(supported & mask))
507 continue;
508 if (WARN_ON_ONCE(entry[i].ecx & 1))
509 continue;
510 }
511 entry[i].ecx = 0;
512 entry[i].edx = 0;
Avi Kivity00b27a32011-11-23 16:30:32 +0200513 entry[i].flags |=
514 KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
515 ++*nent;
516 ++i;
517 }
518 break;
519 }
520 case KVM_CPUID_SIGNATURE: {
Mathias Krause326d07c2012-08-30 01:30:13 +0200521 static const char signature[12] = "KVMKVMKVM\0\0";
522 const u32 *sigptr = (const u32 *)signature;
Michael S. Tsirkin57c22e52012-05-02 17:55:56 +0300523 entry->eax = KVM_CPUID_FEATURES;
Avi Kivity00b27a32011-11-23 16:30:32 +0200524 entry->ebx = sigptr[0];
525 entry->ecx = sigptr[1];
526 entry->edx = sigptr[2];
527 break;
528 }
529 case KVM_CPUID_FEATURES:
530 entry->eax = (1 << KVM_FEATURE_CLOCKSOURCE) |
531 (1 << KVM_FEATURE_NOP_IO_DELAY) |
532 (1 << KVM_FEATURE_CLOCKSOURCE2) |
533 (1 << KVM_FEATURE_ASYNC_PF) |
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300534 (1 << KVM_FEATURE_PV_EOI) |
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +0530535 (1 << KVM_FEATURE_CLOCKSOURCE_STABLE_BIT) |
536 (1 << KVM_FEATURE_PV_UNHALT);
Avi Kivity00b27a32011-11-23 16:30:32 +0200537
538 if (sched_info_on())
539 entry->eax |= (1 << KVM_FEATURE_STEAL_TIME);
540
541 entry->ebx = 0;
542 entry->ecx = 0;
543 entry->edx = 0;
544 break;
545 case 0x80000000:
546 entry->eax = min(entry->eax, 0x8000001a);
547 break;
548 case 0x80000001:
549 entry->edx &= kvm_supported_word1_x86_features;
550 cpuid_mask(&entry->edx, 1);
551 entry->ecx &= kvm_supported_word6_x86_features;
552 cpuid_mask(&entry->ecx, 6);
553 break;
Marcelo Tosattie4c9a5a12014-04-26 22:30:23 -0300554 case 0x80000007: /* Advanced power management */
555 /* invariant TSC is CPUID.80000007H:EDX[8] */
556 entry->edx &= (1 << 8);
557 /* mask against host */
558 entry->edx &= boot_cpu_data.x86_power;
559 entry->eax = entry->ebx = entry->ecx = 0;
560 break;
Avi Kivity00b27a32011-11-23 16:30:32 +0200561 case 0x80000008: {
562 unsigned g_phys_as = (entry->eax >> 16) & 0xff;
563 unsigned virt_as = max((entry->eax >> 8) & 0xff, 48U);
564 unsigned phys_as = entry->eax & 0xff;
565
566 if (!g_phys_as)
567 g_phys_as = phys_as;
568 entry->eax = g_phys_as | (virt_as << 8);
569 entry->ebx = entry->edx = 0;
570 break;
571 }
572 case 0x80000019:
573 entry->ecx = entry->edx = 0;
574 break;
575 case 0x8000001a:
576 break;
577 case 0x8000001d:
578 break;
579 /*Add support for Centaur's CPUID instruction*/
580 case 0xC0000000:
581 /*Just support up to 0xC0000004 now*/
582 entry->eax = min(entry->eax, 0xC0000004);
583 break;
584 case 0xC0000001:
585 entry->edx &= kvm_supported_word5_x86_features;
586 cpuid_mask(&entry->edx, 5);
587 break;
588 case 3: /* Processor serial number */
589 case 5: /* MONITOR/MWAIT */
590 case 6: /* Thermal management */
Avi Kivity00b27a32011-11-23 16:30:32 +0200591 case 0xC0000002:
592 case 0xC0000003:
593 case 0xC0000004:
594 default:
595 entry->eax = entry->ebx = entry->ecx = entry->edx = 0;
596 break;
597 }
598
599 kvm_x86_ops->set_supported_cpuid(function, entry);
600
Sasha Levin831bf662011-11-28 11:20:29 +0200601 r = 0;
602
603out:
Avi Kivity00b27a32011-11-23 16:30:32 +0200604 put_cpu();
Sasha Levin831bf662011-11-28 11:20:29 +0200605
606 return r;
Avi Kivity00b27a32011-11-23 16:30:32 +0200607}
608
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200609static int do_cpuid_ent(struct kvm_cpuid_entry2 *entry, u32 func,
610 u32 idx, int *nent, int maxnent, unsigned int type)
611{
612 if (type == KVM_GET_EMULATED_CPUID)
613 return __do_cpuid_ent_emulated(entry, func, idx, nent, maxnent);
614
615 return __do_cpuid_ent(entry, func, idx, nent, maxnent);
616}
617
Avi Kivity00b27a32011-11-23 16:30:32 +0200618#undef F
619
Sasha Levin831bf662011-11-28 11:20:29 +0200620struct kvm_cpuid_param {
621 u32 func;
622 u32 idx;
623 bool has_leaf_count;
Mathias Krause326d07c2012-08-30 01:30:13 +0200624 bool (*qualifier)(const struct kvm_cpuid_param *param);
Sasha Levin831bf662011-11-28 11:20:29 +0200625};
626
Mathias Krause326d07c2012-08-30 01:30:13 +0200627static bool is_centaur_cpu(const struct kvm_cpuid_param *param)
Sasha Levin831bf662011-11-28 11:20:29 +0200628{
629 return boot_cpu_data.x86_vendor == X86_VENDOR_CENTAUR;
630}
631
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200632static bool sanity_check_entries(struct kvm_cpuid_entry2 __user *entries,
633 __u32 num_entries, unsigned int ioctl_type)
634{
635 int i;
Borislav Petkov1b2ca422013-11-06 15:46:02 +0100636 __u32 pad[3];
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200637
638 if (ioctl_type != KVM_GET_EMULATED_CPUID)
639 return false;
640
641 /*
642 * We want to make sure that ->padding is being passed clean from
643 * userspace in case we want to use it for something in the future.
644 *
645 * Sadly, this wasn't enforced for KVM_GET_SUPPORTED_CPUID and so we
646 * have to give ourselves satisfied only with the emulated side. /me
647 * sheds a tear.
648 */
649 for (i = 0; i < num_entries; i++) {
Borislav Petkov1b2ca422013-11-06 15:46:02 +0100650 if (copy_from_user(pad, entries[i].padding, sizeof(pad)))
651 return true;
652
653 if (pad[0] || pad[1] || pad[2])
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200654 return true;
655 }
656 return false;
657}
658
659int kvm_dev_ioctl_get_cpuid(struct kvm_cpuid2 *cpuid,
660 struct kvm_cpuid_entry2 __user *entries,
661 unsigned int type)
Avi Kivity00b27a32011-11-23 16:30:32 +0200662{
663 struct kvm_cpuid_entry2 *cpuid_entries;
Sasha Levin831bf662011-11-28 11:20:29 +0200664 int limit, nent = 0, r = -E2BIG, i;
Avi Kivity00b27a32011-11-23 16:30:32 +0200665 u32 func;
Mathias Krause326d07c2012-08-30 01:30:13 +0200666 static const struct kvm_cpuid_param param[] = {
Sasha Levin831bf662011-11-28 11:20:29 +0200667 { .func = 0, .has_leaf_count = true },
668 { .func = 0x80000000, .has_leaf_count = true },
669 { .func = 0xC0000000, .qualifier = is_centaur_cpu, .has_leaf_count = true },
670 { .func = KVM_CPUID_SIGNATURE },
671 { .func = KVM_CPUID_FEATURES },
672 };
Avi Kivity00b27a32011-11-23 16:30:32 +0200673
674 if (cpuid->nent < 1)
675 goto out;
676 if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
677 cpuid->nent = KVM_MAX_CPUID_ENTRIES;
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200678
679 if (sanity_check_entries(entries, cpuid->nent, type))
680 return -EINVAL;
681
Avi Kivity00b27a32011-11-23 16:30:32 +0200682 r = -ENOMEM;
Borislav Petkov84cffe42013-10-29 12:54:56 +0100683 cpuid_entries = vzalloc(sizeof(struct kvm_cpuid_entry2) * cpuid->nent);
Avi Kivity00b27a32011-11-23 16:30:32 +0200684 if (!cpuid_entries)
685 goto out;
686
Sasha Levin831bf662011-11-28 11:20:29 +0200687 r = 0;
688 for (i = 0; i < ARRAY_SIZE(param); i++) {
Mathias Krause326d07c2012-08-30 01:30:13 +0200689 const struct kvm_cpuid_param *ent = &param[i];
Avi Kivity00b27a32011-11-23 16:30:32 +0200690
Sasha Levin831bf662011-11-28 11:20:29 +0200691 if (ent->qualifier && !ent->qualifier(ent))
692 continue;
Avi Kivity00b27a32011-11-23 16:30:32 +0200693
Sasha Levin831bf662011-11-28 11:20:29 +0200694 r = do_cpuid_ent(&cpuid_entries[nent], ent->func, ent->idx,
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200695 &nent, cpuid->nent, type);
Avi Kivity00b27a32011-11-23 16:30:32 +0200696
Sasha Levin831bf662011-11-28 11:20:29 +0200697 if (r)
Avi Kivity00b27a32011-11-23 16:30:32 +0200698 goto out_free;
699
Sasha Levin831bf662011-11-28 11:20:29 +0200700 if (!ent->has_leaf_count)
701 continue;
702
Avi Kivity00b27a32011-11-23 16:30:32 +0200703 limit = cpuid_entries[nent - 1].eax;
Sasha Levin831bf662011-11-28 11:20:29 +0200704 for (func = ent->func + 1; func <= limit && nent < cpuid->nent && r == 0; ++func)
705 r = do_cpuid_ent(&cpuid_entries[nent], func, ent->idx,
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200706 &nent, cpuid->nent, type);
Avi Kivity00b27a32011-11-23 16:30:32 +0200707
Sasha Levin831bf662011-11-28 11:20:29 +0200708 if (r)
Avi Kivity00b27a32011-11-23 16:30:32 +0200709 goto out_free;
710 }
711
Avi Kivity00b27a32011-11-23 16:30:32 +0200712 r = -EFAULT;
713 if (copy_to_user(entries, cpuid_entries,
714 nent * sizeof(struct kvm_cpuid_entry2)))
715 goto out_free;
716 cpuid->nent = nent;
717 r = 0;
718
719out_free:
720 vfree(cpuid_entries);
721out:
722 return r;
723}
724
725static int move_to_next_stateful_cpuid_entry(struct kvm_vcpu *vcpu, int i)
726{
727 struct kvm_cpuid_entry2 *e = &vcpu->arch.cpuid_entries[i];
728 int j, nent = vcpu->arch.cpuid_nent;
729
730 e->flags &= ~KVM_CPUID_FLAG_STATE_READ_NEXT;
731 /* when no next entry is found, the current entry[i] is reselected */
732 for (j = i + 1; ; j = (j + 1) % nent) {
733 struct kvm_cpuid_entry2 *ej = &vcpu->arch.cpuid_entries[j];
734 if (ej->function == e->function) {
735 ej->flags |= KVM_CPUID_FLAG_STATE_READ_NEXT;
736 return j;
737 }
738 }
739 return 0; /* silence gcc, even though control never reaches here */
740}
741
742/* find an entry with matching function, matching index (if needed), and that
743 * should be read next (if it's stateful) */
744static int is_matching_cpuid_entry(struct kvm_cpuid_entry2 *e,
745 u32 function, u32 index)
746{
747 if (e->function != function)
748 return 0;
749 if ((e->flags & KVM_CPUID_FLAG_SIGNIFCANT_INDEX) && e->index != index)
750 return 0;
751 if ((e->flags & KVM_CPUID_FLAG_STATEFUL_FUNC) &&
752 !(e->flags & KVM_CPUID_FLAG_STATE_READ_NEXT))
753 return 0;
754 return 1;
755}
756
757struct kvm_cpuid_entry2 *kvm_find_cpuid_entry(struct kvm_vcpu *vcpu,
758 u32 function, u32 index)
759{
760 int i;
761 struct kvm_cpuid_entry2 *best = NULL;
762
763 for (i = 0; i < vcpu->arch.cpuid_nent; ++i) {
764 struct kvm_cpuid_entry2 *e;
765
766 e = &vcpu->arch.cpuid_entries[i];
767 if (is_matching_cpuid_entry(e, function, index)) {
768 if (e->flags & KVM_CPUID_FLAG_STATEFUL_FUNC)
769 move_to_next_stateful_cpuid_entry(vcpu, i);
770 best = e;
771 break;
772 }
773 }
774 return best;
775}
776EXPORT_SYMBOL_GPL(kvm_find_cpuid_entry);
777
Avi Kivity00b27a32011-11-23 16:30:32 +0200778/*
779 * If no match is found, check whether we exceed the vCPU's limit
780 * and return the content of the highest valid _standard_ leaf instead.
781 * This is to satisfy the CPUID specification.
782 */
783static struct kvm_cpuid_entry2* check_cpuid_limit(struct kvm_vcpu *vcpu,
784 u32 function, u32 index)
785{
786 struct kvm_cpuid_entry2 *maxlevel;
787
788 maxlevel = kvm_find_cpuid_entry(vcpu, function & 0x80000000, 0);
789 if (!maxlevel || maxlevel->eax >= function)
790 return NULL;
791 if (function & 0x80000000) {
792 maxlevel = kvm_find_cpuid_entry(vcpu, 0, 0);
793 if (!maxlevel)
794 return NULL;
795 }
796 return kvm_find_cpuid_entry(vcpu, maxlevel->eax, index);
797}
798
Avi Kivity62046e52012-06-07 14:07:48 +0300799void kvm_cpuid(struct kvm_vcpu *vcpu, u32 *eax, u32 *ebx, u32 *ecx, u32 *edx)
Avi Kivity00b27a32011-11-23 16:30:32 +0200800{
Avi Kivity62046e52012-06-07 14:07:48 +0300801 u32 function = *eax, index = *ecx;
Avi Kivity00b27a32011-11-23 16:30:32 +0200802 struct kvm_cpuid_entry2 *best;
803
Avi Kivity00b27a32011-11-23 16:30:32 +0200804 best = kvm_find_cpuid_entry(vcpu, function, index);
805
806 if (!best)
807 best = check_cpuid_limit(vcpu, function, index);
808
Marcelo Tosattibc613492014-09-18 18:24:57 -0300809 /*
810 * Perfmon not yet supported for L2 guest.
811 */
812 if (is_guest_mode(vcpu) && function == 0xa)
813 best = NULL;
814
Avi Kivity00b27a32011-11-23 16:30:32 +0200815 if (best) {
Avi Kivity62046e52012-06-07 14:07:48 +0300816 *eax = best->eax;
817 *ebx = best->ebx;
818 *ecx = best->ecx;
819 *edx = best->edx;
820 } else
821 *eax = *ebx = *ecx = *edx = 0;
Gleb Natapova9d4e432013-11-04 15:52:43 +0200822 trace_kvm_cpuid(function, *eax, *ebx, *ecx, *edx);
Avi Kivity62046e52012-06-07 14:07:48 +0300823}
Julian Stecklina66f7b722012-12-05 15:26:19 +0100824EXPORT_SYMBOL_GPL(kvm_cpuid);
Avi Kivity62046e52012-06-07 14:07:48 +0300825
826void kvm_emulate_cpuid(struct kvm_vcpu *vcpu)
827{
828 u32 function, eax, ebx, ecx, edx;
829
830 function = eax = kvm_register_read(vcpu, VCPU_REGS_RAX);
831 ecx = kvm_register_read(vcpu, VCPU_REGS_RCX);
832 kvm_cpuid(vcpu, &eax, &ebx, &ecx, &edx);
833 kvm_register_write(vcpu, VCPU_REGS_RAX, eax);
834 kvm_register_write(vcpu, VCPU_REGS_RBX, ebx);
835 kvm_register_write(vcpu, VCPU_REGS_RCX, ecx);
836 kvm_register_write(vcpu, VCPU_REGS_RDX, edx);
Avi Kivity00b27a32011-11-23 16:30:32 +0200837 kvm_x86_ops->skip_emulated_instruction(vcpu);
Avi Kivity00b27a32011-11-23 16:30:32 +0200838}
839EXPORT_SYMBOL_GPL(kvm_emulate_cpuid);