Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
target/i386: sysret and sysexit are privileged
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
  • Loading branch information
bonzini committed Jun 26, 2023
1 parent 75a02ad commit 53b9b4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions target/i386/tcg/translate.c
Expand Up @@ -5685,7 +5685,7 @@ static bool disas_insn(DisasContext *s, CPUState *cpu)
if (LMA(s) && env->cpuid_vendor1 != CPUID_VENDOR_INTEL_1) {
goto illegal_op;
}
if (!PE(s)) {
if (!PE(s) || CPL(s) != 0) {
gen_exception_gpf(s);
} else {
gen_helper_sysexit(cpu_env, tcg_constant_i32(dflag - 1));
Expand All @@ -5711,7 +5711,7 @@ static bool disas_insn(DisasContext *s, CPUState *cpu)
if (!LMA(s) && env->cpuid_vendor1 == CPUID_VENDOR_INTEL_1) {
goto illegal_op;
}
if (!PE(s)) {
if (!PE(s) || CPL(s) != 0) {
gen_exception_gpf(s);
} else {
gen_helper_sysret(cpu_env, tcg_constant_i32(dflag - 1));
Expand Down

0 comments on commit 53b9b4c

Please sign in to comment.