diff options
author | Jan Kiszka <jan.kiszka@web.de> | 2009-10-18 15:24:44 +0400 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2009-12-03 10:32:19 +0300 |
commit | 94fe45da48f921d01d8ff02a0ad54ee9c326d7f0 (patch) | |
tree | 7bf7482bcbe690313909d5f2770384f853562a2d /arch/x86/include/asm/kvm_host.h | |
parent | ffde22ac53b6d6b1d7206f1172176a667eead778 (diff) | |
download | linux-94fe45da48f921d01d8ff02a0ad54ee9c326d7f0.tar.xz |
KVM: x86: Fix guest single-stepping while interruptible
Commit 705c5323 opened the doors of hell by unconditionally injecting
single-step flags as long as guest_debug signaled this. This doesn't
work when the guest branches into some interrupt or exception handler
and triggers a vmexit with flag reloading.
Fix it by saving cs:rip when user space requests single-stepping and
restricting the trace flag injection to this guest code position.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
Diffstat (limited to 'arch/x86/include/asm/kvm_host.h')
-rw-r--r-- | arch/x86/include/asm/kvm_host.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/x86/include/asm/kvm_host.h b/arch/x86/include/asm/kvm_host.h index 36f3b53f5c27..2536fbd85b3a 100644 --- a/arch/x86/include/asm/kvm_host.h +++ b/arch/x86/include/asm/kvm_host.h @@ -371,6 +371,10 @@ struct kvm_vcpu_arch { u64 mcg_status; u64 mcg_ctl; u64 *mce_banks; + + /* used for guest single stepping over the given code position */ + u16 singlestep_cs; + unsigned long singlestep_rip; }; struct kvm_mem_alias { |