WIP FPC-III support
[linux/fpc-iii.git] / tools / testing / selftests / kvm / x86_64 / hyperv_cpuid.c
blob88a595b7fbdd0c0ff25450aee4a8d8d8a6a9dd50
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Test for x86 KVM_CAP_HYPERV_CPUID
5 * Copyright (C) 2018, Red Hat, Inc.
7 * This work is licensed under the terms of the GNU GPL, version 2.
9 */
11 #define _GNU_SOURCE /* for program_invocation_short_name */
12 #include <fcntl.h>
13 #include <stdio.h>
14 #include <stdlib.h>
15 #include <string.h>
16 #include <sys/ioctl.h>
18 #include "test_util.h"
19 #include "kvm_util.h"
20 #include "processor.h"
21 #include "vmx.h"
23 #define VCPU_ID 0
25 static void guest_code(void)
29 static bool smt_possible(void)
31 char buf[16];
32 FILE *f;
33 bool res = true;
35 f = fopen("/sys/devices/system/cpu/smt/control", "r");
36 if (f) {
37 if (fread(buf, sizeof(*buf), sizeof(buf), f) > 0) {
38 if (!strncmp(buf, "forceoff", 8) ||
39 !strncmp(buf, "notsupported", 12))
40 res = false;
42 fclose(f);
45 return res;
48 static void test_hv_cpuid(struct kvm_cpuid2 *hv_cpuid_entries,
49 bool evmcs_expected)
51 int i;
52 int nent = 9;
53 u32 test_val;
55 if (evmcs_expected)
56 nent += 1; /* 0x4000000A */
58 TEST_ASSERT(hv_cpuid_entries->nent == nent,
59 "KVM_GET_SUPPORTED_HV_CPUID should return %d entries"
60 " with evmcs=%d (returned %d)",
61 nent, evmcs_expected, hv_cpuid_entries->nent);
63 for (i = 0; i < hv_cpuid_entries->nent; i++) {
64 struct kvm_cpuid_entry2 *entry = &hv_cpuid_entries->entries[i];
66 TEST_ASSERT((entry->function >= 0x40000000) &&
67 (entry->function <= 0x40000082),
68 "function %x is our of supported range",
69 entry->function);
71 TEST_ASSERT(evmcs_expected || (entry->function != 0x4000000A),
72 "0x4000000A leaf should not be reported");
74 TEST_ASSERT(entry->index == 0,
75 ".index field should be zero");
77 TEST_ASSERT(entry->flags == 0,
78 ".flags field should be zero");
80 TEST_ASSERT(!entry->padding[0] && !entry->padding[1] &&
81 !entry->padding[2], "padding should be zero");
83 switch (entry->function) {
84 case 0x40000000:
85 test_val = 0x40000082;
87 TEST_ASSERT(entry->eax == test_val,
88 "Wrong max leaf report in 0x40000000.EAX: %x"
89 " (evmcs=%d)",
90 entry->eax, evmcs_expected
92 break;
93 case 0x40000004:
94 test_val = entry->eax & (1UL << 18);
96 TEST_ASSERT(!!test_val == !smt_possible(),
97 "NoNonArchitecturalCoreSharing bit"
98 " doesn't reflect SMT setting");
99 break;
103 * If needed for debug:
104 * fprintf(stdout,
105 * "CPUID%lx EAX=0x%lx EBX=0x%lx ECX=0x%lx EDX=0x%lx\n",
106 * entry->function, entry->eax, entry->ebx, entry->ecx,
107 * entry->edx);
113 void test_hv_cpuid_e2big(struct kvm_vm *vm, bool system)
115 static struct kvm_cpuid2 cpuid = {.nent = 0};
116 int ret;
118 if (!system)
119 ret = _vcpu_ioctl(vm, VCPU_ID, KVM_GET_SUPPORTED_HV_CPUID, &cpuid);
120 else
121 ret = _kvm_ioctl(vm, KVM_GET_SUPPORTED_HV_CPUID, &cpuid);
123 TEST_ASSERT(ret == -1 && errno == E2BIG,
124 "%s KVM_GET_SUPPORTED_HV_CPUID didn't fail with -E2BIG when"
125 " it should have: %d %d", system ? "KVM" : "vCPU", ret, errno);
129 struct kvm_cpuid2 *kvm_get_supported_hv_cpuid(struct kvm_vm *vm, bool system)
131 int nent = 20; /* should be enough */
132 static struct kvm_cpuid2 *cpuid;
134 cpuid = malloc(sizeof(*cpuid) + nent * sizeof(struct kvm_cpuid_entry2));
136 if (!cpuid) {
137 perror("malloc");
138 abort();
141 cpuid->nent = nent;
143 if (!system)
144 vcpu_ioctl(vm, VCPU_ID, KVM_GET_SUPPORTED_HV_CPUID, cpuid);
145 else
146 kvm_ioctl(vm, KVM_GET_SUPPORTED_HV_CPUID, cpuid);
148 return cpuid;
152 int main(int argc, char *argv[])
154 struct kvm_vm *vm;
155 struct kvm_cpuid2 *hv_cpuid_entries;
157 /* Tell stdout not to buffer its content */
158 setbuf(stdout, NULL);
160 if (!kvm_check_cap(KVM_CAP_HYPERV_CPUID)) {
161 print_skip("KVM_CAP_HYPERV_CPUID not supported");
162 exit(KSFT_SKIP);
165 vm = vm_create_default(VCPU_ID, 0, guest_code);
167 /* Test vCPU ioctl version */
168 test_hv_cpuid_e2big(vm, false);
170 hv_cpuid_entries = kvm_get_supported_hv_cpuid(vm, false);
171 test_hv_cpuid(hv_cpuid_entries, false);
172 free(hv_cpuid_entries);
174 if (!nested_vmx_supported() ||
175 !kvm_check_cap(KVM_CAP_HYPERV_ENLIGHTENED_VMCS)) {
176 print_skip("Enlightened VMCS is unsupported");
177 goto do_sys;
179 vcpu_enable_evmcs(vm, VCPU_ID);
180 hv_cpuid_entries = kvm_get_supported_hv_cpuid(vm, false);
181 test_hv_cpuid(hv_cpuid_entries, true);
182 free(hv_cpuid_entries);
184 do_sys:
185 /* Test system ioctl version */
186 if (!kvm_check_cap(KVM_CAP_SYS_HYPERV_CPUID)) {
187 print_skip("KVM_CAP_SYS_HYPERV_CPUID not supported");
188 goto out;
191 test_hv_cpuid_e2big(vm, true);
193 hv_cpuid_entries = kvm_get_supported_hv_cpuid(vm, true);
194 test_hv_cpuid(hv_cpuid_entries, nested_vmx_supported());
195 free(hv_cpuid_entries);
197 out:
198 kvm_vm_free(vm);
200 return 0;