diff mbox

target-arm: Stage 2 permission fault was fixed in AArch32 state

Message ID 1461002400-3187-1-git-send-email-afarallax@yandex.ru
State New
Headers show

Commit Message

Sergey Sorokin April 18, 2016, 6 p.m. UTC
As described in AArch32.CheckS2Permission an instruction fetch fails if
XN bit is set or there is no read permission for the address.

Signed-off-by: Sergey Sorokin <afarallax@yandex.ru>
---
 target-arm/helper.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

Comments

Peter Maydell May 4, 2016, 4:11 p.m. UTC | #1
On 18 April 2016 at 19:00, Sergey Sorokin <afarallax@yandex.ru> wrote:
> As described in AArch32.CheckS2Permission an instruction fetch fails if
> XN bit is set or there is no read permission for the address.
>
> Signed-off-by: Sergey Sorokin <afarallax@yandex.ru>
> ---
>  target-arm/helper.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/target-arm/helper.c b/target-arm/helper.c
> index 09638b2..59efb90 100644
> --- a/target-arm/helper.c
> +++ b/target-arm/helper.c
> @@ -6708,7 +6708,9 @@ static int get_S2prot(CPUARMState *env, int s2ap, int xn)
>          prot |= PAGE_WRITE;
>      }
>      if (!xn) {
> -        prot |= PAGE_EXEC;
> +        if (arm_el_is_aa64(env, 2) || prot & PAGE_READ) {
> +            prot |= PAGE_EXEC;
> +        }
>      }
>      return prot;
>  }

Thanks, applied to target-arm.next.

-- PMM
diff mbox

Patch

diff --git a/target-arm/helper.c b/target-arm/helper.c
index 09638b2..59efb90 100644
--- a/target-arm/helper.c
+++ b/target-arm/helper.c
@@ -6708,7 +6708,9 @@  static int get_S2prot(CPUARMState *env, int s2ap, int xn)
         prot |= PAGE_WRITE;
     }
     if (!xn) {
-        prot |= PAGE_EXEC;
+        if (arm_el_is_aa64(env, 2) || prot & PAGE_READ) {
+            prot |= PAGE_EXEC;
+        }
     }
     return prot;
 }