提交 34a52f36 编写于 作者: D Dan Carpenter 提交者: David S. Miller

stmmac: unwind properly in stmmac_dvr_probe()

The original code had a several problems:
*) It had potential null dereferences of "priv" and "res".
*) It released the memory region before it was aquired.
*) It didn't free "ndev" after it was allocated.
*) It didn't call unregister_netdev() after calling stmmac_probe().
Signed-off-by: NDan Carpenter <error27@gmail.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 4b97f8e1
...@@ -1647,10 +1647,8 @@ static int stmmac_dvr_probe(struct platform_device *pdev) ...@@ -1647,10 +1647,8 @@ static int stmmac_dvr_probe(struct platform_device *pdev)
pr_info("STMMAC driver:\n\tplatform registration... "); pr_info("STMMAC driver:\n\tplatform registration... ");
res = platform_get_resource(pdev, IORESOURCE_MEM, 0); res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
if (!res) { if (!res)
ret = -ENODEV; return -ENODEV;
goto out;
}
pr_info("\tdone!\n"); pr_info("\tdone!\n");
if (!request_mem_region(res->start, resource_size(res), if (!request_mem_region(res->start, resource_size(res),
...@@ -1658,22 +1656,21 @@ static int stmmac_dvr_probe(struct platform_device *pdev) ...@@ -1658,22 +1656,21 @@ static int stmmac_dvr_probe(struct platform_device *pdev)
pr_err("%s: ERROR: memory allocation failed" pr_err("%s: ERROR: memory allocation failed"
"cannot get the I/O addr 0x%x\n", "cannot get the I/O addr 0x%x\n",
__func__, (unsigned int)res->start); __func__, (unsigned int)res->start);
ret = -EBUSY; return -EBUSY;
goto out;
} }
addr = ioremap(res->start, resource_size(res)); addr = ioremap(res->start, resource_size(res));
if (!addr) { if (!addr) {
pr_err("%s: ERROR: memory mapping failed\n", __func__); pr_err("%s: ERROR: memory mapping failed\n", __func__);
ret = -ENOMEM; ret = -ENOMEM;
goto out; goto out_release_region;
} }
ndev = alloc_etherdev(sizeof(struct stmmac_priv)); ndev = alloc_etherdev(sizeof(struct stmmac_priv));
if (!ndev) { if (!ndev) {
pr_err("%s: ERROR: allocating the device\n", __func__); pr_err("%s: ERROR: allocating the device\n", __func__);
ret = -ENOMEM; ret = -ENOMEM;
goto out; goto out_unmap;
} }
SET_NETDEV_DEV(ndev, &pdev->dev); SET_NETDEV_DEV(ndev, &pdev->dev);
...@@ -1683,8 +1680,8 @@ static int stmmac_dvr_probe(struct platform_device *pdev) ...@@ -1683,8 +1680,8 @@ static int stmmac_dvr_probe(struct platform_device *pdev)
if (ndev->irq == -ENXIO) { if (ndev->irq == -ENXIO) {
pr_err("%s: ERROR: MAC IRQ configuration " pr_err("%s: ERROR: MAC IRQ configuration "
"information not found\n", __func__); "information not found\n", __func__);
ret = -ENODEV; ret = -ENXIO;
goto out; goto out_free_ndev;
} }
priv = netdev_priv(ndev); priv = netdev_priv(ndev);
...@@ -1711,18 +1708,18 @@ static int stmmac_dvr_probe(struct platform_device *pdev) ...@@ -1711,18 +1708,18 @@ static int stmmac_dvr_probe(struct platform_device *pdev)
if (priv->plat->init) { if (priv->plat->init) {
ret = priv->plat->init(pdev); ret = priv->plat->init(pdev);
if (unlikely(ret)) if (unlikely(ret))
goto out; goto out_free_ndev;
} }
/* MAC HW revice detection */ /* MAC HW revice detection */
ret = stmmac_mac_device_setup(ndev); ret = stmmac_mac_device_setup(ndev);
if (ret < 0) if (ret < 0)
goto out; goto out_plat_exit;
/* Network Device Registration */ /* Network Device Registration */
ret = stmmac_probe(ndev); ret = stmmac_probe(ndev);
if (ret < 0) if (ret < 0)
goto out; goto out_plat_exit;
/* associate a PHY - it is provided by another platform bus */ /* associate a PHY - it is provided by another platform bus */
if (!driver_for_each_device if (!driver_for_each_device
...@@ -1730,7 +1727,7 @@ static int stmmac_dvr_probe(struct platform_device *pdev) ...@@ -1730,7 +1727,7 @@ static int stmmac_dvr_probe(struct platform_device *pdev)
stmmac_associate_phy)) { stmmac_associate_phy)) {
pr_err("No PHY device is associated with this MAC!\n"); pr_err("No PHY device is associated with this MAC!\n");
ret = -ENODEV; ret = -ENODEV;
goto out; goto out_unregister;
} }
pr_info("\t%s - (dev. name: %s - id: %d, IRQ #%d\n" pr_info("\t%s - (dev. name: %s - id: %d, IRQ #%d\n"
...@@ -1741,19 +1738,22 @@ static int stmmac_dvr_probe(struct platform_device *pdev) ...@@ -1741,19 +1738,22 @@ static int stmmac_dvr_probe(struct platform_device *pdev)
pr_debug("\tMDIO bus (id: %d)...", priv->plat->bus_id); pr_debug("\tMDIO bus (id: %d)...", priv->plat->bus_id);
ret = stmmac_mdio_register(ndev); ret = stmmac_mdio_register(ndev);
if (ret < 0) if (ret < 0)
goto out; goto out_unregister;
pr_debug("registered!\n"); pr_debug("registered!\n");
return 0;
out: out_unregister:
if (ret < 0) { unregister_netdev(ndev);
if (priv->plat->exit) out_plat_exit:
priv->plat->exit(pdev); if (priv->plat->exit)
priv->plat->exit(pdev);
platform_set_drvdata(pdev, NULL); out_free_ndev:
release_mem_region(res->start, resource_size(res)); free_netdev(ndev);
if (addr != NULL) platform_set_drvdata(pdev, NULL);
iounmap(addr); out_unmap:
} iounmap(addr);
out_release_region:
release_mem_region(res->start, resource_size(res));
return ret; return ret;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册