diff mbox series

target/i386: allow MMX instructions with CR4.OSFXSR=0

Message ID 20221130141917.29667-1-pbonzini@redhat.com
State New
Headers show
Series target/i386: allow MMX instructions with CR4.OSFXSR=0 | expand

Commit Message

Paolo Bonzini Nov. 30, 2022, 2:19 p.m. UTC
MMX state is saved/restored by FSAVE/FRSTOR so the instructions are
not illegal opcodes even if CR4.OSFXSR=0.  Make sure that validate_vex
takes into account the prefix and only checks HF_OSFXSR_MASK in the
presence of an SSE instruction.

Fixes: 20581aadec5e ("target/i386: validate VEX prefixes via the instructions' exception classes", 2022-10-18)
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/1350
Reported-by: Helge Konetzka (@hejko on gitlab.com)
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 target/i386/tcg/decode-new.c.inc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

Richard Henderson Nov. 30, 2022, 9:20 p.m. UTC | #1
On 11/30/22 06:19, Paolo Bonzini wrote:
> MMX state is saved/restored by FSAVE/FRSTOR so the instructions are
> not illegal opcodes even if CR4.OSFXSR=0.  Make sure that validate_vex
> takes into account the prefix and only checks HF_OSFXSR_MASK in the
> presence of an SSE instruction.
> 
> Fixes: 20581aadec5e ("target/i386: validate VEX prefixes via the instructions' exception classes", 2022-10-18)
> Resolves:https://gitlab.com/qemu-project/qemu/-/issues/1350
> Reported-by: Helge Konetzka (@hejko on gitlab.com)
> Signed-off-by: Paolo Bonzini<pbonzini@redhat.com>
> ---
>   target/i386/tcg/decode-new.c.inc | 3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>

r~
Thomas Huth Dec. 1, 2022, 6:43 a.m. UTC | #2
On 30/11/2022 15.19, Paolo Bonzini wrote:
> MMX state is saved/restored by FSAVE/FRSTOR so the instructions are
> not illegal opcodes even if CR4.OSFXSR=0.  Make sure that validate_vex
> takes into account the prefix and only checks HF_OSFXSR_MASK in the
> presence of an SSE instruction.
> 
> Fixes: 20581aadec5e ("target/i386: validate VEX prefixes via the instructions' exception classes", 2022-10-18)
> Resolves: https://gitlab.com/qemu-project/qemu/-/issues/1350
> Reported-by: Helge Konetzka (@hejko on gitlab.com)
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>   target/i386/tcg/decode-new.c.inc | 3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/target/i386/tcg/decode-new.c.inc b/target/i386/tcg/decode-new.c.inc
> index e4878b967f0e..80c579164ff2 100644
> --- a/target/i386/tcg/decode-new.c.inc
> +++ b/target/i386/tcg/decode-new.c.inc
> @@ -1488,7 +1488,8 @@ static bool validate_vex(DisasContext *s, X86DecodedInsn *decode)
>               if (!(s->flags & HF_AVX_EN_MASK)) {
>                   goto illegal;
>               }
> -        } else {
> +        } else if (e->special != X86_SPECIAL_MMX ||
> +                   (s->prefix & (PREFIX_REPZ | PREFIX_REPNZ | PREFIX_DATA))) {
>               if (!(s->flags & HF_OSFXSR_MASK)) {
>                   goto illegal;
>               }

This fixes the MicroSnow image, indeed, thus:

Tested-by: Thomas Huth <thuth@redhat.com>

Should this patch still be included in QEMU 7.2 ? ... since it fixes a 
regression?
Richard Henderson Dec. 1, 2022, 7:22 a.m. UTC | #3
On 11/30/22 22:43, Thomas Huth wrote:
> On 30/11/2022 15.19, Paolo Bonzini wrote:
>> MMX state is saved/restored by FSAVE/FRSTOR so the instructions are
>> not illegal opcodes even if CR4.OSFXSR=0.  Make sure that validate_vex
>> takes into account the prefix and only checks HF_OSFXSR_MASK in the
>> presence of an SSE instruction.
>>
>> Fixes: 20581aadec5e ("target/i386: validate VEX prefixes via the instructions' exception 
>> classes", 2022-10-18)
>> Resolves: https://gitlab.com/qemu-project/qemu/-/issues/1350
>> Reported-by: Helge Konetzka (@hejko on gitlab.com)
>> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
>> ---
>>   target/i386/tcg/decode-new.c.inc | 3 ++-
>>   1 file changed, 2 insertions(+), 1 deletion(-)
>>
>> diff --git a/target/i386/tcg/decode-new.c.inc b/target/i386/tcg/decode-new.c.inc
>> index e4878b967f0e..80c579164ff2 100644
>> --- a/target/i386/tcg/decode-new.c.inc
>> +++ b/target/i386/tcg/decode-new.c.inc
>> @@ -1488,7 +1488,8 @@ static bool validate_vex(DisasContext *s, X86DecodedInsn *decode)
>>               if (!(s->flags & HF_AVX_EN_MASK)) {
>>                   goto illegal;
>>               }
>> -        } else {
>> +        } else if (e->special != X86_SPECIAL_MMX ||
>> +                   (s->prefix & (PREFIX_REPZ | PREFIX_REPNZ | PREFIX_DATA))) {
>>               if (!(s->flags & HF_OSFXSR_MASK)) {
>>                   goto illegal;
>>               }
> 
> This fixes the MicroSnow image, indeed, thus:
> 
> Tested-by: Thomas Huth <thuth@redhat.com>
> 
> Should this patch still be included in QEMU 7.2 ? ... since it fixes a regression?

Yes.


r~
diff mbox series

Patch

diff --git a/target/i386/tcg/decode-new.c.inc b/target/i386/tcg/decode-new.c.inc
index e4878b967f0e..80c579164ff2 100644
--- a/target/i386/tcg/decode-new.c.inc
+++ b/target/i386/tcg/decode-new.c.inc
@@ -1488,7 +1488,8 @@  static bool validate_vex(DisasContext *s, X86DecodedInsn *decode)
             if (!(s->flags & HF_AVX_EN_MASK)) {
                 goto illegal;
             }
-        } else {
+        } else if (e->special != X86_SPECIAL_MMX ||
+                   (s->prefix & (PREFIX_REPZ | PREFIX_REPNZ | PREFIX_DATA))) {
             if (!(s->flags & HF_OSFXSR_MASK)) {
                 goto illegal;
             }