]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
PCI/PTM: Fix pcie_ptm_create_debugfs() memory leak
authorAadityarangan Shridhar Iyengar <adiyenga@cisco.com>
Sun, 11 Jan 2026 16:36:50 +0000 (22:06 +0530)
committerBjorn Helgaas <bhelgaas@google.com>
Wed, 14 Jan 2026 16:38:15 +0000 (10:38 -0600)
In pcie_ptm_create_debugfs(), if devm_kasprintf() fails after successfully
allocating ptm_debugfs with kzalloc(), the function returns without freeing
the allocated memory, resulting in a memory leak.

Free ptm_debugfs before returning in the devm_kasprintf() error path and in
pcie_ptm_destroy_debugfs().

Fixes: 132833405e61 ("PCI: Add debugfs support for exposing PTM context")
Signed-off-by: Aadityarangan Shridhar Iyengar <adiyenga@cisco.com>
[bhelgaas: squash additional fix from Mani:
https://lore.kernel.org/r/pdp4xc4d5ee3e547mmdro5riui3mclduqdl7j6iclfbozo2a4c@7m3qdm6yrhuv]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Manivannan Sadhasivam <mani@kernel.org>
Link: https://patch.msgid.link/20260111163650.33168-1-adiyenga@cisco.com
drivers/pci/pcie/ptm.c

index ed0f9691e7d16e6a47928c14b81a137d12503d0c..c7c61869bc9cf8b32f7d3901461633397aca34a8 100644 (file)
@@ -542,8 +542,10 @@ struct pci_ptm_debugfs *pcie_ptm_create_debugfs(struct device *dev, void *pdata,
                return NULL;
 
        dirname = devm_kasprintf(dev, GFP_KERNEL, "pcie_ptm_%s", dev_name(dev));
-       if (!dirname)
+       if (!dirname) {
+               kfree(ptm_debugfs);
                return NULL;
+       }
 
        ptm_debugfs->debugfs = debugfs_create_dir(dirname, NULL);
        ptm_debugfs->pdata = pdata;
@@ -574,6 +576,7 @@ void pcie_ptm_destroy_debugfs(struct pci_ptm_debugfs *ptm_debugfs)
 
        mutex_destroy(&ptm_debugfs->lock);
        debugfs_remove_recursive(ptm_debugfs->debugfs);
+       kfree(ptm_debugfs);
 }
 EXPORT_SYMBOL_GPL(pcie_ptm_destroy_debugfs);
 #endif