From: Andrew Cooper Date: Thu, 5 Jan 2017 11:41:50 +0000 (+0000) Subject: x86/pv: Defer I/O bitmap checks even in 64bit mode for emulate_privilege_op() X-Git-Tag: archive/raspbian/4.11.1-1+rpi1~1^2~66^2~3053 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=e5ca20e0f6212dffaba2d3a0b966b71d9ab1ea91;p=xen.git x86/pv: Defer I/O bitmap checks even in 64bit mode for emulate_privilege_op() The I/O bitmap doesn't change function depending on mode. 64bit userspace such as an X server still needs to enter guest_io_okay() to find that the PV kernel did set up an appropriate virtual I/O bitmap to permit access. While moving the check, alter its representation to be easier to read. Signed-off-by: Andrew Cooper Reviewed-by: Jan Beulich --- diff --git a/xen/arch/x86/traps.c b/xen/arch/x86/traps.c index a33109d545..e45ff71b06 100644 --- a/xen/arch/x86/traps.c +++ b/xen/arch/x86/traps.c @@ -2169,6 +2169,19 @@ static int priv_op_read_segment(enum x86_segment seg, struct segment_register *reg, struct x86_emulate_ctxt *ctxt) { + /* Check if this is an attempt to access the I/O bitmap. */ + if ( seg == x86_seg_tr ) + { + switch ( ctxt->opcode ) + { + case 0x6c ... 0x6f: /* ins / outs */ + case 0xe4 ... 0xe7: /* in / out (immediate port) */ + case 0xec ... 0xef: /* in / out (port in %dx) */ + /* Defer the check to priv_op_{read,write}_io(). */ + return X86EMUL_DONE; + } + } + if ( ctxt->addr_size < 64 ) { unsigned long limit; @@ -2182,11 +2195,6 @@ static int priv_op_read_segment(enum x86_segment seg, case x86_seg_fs: sel = read_sreg(fs); break; case x86_seg_gs: sel = read_sreg(gs); break; case x86_seg_ss: sel = ctxt->regs->ss; break; - case x86_seg_tr: - /* Check if this is an attempt to access to I/O bitmap. */ - if ( (ctxt->opcode & ~0xb) == 0xe4 || (ctxt->opcode & ~3) == 0x6c ) - return X86EMUL_DONE; - /* fall through */ default: return X86EMUL_UNHANDLEABLE; }