Message ID | 20201023154156.6593-7-julien@xen.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | xen/arm: Unbreak ACPI | expand |
On Fri, 23 Oct 2020, Julien Grall wrote: > From: Julien Grall <julien.grall@arm.com> > > The length of the GICC structure in the MADT ACPI table differs between > version 5.1 and 6.0, although there are no other relevant differences. > > Use the BAD_MADT_GICC_ENTRY macro, which was specifically designed to > overcome this issue. > > Signed-off-by: Julien Grall <julien.grall@arm.com> > Signed-off-by: Andre Przywara <andre.przywara@arm.com> > Signed-off-by: Julien Grall <jgrall@amazon.com> Reviewed-by: Stefano Stabellini <sstabellini@kernel.org> > --- > Changes in v2: > - Patch added > --- > xen/arch/arm/acpi/boot.c | 2 +- > xen/arch/arm/gic-v2.c | 5 +++-- > xen/arch/arm/gic-v3.c | 2 +- > 3 files changed, 5 insertions(+), 4 deletions(-) > > diff --git a/xen/arch/arm/acpi/boot.c b/xen/arch/arm/acpi/boot.c > index 30e4bd1bc5a7..55c3e5cbc834 100644 > --- a/xen/arch/arm/acpi/boot.c > +++ b/xen/arch/arm/acpi/boot.c > @@ -131,7 +131,7 @@ acpi_parse_gic_cpu_interface(struct acpi_subtable_header *header, > struct acpi_madt_generic_interrupt *processor = > container_of(header, struct acpi_madt_generic_interrupt, header); > > - if ( BAD_MADT_ENTRY(processor, end) ) > + if ( BAD_MADT_GICC_ENTRY(processor, end) ) > return -EINVAL; > > acpi_table_print_madt_entry(header); > diff --git a/xen/arch/arm/gic-v2.c b/xen/arch/arm/gic-v2.c > index 0f747538dbcd..0e5f23201974 100644 > --- a/xen/arch/arm/gic-v2.c > +++ b/xen/arch/arm/gic-v2.c > @@ -1136,7 +1136,8 @@ static int gicv2_make_hwdom_madt(const struct domain *d, u32 offset) > > host_gicc = container_of(header, struct acpi_madt_generic_interrupt, > header); > - size = sizeof(struct acpi_madt_generic_interrupt); > + > + size = ACPI_MADT_GICC_LENGTH; > /* Add Generic Interrupt */ > for ( i = 0; i < d->max_vcpus; i++ ) > { > @@ -1165,7 +1166,7 @@ gic_acpi_parse_madt_cpu(struct acpi_subtable_header *header, > struct acpi_madt_generic_interrupt *processor = > container_of(header, struct acpi_madt_generic_interrupt, header); > > - if ( BAD_MADT_ENTRY(processor, end) ) > + if ( BAD_MADT_GICC_ENTRY(processor, end) ) > return -EINVAL; > > /* Read from APIC table and fill up the GIC variables */ > diff --git a/xen/arch/arm/gic-v3.c b/xen/arch/arm/gic-v3.c > index 0f6cbf6224e9..ce202402c0ed 100644 > --- a/xen/arch/arm/gic-v3.c > +++ b/xen/arch/arm/gic-v3.c > @@ -1558,7 +1558,7 @@ gic_acpi_parse_madt_cpu(struct acpi_subtable_header *header, > struct acpi_madt_generic_interrupt *processor = > container_of(header, struct acpi_madt_generic_interrupt, header); > > - if ( BAD_MADT_ENTRY(processor, end) ) > + if ( BAD_MADT_GICC_ENTRY(processor, end) ) > return -EINVAL; > > /* Read from APIC table and fill up the GIC variables */ > -- > 2.17.1 >
On Fri, 23 Oct 2020, Stefano Stabellini wrote: > On Fri, 23 Oct 2020, Julien Grall wrote: > > From: Julien Grall <julien.grall@arm.com> > > > > The length of the GICC structure in the MADT ACPI table differs between > > version 5.1 and 6.0, although there are no other relevant differences. > > > > Use the BAD_MADT_GICC_ENTRY macro, which was specifically designed to > > overcome this issue. > > > > Signed-off-by: Julien Grall <julien.grall@arm.com> > > Signed-off-by: Andre Przywara <andre.przywara@arm.com> > > Signed-off-by: Julien Grall <jgrall@amazon.com> > > Reviewed-by: Stefano Stabellini <sstabellini@kernel.org> Actually it looks we need to do substitutions in a couple of other places: - xen/arch/arm/gic-v3.c:gicv3_make_hwdom_madt - xen/arch/arm/gic-v3.c:gic_acpi_get_madt_cpu_num - xen/arch/arm/gic.c:gic_get_hwdom_madt_size > > Changes in v2: > > - Patch added > > --- > > xen/arch/arm/acpi/boot.c | 2 +- > > xen/arch/arm/gic-v2.c | 5 +++-- > > xen/arch/arm/gic-v3.c | 2 +- > > 3 files changed, 5 insertions(+), 4 deletions(-) > > > > diff --git a/xen/arch/arm/acpi/boot.c b/xen/arch/arm/acpi/boot.c > > index 30e4bd1bc5a7..55c3e5cbc834 100644 > > --- a/xen/arch/arm/acpi/boot.c > > +++ b/xen/arch/arm/acpi/boot.c > > @@ -131,7 +131,7 @@ acpi_parse_gic_cpu_interface(struct acpi_subtable_header *header, > > struct acpi_madt_generic_interrupt *processor = > > container_of(header, struct acpi_madt_generic_interrupt, header); > > > > - if ( BAD_MADT_ENTRY(processor, end) ) > > + if ( BAD_MADT_GICC_ENTRY(processor, end) ) > > return -EINVAL; > > > > acpi_table_print_madt_entry(header); > > diff --git a/xen/arch/arm/gic-v2.c b/xen/arch/arm/gic-v2.c > > index 0f747538dbcd..0e5f23201974 100644 > > --- a/xen/arch/arm/gic-v2.c > > +++ b/xen/arch/arm/gic-v2.c > > @@ -1136,7 +1136,8 @@ static int gicv2_make_hwdom_madt(const struct domain *d, u32 offset) > > > > host_gicc = container_of(header, struct acpi_madt_generic_interrupt, > > header); > > - size = sizeof(struct acpi_madt_generic_interrupt); > > + > > + size = ACPI_MADT_GICC_LENGTH; > > /* Add Generic Interrupt */ > > for ( i = 0; i < d->max_vcpus; i++ ) > > { > > @@ -1165,7 +1166,7 @@ gic_acpi_parse_madt_cpu(struct acpi_subtable_header *header, > > struct acpi_madt_generic_interrupt *processor = > > container_of(header, struct acpi_madt_generic_interrupt, header); > > > > - if ( BAD_MADT_ENTRY(processor, end) ) > > + if ( BAD_MADT_GICC_ENTRY(processor, end) ) > > return -EINVAL; > > > > /* Read from APIC table and fill up the GIC variables */ > > diff --git a/xen/arch/arm/gic-v3.c b/xen/arch/arm/gic-v3.c > > index 0f6cbf6224e9..ce202402c0ed 100644 > > --- a/xen/arch/arm/gic-v3.c > > +++ b/xen/arch/arm/gic-v3.c > > @@ -1558,7 +1558,7 @@ gic_acpi_parse_madt_cpu(struct acpi_subtable_header *header, > > struct acpi_madt_generic_interrupt *processor = > > container_of(header, struct acpi_madt_generic_interrupt, header); > > > > - if ( BAD_MADT_ENTRY(processor, end) ) > > + if ( BAD_MADT_GICC_ENTRY(processor, end) ) > > return -EINVAL; > > > > /* Read from APIC table and fill up the GIC variables */ > > -- > > 2.17.1 > > >
Hi Stefano, I just realized the title says "gic-v2" when I also modified "gic-v3". I will update the title on the next version. On 24/10/2020 01:45, Stefano Stabellini wrote: > On Fri, 23 Oct 2020, Stefano Stabellini wrote: >> On Fri, 23 Oct 2020, Julien Grall wrote: >>> From: Julien Grall <julien.grall@arm.com> >>> >>> The length of the GICC structure in the MADT ACPI table differs between >>> version 5.1 and 6.0, although there are no other relevant differences. >>> >>> Use the BAD_MADT_GICC_ENTRY macro, which was specifically designed to >>> overcome this issue. >>> >>> Signed-off-by: Julien Grall <julien.grall@arm.com> >>> Signed-off-by: Andre Przywara <andre.przywara@arm.com> >>> Signed-off-by: Julien Grall <jgrall@amazon.com> >> >> Reviewed-by: Stefano Stabellini <sstabellini@kernel.org> > > Actually it looks we need to do substitutions in a couple of other places: > > - xen/arch/arm/gic-v3.c:gicv3_make_hwdom_madt > - xen/arch/arm/gic-v3.c:gic_acpi_get_madt_cpu_num > - xen/arch/arm/gic.c:gic_get_hwdom_madt_size I will update the 3 and resend the series. Cheers,
diff --git a/xen/arch/arm/acpi/boot.c b/xen/arch/arm/acpi/boot.c index 30e4bd1bc5a7..55c3e5cbc834 100644 --- a/xen/arch/arm/acpi/boot.c +++ b/xen/arch/arm/acpi/boot.c @@ -131,7 +131,7 @@ acpi_parse_gic_cpu_interface(struct acpi_subtable_header *header, struct acpi_madt_generic_interrupt *processor = container_of(header, struct acpi_madt_generic_interrupt, header); - if ( BAD_MADT_ENTRY(processor, end) ) + if ( BAD_MADT_GICC_ENTRY(processor, end) ) return -EINVAL; acpi_table_print_madt_entry(header); diff --git a/xen/arch/arm/gic-v2.c b/xen/arch/arm/gic-v2.c index 0f747538dbcd..0e5f23201974 100644 --- a/xen/arch/arm/gic-v2.c +++ b/xen/arch/arm/gic-v2.c @@ -1136,7 +1136,8 @@ static int gicv2_make_hwdom_madt(const struct domain *d, u32 offset) host_gicc = container_of(header, struct acpi_madt_generic_interrupt, header); - size = sizeof(struct acpi_madt_generic_interrupt); + + size = ACPI_MADT_GICC_LENGTH; /* Add Generic Interrupt */ for ( i = 0; i < d->max_vcpus; i++ ) { @@ -1165,7 +1166,7 @@ gic_acpi_parse_madt_cpu(struct acpi_subtable_header *header, struct acpi_madt_generic_interrupt *processor = container_of(header, struct acpi_madt_generic_interrupt, header); - if ( BAD_MADT_ENTRY(processor, end) ) + if ( BAD_MADT_GICC_ENTRY(processor, end) ) return -EINVAL; /* Read from APIC table and fill up the GIC variables */ diff --git a/xen/arch/arm/gic-v3.c b/xen/arch/arm/gic-v3.c index 0f6cbf6224e9..ce202402c0ed 100644 --- a/xen/arch/arm/gic-v3.c +++ b/xen/arch/arm/gic-v3.c @@ -1558,7 +1558,7 @@ gic_acpi_parse_madt_cpu(struct acpi_subtable_header *header, struct acpi_madt_generic_interrupt *processor = container_of(header, struct acpi_madt_generic_interrupt, header); - if ( BAD_MADT_ENTRY(processor, end) ) + if ( BAD_MADT_GICC_ENTRY(processor, end) ) return -EINVAL; /* Read from APIC table and fill up the GIC variables */