blob: 18aefb4d0927258c434baf777ac757e5baee4faa [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 Bonzini4344ee92013-10-02 16:06:16 +020026static u32 xstate_required_size(u64 xstate_bv)
27{
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) {
34 u32 eax, ebx, ecx, edx;
35 cpuid_count(0xD, feature_bit, &eax, &ebx, &ecx, &edx);
36 ret = max(ret, eax + ebx);
37 }
38
39 xstate_bv >>= 1;
40 feature_bit++;
41 }
42
43 return ret;
44}
45
Paolo Bonzini4ff41732014-02-24 12:15:16 +010046u64 kvm_supported_xcr0(void)
47{
48 u64 xcr0 = KVM_SUPPORTED_XCR0 & host_xcr0;
49
50 if (!kvm_x86_ops->mpx_supported || !kvm_x86_ops->mpx_supported())
51 xcr0 &= ~(XSTATE_BNDREGS | XSTATE_BNDCSR);
52
53 return xcr0;
54}
55
Avi Kivity00b27a32011-11-23 16:30:32 +020056void kvm_update_cpuid(struct kvm_vcpu *vcpu)
57{
58 struct kvm_cpuid_entry2 *best;
59 struct kvm_lapic *apic = vcpu->arch.apic;
60
61 best = kvm_find_cpuid_entry(vcpu, 1, 0);
62 if (!best)
63 return;
64
65 /* Update OSXSAVE bit */
66 if (cpu_has_xsave && best->function == 0x1) {
67 best->ecx &= ~(bit(X86_FEATURE_OSXSAVE));
68 if (kvm_read_cr4_bits(vcpu, X86_CR4_OSXSAVE))
69 best->ecx |= bit(X86_FEATURE_OSXSAVE);
70 }
71
72 if (apic) {
73 if (best->ecx & bit(X86_FEATURE_TSC_DEADLINE_TIMER))
74 apic->lapic_timer.timer_mode_mask = 3 << 17;
75 else
76 apic->lapic_timer.timer_mode_mask = 1 << 17;
77 }
Gleb Natapovf5132b02011-11-10 14:57:22 +020078
Paolo Bonzinid7876f12013-10-02 16:06:15 +020079 best = kvm_find_cpuid_entry(vcpu, 0xD, 0);
Paolo Bonzini4344ee92013-10-02 16:06:16 +020080 if (!best) {
Paolo Bonzinid7876f12013-10-02 16:06:15 +020081 vcpu->arch.guest_supported_xcr0 = 0;
Paolo Bonzini4344ee92013-10-02 16:06:16 +020082 vcpu->arch.guest_xstate_size = XSAVE_HDR_SIZE + XSAVE_HDR_OFFSET;
83 } else {
Paolo Bonzinid7876f12013-10-02 16:06:15 +020084 vcpu->arch.guest_supported_xcr0 =
85 (best->eax | ((u64)best->edx << 32)) &
Paolo Bonzini4ff41732014-02-24 12:15:16 +010086 kvm_supported_xcr0();
Liu, Jinsong56c103e2014-02-21 17:39:02 +000087 vcpu->arch.guest_xstate_size = best->ebx =
88 xstate_required_size(vcpu->arch.xcr0);
Paolo Bonzini4344ee92013-10-02 16:06:16 +020089 }
Paolo Bonzinid7876f12013-10-02 16:06:15 +020090
Gleb Natapovf5132b02011-11-10 14:57:22 +020091 kvm_pmu_cpuid_update(vcpu);
Avi Kivity00b27a32011-11-23 16:30:32 +020092}
93
94static int is_efer_nx(void)
95{
96 unsigned long long efer = 0;
97
98 rdmsrl_safe(MSR_EFER, &efer);
99 return efer & EFER_NX;
100}
101
102static void cpuid_fix_nx_cap(struct kvm_vcpu *vcpu)
103{
104 int i;
105 struct kvm_cpuid_entry2 *e, *entry;
106
107 entry = NULL;
108 for (i = 0; i < vcpu->arch.cpuid_nent; ++i) {
109 e = &vcpu->arch.cpuid_entries[i];
110 if (e->function == 0x80000001) {
111 entry = e;
112 break;
113 }
114 }
115 if (entry && (entry->edx & (1 << 20)) && !is_efer_nx()) {
116 entry->edx &= ~(1 << 20);
117 printk(KERN_INFO "kvm: guest NX capability removed\n");
118 }
119}
120
121/* when an old userspace process fills a new kernel module */
122int kvm_vcpu_ioctl_set_cpuid(struct kvm_vcpu *vcpu,
123 struct kvm_cpuid *cpuid,
124 struct kvm_cpuid_entry __user *entries)
125{
126 int r, i;
127 struct kvm_cpuid_entry *cpuid_entries;
128
129 r = -E2BIG;
130 if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
131 goto out;
132 r = -ENOMEM;
133 cpuid_entries = vmalloc(sizeof(struct kvm_cpuid_entry) * cpuid->nent);
134 if (!cpuid_entries)
135 goto out;
136 r = -EFAULT;
137 if (copy_from_user(cpuid_entries, entries,
138 cpuid->nent * sizeof(struct kvm_cpuid_entry)))
139 goto out_free;
140 for (i = 0; i < cpuid->nent; i++) {
141 vcpu->arch.cpuid_entries[i].function = cpuid_entries[i].function;
142 vcpu->arch.cpuid_entries[i].eax = cpuid_entries[i].eax;
143 vcpu->arch.cpuid_entries[i].ebx = cpuid_entries[i].ebx;
144 vcpu->arch.cpuid_entries[i].ecx = cpuid_entries[i].ecx;
145 vcpu->arch.cpuid_entries[i].edx = cpuid_entries[i].edx;
146 vcpu->arch.cpuid_entries[i].index = 0;
147 vcpu->arch.cpuid_entries[i].flags = 0;
148 vcpu->arch.cpuid_entries[i].padding[0] = 0;
149 vcpu->arch.cpuid_entries[i].padding[1] = 0;
150 vcpu->arch.cpuid_entries[i].padding[2] = 0;
151 }
152 vcpu->arch.cpuid_nent = cpuid->nent;
153 cpuid_fix_nx_cap(vcpu);
154 r = 0;
155 kvm_apic_set_version(vcpu);
156 kvm_x86_ops->cpuid_update(vcpu);
157 kvm_update_cpuid(vcpu);
158
159out_free:
160 vfree(cpuid_entries);
161out:
162 return r;
163}
164
165int kvm_vcpu_ioctl_set_cpuid2(struct kvm_vcpu *vcpu,
166 struct kvm_cpuid2 *cpuid,
167 struct kvm_cpuid_entry2 __user *entries)
168{
169 int r;
170
171 r = -E2BIG;
172 if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
173 goto out;
174 r = -EFAULT;
175 if (copy_from_user(&vcpu->arch.cpuid_entries, entries,
176 cpuid->nent * sizeof(struct kvm_cpuid_entry2)))
177 goto out;
178 vcpu->arch.cpuid_nent = cpuid->nent;
179 kvm_apic_set_version(vcpu);
180 kvm_x86_ops->cpuid_update(vcpu);
181 kvm_update_cpuid(vcpu);
182 return 0;
183
184out:
185 return r;
186}
187
188int kvm_vcpu_ioctl_get_cpuid2(struct kvm_vcpu *vcpu,
189 struct kvm_cpuid2 *cpuid,
190 struct kvm_cpuid_entry2 __user *entries)
191{
192 int r;
193
194 r = -E2BIG;
195 if (cpuid->nent < vcpu->arch.cpuid_nent)
196 goto out;
197 r = -EFAULT;
198 if (copy_to_user(entries, &vcpu->arch.cpuid_entries,
199 vcpu->arch.cpuid_nent * sizeof(struct kvm_cpuid_entry2)))
200 goto out;
201 return 0;
202
203out:
204 cpuid->nent = vcpu->arch.cpuid_nent;
205 return r;
206}
207
208static void cpuid_mask(u32 *word, int wordnum)
209{
210 *word &= boot_cpu_data.x86_capability[wordnum];
211}
212
213static void do_cpuid_1_ent(struct kvm_cpuid_entry2 *entry, u32 function,
214 u32 index)
215{
216 entry->function = function;
217 entry->index = index;
218 cpuid_count(entry->function, entry->index,
219 &entry->eax, &entry->ebx, &entry->ecx, &entry->edx);
220 entry->flags = 0;
221}
222
Avi Kivity00b27a32011-11-23 16:30:32 +0200223#define F(x) bit(X86_FEATURE_##x)
224
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200225static int __do_cpuid_ent_emulated(struct kvm_cpuid_entry2 *entry,
226 u32 func, u32 index, int *nent, int maxnent)
227{
Borislav Petkov84cffe42013-10-29 12:54:56 +0100228 switch (func) {
229 case 0:
230 entry->eax = 1; /* only one leaf currently */
231 ++*nent;
232 break;
233 case 1:
234 entry->ecx = F(MOVBE);
235 ++*nent;
236 break;
237 default:
238 break;
239 }
240
241 entry->function = func;
242 entry->index = index;
243
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200244 return 0;
245}
246
247static inline int __do_cpuid_ent(struct kvm_cpuid_entry2 *entry, u32 function,
248 u32 index, int *nent, int maxnent)
Avi Kivity00b27a32011-11-23 16:30:32 +0200249{
Sasha Levin831bf662011-11-28 11:20:29 +0200250 int r;
Avi Kivity00b27a32011-11-23 16:30:32 +0200251 unsigned f_nx = is_efer_nx() ? F(NX) : 0;
252#ifdef CONFIG_X86_64
253 unsigned f_gbpages = (kvm_x86_ops->get_lpage_level() == PT_PDPE_LEVEL)
254 ? F(GBPAGES) : 0;
255 unsigned f_lm = F(LM);
256#else
257 unsigned f_gbpages = 0;
258 unsigned f_lm = 0;
259#endif
260 unsigned f_rdtscp = kvm_x86_ops->rdtscp_supported() ? F(RDTSCP) : 0;
Mao, Junjiead756a12012-07-02 01:18:48 +0000261 unsigned f_invpcid = kvm_x86_ops->invpcid_supported() ? F(INVPCID) : 0;
Liu, Jinsong390bd522014-02-24 10:58:09 +0000262 unsigned f_mpx = kvm_x86_ops->mpx_supported ?
263 (kvm_x86_ops->mpx_supported() ? F(MPX) : 0) : 0;
Avi Kivity00b27a32011-11-23 16:30:32 +0200264
265 /* cpuid 1.edx */
266 const u32 kvm_supported_word0_x86_features =
267 F(FPU) | F(VME) | F(DE) | F(PSE) |
268 F(TSC) | F(MSR) | F(PAE) | F(MCE) |
269 F(CX8) | F(APIC) | 0 /* Reserved */ | F(SEP) |
270 F(MTRR) | F(PGE) | F(MCA) | F(CMOV) |
271 F(PAT) | F(PSE36) | 0 /* PSN */ | F(CLFLSH) |
272 0 /* Reserved, DS, ACPI */ | F(MMX) |
273 F(FXSR) | F(XMM) | F(XMM2) | F(SELFSNOOP) |
274 0 /* HTT, TM, Reserved, PBE */;
275 /* cpuid 0x80000001.edx */
276 const u32 kvm_supported_word1_x86_features =
277 F(FPU) | F(VME) | F(DE) | F(PSE) |
278 F(TSC) | F(MSR) | F(PAE) | F(MCE) |
279 F(CX8) | F(APIC) | 0 /* Reserved */ | F(SYSCALL) |
280 F(MTRR) | F(PGE) | F(MCA) | F(CMOV) |
281 F(PAT) | F(PSE36) | 0 /* Reserved */ |
282 f_nx | 0 /* Reserved */ | F(MMXEXT) | F(MMX) |
283 F(FXSR) | F(FXSR_OPT) | f_gbpages | f_rdtscp |
284 0 /* Reserved */ | f_lm | F(3DNOWEXT) | F(3DNOW);
285 /* cpuid 1.ecx */
286 const u32 kvm_supported_word4_x86_features =
287 F(XMM3) | F(PCLMULQDQ) | 0 /* DTES64, MONITOR */ |
288 0 /* DS-CPL, VMX, SMX, EST */ |
289 0 /* TM2 */ | F(SSSE3) | 0 /* CNXT-ID */ | 0 /* Reserved */ |
Liu, Jinsongfb215362011-11-28 03:55:19 -0800290 F(FMA) | F(CX16) | 0 /* xTPR Update, PDCM */ |
Mao, Junjiead756a12012-07-02 01:18:48 +0000291 F(PCID) | 0 /* Reserved, DCA */ | F(XMM4_1) |
Avi Kivity00b27a32011-11-23 16:30:32 +0200292 F(XMM4_2) | F(X2APIC) | F(MOVBE) | F(POPCNT) |
293 0 /* Reserved*/ | F(AES) | F(XSAVE) | 0 /* OSXSAVE */ | F(AVX) |
294 F(F16C) | F(RDRAND);
295 /* cpuid 0x80000001.ecx */
296 const u32 kvm_supported_word6_x86_features =
297 F(LAHF_LM) | F(CMP_LEGACY) | 0 /*SVM*/ | 0 /* ExtApicSpace */ |
298 F(CR8_LEGACY) | F(ABM) | F(SSE4A) | F(MISALIGNSSE) |
Boris Ostrovsky2b036c62012-01-09 14:00:35 -0500299 F(3DNOWPREFETCH) | F(OSVW) | 0 /* IBS */ | F(XOP) |
Avi Kivity00b27a32011-11-23 16:30:32 +0200300 0 /* SKINIT, WDT, LWP */ | F(FMA4) | F(TBM);
301
302 /* cpuid 0xC0000001.edx */
303 const u32 kvm_supported_word5_x86_features =
304 F(XSTORE) | F(XSTORE_EN) | F(XCRYPT) | F(XCRYPT_EN) |
305 F(ACE2) | F(ACE2_EN) | F(PHE) | F(PHE_EN) |
306 F(PMM) | F(PMM_EN);
307
308 /* cpuid 7.0.ebx */
309 const u32 kvm_supported_word9_x86_features =
Liu, Jinsong83c52912012-02-28 05:15:46 +0000310 F(FSGSBASE) | F(BMI1) | F(HLE) | F(AVX2) | F(SMEP) |
Liu, Jinsong390bd522014-02-24 10:58:09 +0000311 F(BMI2) | F(ERMS) | f_invpcid | F(RTM) | f_mpx | F(RDSEED) |
Liu, Jinsong49345f12014-02-21 17:36:12 +0000312 F(ADX);
Avi Kivity00b27a32011-11-23 16:30:32 +0200313
314 /* all calls to cpuid_count() should be made on the same cpu */
315 get_cpu();
Sasha Levin831bf662011-11-28 11:20:29 +0200316
317 r = -E2BIG;
318
319 if (*nent >= maxnent)
320 goto out;
321
Avi Kivity00b27a32011-11-23 16:30:32 +0200322 do_cpuid_1_ent(entry, function, index);
323 ++*nent;
324
325 switch (function) {
326 case 0:
327 entry->eax = min(entry->eax, (u32)0xd);
328 break;
329 case 1:
330 entry->edx &= kvm_supported_word0_x86_features;
331 cpuid_mask(&entry->edx, 0);
332 entry->ecx &= kvm_supported_word4_x86_features;
333 cpuid_mask(&entry->ecx, 4);
334 /* we support x2apic emulation even if host does not support
335 * it since we emulate x2apic in software */
336 entry->ecx |= F(X2APIC);
337 break;
338 /* function 2 entries are STATEFUL. That is, repeated cpuid commands
339 * may return different values. This forces us to get_cpu() before
340 * issuing the first command, and also to emulate this annoying behavior
341 * in kvm_emulate_cpuid() using KVM_CPUID_FLAG_STATE_READ_NEXT */
342 case 2: {
343 int t, times = entry->eax & 0xff;
344
345 entry->flags |= KVM_CPUID_FLAG_STATEFUL_FUNC;
346 entry->flags |= KVM_CPUID_FLAG_STATE_READ_NEXT;
Sasha Levin831bf662011-11-28 11:20:29 +0200347 for (t = 1; t < times; ++t) {
348 if (*nent >= maxnent)
349 goto out;
350
Avi Kivity00b27a32011-11-23 16:30:32 +0200351 do_cpuid_1_ent(&entry[t], function, 0);
352 entry[t].flags |= KVM_CPUID_FLAG_STATEFUL_FUNC;
353 ++*nent;
354 }
355 break;
356 }
357 /* function 4 has additional index. */
358 case 4: {
359 int i, cache_type;
360
361 entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
362 /* read more entries until cache_type is zero */
Sasha Levin831bf662011-11-28 11:20:29 +0200363 for (i = 1; ; ++i) {
364 if (*nent >= maxnent)
365 goto out;
366
Avi Kivity00b27a32011-11-23 16:30:32 +0200367 cache_type = entry[i - 1].eax & 0x1f;
368 if (!cache_type)
369 break;
370 do_cpuid_1_ent(&entry[i], function, i);
371 entry[i].flags |=
372 KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
373 ++*nent;
374 }
375 break;
376 }
377 case 7: {
378 entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
Guo Chaobbbda792012-06-28 15:20:58 +0800379 /* Mask ebx against host capability word 9 */
Avi Kivity00b27a32011-11-23 16:30:32 +0200380 if (index == 0) {
381 entry->ebx &= kvm_supported_word9_x86_features;
382 cpuid_mask(&entry->ebx, 9);
Will Auldba904632012-11-29 12:42:50 -0800383 // TSC_ADJUST is emulated
384 entry->ebx |= F(TSC_ADJUST);
Avi Kivity00b27a32011-11-23 16:30:32 +0200385 } else
386 entry->ebx = 0;
387 entry->eax = 0;
388 entry->ecx = 0;
389 entry->edx = 0;
390 break;
391 }
392 case 9:
393 break;
Gleb Natapova6c06ed2011-11-10 14:57:28 +0200394 case 0xa: { /* Architectural Performance Monitoring */
395 struct x86_pmu_capability cap;
396 union cpuid10_eax eax;
397 union cpuid10_edx edx;
398
399 perf_get_x86_pmu_capability(&cap);
400
401 /*
402 * Only support guest architectural pmu on a host
403 * with architectural pmu.
404 */
405 if (!cap.version)
406 memset(&cap, 0, sizeof(cap));
407
408 eax.split.version_id = min(cap.version, 2);
409 eax.split.num_counters = cap.num_counters_gp;
410 eax.split.bit_width = cap.bit_width_gp;
411 eax.split.mask_length = cap.events_mask_len;
412
413 edx.split.num_counters_fixed = cap.num_counters_fixed;
414 edx.split.bit_width_fixed = cap.bit_width_fixed;
415 edx.split.reserved = 0;
416
417 entry->eax = eax.full;
418 entry->ebx = cap.events_mask;
419 entry->ecx = 0;
420 entry->edx = edx.full;
421 break;
422 }
Avi Kivity00b27a32011-11-23 16:30:32 +0200423 /* function 0xb has additional index. */
424 case 0xb: {
425 int i, level_type;
426
427 entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
428 /* read more entries until level_type is zero */
Sasha Levin831bf662011-11-28 11:20:29 +0200429 for (i = 1; ; ++i) {
430 if (*nent >= maxnent)
431 goto out;
432
Avi Kivity00b27a32011-11-23 16:30:32 +0200433 level_type = entry[i - 1].ecx & 0xff00;
434 if (!level_type)
435 break;
436 do_cpuid_1_ent(&entry[i], function, i);
437 entry[i].flags |=
438 KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
439 ++*nent;
440 }
441 break;
442 }
443 case 0xd: {
444 int idx, i;
Paolo Bonzini4ff41732014-02-24 12:15:16 +0100445 u64 supported = kvm_supported_xcr0();
Avi Kivity00b27a32011-11-23 16:30:32 +0200446
Paolo Bonzini4ff41732014-02-24 12:15:16 +0100447 entry->eax &= supported;
448 entry->edx &= supported >> 32;
Avi Kivity00b27a32011-11-23 16:30:32 +0200449 entry->flags |= KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
Sasha Levin831bf662011-11-28 11:20:29 +0200450 for (idx = 1, i = 1; idx < 64; ++idx) {
Paolo Bonzini4ff41732014-02-24 12:15:16 +0100451 u64 mask = ((u64)1 << idx);
Sasha Levin831bf662011-11-28 11:20:29 +0200452 if (*nent >= maxnent)
453 goto out;
454
Avi Kivity00b27a32011-11-23 16:30:32 +0200455 do_cpuid_1_ent(&entry[i], function, idx);
Paolo Bonzini4ff41732014-02-24 12:15:16 +0100456 if (entry[i].eax == 0 || !(supported & mask))
Avi Kivity00b27a32011-11-23 16:30:32 +0200457 continue;
458 entry[i].flags |=
459 KVM_CPUID_FLAG_SIGNIFCANT_INDEX;
460 ++*nent;
461 ++i;
462 }
463 break;
464 }
465 case KVM_CPUID_SIGNATURE: {
Mathias Krause326d07c2012-08-30 01:30:13 +0200466 static const char signature[12] = "KVMKVMKVM\0\0";
467 const u32 *sigptr = (const u32 *)signature;
Michael S. Tsirkin57c22e52012-05-02 17:55:56 +0300468 entry->eax = KVM_CPUID_FEATURES;
Avi Kivity00b27a32011-11-23 16:30:32 +0200469 entry->ebx = sigptr[0];
470 entry->ecx = sigptr[1];
471 entry->edx = sigptr[2];
472 break;
473 }
474 case KVM_CPUID_FEATURES:
475 entry->eax = (1 << KVM_FEATURE_CLOCKSOURCE) |
476 (1 << KVM_FEATURE_NOP_IO_DELAY) |
477 (1 << KVM_FEATURE_CLOCKSOURCE2) |
478 (1 << KVM_FEATURE_ASYNC_PF) |
Michael S. Tsirkinae7a2a32012-06-24 19:25:07 +0300479 (1 << KVM_FEATURE_PV_EOI) |
Srivatsa Vaddagiri6aef2662013-08-26 14:18:34 +0530480 (1 << KVM_FEATURE_CLOCKSOURCE_STABLE_BIT) |
481 (1 << KVM_FEATURE_PV_UNHALT);
Avi Kivity00b27a32011-11-23 16:30:32 +0200482
483 if (sched_info_on())
484 entry->eax |= (1 << KVM_FEATURE_STEAL_TIME);
485
486 entry->ebx = 0;
487 entry->ecx = 0;
488 entry->edx = 0;
489 break;
490 case 0x80000000:
491 entry->eax = min(entry->eax, 0x8000001a);
492 break;
493 case 0x80000001:
494 entry->edx &= kvm_supported_word1_x86_features;
495 cpuid_mask(&entry->edx, 1);
496 entry->ecx &= kvm_supported_word6_x86_features;
497 cpuid_mask(&entry->ecx, 6);
498 break;
499 case 0x80000008: {
500 unsigned g_phys_as = (entry->eax >> 16) & 0xff;
501 unsigned virt_as = max((entry->eax >> 8) & 0xff, 48U);
502 unsigned phys_as = entry->eax & 0xff;
503
504 if (!g_phys_as)
505 g_phys_as = phys_as;
506 entry->eax = g_phys_as | (virt_as << 8);
507 entry->ebx = entry->edx = 0;
508 break;
509 }
510 case 0x80000019:
511 entry->ecx = entry->edx = 0;
512 break;
513 case 0x8000001a:
514 break;
515 case 0x8000001d:
516 break;
517 /*Add support for Centaur's CPUID instruction*/
518 case 0xC0000000:
519 /*Just support up to 0xC0000004 now*/
520 entry->eax = min(entry->eax, 0xC0000004);
521 break;
522 case 0xC0000001:
523 entry->edx &= kvm_supported_word5_x86_features;
524 cpuid_mask(&entry->edx, 5);
525 break;
526 case 3: /* Processor serial number */
527 case 5: /* MONITOR/MWAIT */
528 case 6: /* Thermal management */
Avi Kivity00b27a32011-11-23 16:30:32 +0200529 case 0x80000007: /* Advanced power management */
530 case 0xC0000002:
531 case 0xC0000003:
532 case 0xC0000004:
533 default:
534 entry->eax = entry->ebx = entry->ecx = entry->edx = 0;
535 break;
536 }
537
538 kvm_x86_ops->set_supported_cpuid(function, entry);
539
Sasha Levin831bf662011-11-28 11:20:29 +0200540 r = 0;
541
542out:
Avi Kivity00b27a32011-11-23 16:30:32 +0200543 put_cpu();
Sasha Levin831bf662011-11-28 11:20:29 +0200544
545 return r;
Avi Kivity00b27a32011-11-23 16:30:32 +0200546}
547
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200548static int do_cpuid_ent(struct kvm_cpuid_entry2 *entry, u32 func,
549 u32 idx, int *nent, int maxnent, unsigned int type)
550{
551 if (type == KVM_GET_EMULATED_CPUID)
552 return __do_cpuid_ent_emulated(entry, func, idx, nent, maxnent);
553
554 return __do_cpuid_ent(entry, func, idx, nent, maxnent);
555}
556
Avi Kivity00b27a32011-11-23 16:30:32 +0200557#undef F
558
Sasha Levin831bf662011-11-28 11:20:29 +0200559struct kvm_cpuid_param {
560 u32 func;
561 u32 idx;
562 bool has_leaf_count;
Mathias Krause326d07c2012-08-30 01:30:13 +0200563 bool (*qualifier)(const struct kvm_cpuid_param *param);
Sasha Levin831bf662011-11-28 11:20:29 +0200564};
565
Mathias Krause326d07c2012-08-30 01:30:13 +0200566static bool is_centaur_cpu(const struct kvm_cpuid_param *param)
Sasha Levin831bf662011-11-28 11:20:29 +0200567{
568 return boot_cpu_data.x86_vendor == X86_VENDOR_CENTAUR;
569}
570
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200571static bool sanity_check_entries(struct kvm_cpuid_entry2 __user *entries,
572 __u32 num_entries, unsigned int ioctl_type)
573{
574 int i;
Borislav Petkov1b2ca422013-11-06 15:46:02 +0100575 __u32 pad[3];
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200576
577 if (ioctl_type != KVM_GET_EMULATED_CPUID)
578 return false;
579
580 /*
581 * We want to make sure that ->padding is being passed clean from
582 * userspace in case we want to use it for something in the future.
583 *
584 * Sadly, this wasn't enforced for KVM_GET_SUPPORTED_CPUID and so we
585 * have to give ourselves satisfied only with the emulated side. /me
586 * sheds a tear.
587 */
588 for (i = 0; i < num_entries; i++) {
Borislav Petkov1b2ca422013-11-06 15:46:02 +0100589 if (copy_from_user(pad, entries[i].padding, sizeof(pad)))
590 return true;
591
592 if (pad[0] || pad[1] || pad[2])
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200593 return true;
594 }
595 return false;
596}
597
598int kvm_dev_ioctl_get_cpuid(struct kvm_cpuid2 *cpuid,
599 struct kvm_cpuid_entry2 __user *entries,
600 unsigned int type)
Avi Kivity00b27a32011-11-23 16:30:32 +0200601{
602 struct kvm_cpuid_entry2 *cpuid_entries;
Sasha Levin831bf662011-11-28 11:20:29 +0200603 int limit, nent = 0, r = -E2BIG, i;
Avi Kivity00b27a32011-11-23 16:30:32 +0200604 u32 func;
Mathias Krause326d07c2012-08-30 01:30:13 +0200605 static const struct kvm_cpuid_param param[] = {
Sasha Levin831bf662011-11-28 11:20:29 +0200606 { .func = 0, .has_leaf_count = true },
607 { .func = 0x80000000, .has_leaf_count = true },
608 { .func = 0xC0000000, .qualifier = is_centaur_cpu, .has_leaf_count = true },
609 { .func = KVM_CPUID_SIGNATURE },
610 { .func = KVM_CPUID_FEATURES },
611 };
Avi Kivity00b27a32011-11-23 16:30:32 +0200612
613 if (cpuid->nent < 1)
614 goto out;
615 if (cpuid->nent > KVM_MAX_CPUID_ENTRIES)
616 cpuid->nent = KVM_MAX_CPUID_ENTRIES;
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200617
618 if (sanity_check_entries(entries, cpuid->nent, type))
619 return -EINVAL;
620
Avi Kivity00b27a32011-11-23 16:30:32 +0200621 r = -ENOMEM;
Borislav Petkov84cffe42013-10-29 12:54:56 +0100622 cpuid_entries = vzalloc(sizeof(struct kvm_cpuid_entry2) * cpuid->nent);
Avi Kivity00b27a32011-11-23 16:30:32 +0200623 if (!cpuid_entries)
624 goto out;
625
Sasha Levin831bf662011-11-28 11:20:29 +0200626 r = 0;
627 for (i = 0; i < ARRAY_SIZE(param); i++) {
Mathias Krause326d07c2012-08-30 01:30:13 +0200628 const struct kvm_cpuid_param *ent = &param[i];
Avi Kivity00b27a32011-11-23 16:30:32 +0200629
Sasha Levin831bf662011-11-28 11:20:29 +0200630 if (ent->qualifier && !ent->qualifier(ent))
631 continue;
Avi Kivity00b27a32011-11-23 16:30:32 +0200632
Sasha Levin831bf662011-11-28 11:20:29 +0200633 r = do_cpuid_ent(&cpuid_entries[nent], ent->func, ent->idx,
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200634 &nent, cpuid->nent, type);
Avi Kivity00b27a32011-11-23 16:30:32 +0200635
Sasha Levin831bf662011-11-28 11:20:29 +0200636 if (r)
Avi Kivity00b27a32011-11-23 16:30:32 +0200637 goto out_free;
638
Sasha Levin831bf662011-11-28 11:20:29 +0200639 if (!ent->has_leaf_count)
640 continue;
641
Avi Kivity00b27a32011-11-23 16:30:32 +0200642 limit = cpuid_entries[nent - 1].eax;
Sasha Levin831bf662011-11-28 11:20:29 +0200643 for (func = ent->func + 1; func <= limit && nent < cpuid->nent && r == 0; ++func)
644 r = do_cpuid_ent(&cpuid_entries[nent], func, ent->idx,
Borislav Petkov9c15bb12013-09-22 16:44:50 +0200645 &nent, cpuid->nent, type);
Avi Kivity00b27a32011-11-23 16:30:32 +0200646
Sasha Levin831bf662011-11-28 11:20:29 +0200647 if (r)
Avi Kivity00b27a32011-11-23 16:30:32 +0200648 goto out_free;
649 }
650
Avi Kivity00b27a32011-11-23 16:30:32 +0200651 r = -EFAULT;
652 if (copy_to_user(entries, cpuid_entries,
653 nent * sizeof(struct kvm_cpuid_entry2)))
654 goto out_free;
655 cpuid->nent = nent;
656 r = 0;
657
658out_free:
659 vfree(cpuid_entries);
660out:
661 return r;
662}
663
664static int move_to_next_stateful_cpuid_entry(struct kvm_vcpu *vcpu, int i)
665{
666 struct kvm_cpuid_entry2 *e = &vcpu->arch.cpuid_entries[i];
667 int j, nent = vcpu->arch.cpuid_nent;
668
669 e->flags &= ~KVM_CPUID_FLAG_STATE_READ_NEXT;
670 /* when no next entry is found, the current entry[i] is reselected */
671 for (j = i + 1; ; j = (j + 1) % nent) {
672 struct kvm_cpuid_entry2 *ej = &vcpu->arch.cpuid_entries[j];
673 if (ej->function == e->function) {
674 ej->flags |= KVM_CPUID_FLAG_STATE_READ_NEXT;
675 return j;
676 }
677 }
678 return 0; /* silence gcc, even though control never reaches here */
679}
680
681/* find an entry with matching function, matching index (if needed), and that
682 * should be read next (if it's stateful) */
683static int is_matching_cpuid_entry(struct kvm_cpuid_entry2 *e,
684 u32 function, u32 index)
685{
686 if (e->function != function)
687 return 0;
688 if ((e->flags & KVM_CPUID_FLAG_SIGNIFCANT_INDEX) && e->index != index)
689 return 0;
690 if ((e->flags & KVM_CPUID_FLAG_STATEFUL_FUNC) &&
691 !(e->flags & KVM_CPUID_FLAG_STATE_READ_NEXT))
692 return 0;
693 return 1;
694}
695
696struct kvm_cpuid_entry2 *kvm_find_cpuid_entry(struct kvm_vcpu *vcpu,
697 u32 function, u32 index)
698{
699 int i;
700 struct kvm_cpuid_entry2 *best = NULL;
701
702 for (i = 0; i < vcpu->arch.cpuid_nent; ++i) {
703 struct kvm_cpuid_entry2 *e;
704
705 e = &vcpu->arch.cpuid_entries[i];
706 if (is_matching_cpuid_entry(e, function, index)) {
707 if (e->flags & KVM_CPUID_FLAG_STATEFUL_FUNC)
708 move_to_next_stateful_cpuid_entry(vcpu, i);
709 best = e;
710 break;
711 }
712 }
713 return best;
714}
715EXPORT_SYMBOL_GPL(kvm_find_cpuid_entry);
716
717int cpuid_maxphyaddr(struct kvm_vcpu *vcpu)
718{
719 struct kvm_cpuid_entry2 *best;
720
721 best = kvm_find_cpuid_entry(vcpu, 0x80000000, 0);
722 if (!best || best->eax < 0x80000008)
723 goto not_found;
724 best = kvm_find_cpuid_entry(vcpu, 0x80000008, 0);
725 if (best)
726 return best->eax & 0xff;
727not_found:
728 return 36;
729}
730
731/*
732 * If no match is found, check whether we exceed the vCPU's limit
733 * and return the content of the highest valid _standard_ leaf instead.
734 * This is to satisfy the CPUID specification.
735 */
736static struct kvm_cpuid_entry2* check_cpuid_limit(struct kvm_vcpu *vcpu,
737 u32 function, u32 index)
738{
739 struct kvm_cpuid_entry2 *maxlevel;
740
741 maxlevel = kvm_find_cpuid_entry(vcpu, function & 0x80000000, 0);
742 if (!maxlevel || maxlevel->eax >= function)
743 return NULL;
744 if (function & 0x80000000) {
745 maxlevel = kvm_find_cpuid_entry(vcpu, 0, 0);
746 if (!maxlevel)
747 return NULL;
748 }
749 return kvm_find_cpuid_entry(vcpu, maxlevel->eax, index);
750}
751
Avi Kivity62046e52012-06-07 14:07:48 +0300752void kvm_cpuid(struct kvm_vcpu *vcpu, u32 *eax, u32 *ebx, u32 *ecx, u32 *edx)
Avi Kivity00b27a32011-11-23 16:30:32 +0200753{
Avi Kivity62046e52012-06-07 14:07:48 +0300754 u32 function = *eax, index = *ecx;
Avi Kivity00b27a32011-11-23 16:30:32 +0200755 struct kvm_cpuid_entry2 *best;
756
Avi Kivity00b27a32011-11-23 16:30:32 +0200757 best = kvm_find_cpuid_entry(vcpu, function, index);
758
759 if (!best)
760 best = check_cpuid_limit(vcpu, function, index);
761
762 if (best) {
Avi Kivity62046e52012-06-07 14:07:48 +0300763 *eax = best->eax;
764 *ebx = best->ebx;
765 *ecx = best->ecx;
766 *edx = best->edx;
767 } else
768 *eax = *ebx = *ecx = *edx = 0;
Gleb Natapova9d4e432013-11-04 15:52:43 +0200769 trace_kvm_cpuid(function, *eax, *ebx, *ecx, *edx);
Avi Kivity62046e52012-06-07 14:07:48 +0300770}
Julian Stecklina66f7b722012-12-05 15:26:19 +0100771EXPORT_SYMBOL_GPL(kvm_cpuid);
Avi Kivity62046e52012-06-07 14:07:48 +0300772
773void kvm_emulate_cpuid(struct kvm_vcpu *vcpu)
774{
775 u32 function, eax, ebx, ecx, edx;
776
777 function = eax = kvm_register_read(vcpu, VCPU_REGS_RAX);
778 ecx = kvm_register_read(vcpu, VCPU_REGS_RCX);
779 kvm_cpuid(vcpu, &eax, &ebx, &ecx, &edx);
780 kvm_register_write(vcpu, VCPU_REGS_RAX, eax);
781 kvm_register_write(vcpu, VCPU_REGS_RBX, ebx);
782 kvm_register_write(vcpu, VCPU_REGS_RCX, ecx);
783 kvm_register_write(vcpu, VCPU_REGS_RDX, edx);
Avi Kivity00b27a32011-11-23 16:30:32 +0200784 kvm_x86_ops->skip_emulated_instruction(vcpu);
Avi Kivity00b27a32011-11-23 16:30:32 +0200785}
786EXPORT_SYMBOL_GPL(kvm_emulate_cpuid);