From: Peter Maydell <peter.maydell@linaro.org>
To: Hongbo Zhang <hongbo.zhang@linaro.org>
Cc: qemu-arm <qemu-arm@nongnu.org>,
Radoslaw Biernacki <radoslaw.biernacki@linaro.org>,
QEMU Developers <qemu-devel@nongnu.org>,
Leif Lindholm <leif.lindholm@linaro.org>,
Ard Biesheuvel <ard.biesheuvel@linaro.org>
Subject: Re: [Qemu-devel] [PATCH v9 1/2] hw/arm: Add arm SBSA reference machine, skeleton part
Date: Mon, 1 Jul 2019 15:44:06 +0100 [thread overview]
Message-ID: <CAFEAcA8Dxyz9tkhmmV0ACjCDw+r9q73-AY6vhK0cRE9AVLhrLA@mail.gmail.com> (raw)
In-Reply-To: <1561890034-15921-2-git-send-email-hongbo.zhang@linaro.org>
On Sun, 30 Jun 2019 at 11:21, Hongbo Zhang <hongbo.zhang@linaro.org> wrote:
>
> For the Aarch64, there is one machine 'virt', it is primarily meant to
> run on KVM and execute virtualization workloads, but we need an
> environment as faithful as possible to physical hardware, for supporting
> firmware and OS development for pysical Aarch64 machines.
>
> This patch introduces new machine type 'sbsa-ref' with main features:
> - Based on 'virt' machine type.
> - A new memory map.
> - CPU type cortex-a57.
> - EL2 and EL3 are enabled.
> - GIC version 3.
> - System bus AHCI controller.
> - System bus EHCI controller.
> - CDROM and hard disc on AHCI bus.
> - E1000E ethernet card on PCIE bus.
> - VGA display adaptor on PCIE bus.
> - No virtio deivces.
> - No fw_cfg device.
> - No ACPI table supplied.
> - Only minimal device tree nodes.
>
> Arm Trusted Firmware and UEFI porting to this are done accordingly, and
> it should supply ACPI tables to load OS, the minimal device tree nodes
> supplied from this platform are only to pass the dynamic info reflecting
> command line input to firmware, not for loading OS.
>
> To make the review easier, this task is split into two patches, the
> fundamental sceleton part and the peripheral devices part, this patch is
> the first part.
>
> Signed-off-by: Hongbo Zhang <hongbo.zhang@linaro.org>
> +static const TypeInfo sbsa_ref_info = {
> + .name = TYPE_SBSA_MACHINE,
> + .parent = TYPE_MACHINE,
> + .class_init = sbsa_ref_class_init,
You need here to also have
.instance_size = sizeof(SBSAMachineState),
> +};
Otherwise we won't allocate enough memory for the size of
the struct, and will run off the end of the allocation.
You can see this if you do a build with just patch 1 and
try 'make check' on it with a clang-sanitizer build
(ie passing configure '--cc=clang-7' '--cxx=clang++-7'
'--extra-cflags=-fsanitize=undefined -fno-sanitize=shift-base -Werror')
as it will catch reads off the end of the memory.
thanks
-- PMM
next prev parent reply other threads:[~2019-07-01 15:07 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-06-30 10:20 [Qemu-devel] [PATCH v9 0/2] Add Arm SBSA Reference Machine Hongbo Zhang
2019-06-30 10:20 ` [Qemu-devel] [PATCH v9 1/2] hw/arm: Add arm SBSA reference machine, skeleton part Hongbo Zhang
2019-07-01 14:18 ` Peter Maydell
2019-07-01 14:28 ` Peter Maydell
2019-07-01 14:44 ` Peter Maydell [this message]
2019-06-30 10:20 ` [Qemu-devel] [PATCH v9 2/2] hw/arm: Add arm SBSA reference machine, devices part Hongbo Zhang
2019-07-01 14:15 ` [Qemu-devel] [PATCH v9 0/2] Add Arm SBSA Reference Machine Peter Maydell
2019-07-01 14:54 ` Peter Maydell
2019-07-01 16:08 ` Leif Lindholm
2019-07-01 16:23 ` Radoslaw Biernacki
2019-07-01 16:30 ` Peter Maydell
2019-07-02 3:54 ` Hongbo Zhang
2019-07-02 3:25 ` Hongbo Zhang
2019-07-14 15:20 ` Guenter Roeck
2019-07-14 15:40 ` Radoslaw Biernacki
2019-07-14 21:57 ` Guenter Roeck
2019-07-14 22:08 ` Radoslaw Biernacki
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=CAFEAcA8Dxyz9tkhmmV0ACjCDw+r9q73-AY6vhK0cRE9AVLhrLA@mail.gmail.com \
--to=peter.maydell@linaro.org \
--cc=ard.biesheuvel@linaro.org \
--cc=hongbo.zhang@linaro.org \
--cc=leif.lindholm@linaro.org \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=radoslaw.biernacki@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).