Commit c32e0280 authored by Sean Christopherson's avatar Sean Christopherson

KVM: selftests: Verify single-stepping a fastpath VM-Exit exits to userspace

In x86's debug_regs test, change the RDMSR(MISC_ENABLES) in the single-step
testcase to a WRMSR(TSC_DEADLINE) in order to verify that KVM honors
KVM_GUESTDBG_SINGLESTEP when handling a fastpath VM-Exit.

Note, the extra coverage is effectively Intel-only, as KVM only handles
TSC_DEADLINE in the fastpath when the timer is emulated via the hypervisor
timer, a.k.a. the VMX preemption timer.

Link: https://lore.kernel.org/r/20240830044448.130449-1-seanjc@google.comSigned-off-by: default avatarSean Christopherson <seanjc@google.com>
parent 9d15171f
...@@ -47,15 +47,18 @@ static void guest_code(void) ...@@ -47,15 +47,18 @@ static void guest_code(void)
/* /*
* Single step test, covers 2 basic instructions and 2 emulated * Single step test, covers 2 basic instructions and 2 emulated
* *
* Enable interrupts during the single stepping to see that * Enable interrupts during the single stepping to see that pending
* pending interrupt we raised is not handled due to KVM_GUESTDBG_BLOCKIRQ * interrupt we raised is not handled due to KVM_GUESTDBG_BLOCKIRQ.
*
* Write MSR_IA32_TSC_DEADLINE to verify that KVM's fastpath handler
* exits to userspace due to single-step being enabled.
*/ */
asm volatile("ss_start: " asm volatile("ss_start: "
"sti\n\t" "sti\n\t"
"xor %%eax,%%eax\n\t" "xor %%eax,%%eax\n\t"
"cpuid\n\t" "cpuid\n\t"
"movl $0x1a0,%%ecx\n\t" "movl $" __stringify(MSR_IA32_TSC_DEADLINE) ", %%ecx\n\t"
"rdmsr\n\t" "wrmsr\n\t"
"cli\n\t" "cli\n\t"
: : : "eax", "ebx", "ecx", "edx"); : : : "eax", "ebx", "ecx", "edx");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment