1 // SPDX-License-Identifier: GPL-2.0
3 * steal/stolen time test
5 * Copyright (C) 2020, Red Hat, Inc.
12 #include <linux/kernel.h>
14 #include <asm/kvm_para.h>
16 #include "test_util.h"
18 #include "processor.h"
21 #define ST_GPA_BASE (1 << 30)
23 static void *st_gva[NR_VCPUS];
24 static uint64_t guest_stolen_time[NR_VCPUS];
26 #if defined(__x86_64__)
28 /* steal_time must have 64-byte alignment */
29 #define STEAL_TIME_SIZE ((sizeof(struct kvm_steal_time) + 63) & ~63)
31 static void check_status(struct kvm_steal_time *st)
33 GUEST_ASSERT(!(READ_ONCE(st->version) & 1));
34 GUEST_ASSERT(READ_ONCE(st->flags) == 0);
35 GUEST_ASSERT(READ_ONCE(st->preempted) == 0);
38 static void guest_code(int cpu)
40 struct kvm_steal_time *st = st_gva[cpu];
43 GUEST_ASSERT(rdmsr(MSR_KVM_STEAL_TIME) == ((uint64_t)st_gva[cpu] | KVM_MSR_ENABLED));
45 memset(st, 0, sizeof(*st));
49 WRITE_ONCE(guest_stolen_time[cpu], st->steal);
50 version = READ_ONCE(st->version);
55 GUEST_ASSERT(version < READ_ONCE(st->version));
56 WRITE_ONCE(guest_stolen_time[cpu], st->steal);
61 static void steal_time_init(struct kvm_vm *vm)
65 if (!(kvm_get_supported_cpuid_entry(KVM_CPUID_FEATURES)->eax &
66 KVM_FEATURE_STEAL_TIME)) {
67 print_skip("steal-time not supported");
71 for (i = 0; i < NR_VCPUS; ++i) {
74 /* ST_GPA_BASE is identity mapped */
75 st_gva[i] = (void *)(ST_GPA_BASE + i * STEAL_TIME_SIZE);
76 sync_global_to_guest(vm, st_gva[i]);
78 ret = _vcpu_set_msr(vm, i, MSR_KVM_STEAL_TIME, (ulong)st_gva[i] | KVM_STEAL_RESERVED_MASK);
79 TEST_ASSERT(ret == 0, "Bad GPA didn't fail");
81 vcpu_set_msr(vm, i, MSR_KVM_STEAL_TIME, (ulong)st_gva[i] | KVM_MSR_ENABLED);
85 static void steal_time_dump(struct kvm_vm *vm, uint32_t vcpuid)
87 struct kvm_steal_time *st = addr_gva2hva(vm, (ulong)st_gva[vcpuid]);
90 pr_info("VCPU%d:\n", vcpuid);
91 pr_info(" steal: %lld\n", st->steal);
92 pr_info(" version: %d\n", st->version);
93 pr_info(" flags: %d\n", st->flags);
94 pr_info(" preempted: %d\n", st->preempted);
96 for (i = 0; i < 3; ++i)
97 pr_info("%d", st->u8_pad[i]);
99 for (i = 0; i < 11; ++i)
100 pr_info("%d", st->pad[i]);
104 #elif defined(__aarch64__)
106 /* PV_TIME_ST must have 64-byte alignment */
107 #define STEAL_TIME_SIZE ((sizeof(struct st_time) + 63) & ~63)
109 #define SMCCC_ARCH_FEATURES 0x80000001
110 #define PV_TIME_FEATURES 0xc5000020
111 #define PV_TIME_ST 0xc5000021
119 static int64_t smccc(uint32_t func, uint64_t arg)
128 : "=r" (ret) : "r" (func), "r" (arg) :
129 "x0", "x1", "x2", "x3");
134 static void check_status(struct st_time *st)
136 GUEST_ASSERT(READ_ONCE(st->rev) == 0);
137 GUEST_ASSERT(READ_ONCE(st->attr) == 0);
140 static void guest_code(int cpu)
145 status = smccc(SMCCC_ARCH_FEATURES, PV_TIME_FEATURES);
146 GUEST_ASSERT(status == 0);
147 status = smccc(PV_TIME_FEATURES, PV_TIME_FEATURES);
148 GUEST_ASSERT(status == 0);
149 status = smccc(PV_TIME_FEATURES, PV_TIME_ST);
150 GUEST_ASSERT(status == 0);
152 status = smccc(PV_TIME_ST, 0);
153 GUEST_ASSERT(status != -1);
154 GUEST_ASSERT(status == (ulong)st_gva[cpu]);
156 st = (struct st_time *)status;
160 WRITE_ONCE(guest_stolen_time[cpu], st->st_time);
164 WRITE_ONCE(guest_stolen_time[cpu], st->st_time);
168 static void steal_time_init(struct kvm_vm *vm)
170 struct kvm_device_attr dev = {
171 .group = KVM_ARM_VCPU_PVTIME_CTRL,
172 .attr = KVM_ARM_VCPU_PVTIME_IPA,
176 ret = _vcpu_ioctl(vm, 0, KVM_HAS_DEVICE_ATTR, &dev);
177 if (ret != 0 && errno == ENXIO) {
178 print_skip("steal-time not supported");
182 for (i = 0; i < NR_VCPUS; ++i) {
185 vcpu_ioctl(vm, i, KVM_HAS_DEVICE_ATTR, &dev);
187 dev.addr = (uint64_t)&st_ipa;
189 /* ST_GPA_BASE is identity mapped */
190 st_gva[i] = (void *)(ST_GPA_BASE + i * STEAL_TIME_SIZE);
191 sync_global_to_guest(vm, st_gva[i]);
193 st_ipa = (ulong)st_gva[i] | 1;
194 ret = _vcpu_ioctl(vm, i, KVM_SET_DEVICE_ATTR, &dev);
195 TEST_ASSERT(ret == -1 && errno == EINVAL, "Bad IPA didn't report EINVAL");
197 st_ipa = (ulong)st_gva[i];
198 vcpu_ioctl(vm, i, KVM_SET_DEVICE_ATTR, &dev);
200 ret = _vcpu_ioctl(vm, i, KVM_SET_DEVICE_ATTR, &dev);
201 TEST_ASSERT(ret == -1 && errno == EEXIST, "Set IPA twice without EEXIST");
206 static void steal_time_dump(struct kvm_vm *vm, uint32_t vcpuid)
208 struct st_time *st = addr_gva2hva(vm, (ulong)st_gva[vcpuid]);
210 pr_info("VCPU%d:\n", vcpuid);
211 pr_info(" rev: %d\n", st->rev);
212 pr_info(" attr: %d\n", st->attr);
213 pr_info(" st_time: %ld\n", st->st_time);
218 static void *do_steal_time(void *arg)
220 struct timespec ts, stop;
222 clock_gettime(CLOCK_MONOTONIC, &ts);
223 stop = timespec_add_ns(ts, MIN_RUN_DELAY_NS);
226 clock_gettime(CLOCK_MONOTONIC, &ts);
227 if (timespec_to_ns(timespec_sub(ts, stop)) >= 0)
234 static void run_vcpu(struct kvm_vm *vm, uint32_t vcpuid)
238 vcpu_args_set(vm, vcpuid, 1, vcpuid);
240 vcpu_ioctl(vm, vcpuid, KVM_RUN, NULL);
242 switch (get_ucall(vm, vcpuid, &uc)) {
247 TEST_ASSERT(false, "%s at %s:%ld", (const char *)uc.args[0],
248 __FILE__, uc.args[1]);
250 TEST_ASSERT(false, "Unexpected exit: %s",
251 exit_reason_str(vcpu_state(vm, vcpuid)->exit_reason));
255 int main(int ac, char **av)
267 verbose = ac > 1 && (!strncmp(av[1], "-v", 3) || !strncmp(av[1], "--verbose", 10));
269 /* Set CPU affinity so we can force preemption of the VCPU */
272 pthread_attr_init(&attr);
273 pthread_attr_setaffinity_np(&attr, sizeof(cpu_set_t), &cpuset);
274 pthread_setaffinity_np(pthread_self(), sizeof(cpu_set_t), &cpuset);
276 /* Create a one VCPU guest and an identity mapped memslot for the steal time structure */
277 vm = vm_create_default(0, 0, guest_code);
278 gpages = vm_calc_num_guest_pages(VM_MODE_DEFAULT, STEAL_TIME_SIZE * NR_VCPUS);
279 vm_userspace_mem_region_add(vm, VM_MEM_SRC_ANONYMOUS, ST_GPA_BASE, 1, gpages, 0);
280 virt_map(vm, ST_GPA_BASE, ST_GPA_BASE, gpages);
281 ucall_init(vm, NULL);
283 /* Add the rest of the VCPUs */
284 for (i = 1; i < NR_VCPUS; ++i)
285 vm_vcpu_add_default(vm, i, guest_code);
289 /* Run test on each VCPU */
290 for (i = 0; i < NR_VCPUS; ++i) {
291 /* First VCPU run initializes steal-time */
294 /* Second VCPU run, expect guest stolen time to be <= run_delay */
296 sync_global_from_guest(vm, guest_stolen_time[i]);
297 stolen_time = guest_stolen_time[i];
298 run_delay = get_run_delay();
299 TEST_ASSERT(stolen_time <= run_delay,
300 "Expected stolen time <= %ld, got %ld",
301 run_delay, stolen_time);
303 /* Steal time from the VCPU. The steal time thread has the same CPU affinity as the VCPUs. */
304 run_delay = get_run_delay();
305 pthread_create(&thread, &attr, do_steal_time, NULL);
308 while (get_run_delay() - run_delay < MIN_RUN_DELAY_NS);
309 pthread_join(thread, NULL);
310 run_delay = get_run_delay() - run_delay;
311 TEST_ASSERT(run_delay >= MIN_RUN_DELAY_NS,
312 "Expected run_delay >= %ld, got %ld",
313 MIN_RUN_DELAY_NS, run_delay);
315 /* Run VCPU again to confirm stolen time is consistent with run_delay */
317 sync_global_from_guest(vm, guest_stolen_time[i]);
318 stolen_time = guest_stolen_time[i] - stolen_time;
319 TEST_ASSERT(stolen_time >= run_delay,
320 "Expected stolen time >= %ld, got %ld",
321 run_delay, stolen_time);
324 pr_info("VCPU%d: total-stolen-time=%ld test-stolen-time=%ld", i,
325 guest_stolen_time[i], stolen_time);
326 if (stolen_time == run_delay)
327 pr_info(" (BONUS: guest test-stolen-time even exactly matches test-run_delay)");
329 steal_time_dump(vm, i);