[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-4.2-testing] nestedsvm: fix VMEXIT emulation
# HG changeset patch # User Christoph Egger <Christoph.Egger@xxxxxxx> # Date 1351172019 -7200 # Node ID 8c1fb247f39456e3b0540c09fb97233547f628e6 # Parent 67eb562ebe06e4fc00fe9f085e83a06099c5bc13 nestedsvm: fix VMEXIT emulation Values in regs can be newer than those in the shadow vmcb (e.g. due to an instruction emulation right before). So use the values from regs. Signed-off-by: Christoph Egger <Christoph.Egger@xxxxxxx> Acked-by: Tim Deegan <tim@xxxxxxx> xen-unstable changeset: 26096:d642720e1ea9 xen-unstable date: Tue Oct 23 07:14:27 UTC 2012 Committed-by: Jan Beulich <jbeulich@xxxxxxxx> --- diff -r 67eb562ebe06 -r 8c1fb247f394 xen/arch/x86/hvm/svm/nestedsvm.c --- a/xen/arch/x86/hvm/svm/nestedsvm.c Thu Oct 25 15:32:06 2012 +0200 +++ b/xen/arch/x86/hvm/svm/nestedsvm.c Thu Oct 25 15:33:39 2012 +0200 @@ -995,7 +995,7 @@ nsvm_vmcb_guest_intercepts_trap(struct v } static int -nsvm_vmcb_prepare4vmexit(struct vcpu *v) +nsvm_vmcb_prepare4vmexit(struct vcpu *v, struct cpu_user_regs *regs) { struct nestedvcpu *nv = &vcpu_nestedhvm(v); struct nestedsvm *svm = &vcpu_nestedsvm(v); @@ -1119,17 +1119,22 @@ nsvm_vmcb_prepare4vmexit(struct vcpu *v) ns_vmcb->_dr7 = n2vmcb->_dr7; ns_vmcb->_dr6 = n2vmcb->_dr6; + /* Restore registers from regs as those values + * can be newer than in n2vmcb (e.g. due to an + * instruction emulation right before). + */ + /* RFLAGS */ - ns_vmcb->rflags = n2vmcb->rflags; + ns_vmcb->rflags = n2vmcb->rflags = regs->eflags; /* RIP */ - ns_vmcb->rip = n2vmcb->rip; + ns_vmcb->rip = n2vmcb->rip = regs->eip; /* RSP */ - ns_vmcb->rsp = n2vmcb->rsp; + ns_vmcb->rsp = n2vmcb->rsp = regs->esp; /* RAX */ - ns_vmcb->rax = n2vmcb->rax; + ns_vmcb->rax = n2vmcb->rax = regs->eax; /* Keep the l2 guest values of the fs, gs, ldtr, tr, kerngsbase, * star, lstar, cstar, sfmask, sysenter_cs, sysenter_esp, @@ -1363,7 +1368,7 @@ nestedsvm_vmexit_n2n1(struct vcpu *v, st ASSERT(vcpu_nestedhvm(v).nv_vmswitch_in_progress); ASSERT(nestedhvm_vcpu_in_guestmode(v)); - rc = nsvm_vmcb_prepare4vmexit(v); + rc = nsvm_vmcb_prepare4vmexit(v, regs); if (rc) ret = NESTEDHVM_VMEXIT_ERROR; _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |