From: Jan Beulich Date: Tue, 29 Nov 2016 16:36:38 +0000 (+0000) Subject: xen: fix ioreq handling X-Git-Tag: xen-4.8.0-rc7^0 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=89c4cbe8d234049b0145e4dc5e5d19d626250b57;p=qemu-xen-traditional.git xen: fix ioreq handling Avoid double fetches and bounds check size to avoid overflowing internal variables. This is XSA-197. Reported-by: yanghongke Signed-off-by: Jan Beulich Reviewed-by: Ian Jackson --- diff --git a/i386-dm/helper2.c b/i386-dm/helper2.c index 2706f2eb..329d25bb 100644 --- a/i386-dm/helper2.c +++ b/i386-dm/helper2.c @@ -375,6 +375,11 @@ static void cpu_ioreq_pio(CPUState *env, ioreq_t *req) { uint32_t i; + if (req->size > sizeof(unsigned long)) { + fprintf(stderr, "PIO: bad size (%u)\n", req->size); + exit(-1); + } + if (req->dir == IOREQ_READ) { if (!req->data_is_ptr) { req->data = do_inp(env, req->addr, req->size); @@ -404,6 +409,11 @@ static void cpu_ioreq_move(CPUState *env, ioreq_t *req) { uint32_t i; + if (req->size > sizeof(req->data)) { + fprintf(stderr, "MMIO: bad size (%u)\n", req->size); + exit(-1); + } + if (!req->data_is_ptr) { if (req->dir == IOREQ_READ) { for (i = 0; i < req->count; i++) { @@ -516,11 +526,13 @@ static int __handle_buffered_iopage(CPUState *env) req.df = 1; req.type = buf_req->type; req.data_is_ptr = 0; + xen_rmb(); qw = (req.size == 8); if (qw) { buf_req = &buffered_io_page->buf_ioreq[(rdptr + 1) % IOREQ_BUFFER_SLOT_NUM]; req.data |= ((uint64_t)buf_req->data) << 32; + xen_rmb(); } __handle_ioreq(env, &req); @@ -552,7 +564,11 @@ static void cpu_handle_ioreq(void *opaque) __handle_buffered_iopage(env); if (req) { - __handle_ioreq(env, req); + ioreq_t copy = *req; + + xen_rmb(); + __handle_ioreq(env, ©); + req->data = copy.data; if (req->state != STATE_IOREQ_INPROCESS) { fprintf(logfile, "Badness in I/O request ... not in service?!: "