qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Emilio G. Cota" <cota@braap.org>
To: qemu-devel@nongnu.org
Cc: Richard Henderson <richard.henderson@linaro.org>,
	Peter Maydell <peter.maydell@linaro.org>
Subject: [Qemu-devel] [PATCH 08/10] target/arm: avoid integer overflow in next_page PC check
Date: Tue, 10 Apr 2018 12:19:44 -0400	[thread overview]
Message-ID: <1523377186-32578-9-git-send-email-cota@braap.org> (raw)
In-Reply-To: <1523377186-32578-1-git-send-email-cota@braap.org>

If the PC is in the last page of the address space, next_page_start
overflows to 0. Fix it.

Cc: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Emilio G. Cota <cota@braap.org>
---
 target/arm/translate.h |  2 +-
 target/arm/translate.c | 11 +++++------
 2 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/target/arm/translate.h b/target/arm/translate.h
index c47febf..2287894 100644
--- a/target/arm/translate.h
+++ b/target/arm/translate.h
@@ -9,7 +9,7 @@ typedef struct DisasContext {
     DisasContextBase base;
 
     target_ulong pc;
-    target_ulong next_page_start;
+    target_ulong page_start;
     uint32_t insn;
     /* Nonzero if this instruction has been conditionally skipped.  */
     int condjmp;
diff --git a/target/arm/translate.c b/target/arm/translate.c
index fc03b5b..ade8d2d 100644
--- a/target/arm/translate.c
+++ b/target/arm/translate.c
@@ -9913,7 +9913,7 @@ static bool thumb_insn_is_16bit(DisasContext *s, uint32_t insn)
         return false;
     }
 
-    if ((insn >> 11) == 0x1e && (s->pc < s->next_page_start - 3)) {
+    if ((insn >> 11) == 0x1e && s->pc - s->page_start < TARGET_PAGE_SIZE - 3) {
         /* 0b1111_0xxx_xxxx_xxxx : BL/BLX prefix, and the suffix
          * is not on the next page; we merge this into a 32-bit
          * insn.
@@ -12269,8 +12269,7 @@ static int arm_tr_init_disas_context(DisasContextBase *dcbase,
     dc->is_ldex = false;
     dc->ss_same_el = false; /* Can't be true since EL_d must be AArch64 */
 
-    dc->next_page_start =
-        (dc->base.pc_first & TARGET_PAGE_MASK) + TARGET_PAGE_SIZE;
+    dc->page_start = dc->base.pc_first & TARGET_PAGE_MASK;
 
     /* If architectural single step active, limit to 1.  */
     if (is_singlestepping(dc)) {
@@ -12280,7 +12279,7 @@ static int arm_tr_init_disas_context(DisasContextBase *dcbase,
     /* ARM is a fixed-length ISA.  Bound the number of insns to execute
        to those left on the page.  */
     if (!dc->thumb) {
-        int bound = (dc->next_page_start - dc->base.pc_first) / 4;
+        int bound = -(dc->base.pc_first | TARGET_PAGE_MASK) / 4;
         max_insns = MIN(max_insns, bound);
     }
 
@@ -12552,8 +12551,8 @@ static void thumb_tr_translate_insn(DisasContextBase *dcbase, CPUState *cpu)
      * but isn't very efficient).
      */
     if (dc->base.is_jmp == DISAS_NEXT
-        && (dc->pc >= dc->next_page_start
-            || (dc->pc >= dc->next_page_start - 3
+        && (dc->pc - dc->page_start >= TARGET_PAGE_SIZE
+            || (dc->pc - dc->page_start >= TARGET_PAGE_SIZE - 3
                 && insn_crosses_page(env, dc)))) {
         dc->base.is_jmp = DISAS_TOO_MANY;
     }
-- 
2.7.4

  parent reply	other threads:[~2018-04-10 16:19 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-04-10 16:19 [Qemu-devel] [PATCH 00/10] Avoid integer overflow in next_page_start Emilio G. Cota
2018-04-10 16:19 ` [Qemu-devel] [PATCH 01/10] target/riscv: avoid integer overflow in next_page PC check Emilio G. Cota
2018-04-11 15:44   ` Bastian Koppelmann
2018-04-11 21:49   ` Michael Clark
2018-04-10 16:19 ` [Qemu-devel] [PATCH 02/10] target/cris: " Emilio G. Cota
2018-04-10 16:19 ` [Qemu-devel] [PATCH 03/10] target/lm32: " Emilio G. Cota
2018-04-11  6:32   ` Michael Walle
2018-04-10 16:19 ` [Qemu-devel] [PATCH 04/10] target/xtensa: " Emilio G. Cota
2018-04-10 16:36   ` Max Filippov
2018-04-10 16:19 ` [Qemu-devel] [PATCH 05/10] target/unicore32: " Emilio G. Cota
2018-04-10 16:19 ` [Qemu-devel] [PATCH 06/10] target/tilegx: " Emilio G. Cota
2018-04-10 16:19 ` [Qemu-devel] [PATCH 07/10] target/microblaze: " Emilio G. Cota
2018-04-10 16:19 ` Emilio G. Cota [this message]
2018-04-10 16:19 ` [Qemu-devel] [PATCH 09/10] target/s390x: " Emilio G. Cota
2018-04-11  5:06   ` [Qemu-devel] [qemu-s390x] " Thomas Huth
2018-04-11  9:32   ` [Qemu-devel] " David Hildenbrand
2018-04-11 15:40   ` Cornelia Huck
2018-04-10 16:19 ` [Qemu-devel] [PATCH 10/10] target/mips: " Emilio G. Cota
2018-04-11  0:08 ` [Qemu-devel] [PATCH 00/10] Avoid integer overflow in next_page_start Richard Henderson
2018-04-11 15:29   ` Emilio G. Cota
2018-04-11 15:39     ` Cornelia Huck
2018-04-11 23:56     ` Richard Henderson
2018-05-09  0:51       ` Michael Clark
2018-05-09 16:45         ` Emilio G. Cota

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1523377186-32578-9-git-send-email-cota@braap.org \
    --to=cota@braap.org \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=richard.henderson@linaro.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).