[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] x86/emul: Correct the decoding of vlddqu
commit 62cd2f6c887e1108be6c7950451527b3d1056da6 Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> AuthorDate: Mon Mar 27 09:28:53 2017 +0000 Commit: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> CommitDate: Wed Mar 29 16:49:48 2017 +0100 x86/emul: Correct the decoding of vlddqu vlddqu is encoded with 0xf2 which causes it to fall into the Scalar general case in x86_decode_twobyte(). However, it really does have just two operands, so must remain TwoOp AFL discovered that the instruction c5 5b f0 3c e5 95 0a cd 63 was considered valid despite it being a two operand instruction and VEX.vvvv having the value 11. The resulting use in a stub yielded #UD. Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Acked-by: Jan Beulich <jbeulich@xxxxxxxx> --- xen/arch/x86/x86_emulate/x86_emulate.c | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/xen/arch/x86/x86_emulate/x86_emulate.c b/xen/arch/x86/x86_emulate/x86_emulate.c index bb67be6..497cc77 100644 --- a/xen/arch/x86/x86_emulate/x86_emulate.c +++ b/xen/arch/x86/x86_emulate/x86_emulate.c @@ -2310,7 +2310,8 @@ x86_decode_twobyte( case 0x7f: case 0xc2 ... 0xc3: case 0xc5 ... 0xc6: - case 0xd0 ... 0xfe: + case 0xd0 ... 0xef: + case 0xf1 ... 0xfe: ctxt->opcode |= MASK_INSR(vex.pfx, X86EMUL_OPC_PFX_MASK); break; @@ -2332,9 +2333,9 @@ x86_decode_twobyte( if ( vex.pfx == vex_f3 ) /* movq xmm/m64,xmm */ { case X86EMUL_OPC_VEX_F3(0, 0x7e): /* vmovq xmm/m64,xmm */ - state->desc = DstImplicit | SrcMem | Mov; + state->desc = DstImplicit | SrcMem | TwoOp; state->simd_size = simd_other; - /* Avoid the state->desc adjustment below. */ + /* Avoid the state->desc clobbering of TwoOp below. */ return X86EMUL_OKAY; } break; @@ -2374,11 +2375,25 @@ x86_decode_twobyte( case X86EMUL_OPC_VEX_66(0, 0xc4): /* vpinsrw */ state->desc = DstReg | SrcMem16; break; + + case 0xf0: + ctxt->opcode |= MASK_INSR(vex.pfx, X86EMUL_OPC_PFX_MASK); + if ( vex.pfx == vex_f2 ) /* lddqu mem,xmm */ + { + /* fall through */ + case X86EMUL_OPC_VEX_F2(0, 0xf0): /* vlddqu mem,{x,y}mm */ + state->desc = DstImplicit | SrcMem | TwoOp; + state->simd_size = simd_other; + /* Avoid the state->desc clobbering of TwoOp below. */ + return X86EMUL_OKAY; + } + break; } /* * Scalar forms of most VEX-encoded TwoOp instructions have - * three operands. + * three operands. Those which do really have two operands + * should have exited earlier. */ if ( state->simd_size && vex.opcx && (vex.pfx & VEX_PREFIX_SCALAR_MASK) ) -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |