target/ppc: Don't update radix PTE R/C bits with gdbstub

gdbstub shouldn't silently change guest visible state when doing address
translation. Since the R/C bits can only be updated when handling a MMU
fault, let's reuse the cause_excp flag and rename it to guest_visible.
While here drop a not very useful comment.

This was found while reading the code. I could verify that this affects
both powernv and pseries, but I failed to observe any actual bug.

Fixes: d04ea940c5 "target/ppc: Add support for Radix partition-scoped translation"
Signed-off-by: Greg Kurz <groug@kaod.org>
Message-Id: <158941063899.240484.2778628492106387793.stgit@bahia.lan>
Reviewed-by: Cédric Le Goater <clg@kaod.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
Greg Kurz 2020-05-14 00:57:19 +02:00 committed by David Gibson
parent 31efae9958
commit e606a55801

View file

@ -274,7 +274,7 @@ static int ppc_radix64_partition_scoped_xlate(PowerPCCPU *cpu, int rwx,
ppc_v3_pate_t pate, ppc_v3_pate_t pate,
hwaddr *h_raddr, int *h_prot, hwaddr *h_raddr, int *h_prot,
int *h_page_size, bool pde_addr, int *h_page_size, bool pde_addr,
bool cause_excp) bool guest_visible)
{ {
int fault_cause = 0; int fault_cause = 0;
hwaddr pte_addr; hwaddr pte_addr;
@ -289,14 +289,15 @@ static int ppc_radix64_partition_scoped_xlate(PowerPCCPU *cpu, int rwx,
if (pde_addr) { /* address being translated was that of a guest pde */ if (pde_addr) { /* address being translated was that of a guest pde */
fault_cause |= DSISR_PRTABLE_FAULT; fault_cause |= DSISR_PRTABLE_FAULT;
} }
if (cause_excp) { if (guest_visible) {
ppc_radix64_raise_hsi(cpu, rwx, eaddr, g_raddr, fault_cause); ppc_radix64_raise_hsi(cpu, rwx, eaddr, g_raddr, fault_cause);
} }
return 1; return 1;
} }
/* Update Reference and Change Bits */ if (guest_visible) {
ppc_radix64_set_rc(cpu, rwx, pte, pte_addr, h_prot); ppc_radix64_set_rc(cpu, rwx, pte, pte_addr, h_prot);
}
return 0; return 0;
} }
@ -305,7 +306,7 @@ static int ppc_radix64_process_scoped_xlate(PowerPCCPU *cpu, int rwx,
vaddr eaddr, uint64_t pid, vaddr eaddr, uint64_t pid,
ppc_v3_pate_t pate, hwaddr *g_raddr, ppc_v3_pate_t pate, hwaddr *g_raddr,
int *g_prot, int *g_page_size, int *g_prot, int *g_page_size,
bool cause_excp) bool guest_visible)
{ {
CPUState *cs = CPU(cpu); CPUState *cs = CPU(cpu);
CPUPPCState *env = &cpu->env; CPUPPCState *env = &cpu->env;
@ -319,7 +320,7 @@ static int ppc_radix64_process_scoped_xlate(PowerPCCPU *cpu, int rwx,
size = 1ULL << ((pate.dw1 & PATE1_R_PRTS) + 12); size = 1ULL << ((pate.dw1 & PATE1_R_PRTS) + 12);
if (offset >= size) { if (offset >= size) {
/* offset exceeds size of the process table */ /* offset exceeds size of the process table */
if (cause_excp) { if (guest_visible) {
ppc_radix64_raise_si(cpu, rwx, eaddr, DSISR_NOPTE); ppc_radix64_raise_si(cpu, rwx, eaddr, DSISR_NOPTE);
} }
return 1; return 1;
@ -340,7 +341,7 @@ static int ppc_radix64_process_scoped_xlate(PowerPCCPU *cpu, int rwx,
ret = ppc_radix64_partition_scoped_xlate(cpu, 0, eaddr, prtbe_addr, ret = ppc_radix64_partition_scoped_xlate(cpu, 0, eaddr, prtbe_addr,
pate, &h_raddr, &h_prot, pate, &h_raddr, &h_prot,
&h_page_size, true, &h_page_size, true,
cause_excp); guest_visible);
if (ret) { if (ret) {
return ret; return ret;
} }
@ -360,7 +361,7 @@ static int ppc_radix64_process_scoped_xlate(PowerPCCPU *cpu, int rwx,
&fault_cause, &pte_addr); &fault_cause, &pte_addr);
if (ret) { if (ret) {
/* No valid PTE */ /* No valid PTE */
if (cause_excp) { if (guest_visible) {
ppc_radix64_raise_si(cpu, rwx, eaddr, fault_cause); ppc_radix64_raise_si(cpu, rwx, eaddr, fault_cause);
} }
return ret; return ret;
@ -380,7 +381,7 @@ static int ppc_radix64_process_scoped_xlate(PowerPCCPU *cpu, int rwx,
ret = ppc_radix64_partition_scoped_xlate(cpu, 0, eaddr, pte_addr, ret = ppc_radix64_partition_scoped_xlate(cpu, 0, eaddr, pte_addr,
pate, &h_raddr, &h_prot, pate, &h_raddr, &h_prot,
&h_page_size, true, &h_page_size, true,
cause_excp); guest_visible);
if (ret) { if (ret) {
return ret; return ret;
} }
@ -389,7 +390,7 @@ static int ppc_radix64_process_scoped_xlate(PowerPCCPU *cpu, int rwx,
&nls, g_page_size, &pte, &fault_cause); &nls, g_page_size, &pte, &fault_cause);
if (ret) { if (ret) {
/* No valid pte */ /* No valid pte */
if (cause_excp) { if (guest_visible) {
ppc_radix64_raise_si(cpu, rwx, eaddr, fault_cause); ppc_radix64_raise_si(cpu, rwx, eaddr, fault_cause);
} }
return ret; return ret;
@ -406,13 +407,15 @@ static int ppc_radix64_process_scoped_xlate(PowerPCCPU *cpu, int rwx,
if (ppc_radix64_check_prot(cpu, rwx, pte, &fault_cause, g_prot, false)) { if (ppc_radix64_check_prot(cpu, rwx, pte, &fault_cause, g_prot, false)) {
/* Access denied due to protection */ /* Access denied due to protection */
if (cause_excp) { if (guest_visible) {
ppc_radix64_raise_si(cpu, rwx, eaddr, fault_cause); ppc_radix64_raise_si(cpu, rwx, eaddr, fault_cause);
} }
return 1; return 1;
} }
ppc_radix64_set_rc(cpu, rwx, pte, pte_addr, g_prot); if (guest_visible) {
ppc_radix64_set_rc(cpu, rwx, pte, pte_addr, g_prot);
}
return 0; return 0;
} }
@ -437,7 +440,7 @@ static int ppc_radix64_process_scoped_xlate(PowerPCCPU *cpu, int rwx,
static int ppc_radix64_xlate(PowerPCCPU *cpu, vaddr eaddr, int rwx, static int ppc_radix64_xlate(PowerPCCPU *cpu, vaddr eaddr, int rwx,
bool relocation, bool relocation,
hwaddr *raddr, int *psizep, int *protp, hwaddr *raddr, int *psizep, int *protp,
bool cause_excp) bool guest_visible)
{ {
CPUPPCState *env = &cpu->env; CPUPPCState *env = &cpu->env;
uint64_t lpid, pid; uint64_t lpid, pid;
@ -447,7 +450,7 @@ static int ppc_radix64_xlate(PowerPCCPU *cpu, vaddr eaddr, int rwx,
/* Virtual Mode Access - get the fully qualified address */ /* Virtual Mode Access - get the fully qualified address */
if (!ppc_radix64_get_fully_qualified_addr(&cpu->env, eaddr, &lpid, &pid)) { if (!ppc_radix64_get_fully_qualified_addr(&cpu->env, eaddr, &lpid, &pid)) {
if (cause_excp) { if (guest_visible) {
ppc_radix64_raise_segi(cpu, rwx, eaddr); ppc_radix64_raise_segi(cpu, rwx, eaddr);
} }
return 1; return 1;
@ -460,13 +463,13 @@ static int ppc_radix64_xlate(PowerPCCPU *cpu, vaddr eaddr, int rwx,
vhc->get_pate(cpu->vhyp, &pate); vhc->get_pate(cpu->vhyp, &pate);
} else { } else {
if (!ppc64_v3_get_pate(cpu, lpid, &pate)) { if (!ppc64_v3_get_pate(cpu, lpid, &pate)) {
if (cause_excp) { if (guest_visible) {
ppc_radix64_raise_si(cpu, rwx, eaddr, DSISR_NOPTE); ppc_radix64_raise_si(cpu, rwx, eaddr, DSISR_NOPTE);
} }
return 1; return 1;
} }
if (!validate_pate(cpu, lpid, &pate)) { if (!validate_pate(cpu, lpid, &pate)) {
if (cause_excp) { if (guest_visible) {
ppc_radix64_raise_si(cpu, rwx, eaddr, DSISR_R_BADCONFIG); ppc_radix64_raise_si(cpu, rwx, eaddr, DSISR_R_BADCONFIG);
} }
return 1; return 1;
@ -487,7 +490,7 @@ static int ppc_radix64_xlate(PowerPCCPU *cpu, vaddr eaddr, int rwx,
if (relocation) { if (relocation) {
int ret = ppc_radix64_process_scoped_xlate(cpu, rwx, eaddr, pid, int ret = ppc_radix64_process_scoped_xlate(cpu, rwx, eaddr, pid,
pate, &g_raddr, &prot, pate, &g_raddr, &prot,
&psize, cause_excp); &psize, guest_visible);
if (ret) { if (ret) {
return ret; return ret;
} }
@ -510,7 +513,7 @@ static int ppc_radix64_xlate(PowerPCCPU *cpu, vaddr eaddr, int rwx,
ret = ppc_radix64_partition_scoped_xlate(cpu, rwx, eaddr, g_raddr, ret = ppc_radix64_partition_scoped_xlate(cpu, rwx, eaddr, g_raddr,
pate, raddr, &prot, &psize, pate, raddr, &prot, &psize,
0, cause_excp); 0, guest_visible);
if (ret) { if (ret) {
return ret; return ret;
} }