From: "Edgar E. Iglesias" <edgar.iglesias@gmail.com>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: "QEMU Developers" <qemu-devel@nongnu.org>,
"Alex Bennée" <alex.bennee@linaro.org>,
qemu-arm <qemu-arm@nongnu.org>,
"Edgar Iglesias" <edgar.iglesias@xilinx.com>
Subject: Re: [PATCH v3 3/3] target-arm: Implement the S2 MMU inputsize > pamax check
Date: Tue, 26 Jan 2016 13:05:22 +0100 [thread overview]
Message-ID: <20160126120522.GA8630@toto> (raw)
In-Reply-To: <CAFEAcA_XE9vDZ-uu6WezP7-aFr2n8DJPMf3eV2AVCjzy-pYvFg@mail.gmail.com>
On Mon, Jan 25, 2016 at 12:57:41PM +0000, Peter Maydell wrote:
> On 22 January 2016 at 09:50, Edgar E. Iglesias <edgar.iglesias@gmail.com> wrote:
> > From: "Edgar E. Iglesias" <edgar.iglesias@xilinx.com>
> >
> > Implement the inputsize > pamax check for Stage 2 translations.
> > We have multiple choices for how to respond to errors and
> > choose to fault.
> >
> > Signed-off-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
> > ---
> > target-arm/helper.c | 16 ++++++++++++----
> > 1 file changed, 12 insertions(+), 4 deletions(-)
> >
> > diff --git a/target-arm/helper.c b/target-arm/helper.c
> > index 2a6fa94..8901762 100644
> > --- a/target-arm/helper.c
> > +++ b/target-arm/helper.c
> > @@ -6809,7 +6809,7 @@ static bool get_phys_addr_lpae(CPUARMState *env, target_ulong address,
> > */
> > int startlevel = extract32(tcr->raw_tcr, 6, 2);
> > unsigned int pamax = arm_pamax(cpu);
> > - bool ok;
> > + bool ok = true;
> >
> > if (va_size == 32 || stride == 9) {
> > /* AArch32 or 4KB pages */
> > @@ -6819,9 +6819,17 @@ static bool get_phys_addr_lpae(CPUARMState *env, target_ulong address,
> > level = 3 - startlevel;
> > }
> >
> > - /* Check that the starting level is valid. */
> > - ok = check_s2_startlevel(cpu, va_size == 64, level,
> > - inputsize, stride, pamax);
> > + if (va_size == 64 &&
> > + inputsize > pamax &&
> > + (arm_el_is_aa64(env, 1) || inputsize > 40)) {
> > + /* We have multiple choices but choose to fault. */
>
> Can we say specifically "This is CONSTRAINED UNPREDICTABLE and
> we choose...", please?
I'll change this for v4.
Thanks!
Edgar
WARNING: multiple messages have this Message-ID (diff)
From: "Edgar E. Iglesias" <edgar.iglesias@gmail.com>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: "Edgar Iglesias" <edgar.iglesias@xilinx.com>,
qemu-arm <qemu-arm@nongnu.org>,
"Alex Bennée" <alex.bennee@linaro.org>,
"QEMU Developers" <qemu-devel@nongnu.org>
Subject: Re: [Qemu-devel] [PATCH v3 3/3] target-arm: Implement the S2 MMU inputsize > pamax check
Date: Tue, 26 Jan 2016 13:05:22 +0100 [thread overview]
Message-ID: <20160126120522.GA8630@toto> (raw)
In-Reply-To: <CAFEAcA_XE9vDZ-uu6WezP7-aFr2n8DJPMf3eV2AVCjzy-pYvFg@mail.gmail.com>
On Mon, Jan 25, 2016 at 12:57:41PM +0000, Peter Maydell wrote:
> On 22 January 2016 at 09:50, Edgar E. Iglesias <edgar.iglesias@gmail.com> wrote:
> > From: "Edgar E. Iglesias" <edgar.iglesias@xilinx.com>
> >
> > Implement the inputsize > pamax check for Stage 2 translations.
> > We have multiple choices for how to respond to errors and
> > choose to fault.
> >
> > Signed-off-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>
> > ---
> > target-arm/helper.c | 16 ++++++++++++----
> > 1 file changed, 12 insertions(+), 4 deletions(-)
> >
> > diff --git a/target-arm/helper.c b/target-arm/helper.c
> > index 2a6fa94..8901762 100644
> > --- a/target-arm/helper.c
> > +++ b/target-arm/helper.c
> > @@ -6809,7 +6809,7 @@ static bool get_phys_addr_lpae(CPUARMState *env, target_ulong address,
> > */
> > int startlevel = extract32(tcr->raw_tcr, 6, 2);
> > unsigned int pamax = arm_pamax(cpu);
> > - bool ok;
> > + bool ok = true;
> >
> > if (va_size == 32 || stride == 9) {
> > /* AArch32 or 4KB pages */
> > @@ -6819,9 +6819,17 @@ static bool get_phys_addr_lpae(CPUARMState *env, target_ulong address,
> > level = 3 - startlevel;
> > }
> >
> > - /* Check that the starting level is valid. */
> > - ok = check_s2_startlevel(cpu, va_size == 64, level,
> > - inputsize, stride, pamax);
> > + if (va_size == 64 &&
> > + inputsize > pamax &&
> > + (arm_el_is_aa64(env, 1) || inputsize > 40)) {
> > + /* We have multiple choices but choose to fault. */
>
> Can we say specifically "This is CONSTRAINED UNPREDICTABLE and
> we choose...", please?
I'll change this for v4.
Thanks!
Edgar
next prev parent reply other threads:[~2016-01-26 12:06 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-01-22 9:50 [PATCH v3 0/3] target-arm: Add a few more S2 MMU input checks Edgar E. Iglesias
2016-01-22 9:50 ` [Qemu-devel] " Edgar E. Iglesias
2016-01-22 9:50 ` [PATCH v3 1/3] target-arm: Apply S2 MMU startlevel table size check to AArch64 Edgar E. Iglesias
2016-01-22 9:50 ` [Qemu-devel] " Edgar E. Iglesias
2016-01-25 12:55 ` Peter Maydell
2016-01-25 12:55 ` [Qemu-devel] " Peter Maydell
2016-01-22 9:50 ` [PATCH v3 2/3] target-arm: Make pamax an argument to check_s2_startlevel Edgar E. Iglesias
2016-01-22 9:50 ` [Qemu-devel] " Edgar E. Iglesias
2016-01-22 9:50 ` [PATCH v3 3/3] target-arm: Implement the S2 MMU inputsize > pamax check Edgar E. Iglesias
2016-01-22 9:50 ` [Qemu-devel] " Edgar E. Iglesias
2016-01-25 10:44 ` Alex Bennée
2016-01-25 10:44 ` [Qemu-devel] " Alex Bennée
2016-01-25 12:57 ` Peter Maydell
2016-01-25 12:57 ` [Qemu-devel] " Peter Maydell
2016-01-26 12:05 ` Edgar E. Iglesias [this message]
2016-01-26 12:05 ` Edgar E. Iglesias
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=20160126120522.GA8630@toto \
--to=edgar.iglesias@gmail.com \
--cc=alex.bennee@linaro.org \
--cc=edgar.iglesias@xilinx.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.