From: "Roger Pau Monné" <roger.pau@citrix.com>
To: Xenia Ragiadakou <xenia.ragiadakou@amd.com>
Cc: Jan Beulich <jbeulich@suse.com>,
Stefano Stabellini <sstabellini@kernel.org>,
xen-devel@lists.xenproject.org,
Stefano Stabellini <stefano.stabellini@amd.com>,
andrew.cooper3@citrix.com
Subject: Re: [PATCH 2/2] xen/x86/pvh: copy ACPI tables to Dom0 instead of mapping
Date: Thu, 18 May 2023 13:44:01 +0200 [thread overview]
Message-ID: <ZGYPgYiunhlDQsR4@Air-de-Roger> (raw)
In-Reply-To: <001b153d-1148-e9d1-e69f-da689a9f395b@amd.com>
On Thu, May 18, 2023 at 02:36:41PM +0300, Xenia Ragiadakou wrote:
>
> On 18/5/23 12:31, Roger Pau Monné wrote:
> > On Thu, May 18, 2023 at 10:24:10AM +0300, Xenia Ragiadakou wrote:
> > > On 15/5/23 17:17, Jan Beulich wrote:
> > > > On 13.05.2023 03:17, Stefano Stabellini wrote:
> > > > > From: Stefano Stabellini <stefano.stabellini@amd.com>
> > > > >
> > > > > Mapping the ACPI tables to Dom0 PVH 1:1 leads to memory corruptions of
> > > > > the tables in the guest. Instead, copy the tables to Dom0.
> > > > Do you really mean "in the guest" (i.e. from Xen's perspective, i.e.
> > > > ignoring that when running on qemu it is kind of a guest itself)?
> > > >
> > > > I also consider the statement too broad anyway: Various people have
> > > > run PVH Dom0 without running into such an issue, so it's clearly not
> > > > just "leads to".
> > > In my opinion the issue is broader.
> > >
> > > In pvh_setup_acpi(), the code adding the ACPI tables to dom0 memory map does
> > > not check the return value of pvh_add_mem_range(). If there is an overlap
> > > and the overlapping region is marked as E820_ACPI, it maps not just the
> > > allowed tables but the entire overlapping range ,
> > But that's the indented behavior: all ACPI regions will be mapped into
> > the dom0 physmap, the filtering of the tables exposed to dom0 is done
> > in the XSDT, but not in by filtering the mapped regions. Note this
> > won't be effective anyway, as the minimal granularity of physmap
> > entries is 4k, so multiple tables could live in the same 4K region.
> > Also Xen cannot parse dynamic tables (SSDT) or execute methods, and
> > hence doesn't know exactly which memory will be used.
> Thanks a lot for the explanation. I checked more carefully the code and it's
> true that xen does not aim to restrict dom0 access to ACPI tables. I got
> confused by the name of the function pvh_acpi_table_allowed.
> >
> > Xen relies on the firmware to have the ACPI tables in ACPI, NVS or
> > RESERVED regions in order for them to be mapped into the gust physmap.
> > The call to pvh_add_mem_range() in pvh_setup_acpi() is just an attempt
> > to workaround broken systems that have tables placed in memory map
> > holes, and hence ignoring the return value is fine.
> In pvh_setup_acpi(), xen identity maps E820_ACPI and E820_NVS ranges to
> dom0. Why it does not do the same for E820_RESERVED, since ACPI tables may
> also lie there and since it does not know which memory will be used?
So far I at least wasn't considering that ACPI tables could reside in
RESERVED regions. Given the behavior exposed by QEMU I think we need
to move the mapping of RESERVED regions from arch_iommu_hwdom_init()
into pvh_populate_p2m() for PVH dom0, thus rendering
arch_iommu_hwdom_init() PV-only.
> > > while if the overlapping
> > > range is marked as E820_RESERVED, it does not map the tables at all (the
> > > issue that Stefano saw with qemu). Since dom0 memory map is initialized
> > > based on the native one, the code adding the ACPI table memory ranges will
> > > naturally fall into one of the two cases above.
> > Xen does map them, but that's done in arch_iommu_hwdom_init() which get
> > short-circuited by the usage of dom0-iommu=none in your example. See
> > my reply to Stefano about moving such mappings into pvh_populate_p2m().
> Indeed, if dom0-iommu=none is removed from the xen cmdline and qemu is
> configured with an iommu, the issue is not triggered. Because
> arch_iommu_hwdom_init() identity maps to dom0 at least the first 4G, right?
For PVH dom0 only reserved regions are identity mapped into the
physmap.
Thanks, Roger.
prev parent reply other threads:[~2023-05-18 11:44 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-13 1:16 [PATCH 0/2] PVH Dom0 on QEMU Stefano Stabellini
2023-05-13 1:17 ` [PATCH 1/2] xen/x86/pvh: use preset XSDT header for XSDT generation Stefano Stabellini
2023-05-15 8:48 ` Roger Pau Monné
2023-05-15 14:14 ` Jan Beulich
2023-05-16 0:16 ` Stefano Stabellini
2023-05-16 6:13 ` Jan Beulich
2023-05-16 8:10 ` Roger Pau Monné
2023-05-16 8:13 ` Roger Pau Monné
2023-05-16 8:24 ` Roger Pau Monné
2023-05-16 9:13 ` Jan Beulich
2023-05-16 9:23 ` Roger Pau Monné
2023-05-16 22:11 ` Stefano Stabellini
2023-05-17 8:42 ` Roger Pau Monné
2023-05-13 1:17 ` [PATCH 2/2] xen/x86/pvh: copy ACPI tables to Dom0 instead of mapping Stefano Stabellini
2023-05-15 9:44 ` Roger Pau Monné
2023-05-16 0:11 ` Stefano Stabellini
2023-05-16 0:38 ` Stefano Stabellini
2023-05-16 6:27 ` Jan Beulich
2023-05-16 9:21 ` Roger Pau Monné
2023-05-16 23:34 ` Stefano Stabellini
2023-05-17 8:40 ` Roger Pau Monné
2023-05-17 21:00 ` Stefano Stabellini
2023-05-18 8:34 ` Roger Pau Monné
2023-05-15 14:17 ` Jan Beulich
2023-05-16 0:12 ` Stefano Stabellini
2023-05-18 7:24 ` Xenia Ragiadakou
2023-05-18 9:31 ` Roger Pau Monné
2023-05-18 11:36 ` Xenia Ragiadakou
2023-05-18 11:44 ` Roger Pau Monné [this message]
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=ZGYPgYiunhlDQsR4@Air-de-Roger \
--to=roger.pau@citrix.com \
--cc=andrew.cooper3@citrix.com \
--cc=jbeulich@suse.com \
--cc=sstabellini@kernel.org \
--cc=stefano.stabellini@amd.com \
--cc=xen-devel@lists.xenproject.org \
--cc=xenia.ragiadakou@amd.com \
/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.