* [PATCH 1/2] PCI: of: Fix memory leak when of_changeset_create_node() failed
@ 2023-09-15 18:08 Lizhi Hou
2023-09-15 18:08 ` [PATCH 2/2] PCI: of_property: Fix uninitialized variable when of_irq_parse_raw() failed Lizhi Hou
2023-09-28 7:26 ` [PATCH 1/2] PCI: of: Fix memory leak when of_changeset_create_node() failed Herve Codina
0 siblings, 2 replies; 4+ messages in thread
From: Lizhi Hou @ 2023-09-15 18:08 UTC (permalink / raw)
To: linux-pci, devicetree, linux-kernel, herve.codina,
Jonathan.Cameron
Cc: Lizhi Hou, bhelgaas, robh
Destroy and free cset when failure happens.
Fixes: 407d1a51921e ("PCI: Create device tree node for bridge")
Reported-by: Herve Codina <herve.codina@bootlin.com>
Closes: https://lore.kernel.org/all/20230911171319.495bb837@bootlin.com/
Signed-off-by: Lizhi Hou <lizhi.hou@amd.com>
---
drivers/pci/of.c | 19 +++++++++++--------
1 file changed, 11 insertions(+), 8 deletions(-)
diff --git a/drivers/pci/of.c b/drivers/pci/of.c
index 2af64bcb7da3..498b5cae8bca 100644
--- a/drivers/pci/of.c
+++ b/drivers/pci/of.c
@@ -657,30 +657,33 @@ void of_pci_make_dev_node(struct pci_dev *pdev)
cset = kmalloc(sizeof(*cset), GFP_KERNEL);
if (!cset)
- goto failed;
+ goto failed_alloc_cset;
of_changeset_init(cset);
np = of_changeset_create_node(cset, ppnode, name);
if (!np)
- goto failed;
- np->data = cset;
+ goto failed_create_node;
ret = of_pci_add_properties(pdev, cset, np);
if (ret)
- goto failed;
+ goto failed_add_prop;
ret = of_changeset_apply(cset);
if (ret)
- goto failed;
+ goto failed_add_prop;
+ np->data = cset;
pdev->dev.of_node = np;
kfree(name);
return;
-failed:
- if (np)
- of_node_put(np);
+failed_add_prop:
+ of_node_put(np);
+failed_create_node:
+ of_changeset_destroy(cset);
+ kfree(cset);
+failed_alloc_cset:
kfree(name);
}
#endif
--
2.34.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] PCI: of_property: Fix uninitialized variable when of_irq_parse_raw() failed
2023-09-15 18:08 [PATCH 1/2] PCI: of: Fix memory leak when of_changeset_create_node() failed Lizhi Hou
@ 2023-09-15 18:08 ` Lizhi Hou
2023-09-28 7:29 ` Herve Codina
2023-09-28 7:26 ` [PATCH 1/2] PCI: of: Fix memory leak when of_changeset_create_node() failed Herve Codina
1 sibling, 1 reply; 4+ messages in thread
From: Lizhi Hou @ 2023-09-15 18:08 UTC (permalink / raw)
To: linux-pci, devicetree, linux-kernel, herve.codina,
Jonathan.Cameron
Cc: Lizhi Hou, bhelgaas, robh
In function of_pci_prop_intr_map(), addr_sz[i] will be uninitialized if
of_irq_parse_raw() returns failure. Add addr_sz array initialization. And
when parsing irq failed, skip generating interrupt-map pair for the pin.
Fixes: 407d1a51921e ("PCI: Create device tree node for bridge")
Reported-by: Jonathan Cameron <Jonathan.Cameron@Huawei.com>
Closes: https://lore.kernel.org/all/20230911154856.000076c3@Huawei.com/
Signed-off-by: Lizhi Hou <lizhi.hou@amd.com>
---
drivers/pci/of_property.c | 25 ++++++++++++++++++-------
1 file changed, 18 insertions(+), 7 deletions(-)
diff --git a/drivers/pci/of_property.c b/drivers/pci/of_property.c
index 710ec35ba4a1..c2c7334152bc 100644
--- a/drivers/pci/of_property.c
+++ b/drivers/pci/of_property.c
@@ -186,8 +186,8 @@ static int of_pci_prop_interrupts(struct pci_dev *pdev,
static int of_pci_prop_intr_map(struct pci_dev *pdev, struct of_changeset *ocs,
struct device_node *np)
{
+ u32 i, addr_sz[OF_PCI_MAX_INT_PIN] = { 0 }, map_sz = 0;
struct of_phandle_args out_irq[OF_PCI_MAX_INT_PIN];
- u32 i, addr_sz[OF_PCI_MAX_INT_PIN], map_sz = 0;
__be32 laddr[OF_PCI_ADDRESS_CELLS] = { 0 };
u32 int_map_mask[] = { 0xffff00, 0, 0, 7 };
struct device_node *pnode;
@@ -213,33 +213,44 @@ static int of_pci_prop_intr_map(struct pci_dev *pdev, struct of_changeset *ocs,
out_irq[i].args[0] = pin;
ret = of_irq_parse_raw(laddr, &out_irq[i]);
if (ret) {
- pci_err(pdev, "parse irq %d failed, ret %d", pin, ret);
+ out_irq[i].np = NULL;
+ pci_dbg(pdev, "parse irq %d failed, ret %d", pin, ret);
continue;
}
- ret = of_property_read_u32(out_irq[i].np, "#address-cells",
- &addr_sz[i]);
- if (ret)
- addr_sz[i] = 0;
+ of_property_read_u32(out_irq[i].np, "#address-cells",
+ &addr_sz[i]);
}
list_for_each_entry(child, &pdev->subordinate->devices, bus_list) {
for (pin = 1; pin <= OF_PCI_MAX_INT_PIN; pin++) {
i = pci_swizzle_interrupt_pin(child, pin) - 1;
+ if (!out_irq[i].np)
+ continue;
map_sz += 5 + addr_sz[i] + out_irq[i].args_count;
}
}
+ /*
+ * Parsing interrupt failed for all pins. In this case, it does not
+ * need to generate interrupt-map property.
+ */
+ if (!map_sz)
+ return 0;
+
int_map = kcalloc(map_sz, sizeof(u32), GFP_KERNEL);
mapp = int_map;
list_for_each_entry(child, &pdev->subordinate->devices, bus_list) {
for (pin = 1; pin <= OF_PCI_MAX_INT_PIN; pin++) {
+ i = pci_swizzle_interrupt_pin(child, pin) - 1;
+ if (!out_irq[i].np)
+ continue;
+
*mapp = (child->bus->number << 16) |
(child->devfn << 8);
mapp += OF_PCI_ADDRESS_CELLS;
*mapp = pin;
mapp++;
- i = pci_swizzle_interrupt_pin(child, pin) - 1;
*mapp = out_irq[i].np->phandle;
mapp++;
if (addr_sz[i]) {
--
2.34.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] PCI: of: Fix memory leak when of_changeset_create_node() failed
2023-09-15 18:08 [PATCH 1/2] PCI: of: Fix memory leak when of_changeset_create_node() failed Lizhi Hou
2023-09-15 18:08 ` [PATCH 2/2] PCI: of_property: Fix uninitialized variable when of_irq_parse_raw() failed Lizhi Hou
@ 2023-09-28 7:26 ` Herve Codina
1 sibling, 0 replies; 4+ messages in thread
From: Herve Codina @ 2023-09-28 7:26 UTC (permalink / raw)
To: Lizhi Hou
Cc: linux-pci, devicetree, linux-kernel, Jonathan.Cameron, bhelgaas,
robh
Hi Lizhi,
On Fri, 15 Sep 2023 11:08:06 -0700
Lizhi Hou <lizhi.hou@amd.com> wrote:
> Destroy and free cset when failure happens.
>
> Fixes: 407d1a51921e ("PCI: Create device tree node for bridge")
> Reported-by: Herve Codina <herve.codina@bootlin.com>
> Closes: https://lore.kernel.org/all/20230911171319.495bb837@bootlin.com/
> Signed-off-by: Lizhi Hou <lizhi.hou@amd.com>
> ---
> drivers/pci/of.c | 19 +++++++++++--------
> 1 file changed, 11 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/pci/of.c b/drivers/pci/of.c
> index 2af64bcb7da3..498b5cae8bca 100644
> --- a/drivers/pci/of.c
> +++ b/drivers/pci/of.c
> @@ -657,30 +657,33 @@ void of_pci_make_dev_node(struct pci_dev *pdev)
>
> cset = kmalloc(sizeof(*cset), GFP_KERNEL);
> if (!cset)
> - goto failed;
> + goto failed_alloc_cset;
Usually goto labels indicate what the goto does instead of where we come
from.
https://elixir.bootlin.com/linux/v6.5/source/Documentation/process/coding-style.rst#L536
In this case, it should be "goto failed_free_name".
> of_changeset_init(cset);
>
> np = of_changeset_create_node(cset, ppnode, name);
> if (!np)
> - goto failed;
> - np->data = cset;
> + goto failed_create_node;
same comment
>
> ret = of_pci_add_properties(pdev, cset, np);
> if (ret)
> - goto failed;
> + goto failed_add_prop;
same comment
>
> ret = of_changeset_apply(cset);
> if (ret)
> - goto failed;
> + goto failed_add_prop;
same comment
>
> + np->data = cset;
> pdev->dev.of_node = np;
> kfree(name);
>
> return;
>
> -failed:
> - if (np)
> - of_node_put(np);
> +failed_add_prop:
> + of_node_put(np);
> +failed_create_node:
> + of_changeset_destroy(cset);
> + kfree(cset);
> +failed_alloc_cset:
> kfree(name);
> }
> #endif
Best regards,
Hervé
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 2/2] PCI: of_property: Fix uninitialized variable when of_irq_parse_raw() failed
2023-09-15 18:08 ` [PATCH 2/2] PCI: of_property: Fix uninitialized variable when of_irq_parse_raw() failed Lizhi Hou
@ 2023-09-28 7:29 ` Herve Codina
0 siblings, 0 replies; 4+ messages in thread
From: Herve Codina @ 2023-09-28 7:29 UTC (permalink / raw)
To: Lizhi Hou
Cc: linux-pci, devicetree, linux-kernel, Jonathan.Cameron, bhelgaas,
robh
Hi Lizhi,
On Fri, 15 Sep 2023 11:08:07 -0700
Lizhi Hou <lizhi.hou@amd.com> wrote:
> In function of_pci_prop_intr_map(), addr_sz[i] will be uninitialized if
> of_irq_parse_raw() returns failure. Add addr_sz array initialization. And
> when parsing irq failed, skip generating interrupt-map pair for the pin.
>
> Fixes: 407d1a51921e ("PCI: Create device tree node for bridge")
> Reported-by: Jonathan Cameron <Jonathan.Cameron@Huawei.com>
> Closes: https://lore.kernel.org/all/20230911154856.000076c3@Huawei.com/
> Signed-off-by: Lizhi Hou <lizhi.hou@amd.com>
> ---
> drivers/pci/of_property.c | 25 ++++++++++++++++++-------
> 1 file changed, 18 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/pci/of_property.c b/drivers/pci/of_property.c
> index 710ec35ba4a1..c2c7334152bc 100644
> --- a/drivers/pci/of_property.c
> +++ b/drivers/pci/of_property.c
> @@ -186,8 +186,8 @@ static int of_pci_prop_interrupts(struct pci_dev *pdev,
> static int of_pci_prop_intr_map(struct pci_dev *pdev, struct of_changeset *ocs,
> struct device_node *np)
> {
> + u32 i, addr_sz[OF_PCI_MAX_INT_PIN] = { 0 }, map_sz = 0;
> struct of_phandle_args out_irq[OF_PCI_MAX_INT_PIN];
> - u32 i, addr_sz[OF_PCI_MAX_INT_PIN], map_sz = 0;
> __be32 laddr[OF_PCI_ADDRESS_CELLS] = { 0 };
> u32 int_map_mask[] = { 0xffff00, 0, 0, 7 };
> struct device_node *pnode;
> @@ -213,33 +213,44 @@ static int of_pci_prop_intr_map(struct pci_dev *pdev, struct of_changeset *ocs,
> out_irq[i].args[0] = pin;
> ret = of_irq_parse_raw(laddr, &out_irq[i]);
> if (ret) {
> - pci_err(pdev, "parse irq %d failed, ret %d", pin, ret);
> + out_irq[i].np = NULL;
> + pci_dbg(pdev, "parse irq %d failed, ret %d", pin, ret);
> continue;
> }
> - ret = of_property_read_u32(out_irq[i].np, "#address-cells",
> - &addr_sz[i]);
> - if (ret)
> - addr_sz[i] = 0;
> + of_property_read_u32(out_irq[i].np, "#address-cells",
> + &addr_sz[i]);
> }
>
> list_for_each_entry(child, &pdev->subordinate->devices, bus_list) {
> for (pin = 1; pin <= OF_PCI_MAX_INT_PIN; pin++) {
> i = pci_swizzle_interrupt_pin(child, pin) - 1;
> + if (!out_irq[i].np)
> + continue;
> map_sz += 5 + addr_sz[i] + out_irq[i].args_count;
> }
> }
>
> + /*
> + * Parsing interrupt failed for all pins. In this case, it does not
> + * need to generate interrupt-map property.
> + */
> + if (!map_sz)
> + return 0;
> +
> int_map = kcalloc(map_sz, sizeof(u32), GFP_KERNEL);
> mapp = int_map;
>
> list_for_each_entry(child, &pdev->subordinate->devices, bus_list) {
> for (pin = 1; pin <= OF_PCI_MAX_INT_PIN; pin++) {
> + i = pci_swizzle_interrupt_pin(child, pin) - 1;
> + if (!out_irq[i].np)
> + continue;
> +
> *mapp = (child->bus->number << 16) |
> (child->devfn << 8);
> mapp += OF_PCI_ADDRESS_CELLS;
> *mapp = pin;
> mapp++;
> - i = pci_swizzle_interrupt_pin(child, pin) - 1;
> *mapp = out_irq[i].np->phandle;
> mapp++;
> if (addr_sz[i]) {
Reviewed-by: Herve Codina <herve.codina@bootlin.com>
Best regards,
Hervé
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-09-28 7:30 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-15 18:08 [PATCH 1/2] PCI: of: Fix memory leak when of_changeset_create_node() failed Lizhi Hou
2023-09-15 18:08 ` [PATCH 2/2] PCI: of_property: Fix uninitialized variable when of_irq_parse_raw() failed Lizhi Hou
2023-09-28 7:29 ` Herve Codina
2023-09-28 7:26 ` [PATCH 1/2] PCI: of: Fix memory leak when of_changeset_create_node() failed Herve Codina
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).