]> xenbits.xensource.com Git - xen.git/commitdiff
x86emul: also clip repetition count for STOS
authorJan Beulich <jbeulich@suse.com>
Tue, 29 Apr 2025 10:09:45 +0000 (12:09 +0200)
committerJan Beulich <jbeulich@suse.com>
Tue, 29 Apr 2025 10:09:45 +0000 (12:09 +0200)
Like MOVS, INS, and OUTS, STOS also has a special purpose hook, where
the hook function may legitimately have the same expectation as to the
request not straddling address space start/end.

Fixes: 5dfe4aa4eeb6 ("x86_emulate: Do not request emulation of REP instructions beyond the")
Reported-by: Fabian Specht <f.specht@tum.de>
Signed-off-by: Jan Beulich <jbeulich@suse.com>
Acked-by: Andrew Cooper <andrew.cooper3@citrix.com>
master commit: 8c5636b6c87777e6c2e4ffae28bffe1cfc189bfd
master date: 2025-04-22 11:24:20 +0200

xen/arch/x86/x86_emulate/x86_emulate.c

index af0a308814fa1108582414f48ffed049470100f8..ef2598d4ca3fec2a2562f59eabb035c146d74fa1 100644 (file)
@@ -2217,7 +2217,7 @@ x86_emulate(
 
         dst.bytes = src.bytes;
         dst.mem.seg = x86_seg_es;
-        dst.mem.off = truncate_ea(_regs.r(di));
+        dst.mem.off = truncate_ea_and_reps(_regs.r(di), nr_reps, dst.bytes);
         if ( (nr_reps == 1) || !ops->rep_stos ||
              ((rc = ops->rep_stos(&src.val,
                                   dst.mem.seg, dst.mem.off, dst.bytes,