Re: [PATCH] PCI/ACPI: Fix double free bug in pci_acpi_scan_root() function
From: Rafael J. Wysocki
Date: Mon Jun 16 2025 - 07:15:27 EST
On Mon, Jun 16, 2025 at 10:44 AM Zhe Qiao <qiaozhe@xxxxxxxxxxx> wrote:
>
> Fix the double free bug introduced in the patch "PCI/ACPI: Fix
> allocated memory release on error in pci_acpi_scan_root()".
More details, please.
What's the bug and why is this the best fix?
> Fixes: 631b2af2f357 ("PCI/ACPI: Fix allocated memory release on error in pci_acpi_scan_root()")
> Signed-off-by: Zhe Qiao <qiaozhe@xxxxxxxxxxx>
> ---
> drivers/pci/pci-acpi.c | 10 +---------
> 1 file changed, 1 insertion(+), 9 deletions(-)
>
> diff --git a/drivers/pci/pci-acpi.c b/drivers/pci/pci-acpi.c
> index b78e0e417324..49b72596ae37 100644
> --- a/drivers/pci/pci-acpi.c
> +++ b/drivers/pci/pci-acpi.c
> @@ -1653,15 +1653,7 @@ pci_acpi_setup_ecam_mapping(struct acpi_pci_root *root)
> }
>
> /* release_info: free resources allocated by init_info */
> -static void pci_acpi_generic_release_info(struct acpi_pci_root_info *ci)
> -{
> - struct acpi_pci_generic_root_info *ri;
> -
> - ri = container_of(ci, struct acpi_pci_generic_root_info, common);
> - pci_ecam_free(ri->cfg);
> - kfree(ci->ops);
> - kfree(ri);
> -}
> +static void pci_acpi_generic_release_info(struct acpi_pci_root_info *ci) {}
Why don't you add a check for info->ops->release_info to
__acpi_pci_root_release_info() and drop this altogether?
> /* Interface called from ACPI code to setup PCI host controller */
> struct pci_bus *pci_acpi_scan_root(struct acpi_pci_root *root)
> --