* [PATCH 0/1] trace all instructions whose emulation failed
@ 2010-04-18 6:33 Manish Regmi
2010-04-19 9:20 ` Avi Kivity
0 siblings, 1 reply; 3+ messages in thread
From: Manish Regmi @ 2010-04-18 6:33 UTC (permalink / raw)
To: kvm; +Cc: avi
Hi,
The following patch makes sure all code path of failed emulation
runs trace_kvm_emulate_insn_failed().
Please let me know if there is anything missing or wrong.
Thank you.
Signed-off-by: Manish Regmi <regmi.manish@gmail.com>
--------
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
index b6e7535..fd1e875 100644
--- a/arch/x86/kvm/x86.c
+++ b/arch/x86/kvm/x86.c
@@ -3784,36 +3784,35 @@ int emulate_instruction(struct kvm_vcpu *vcpu,
c = &vcpu->arch.emulate_ctxt.decode;
if (emulation_type & EMULTYPE_TRAP_UD) {
if (!c->twobyte)
- return EMULATE_FAIL;
+ goto emulate_failed;
switch (c->b) {
case 0x01: /* VMMCALL */
if (c->modrm_mod != 3 || c->modrm_rm != 1)
- return EMULATE_FAIL;
+ goto emulate_failed;
break;
case 0x34: /* sysenter */
case 0x35: /* sysexit */
if (c->modrm_mod != 0 || c->modrm_rm != 0)
- return EMULATE_FAIL;
+ goto emulate_failed;
break;
case 0x05: /* syscall */
if (c->modrm_mod != 0 || c->modrm_rm != 0)
- return EMULATE_FAIL;
+ goto emulate_failed;;
break;
default:
- return EMULATE_FAIL;
+ goto emulate_failed;
}
if (!(c->modrm_reg == 0 || c->modrm_reg == 3))
- return EMULATE_FAIL;
+ goto emulate_failed;
}
++vcpu->stat.insn_emulation;
if (r) {
++vcpu->stat.insn_emulation_fail;
- trace_kvm_emulate_insn_failed(vcpu);
if (kvm_mmu_unprotect_page_virt(vcpu, cr2))
return EMULATE_DONE;
- return EMULATE_FAIL;
+ goto emulate_failed;
}
}
@@ -3848,9 +3847,8 @@ restart:
goto done;
if (!vcpu->mmio_needed) {
++vcpu->stat.insn_emulation_fail;
- trace_kvm_emulate_insn_failed(vcpu);
kvm_report_emulation_failure(vcpu, "mmio");
- return EMULATE_FAIL;
+ goto emulate_failed;
}
return EMULATE_DO_MMIO;
}
@@ -3868,6 +3866,10 @@ done:
goto restart;
return EMULATE_DONE;
+
+emulate_failed:
+ trace_kvm_emulate_insn_failed(vcpu);
+ return EMULATE_FAIL;
}
EXPORT_SYMBOL_GPL(emulate_instruction);
---------------------------------------------------------------
regards
Manish Regmi
http://manish-cs.blogspot.com
http://ext2read.sf.net
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH 0/1] trace all instructions whose emulation failed
2010-04-18 6:33 [PATCH 0/1] trace all instructions whose emulation failed Manish Regmi
@ 2010-04-19 9:20 ` Avi Kivity
2010-04-19 22:37 ` Manish Regmi
0 siblings, 1 reply; 3+ messages in thread
From: Avi Kivity @ 2010-04-19 9:20 UTC (permalink / raw)
To: Manish Regmi; +Cc: kvm
On 04/18/2010 09:33 AM, Manish Regmi wrote:
> Hi,
> The following patch makes sure all code path of failed emulation
> runs trace_kvm_emulate_insn_failed().
> Please let me know if there is anything missing or wrong.
> Thank you.
>
> Signed-off-by: Manish Regmi<regmi.manish@gmail.com>
> --------
> diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
> index b6e7535..fd1e875 100644
> --- a/arch/x86/kvm/x86.c
> +++ b/arch/x86/kvm/x86.c
> @@ -3784,36 +3784,35 @@ int emulate_instruction(struct kvm_vcpu *vcpu,
> c =&vcpu->arch.emulate_ctxt.decode;
> if (emulation_type& EMULTYPE_TRAP_UD) {
> if (!c->twobyte)
> - return EMULATE_FAIL;
> + goto emulate_failed;
> switch (c->b) {
> case 0x01: /* VMMCALL */
> if (c->modrm_mod != 3 || c->modrm_rm != 1)
> - return EMULATE_FAIL;
> + goto emulate_failed;
> break;
> case 0x34: /* sysenter */
> case 0x35: /* sysexit */
> if (c->modrm_mod != 0 || c->modrm_rm != 0)
> - return EMULATE_FAIL;
> + goto emulate_failed;
> break;
> case 0x05: /* syscall */
> if (c->modrm_mod != 0 || c->modrm_rm != 0)
> - return EMULATE_FAIL;
> + goto emulate_failed;;
> break;
> default:
> - return EMULATE_FAIL;
> + goto emulate_failed;
> }
>
> if (!(c->modrm_reg == 0 || c->modrm_reg == 3))
> - return EMULATE_FAIL;
> + goto emulate_failed;
> }
>
> ++vcpu->stat.insn_emulation;
> if (r) {
> ++vcpu->stat.insn_emulation_fail;
> - trace_kvm_emulate_insn_failed(vcpu);
> if (kvm_mmu_unprotect_page_virt(vcpu, cr2))
> return EMULATE_DONE;
> - return EMULATE_FAIL;
> + goto emulate_failed;
> }
> }
>
>
It's better not to trace #UD triggered emulations, since we except these
to fail, for example if the guest executes the UD2 instruction.
--
error compiling committee.c: too many arguments to function
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-04-19 22:37 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-18 6:33 [PATCH 0/1] trace all instructions whose emulation failed Manish Regmi
2010-04-19 9:20 ` Avi Kivity
2010-04-19 22:37 ` Manish Regmi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox