[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen staging] x86emul: correct 32-bit address handling for AVX2 gathers
commit 298556c7b5f89243133378132a0c3024bdf6e563 Author: Jan Beulich <jbeulich@xxxxxxxx> AuthorDate: Wed Nov 28 15:50:26 2018 +0100 Commit: Jan Beulich <jbeulich@xxxxxxxx> CommitDate: Wed Nov 28 15:50:26 2018 +0100 x86emul: correct 32-bit address handling for AVX2 gathers As done for other cases by commit 7869e2bafe ("x86emul/fuzz: add rudimentary limit checking"), address calculations should also use truncate_ea() for the AVX2 gather insns. Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> Acked-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> --- xen/arch/x86/x86_emulate/x86_emulate.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xen/arch/x86/x86_emulate/x86_emulate.c b/xen/arch/x86/x86_emulate/x86_emulate.c index e11183d8d6..0ae433538e 100644 --- a/xen/arch/x86/x86_emulate/x86_emulate.c +++ b/xen/arch/x86/x86_emulate/x86_emulate.c @@ -8400,7 +8400,8 @@ x86_emulate( signed long idx = b & 1 ? index.qw[i] : index.dw[i]; rc = ops->read(ea.mem.seg, - ea.mem.off + (idx << state->sib_scale), + truncate_ea(ea.mem.off + + (idx << state->sib_scale)), (void *)mmvalp + i * op_bytes, op_bytes, ctxt); if ( rc != X86EMUL_OKAY ) { -- generated by git-patchbot for /home/xen/git/xen.git#staging _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |