* [PATCH 8/14 v3] PCI/ACPI: Check the return value of pcie_capability_read_*() [not found] <20200713175529.29715-1-refactormyself@gmail.com> @ 2020-07-13 17:55 ` Saheed O. Bolarinwa 2020-07-14 13:27 ` Rafael J. Wysocki 0 siblings, 1 reply; 2+ messages in thread From: Saheed O. Bolarinwa @ 2020-07-13 17:55 UTC (permalink / raw) To: skhan, linux-acpi, linux-pci, linux-kernel-mentees, linux-kernel Cc: Bolarinwa Olayemi Saheed From: Bolarinwa Olayemi Saheed <refactormyself@gmail.com> On failure pcie_capability_read_dword() sets it's last parameter, val to 0. However, with Patch 14/14, it is possible that val is set to ~0 on failure. This would introduce a bug because (x & x) == (~0 & x). This bug can be avoided if the return value of pcie_capability_read_word is checked to confirm success. Check the return value of pcie_capability_read_word() to ensure success. Suggested-by: Bjorn Helgaas <bjorn@helgaas.com> Signed-off-by: Bolarinwa Olayemi Saheed <refactormyself@gmail.com> --- drivers/pci/pci-acpi.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/drivers/pci/pci-acpi.c b/drivers/pci/pci-acpi.c index 7224b1e5f2a8..39eb816bc3b8 100644 --- a/drivers/pci/pci-acpi.c +++ b/drivers/pci/pci-acpi.c @@ -248,12 +248,13 @@ static bool pcie_root_rcb_set(struct pci_dev *dev) { struct pci_dev *rp = pcie_find_root_port(dev); u16 lnkctl; + int ret; if (!rp) return false; - pcie_capability_read_word(rp, PCI_EXP_LNKCTL, &lnkctl); - if (lnkctl & PCI_EXP_LNKCTL_RCB) + ret = pcie_capability_read_word(rp, PCI_EXP_LNKCTL, &lnkctl); + if (!ret && (lnkctl & PCI_EXP_LNKCTL_RCB)) return true; return false; @@ -792,12 +793,13 @@ bool pciehp_is_native(struct pci_dev *bridge) { const struct pci_host_bridge *host; u32 slot_cap; + int ret; if (!IS_ENABLED(CONFIG_HOTPLUG_PCI_PCIE)) return false; - pcie_capability_read_dword(bridge, PCI_EXP_SLTCAP, &slot_cap); - if (!(slot_cap & PCI_EXP_SLTCAP_HPC)) + ret = pcie_capability_read_dword(bridge, PCI_EXP_SLTCAP, &slot_cap); + if (ret || !(slot_cap & PCI_EXP_SLTCAP_HPC)) return false; if (pcie_ports_native) -- 2.18.2 ^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH 8/14 v3] PCI/ACPI: Check the return value of pcie_capability_read_*() 2020-07-13 17:55 ` [PATCH 8/14 v3] PCI/ACPI: Check the return value of pcie_capability_read_*() Saheed O. Bolarinwa @ 2020-07-14 13:27 ` Rafael J. Wysocki 0 siblings, 0 replies; 2+ messages in thread From: Rafael J. Wysocki @ 2020-07-14 13:27 UTC (permalink / raw) To: Saheed O. Bolarinwa Cc: Shuah Khan, ACPI Devel Maling List, Linux PCI, linux-kernel-mentees, Linux Kernel Mailing List On Mon, Jul 13, 2020 at 6:55 PM Saheed O. Bolarinwa <refactormyself@gmail.com> wrote: > > From: Bolarinwa Olayemi Saheed <refactormyself@gmail.com> > > On failure pcie_capability_read_dword() sets it's last parameter, > val to 0. > However, with Patch 14/14, it is possible that val is set to ~0 on > failure. This would introduce a bug because (x & x) == (~0 & x). > > This bug can be avoided if the return value of pcie_capability_read_word > is checked to confirm success. > > Check the return value of pcie_capability_read_word() to ensure success. > > Suggested-by: Bjorn Helgaas <bjorn@helgaas.com> > Signed-off-by: Bolarinwa Olayemi Saheed <refactormyself@gmail.com> Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> > --- > drivers/pci/pci-acpi.c | 10 ++++++---- > 1 file changed, 6 insertions(+), 4 deletions(-) > > diff --git a/drivers/pci/pci-acpi.c b/drivers/pci/pci-acpi.c > index 7224b1e5f2a8..39eb816bc3b8 100644 > --- a/drivers/pci/pci-acpi.c > +++ b/drivers/pci/pci-acpi.c > @@ -248,12 +248,13 @@ static bool pcie_root_rcb_set(struct pci_dev *dev) > { > struct pci_dev *rp = pcie_find_root_port(dev); > u16 lnkctl; > + int ret; > > if (!rp) > return false; > > - pcie_capability_read_word(rp, PCI_EXP_LNKCTL, &lnkctl); > - if (lnkctl & PCI_EXP_LNKCTL_RCB) > + ret = pcie_capability_read_word(rp, PCI_EXP_LNKCTL, &lnkctl); > + if (!ret && (lnkctl & PCI_EXP_LNKCTL_RCB)) > return true; > > return false; > @@ -792,12 +793,13 @@ bool pciehp_is_native(struct pci_dev *bridge) > { > const struct pci_host_bridge *host; > u32 slot_cap; > + int ret; > > if (!IS_ENABLED(CONFIG_HOTPLUG_PCI_PCIE)) > return false; > > - pcie_capability_read_dword(bridge, PCI_EXP_SLTCAP, &slot_cap); > - if (!(slot_cap & PCI_EXP_SLTCAP_HPC)) > + ret = pcie_capability_read_dword(bridge, PCI_EXP_SLTCAP, &slot_cap); > + if (ret || !(slot_cap & PCI_EXP_SLTCAP_HPC)) > return false; > > if (pcie_ports_native) > -- > 2.18.2 > ^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-07-14 13:27 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20200713175529.29715-1-refactormyself@gmail.com>
2020-07-13 17:55 ` [PATCH 8/14 v3] PCI/ACPI: Check the return value of pcie_capability_read_*() Saheed O. Bolarinwa
2020-07-14 13:27 ` Rafael J. Wysocki
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox