linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 1/2] KVM: Exception during emulation decode should propagate
       [not found] <1327000666-4326-1-git-send-email-namit@cs.technion.ac.il>
@ 2012-01-22 11:01 ` Nadav Amit
  0 siblings, 0 replies; only message in thread
From: Nadav Amit @ 2012-01-22 11:01 UTC (permalink / raw)
  To: Avi Kivity
  Cc: Nadav Amit, Marcelo Tosatti, Thomas Gleixner, Ingo Molnar,
	H. Peter Anvin, x86, kvm, linux-kernel, Gleb Natapov

An exception might occur during decode (e.g., #PF during fetch).
Currently, the exception is ignored and emulation is performed.
Instead, emulation should be skipped and the fault should be injected.
Skipping instruction should report a failure in this case.

Signed-off-by: Nadav Amit <nadav.amit@gmail.com>
---
arch/x86/kvm/emulate.c |    5 +++++
arch/x86/kvm/x86.c     |    8 ++++++++
2 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c
index 05a562b..9a07dcd 100644
--- a/arch/x86/kvm/emulate.c
+++ b/arch/x86/kvm/emulate.c
@@ -3869,6 +3869,11 @@ done:
	if (ctxt->memopp && ctxt->memopp->type == OP_MEM && ctxt->rip_relative)
		ctxt->memopp->addr.mem.ea += ctxt->_eip;

+	if (rc == X86EMUL_PROPAGATE_FAULT) {
+		ctxt->have_exception = true;
+		return EMULATION_OK;
+	}
+
	return (rc != X86EMUL_CONTINUE) ? EMULATION_FAILED : EMULATION_OK;
}

diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
index 1171def..05fd3d7 100644
--- a/arch/x86/kvm/x86.c
+++ b/arch/x86/kvm/x86.c
@@ -4443,10 +4443,17 @@ int x86_emulate_instruction(struct kvm_vcpu *vcpu,
	}

	if (emulation_type & EMULTYPE_SKIP) {
+		if (ctxt->have_exception)
+			return EMULATE_FAIL;
		kvm_rip_write(vcpu, ctxt->_eip);
		return EMULATE_DONE;
	}

+	if (ctxt->have_exception) {
+		writeback = false;
+		goto post;
+	}
+
	if (retry_instruction(ctxt, cr2, emulation_type))
		return EMULATE_DONE;

@@ -4470,6 +4477,7 @@ restart:
		return handle_emulation_failure(vcpu);
	}

+post:
	if (ctxt->have_exception) {
		inject_emulated_exception(vcpu);
		r = EMULATE_DONE;
-- 
1.7.4.1



^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2012-01-22 11:02 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <1327000666-4326-1-git-send-email-namit@cs.technion.ac.il>
2012-01-22 11:01 ` [PATCH v2 1/2] KVM: Exception during emulation decode should propagate Nadav Amit

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).