All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dan Carpenter <dan.carpenter@linaro.org>
To: Zhe Qiao <qiaozhe@iscas.ac.cn>
Cc: linux-acpi@vger.kernel.org
Subject: Re: [bug report] PCI/ACPI: Fix allocated memory release on error in pci_acpi_scan_root()
Date: Thu, 12 Jun 2025 10:34:44 +0300	[thread overview]
Message-ID: <aEqDFMl2cwrmA-Uj@stanley.mountain> (raw)
In-Reply-To: <CALhs5=1-QP04GEMUjMHgpCtAbUmW=zFpR=7B4KLuJ1wkT2JQmg@mail.gmail.com>

On Thu, Jun 12, 2025 at 01:12:43PM +0800, Zhe Qiao wrote:
> Hi Dan Carpenter,
> 
> On Wed, Jun 11, 2025 at 11:15 PM Dan Carpenter <dan.carpenter@linaro.org> wrote:
> >
> > Hello Zhe Qiao,
> >
> > Commit 631b2af2f357 ("PCI/ACPI: Fix allocated memory release on error
> > in pci_acpi_scan_root()") from Apr 30, 2025 (linux-next), leads to
> > the following Smatch static checker warning:
> >
> >         drivers/pci/pci-acpi.c:1712 pci_acpi_scan_root()
> >         error: double free of 'root_ops' (line 1711)
> >
> > drivers/pci/pci-acpi.c
> >     1667 struct pci_bus *pci_acpi_scan_root(struct acpi_pci_root *root)
> >     1668 {
> >     1669         struct acpi_pci_generic_root_info *ri;
> >     1670         struct pci_bus *bus, *child;
> >     1671         struct acpi_pci_root_ops *root_ops;
> >     1672         struct pci_host_bridge *host;
> >     1673
> >     1674         ri = kzalloc(sizeof(*ri), GFP_KERNEL);
> >     1675         if (!ri)
> >     1676                 return NULL;
> >     1677
> >     1678         root_ops = kzalloc(sizeof(*root_ops), GFP_KERNEL);
> >     1679         if (!root_ops)
> >     1680                 goto free_ri;
> >     1681
> >     1682         ri->cfg = pci_acpi_setup_ecam_mapping(root);
> >     1683         if (!ri->cfg)
> >     1684                 goto free_root_ops;
> >     1685
> >     1686         root_ops->release_info = pci_acpi_generic_release_info;
> >     1687         root_ops->prepare_resources = pci_acpi_root_prepare_resources;
> >     1688         root_ops->pci_ops = (struct pci_ops *)&ri->cfg->ops->pci_ops;
> >     1689         bus = acpi_pci_root_create(root, root_ops, &ri->common, ri->cfg);
> >     1690         if (!bus)
> >     1691                 goto free_cfg;
> >
> > The acpi_pci_root_create() function frees root_ops on error in
> > pci_acpi_generic_release_info().  I think there is only one error
> > path where it frees "ri->cfg".  I probably would advise you to re-write
> > the the error handling in acpi_pci_root_create().
> 
> Thanks, this is really an unexpected gain for me. I didn't notice that
> the memory
> release operation has been implemented in the pci_acpi_generic_release_info
> function. But I think it's a bit unclear in the code logic to release
> these memories
> in the pci_acpi_generic_release_info function. As you pointed out, I
> want to let the
> pci_acpi_generic_release_info function return directly, and put all the memory
> release operations into the error handling part of the
> pci_acpi_scan_root function.
> What do you think of this? If you have any better suggestions, please
> let me know.
> 

Either way is fine with me.  I understand why we tried to do the
free in acpi_pci_root_create() but that approached didn't free
"sysdata" reliably so it's not like we can just revert your commit.

If you take your approach you'll have to change pci_acpi_scan_root() as
well.

regards,
dan carpenter


      reply	other threads:[~2025-06-12  7:34 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-06-11 15:15 [bug report] PCI/ACPI: Fix allocated memory release on error in pci_acpi_scan_root() Dan Carpenter
2025-06-12  5:12 ` Zhe Qiao
2025-06-12  7:34   ` Dan Carpenter [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=aEqDFMl2cwrmA-Uj@stanley.mountain \
    --to=dan.carpenter@linaro.org \
    --cc=linux-acpi@vger.kernel.org \
    --cc=qiaozhe@iscas.ac.cn \
    /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.