[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen stable-4.3] x86/HVM: avoid reading ioreq state more than once
commit 83349eede062fc636f89657628a772438012673a Author: Jan Beulich <jbeulich@xxxxxxxx> AuthorDate: Thu Dec 17 14:33:22 2015 +0100 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Thu Dec 17 14:33:22 2015 +0100 x86/HVM: avoid reading ioreq state more than once Otherwise, especially when the compiler chooses to translate the switch() to a jump table, unpredictable behavior (and in the jump table case arbitrary code execution) can result. This is XSA-166. Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> Acked-by: Ian Campbell <ian.campbell@xxxxxxxxxx> master commit: b452430a4cdfc801fa4bc391aed7522365e1deb6 master date: 2015-12-17 14:22:46 +0100 --- xen/arch/x86/hvm/hvm.c | 11 ++++++----- 1 files changed, 6 insertions(+), 5 deletions(-) diff --git a/xen/arch/x86/hvm/hvm.c b/xen/arch/x86/hvm/hvm.c index c731cc4..9dafcca 100644 --- a/xen/arch/x86/hvm/hvm.c +++ b/xen/arch/x86/hvm/hvm.c @@ -342,6 +342,7 @@ void hvm_migrate_pirqs(struct vcpu *v) void hvm_do_resume(struct vcpu *v) { ioreq_t *p; + unsigned int state; pt_restore_timer(v); @@ -349,9 +350,10 @@ void hvm_do_resume(struct vcpu *v) /* NB. Optimised for common case (p->state == STATE_IOREQ_NONE). */ p = get_ioreq(v); - while ( p->state != STATE_IOREQ_NONE ) + while ( (state = p->state) != STATE_IOREQ_NONE ) { - switch ( p->state ) + rmb(); + switch ( state ) { case STATE_IORESP_READY: /* IORESP_READY -> NONE */ hvm_io_assist(); @@ -359,11 +361,10 @@ void hvm_do_resume(struct vcpu *v) case STATE_IOREQ_READY: /* IOREQ_{READY,INPROCESS} -> IORESP_READY */ case STATE_IOREQ_INPROCESS: wait_on_xen_event_channel(v->arch.hvm_vcpu.xen_port, - (p->state != STATE_IOREQ_READY) && - (p->state != STATE_IOREQ_INPROCESS)); + p->state != state); break; default: - gdprintk(XENLOG_ERR, "Weird HVM iorequest state %d.\n", p->state); + gdprintk(XENLOG_ERR, "Weird HVM iorequest state %u\n", state); domain_crash(v->domain); return; /* bail */ } -- generated by git-patchbot for /home/xen/git/xen.git#stable-4.3 _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |