From: Igor Mammedov <imammedo@redhat.com>
To: Ben Widawsky <ben.widawsky@intel.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>,
Richard Henderson <rth@twiddle.net>,
"Michael S. Tsirkin" <mst@redhat.com>,
qemu-devel@nongnu.org, Eduardo Habkost <ehabkost@redhat.com>
Subject: Re: [PATCH 1/2] acpi/crs: Prevent bad ranges for host bridges
Date: Thu, 29 Oct 2020 14:59:51 +0100 [thread overview]
Message-ID: <20201029145951.45db8912@redhat.com> (raw)
In-Reply-To: <20201026193924.985014-1-ben.widawsky@intel.com>
On Mon, 26 Oct 2020 12:39:23 -0700
Ben Widawsky <ben.widawsky@intel.com> wrote:
> Prevent _CRS resources being quietly chopped off and instead throw an
> assertion. _CRS is used by host bridges to declare regions of io and/or
> memory that they consume. On some (all?) platforms the host bridge
> doesn't have PCI header space and so they need some way to convey the
> information.
>
> Signed-off-by: Ben Widawsky <ben.widawsky@intel.com>
Acked-by: Igor Mammedov <imammedo@redhat.com>
> ---
>
> 1. I'm not aware of this being a real issue on platforms today as I think
> many platforms that use ACPI and actually have regions, constrain to
> 32b to be complaint with legacy.
> 2. Since host bridges aren't usually hot plugged, it can't be invoked by
> a user, so assert() seems like the right way to handle this.
> ---
> hw/i386/acpi-build.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c
> index eee7b57c37..df13abecf4 100644
> --- a/hw/i386/acpi-build.c
> +++ b/hw/i386/acpi-build.c
> @@ -869,6 +869,8 @@ static Aml *build_crs(PCIHostState *host, CrsRangeSet *range_set)
> crs_range_merge(temp_range_set.mem_ranges);
> for (i = 0; i < temp_range_set.mem_ranges->len; i++) {
> entry = g_ptr_array_index(temp_range_set.mem_ranges, i);
> + assert(entry->limit <= UINT32_MAX &&
> + (entry->limit - entry->base + 1) <= UINT32_MAX);
> aml_append(crs,
> aml_dword_memory(AML_POS_DECODE, AML_MIN_FIXED,
> AML_MAX_FIXED, AML_NON_CACHEABLE,
prev parent reply other threads:[~2020-10-29 14:01 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-10-26 19:39 [PATCH 1/2] acpi/crs: Prevent bad ranges for host bridges Ben Widawsky
2020-10-26 19:39 ` [PATCH 2/2] acpi/crs: Support ranges > 32b for hosts Ben Widawsky
2020-10-27 14:36 ` Igor Mammedov
2020-10-27 15:45 ` Ben Widawsky
2020-10-29 13:57 ` Igor Mammedov
2020-10-29 13:59 ` Igor Mammedov [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=20201029145951.45db8912@redhat.com \
--to=imammedo@redhat.com \
--cc=ben.widawsky@intel.com \
--cc=ehabkost@redhat.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=rth@twiddle.net \
/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).