* [PATCH] accel/tcg: Fix undefined jump with x86_cpu_tlb_fill
@ 2022-12-01 6:48 Daniel Hoffman
2022-12-01 7:42 ` Richard Henderson
0 siblings, 1 reply; 2+ messages in thread
From: Daniel Hoffman @ 2022-12-01 6:48 UTC (permalink / raw)
To: qemu-devel; +Cc: pbonzini, richard.henderson, eduardo, Daniel Hoffman
Signed-off-by: Daniel Hoffman <dhoff749@gmail.com>
---
target/i386/tcg/sysemu/excp_helper.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/target/i386/tcg/sysemu/excp_helper.c b/target/i386/tcg/sysemu/excp_helper.c
index 405a5d414a..6a93e96eb7 100644
--- a/target/i386/tcg/sysemu/excp_helper.c
+++ b/target/i386/tcg/sysemu/excp_helper.c
@@ -595,6 +595,7 @@ bool x86_cpu_tlb_fill(CPUState *cs, vaddr addr, int size,
CPUX86State *env = cs->env_ptr;
TranslateResult out;
TranslateFault err;
+ bool use_stage2 = env->hflags2 & HF2_NPT_MASK;
if (get_physical_address(env, addr, access_type, mmu_idx, &out, &err)) {
/*
@@ -615,7 +616,7 @@ bool x86_cpu_tlb_fill(CPUState *cs, vaddr addr, int size,
return false;
}
- if (err.stage2 != S2_NONE) {
+ if (use_stage2 && err.stage2 != S2_NONE) {
raise_stage2(env, &err, retaddr);
}
--
2.34.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] accel/tcg: Fix undefined jump with x86_cpu_tlb_fill
2022-12-01 6:48 [PATCH] accel/tcg: Fix undefined jump with x86_cpu_tlb_fill Daniel Hoffman
@ 2022-12-01 7:42 ` Richard Henderson
0 siblings, 0 replies; 2+ messages in thread
From: Richard Henderson @ 2022-12-01 7:42 UTC (permalink / raw)
To: Daniel Hoffman, qemu-devel; +Cc: pbonzini, eduardo
On 11/30/22 22:48, Daniel Hoffman wrote:
> Signed-off-by: Daniel Hoffman <dhoff749@gmail.com>
> ---
> target/i386/tcg/sysemu/excp_helper.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/target/i386/tcg/sysemu/excp_helper.c b/target/i386/tcg/sysemu/excp_helper.c
> index 405a5d414a..6a93e96eb7 100644
> --- a/target/i386/tcg/sysemu/excp_helper.c
> +++ b/target/i386/tcg/sysemu/excp_helper.c
> @@ -595,6 +595,7 @@ bool x86_cpu_tlb_fill(CPUState *cs, vaddr addr, int size,
> CPUX86State *env = cs->env_ptr;
> TranslateResult out;
> TranslateFault err;
> + bool use_stage2 = env->hflags2 & HF2_NPT_MASK;
>
> if (get_physical_address(env, addr, access_type, mmu_idx, &out, &err)) {
> /*
> @@ -615,7 +616,7 @@ bool x86_cpu_tlb_fill(CPUState *cs, vaddr addr, int size,
> return false;
> }
>
> - if (err.stage2 != S2_NONE) {
> + if (use_stage2 && err.stage2 != S2_NONE) {
> raise_stage2(env, &err, retaddr);
> }
>
The patch description is missing, which might have included some indication of how the
problem might have been triggered.
From inspection I can guess that it comes from the incomplete initialization of
TranslateFault in get_physical_address, after the check for a canonical address form. In
any case this is not an ideal fix.
r~
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-12-01 7:42 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-12-01 6:48 [PATCH] accel/tcg: Fix undefined jump with x86_cpu_tlb_fill Daniel Hoffman
2022-12-01 7:42 ` Richard Henderson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).