* [PATCH] PCI/ASPM: Add missing NULL check for link in sysfs show/store callbacks
@ 2026-07-27 7:29 ZhaoJinming
2026-07-27 10:13 ` Lukas Wunner
0 siblings, 1 reply; 2+ messages in thread
From: ZhaoJinming @ 2026-07-27 7:29 UTC (permalink / raw)
To: Bjorn Helgaas, linux-pci
Cc: linux-kernel, Lukas Wunner, Manivannan Sadhasivam, Dragan Simic,
Shawn Lin, Kees Cook, Krishna Chaitanya Chundru, ZhaoJinming
The aspm_attr_show_common(), aspm_attr_store_common(), clkpm_show()
and clkpm_store() sysfs callbacks call pcie_aspm_get_link() without
checking the return value. A NULL return would indicate the device is
not PCIe, has no upstream bridge, or the link state has not been
initialized.
While the aspm_ctrl_attrs_are_visible() is_visible callback already
hides these attributes when link is NULL, add the NULL check for
defense in depth and consistency with other callers of
pcie_aspm_get_link() in the same file (__pci_disable_link_state,
__pci_enable_link_state, pcie_aspm_enabled).
Signed-off-by: ZhaoJinming <zhaojinming@uniontech.com>
---
drivers/pci/pcie/aspm.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/drivers/pci/pcie/aspm.c b/drivers/pci/pcie/aspm.c
index 172783e7f519..108d151a786e 100644
--- a/drivers/pci/pcie/aspm.c
+++ b/drivers/pci/pcie/aspm.c
@@ -1654,6 +1654,9 @@ static ssize_t aspm_attr_show_common(struct device *dev,
struct pci_dev *pdev = to_pci_dev(dev);
struct pcie_link_state *link = pcie_aspm_get_link(pdev);
+ if (!link)
+ return 0;
+
return sysfs_emit(buf, "%d\n", (link->aspm_enabled & state) ? 1 : 0);
}
@@ -1665,6 +1668,9 @@ static ssize_t aspm_attr_store_common(struct device *dev,
struct pcie_link_state *link = pcie_aspm_get_link(pdev);
bool state_enable;
+ if (!link)
+ return -ENODEV;
+
if (kstrtobool(buf, &state_enable) < 0)
return -EINVAL;
@@ -1713,6 +1719,9 @@ static ssize_t clkpm_show(struct device *dev,
struct pci_dev *pdev = to_pci_dev(dev);
struct pcie_link_state *link = pcie_aspm_get_link(pdev);
+ if (!link)
+ return 0;
+
return sysfs_emit(buf, "%d\n", link->clkpm_enabled);
}
@@ -1724,6 +1733,9 @@ static ssize_t clkpm_store(struct device *dev,
struct pcie_link_state *link = pcie_aspm_get_link(pdev);
bool state_enable;
+ if (!link)
+ return -ENODEV;
+
if (kstrtobool(buf, &state_enable) < 0)
return -EINVAL;
--
2.20.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] PCI/ASPM: Add missing NULL check for link in sysfs show/store callbacks
2026-07-27 7:29 [PATCH] PCI/ASPM: Add missing NULL check for link in sysfs show/store callbacks ZhaoJinming
@ 2026-07-27 10:13 ` Lukas Wunner
0 siblings, 0 replies; 2+ messages in thread
From: Lukas Wunner @ 2026-07-27 10:13 UTC (permalink / raw)
To: ZhaoJinming
Cc: Bjorn Helgaas, linux-pci, linux-kernel, Manivannan Sadhasivam,
Dragan Simic, Shawn Lin, Kees Cook, Krishna Chaitanya Chundru
On Mon, Jul 27, 2026 at 03:29:15PM +0800, ZhaoJinming wrote:
> The aspm_attr_show_common(), aspm_attr_store_common(), clkpm_show()
> and clkpm_store() sysfs callbacks call pcie_aspm_get_link() without
> checking the return value. A NULL return would indicate the device is
> not PCIe, has no upstream bridge, or the link state has not been
> initialized.
>
> While the aspm_ctrl_attrs_are_visible() is_visible callback already
> hides these attributes when link is NULL, add the NULL check for
> defense in depth and consistency with other callers of
> pcie_aspm_get_link() in the same file (__pci_disable_link_state,
> __pci_enable_link_state, pcie_aspm_enabled).
Well, if we don't need the checks because the ->is_visible() callback
already hides the attributes, then we shouldn't add them.
Otherwise it's quite possible that someone else comes along and deletes
the checks again because they're superfluous.
Thanks,
Lukas
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-07-27 10:14 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-27 7:29 [PATCH] PCI/ASPM: Add missing NULL check for link in sysfs show/store callbacks ZhaoJinming
2026-07-27 10:13 ` Lukas Wunner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox