* [PATCH] net: dsa: loop: Check for memory allocation failure
@ 2017-05-06 5:29 Christophe JAILLET
2017-05-06 14:45 ` Andrew Lunn
` (3 more replies)
0 siblings, 4 replies; 14+ messages in thread
From: Christophe JAILLET @ 2017-05-06 5:29 UTC (permalink / raw)
To: andrew, vivien.didelot, f.fainelli
Cc: netdev, linux-kernel, kernel-janitors, Christophe JAILLET
If 'devm_kzalloc' fails, a NULL pointer will be dereferenced.
Return -ENOMEM instead, as done for some other memory allocation just a
few lines above.
Fixes: 98cd1552ea27 ("net: dsa: Mock-up driver")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
---
drivers/net/dsa/dsa_loop.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/drivers/net/dsa/dsa_loop.c b/drivers/net/dsa/dsa_loop.c
index f0fc4de4fc9a..a19e1781e9bb 100644
--- a/drivers/net/dsa/dsa_loop.c
+++ b/drivers/net/dsa/dsa_loop.c
@@ -256,6 +256,9 @@ static int dsa_loop_drv_probe(struct mdio_device *mdiodev)
return -ENOMEM;
ps = devm_kzalloc(&mdiodev->dev, sizeof(*ps), GFP_KERNEL);
+ if (!ps)
+ return -ENOMEM;
+
ps->netdev = dev_get_by_name(&init_net, pdata->netdev);
if (!ps->netdev)
return -EPROBE_DEFER;
--
2.11.0
^ permalink raw reply related [flat|nested] 14+ messages in thread* Re: [PATCH] net: dsa: loop: Check for memory allocation failure 2017-05-06 5:29 [PATCH] net: dsa: loop: Check for memory allocation failure Christophe JAILLET @ 2017-05-06 14:45 ` Andrew Lunn 2017-05-07 23:22 ` Florian Fainelli ` (2 subsequent siblings) 3 siblings, 0 replies; 14+ messages in thread From: Andrew Lunn @ 2017-05-06 14:45 UTC (permalink / raw) To: Christophe JAILLET Cc: vivien.didelot, f.fainelli, netdev, linux-kernel, kernel-janitors On Sat, May 06, 2017 at 07:29:45AM +0200, Christophe JAILLET wrote: > If 'devm_kzalloc' fails, a NULL pointer will be dereferenced. > Return -ENOMEM instead, as done for some other memory allocation just a > few lines above. > > Fixes: 98cd1552ea27 ("net: dsa: Mock-up driver") > > Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Andrew ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] net: dsa: loop: Check for memory allocation failure 2017-05-06 5:29 [PATCH] net: dsa: loop: Check for memory allocation failure Christophe JAILLET 2017-05-06 14:45 ` Andrew Lunn @ 2017-05-07 23:22 ` Florian Fainelli 2017-05-08 12:05 ` David Laight 2017-05-08 19:01 ` David Miller 3 siblings, 0 replies; 14+ messages in thread From: Florian Fainelli @ 2017-05-07 23:22 UTC (permalink / raw) To: Christophe JAILLET, andrew, vivien.didelot Cc: netdev, linux-kernel, kernel-janitors Le 05/05/17 à 22:29, Christophe JAILLET a écrit : > If 'devm_kzalloc' fails, a NULL pointer will be dereferenced. > Return -ENOMEM instead, as done for some other memory allocation just a > few lines above. > > Fixes: 98cd1552ea27 ("net: dsa: Mock-up driver") > > Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Acked-by: Florian Fainelli <f.fainelli@gmail.com> -- Florian ^ permalink raw reply [flat|nested] 14+ messages in thread
* RE: [PATCH] net: dsa: loop: Check for memory allocation failure 2017-05-06 5:29 [PATCH] net: dsa: loop: Check for memory allocation failure Christophe JAILLET 2017-05-06 14:45 ` Andrew Lunn 2017-05-07 23:22 ` Florian Fainelli @ 2017-05-08 12:05 ` David Laight 2017-05-08 12:32 ` Julia Lawall 2017-05-08 19:01 ` David Miller 3 siblings, 1 reply; 14+ messages in thread From: David Laight @ 2017-05-08 12:05 UTC (permalink / raw) To: 'Christophe JAILLET', andrew@lunn.ch, vivien.didelot@savoirfairelinux.com, f.fainelli@gmail.com Cc: netdev@vger.kernel.org, linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org From: Christophe JAILLET > Sent: 06 May 2017 06:30 > If 'devm_kzalloc' fails, a NULL pointer will be dereferenced. > Return -ENOMEM instead, as done for some other memory allocation just a > few lines above. ... > --- a/drivers/net/dsa/dsa_loop.c > +++ b/drivers/net/dsa/dsa_loop.c > @@ -256,6 +256,9 @@ static int dsa_loop_drv_probe(struct mdio_device *mdiodev) > return -ENOMEM; > > ps = devm_kzalloc(&mdiodev->dev, sizeof(*ps), GFP_KERNEL); > + if (!ps) > + return -ENOMEM; > + > ps->netdev = dev_get_by_name(&init_net, pdata->netdev); > if (!ps->netdev) > return -EPROBE_DEFER; On the face if it this code leaks like a sieve. David ^ permalink raw reply [flat|nested] 14+ messages in thread
* RE: [PATCH] net: dsa: loop: Check for memory allocation failure 2017-05-08 12:05 ` David Laight @ 2017-05-08 12:32 ` Julia Lawall 2017-05-08 17:44 ` Joe Perches 0 siblings, 1 reply; 14+ messages in thread From: Julia Lawall @ 2017-05-08 12:32 UTC (permalink / raw) To: David Laight Cc: 'Christophe JAILLET', andrew@lunn.ch, vivien.didelot@savoirfairelinux.com, f.fainelli@gmail.com, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org On Mon, 8 May 2017, David Laight wrote: > From: Christophe JAILLET > > Sent: 06 May 2017 06:30 > > If 'devm_kzalloc' fails, a NULL pointer will be dereferenced. > > Return -ENOMEM instead, as done for some other memory allocation just a > > few lines above. > ... > > --- a/drivers/net/dsa/dsa_loop.c > > +++ b/drivers/net/dsa/dsa_loop.c > > @@ -256,6 +256,9 @@ static int dsa_loop_drv_probe(struct mdio_device *mdiodev) > > return -ENOMEM; > > > > ps = devm_kzalloc(&mdiodev->dev, sizeof(*ps), GFP_KERNEL); > > + if (!ps) > > + return -ENOMEM; > > + > > ps->netdev = dev_get_by_name(&init_net, pdata->netdev); > > if (!ps->netdev) > > return -EPROBE_DEFER; > > On the face if it this code leaks like a sieve. I don't think so. The allocations (dsa_switch_alloc and devm_kzalloc) use devm functions. julia ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] net: dsa: loop: Check for memory allocation failure 2017-05-08 12:32 ` Julia Lawall @ 2017-05-08 17:44 ` Joe Perches 2017-05-08 23:46 ` Julia Lawall 0 siblings, 1 reply; 14+ messages in thread From: Joe Perches @ 2017-05-08 17:44 UTC (permalink / raw) To: Julia Lawall, David Laight Cc: 'Christophe JAILLET', andrew@lunn.ch, vivien.didelot@savoirfairelinux.com, f.fainelli@gmail.com, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org On Mon, 2017-05-08 at 20:32 +0800, Julia Lawall wrote: > > On Mon, 8 May 2017, David Laight wrote: > > > From: Christophe JAILLET > > > Sent: 06 May 2017 06:30 > > > If 'devm_kzalloc' fails, a NULL pointer will be dereferenced. > > > Return -ENOMEM instead, as done for some other memory allocation just a > > > few lines above. > > > > ... > > > --- a/drivers/net/dsa/dsa_loop.c > > > +++ b/drivers/net/dsa/dsa_loop.c > > > @@ -256,6 +256,9 @@ static int dsa_loop_drv_probe(struct mdio_device *mdiodev) > > > return -ENOMEM; > > > > > > ps = devm_kzalloc(&mdiodev->dev, sizeof(*ps), GFP_KERNEL); > > > + if (!ps) > > > + return -ENOMEM; > > > + > > > ps->netdev = dev_get_by_name(&init_net, pdata->netdev); > > > if (!ps->netdev) > > > return -EPROBE_DEFER; > > > > On the face if it this code leaks like a sieve. > > I don't think so. The allocations (dsa_switch_alloc and devm_kzalloc) use > devm functions. It's at least wasteful. Each time -EPROBE_DEFER occurs, another set of calls to dsa_switch_alloc and dev_kzalloc also occurs. Perhaps it'd be better to do: if (ps->netdev) { devm_kfree(&devmdev->dev, ps); devm_kfree(&mdiodev->dev, ds); return -EPROBE_DEFER; } ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] net: dsa: loop: Check for memory allocation failure 2017-05-08 17:44 ` Joe Perches @ 2017-05-08 23:46 ` Julia Lawall 2017-05-09 0:35 ` Florian Fainelli 0 siblings, 1 reply; 14+ messages in thread From: Julia Lawall @ 2017-05-08 23:46 UTC (permalink / raw) To: Joe Perches Cc: David Laight, 'Christophe JAILLET', andrew@lunn.ch, vivien.didelot@savoirfairelinux.com, f.fainelli@gmail.com, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org On Mon, 8 May 2017, Joe Perches wrote: > On Mon, 2017-05-08 at 20:32 +0800, Julia Lawall wrote: > > > > On Mon, 8 May 2017, David Laight wrote: > > > > > From: Christophe JAILLET > > > > Sent: 06 May 2017 06:30 > > > > If 'devm_kzalloc' fails, a NULL pointer will be dereferenced. > > > > Return -ENOMEM instead, as done for some other memory allocation just a > > > > few lines above. > > > > > > ... > > > > --- a/drivers/net/dsa/dsa_loop.c > > > > +++ b/drivers/net/dsa/dsa_loop.c > > > > @@ -256,6 +256,9 @@ static int dsa_loop_drv_probe(struct mdio_device *mdiodev) > > > > return -ENOMEM; > > > > > > > > ps = devm_kzalloc(&mdiodev->dev, sizeof(*ps), GFP_KERNEL); > > > > + if (!ps) > > > > + return -ENOMEM; > > > > + > > > > ps->netdev = dev_get_by_name(&init_net, pdata->netdev); > > > > if (!ps->netdev) > > > > return -EPROBE_DEFER; > > > > > > On the face if it this code leaks like a sieve. > > > > I don't think so. The allocations (dsa_switch_alloc and devm_kzalloc) use > > devm functions. > > It's at least wasteful. > > Each time -EPROBE_DEFER occurs, another set of calls to > dsa_switch_alloc and dev_kzalloc also occurs. > > Perhaps it'd be better to do: > > if (ps->netdev) { > devm_kfree(&devmdev->dev, ps); > devm_kfree(&mdiodev->dev, ds); > return -EPROBE_DEFER; > } Is EPROBE_DEFER handled differently than other kinds of errors? julia > > -- > To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] net: dsa: loop: Check for memory allocation failure 2017-05-08 23:46 ` Julia Lawall @ 2017-05-09 0:35 ` Florian Fainelli 2017-05-09 0:39 ` Julia Lawall 2017-05-09 15:18 ` Joe Perches 0 siblings, 2 replies; 14+ messages in thread From: Florian Fainelli @ 2017-05-09 0:35 UTC (permalink / raw) To: Julia Lawall, Joe Perches Cc: David Laight, 'Christophe JAILLET', andrew@lunn.ch, vivien.didelot@savoirfairelinux.com, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org On 05/08/2017 04:46 PM, Julia Lawall wrote: > > > On Mon, 8 May 2017, Joe Perches wrote: > >> On Mon, 2017-05-08 at 20:32 +0800, Julia Lawall wrote: >>> >>> On Mon, 8 May 2017, David Laight wrote: >>> >>>> From: Christophe JAILLET >>>>> Sent: 06 May 2017 06:30 >>>>> If 'devm_kzalloc' fails, a NULL pointer will be dereferenced. >>>>> Return -ENOMEM instead, as done for some other memory allocation just a >>>>> few lines above. >>>> >>>> ... >>>>> --- a/drivers/net/dsa/dsa_loop.c >>>>> +++ b/drivers/net/dsa/dsa_loop.c >>>>> @@ -256,6 +256,9 @@ static int dsa_loop_drv_probe(struct mdio_device *mdiodev) >>>>> return -ENOMEM; >>>>> >>>>> ps = devm_kzalloc(&mdiodev->dev, sizeof(*ps), GFP_KERNEL); >>>>> + if (!ps) >>>>> + return -ENOMEM; >>>>> + >>>>> ps->netdev = dev_get_by_name(&init_net, pdata->netdev); >>>>> if (!ps->netdev) >>>>> return -EPROBE_DEFER; >>>> >>>> On the face if it this code leaks like a sieve. >>> >>> I don't think so. The allocations (dsa_switch_alloc and devm_kzalloc) use >>> devm functions. >> >> It's at least wasteful. >> >> Each time -EPROBE_DEFER occurs, another set of calls to >> dsa_switch_alloc and dev_kzalloc also occurs. >> >> Perhaps it'd be better to do: >> >> if (ps->netdev) { >> devm_kfree(&devmdev->dev, ps); >> devm_kfree(&mdiodev->dev, ds); >> return -EPROBE_DEFER; >> } > > Is EPROBE_DEFER handled differently than other kinds of errors? In the core device driver model, yes, EPROBE_DEFER is treated differently than other errors because it puts the driver on a retry queue. EPROBE_DEFER is already a slow and exceptional path, and this is a mock-up driver, so I am not sure what value there is in trying to balance devm_kzalloc() with corresponding devm_kfree()... -- Florian ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] net: dsa: loop: Check for memory allocation failure 2017-05-09 0:35 ` Florian Fainelli @ 2017-05-09 0:39 ` Julia Lawall 2017-05-09 15:18 ` Joe Perches 1 sibling, 0 replies; 14+ messages in thread From: Julia Lawall @ 2017-05-09 0:39 UTC (permalink / raw) To: Florian Fainelli Cc: Joe Perches, David Laight, 'Christophe JAILLET', andrew@lunn.ch, vivien.didelot@savoirfairelinux.com, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org On Mon, 8 May 2017, Florian Fainelli wrote: > On 05/08/2017 04:46 PM, Julia Lawall wrote: > > > > > > On Mon, 8 May 2017, Joe Perches wrote: > > > >> On Mon, 2017-05-08 at 20:32 +0800, Julia Lawall wrote: > >>> > >>> On Mon, 8 May 2017, David Laight wrote: > >>> > >>>> From: Christophe JAILLET > >>>>> Sent: 06 May 2017 06:30 > >>>>> If 'devm_kzalloc' fails, a NULL pointer will be dereferenced. > >>>>> Return -ENOMEM instead, as done for some other memory allocation just a > >>>>> few lines above. > >>>> > >>>> ... > >>>>> --- a/drivers/net/dsa/dsa_loop.c > >>>>> +++ b/drivers/net/dsa/dsa_loop.c > >>>>> @@ -256,6 +256,9 @@ static int dsa_loop_drv_probe(struct mdio_device *mdiodev) > >>>>> return -ENOMEM; > >>>>> > >>>>> ps = devm_kzalloc(&mdiodev->dev, sizeof(*ps), GFP_KERNEL); > >>>>> + if (!ps) > >>>>> + return -ENOMEM; > >>>>> + > >>>>> ps->netdev = dev_get_by_name(&init_net, pdata->netdev); > >>>>> if (!ps->netdev) > >>>>> return -EPROBE_DEFER; > >>>> > >>>> On the face if it this code leaks like a sieve. > >>> > >>> I don't think so. The allocations (dsa_switch_alloc and devm_kzalloc) use > >>> devm functions. > >> > >> It's at least wasteful. > >> > >> Each time -EPROBE_DEFER occurs, another set of calls to > >> dsa_switch_alloc and dev_kzalloc also occurs. > >> > >> Perhaps it'd be better to do: > >> > >> if (ps->netdev) { > >> devm_kfree(&devmdev->dev, ps); > >> devm_kfree(&mdiodev->dev, ds); > >> return -EPROBE_DEFER; > >> } > > > > Is EPROBE_DEFER handled differently than other kinds of errors? > > In the core device driver model, yes, EPROBE_DEFER is treated > differently than other errors because it puts the driver on a retry queue. > > EPROBE_DEFER is already a slow and exceptional path, and this is a > mock-up driver, so I am not sure what value there is in trying to > balance devm_kzalloc() with corresponding devm_kfree()... OK, thanks for the explanation. julia ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] net: dsa: loop: Check for memory allocation failure 2017-05-09 0:35 ` Florian Fainelli 2017-05-09 0:39 ` Julia Lawall @ 2017-05-09 15:18 ` Joe Perches 2017-05-10 4:38 ` Christophe JAILLET 1 sibling, 1 reply; 14+ messages in thread From: Joe Perches @ 2017-05-09 15:18 UTC (permalink / raw) To: Florian Fainelli, Julia Lawall Cc: David Laight, 'Christophe JAILLET', andrew@lunn.ch, vivien.didelot@savoirfairelinux.com, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org On Mon, 2017-05-08 at 17:35 -0700, Florian Fainelli wrote: > On 05/08/2017 04:46 PM, Julia Lawall wrote: > > On Mon, 8 May 2017, Joe Perches wrote: > > > Each time -EPROBE_DEFER occurs, another set of calls to > > > dsa_switch_alloc and dev_kzalloc also occurs. > > > > > > Perhaps it'd be better to do: > > > > > > if (ps->netdev) { > > > devm_kfree(&devmdev->dev, ps); > > > devm_kfree(&mdiodev->dev, ds); > > > return -EPROBE_DEFER; > > > } > > > > Is EPROBE_DEFER handled differently than other kinds of errors? > > In the core device driver model, yes, EPROBE_DEFER is treated > differently than other errors because it puts the driver on a retry queue. > > EPROBE_DEFER is already a slow and exceptional path, and this is a > mock-up driver, so I am not sure what value there is in trying to > balance devm_kzalloc() with corresponding devm_kfree()... Example code should be as correct as possible. ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] net: dsa: loop: Check for memory allocation failure 2017-05-09 15:18 ` Joe Perches @ 2017-05-10 4:38 ` Christophe JAILLET 2017-05-10 4:46 ` Julia Lawall 0 siblings, 1 reply; 14+ messages in thread From: Christophe JAILLET @ 2017-05-10 4:38 UTC (permalink / raw) To: Joe Perches, Julia Lawall Cc: linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org Le 09/05/2017 à 17:18, Joe Perches a écrit : > On Mon, 2017-05-08 at 17:35 -0700, Florian Fainelli wrote: >> On 05/08/2017 04:46 PM, Julia Lawall wrote: >>> On Mon, 8 May 2017, Joe Perches wrote: >>>> Each time -EPROBE_DEFER occurs, another set of calls to >>>> dsa_switch_alloc and dev_kzalloc also occurs. >>>> >>>> Perhaps it'd be better to do: >>>> >>>> if (ps->netdev) { >>>> devm_kfree(&devmdev->dev, ps); >>>> devm_kfree(&mdiodev->dev, ds); >>>> return -EPROBE_DEFER; >>>> } >>> Is EPROBE_DEFER handled differently than other kinds of errors? >> In the core device driver model, yes, EPROBE_DEFER is treated >> differently than other errors because it puts the driver on a retry queue. >> >> EPROBE_DEFER is already a slow and exceptional path, and this is a >> mock-up driver, so I am not sure what value there is in trying to >> balance devm_kzalloc() with corresponding devm_kfree()... > Example code should be as correct as possible. > Le 09/05/2017 à 17:18, Joe Perches a écrit : > On Mon, 2017-05-08 at 17:35 -0700, Florian Fainelli wrote: >> On 05/08/2017 04:46 PM, Julia Lawall wrote: >>> On Mon, 8 May 2017, Joe Perches wrote: >>>> Each time -EPROBE_DEFER occurs, another set of calls to >>>> dsa_switch_alloc and dev_kzalloc also occurs. >>>> >>>> Perhaps it'd be better to do: >>>> >>>> if (ps->netdev) { >>>> devm_kfree(&devmdev->dev, ps); >>>> devm_kfree(&mdiodev->dev, ds); >>>> return -EPROBE_DEFER; >>>> } >>> Is EPROBE_DEFER handled differently than other kinds of errors? >> In the core device driver model, yes, EPROBE_DEFER is treated >> differently than other errors because it puts the driver on a retry queue. >> >> EPROBE_DEFER is already a slow and exceptional path, and this is a >> mock-up driver, so I am not sure what value there is in trying to >> balance devm_kzalloc() with corresponding devm_kfree()... > Example code should be as correct as possible. > (* number of people/mailing list in copy has been reduced *) The coccinelle script below gives the following list of candidates for such improvement. char/hw_random/omap-rng.c clk/clk-si5351.c clk/clk-versaclock5.c crypto/mediatek/mtk-platform.c devfreq/rk3399_dmc.c dma/mv_xor_v2.c dma/omap-dma.c gpu/drm/arc/arcpgu_hdmi.c gpu/drm/bridge/dumb-vga-dac.c gpu/drm/bridge/lvds-encoder.c gpu/drm/exynos/exynos_dp.c gpu/drm/exynos/exynos_drm_dsi.c gpu/drm/imx/dw_hdmi-imx.c gpu/drm/mediatek/mtk_dpi.c gpu/drm/mediatek/mtk_drm_ddp_comp.c gpu/drm/mediatek/mtk_dsi.c gpu/drm/panel/panel-lvds.c gpu/drm/panel/panel-simple.c gpu/drm/panel/panel-sitronix-st7789v.c gpu/drm/rcar-du/rcar_du_lvdscon.c gpu/drm/rockchip/cdn-dp-core.c gpu/drm/rockchip/dw_hdmi-rockchip.c gpu/drm/sti/sti_hdmi.c gpu/drm/tegra/sor.c gpu/drm/tilcdc/tilcdc_panel.c gpu/drm/vc4/vc4_hdmi.c gpu/ipu-v3/ipu-common.c gpu/ipu-v3/ipu-pre.c gpu/ipu-v3/ipu-prg.c hwtracing/coresight/coresight-stm.c i2c/busses/i2c-designware-platdrv.c i2c/busses/i2c-mv64xxx.c i2c/muxes/i2c-mux-gpio.c i2c/muxes/i2c-mux-pinctrl.c i2c/muxes/i2c-mux-reg.c iommu/mtk_iommu.c iommu/mtk_iommu_v1.c irqchip/qcom-irq-combiner.c mailbox/mailbox-test.c media/i2c/mt9m111.c media/i2c/ov2640.c media/i2c/ov7670.c media/i2c/smiapp/smiapp-core.c media/i2c/soc_camera/imx074.c media/platform/coda/coda-common.c media/platform/mtk-vcodec/mtk_vcodec_dec_drv.c media/platform/mtk-vcodec/mtk_vcodec_enc_drv.c media/platform/s5p-cec/s5p_cec.c media/platform/sti/cec/stih-cec.c memory/tegra/tegra124-emc.c mfd/twl6040.c mtd/nand/lpc32xx_mlc.c mtd/nand/lpc32xx_slc.c net/dsa/dsa_loop.c net/ethernet/mediatek/mtk_eth_soc.c net/phy/xilinx_gmii2rgmii.c net/wireless/ti/wlcore/spi.c pci/host/pcie-iproc-platform.c phy/phy-exynos5250-sata.c phy/phy-mt65xx-usb3.c phy/phy-qcom-qusb2.c phy/phy-sun4i-usb.c pinctrl/core.c pinctrl/pinctrl-at91.c platform/x86/intel_cht_int33fe.c power/supply/act8945a_charger.c power/supply/axp20x_ac_power.c power/supply/axp20x_battery.c power/supply/axp288_charger.c power/supply/bq24190_charger.c power/supply/cpcap-charger.c power/supply/gpio-charger.c soc/bcm/raspberrypi-power.c thermal/samsung/exynos_tmu.c tty/serial/8250/8250_dw.c tty/serial/max310x.c tty/serial/sccnxp.c usb/chipidea/ci_hdrc_msm.c usb/gadget/udc/mv_udc_core.c usb/host/xhci-mtk.c usb/mtu3/mtu3_plat.c usb/musb/sunxi.c usb/phy/phy-am335x.c usb/phy/phy-generic.c usb/phy/phy-twl6030-usb.c video/backlight/hx8357.c video/backlight/lp855x_bl.c video/fbdev/simplefb.c Coccinelle script : ================= // find calls to kmalloc or equivalent function @call@ expression ptr; position p; @@ ( * ptr@p = kmalloc(...) | * ptr@p = kzalloc(...) | * ptr@p = kcalloc(...) | * ptr@p = kmalloc_array(...) | * ptr@p = devm_kmalloc(...) | * ptr@p = devm_kzalloc(...) | * ptr@p = devm_kcalloc(...) | * ptr@p = devm_kmalloc_array(...) ) ... * return -EPROBE_DEFER; ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] net: dsa: loop: Check for memory allocation failure 2017-05-10 4:38 ` Christophe JAILLET @ 2017-05-10 4:46 ` Julia Lawall 2017-05-10 4:54 ` Marion & Christophe JAILLET 0 siblings, 1 reply; 14+ messages in thread From: Julia Lawall @ 2017-05-10 4:46 UTC (permalink / raw) To: Christophe JAILLET Cc: Joe Perches, linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org [-- Attachment #1: Type: text/plain, Size: 5574 bytes --] On Wed, 10 May 2017, Christophe JAILLET wrote: > Le 09/05/2017 à 17:18, Joe Perches a écrit : > > On Mon, 2017-05-08 at 17:35 -0700, Florian Fainelli wrote: > > > On 05/08/2017 04:46 PM, Julia Lawall wrote: > > > > On Mon, 8 May 2017, Joe Perches wrote: > > > > > Each time -EPROBE_DEFER occurs, another set of calls to > > > > > dsa_switch_alloc and dev_kzalloc also occurs. > > > > > > > > > > Perhaps it'd be better to do: > > > > > > > > > > if (ps->netdev) { > > > > > devm_kfree(&devmdev->dev, ps); > > > > > devm_kfree(&mdiodev->dev, ds); > > > > > return -EPROBE_DEFER; > > > > > } > > > > Is EPROBE_DEFER handled differently than other kinds of errors? > > > In the core device driver model, yes, EPROBE_DEFER is treated > > > differently than other errors because it puts the driver on a retry queue. > > > > > > EPROBE_DEFER is already a slow and exceptional path, and this is a > > > mock-up driver, so I am not sure what value there is in trying to > > > balance devm_kzalloc() with corresponding devm_kfree()... > > Example code should be as correct as possible. > > > Le 09/05/2017 à 17:18, Joe Perches a écrit : > > On Mon, 2017-05-08 at 17:35 -0700, Florian Fainelli wrote: > > > On 05/08/2017 04:46 PM, Julia Lawall wrote: > > > > On Mon, 8 May 2017, Joe Perches wrote: > > > > > Each time -EPROBE_DEFER occurs, another set of calls to > > > > > dsa_switch_alloc and dev_kzalloc also occurs. > > > > > > > > > > Perhaps it'd be better to do: > > > > > > > > > > if (ps->netdev) { > > > > > devm_kfree(&devmdev->dev, ps); > > > > > devm_kfree(&mdiodev->dev, ds); > > > > > return -EPROBE_DEFER; > > > > > } > > > > Is EPROBE_DEFER handled differently than other kinds of errors? > > > In the core device driver model, yes, EPROBE_DEFER is treated > > > differently than other errors because it puts the driver on a retry queue. > > > > > > EPROBE_DEFER is already a slow and exceptional path, and this is a > > > mock-up driver, so I am not sure what value there is in trying to > > > balance devm_kzalloc() with corresponding devm_kfree()... > > Example code should be as correct as possible. > > > (* number of people/mailing list in copy has been reduced *) > > > The coccinelle script below gives the following list of candidates for such > improvement. > > char/hw_random/omap-rng.c > clk/clk-si5351.c > clk/clk-versaclock5.c > crypto/mediatek/mtk-platform.c > devfreq/rk3399_dmc.c > dma/mv_xor_v2.c > dma/omap-dma.c > gpu/drm/arc/arcpgu_hdmi.c > gpu/drm/bridge/dumb-vga-dac.c > gpu/drm/bridge/lvds-encoder.c > gpu/drm/exynos/exynos_dp.c > gpu/drm/exynos/exynos_drm_dsi.c > gpu/drm/imx/dw_hdmi-imx.c > gpu/drm/mediatek/mtk_dpi.c > gpu/drm/mediatek/mtk_drm_ddp_comp.c > gpu/drm/mediatek/mtk_dsi.c > gpu/drm/panel/panel-lvds.c > gpu/drm/panel/panel-simple.c > gpu/drm/panel/panel-sitronix-st7789v.c > gpu/drm/rcar-du/rcar_du_lvdscon.c > gpu/drm/rockchip/cdn-dp-core.c > gpu/drm/rockchip/dw_hdmi-rockchip.c > gpu/drm/sti/sti_hdmi.c > gpu/drm/tegra/sor.c > gpu/drm/tilcdc/tilcdc_panel.c > gpu/drm/vc4/vc4_hdmi.c > gpu/ipu-v3/ipu-common.c > gpu/ipu-v3/ipu-pre.c > gpu/ipu-v3/ipu-prg.c > hwtracing/coresight/coresight-stm.c > i2c/busses/i2c-designware-platdrv.c > i2c/busses/i2c-mv64xxx.c > i2c/muxes/i2c-mux-gpio.c > i2c/muxes/i2c-mux-pinctrl.c > i2c/muxes/i2c-mux-reg.c > iommu/mtk_iommu.c > iommu/mtk_iommu_v1.c > irqchip/qcom-irq-combiner.c > mailbox/mailbox-test.c > media/i2c/mt9m111.c > media/i2c/ov2640.c > media/i2c/ov7670.c > media/i2c/smiapp/smiapp-core.c > media/i2c/soc_camera/imx074.c > media/platform/coda/coda-common.c > media/platform/mtk-vcodec/mtk_vcodec_dec_drv.c > media/platform/mtk-vcodec/mtk_vcodec_enc_drv.c > media/platform/s5p-cec/s5p_cec.c > media/platform/sti/cec/stih-cec.c > memory/tegra/tegra124-emc.c > mfd/twl6040.c > mtd/nand/lpc32xx_mlc.c > mtd/nand/lpc32xx_slc.c > net/dsa/dsa_loop.c > net/ethernet/mediatek/mtk_eth_soc.c > net/phy/xilinx_gmii2rgmii.c > net/wireless/ti/wlcore/spi.c > pci/host/pcie-iproc-platform.c > phy/phy-exynos5250-sata.c > phy/phy-mt65xx-usb3.c > phy/phy-qcom-qusb2.c > phy/phy-sun4i-usb.c > pinctrl/core.c > pinctrl/pinctrl-at91.c > platform/x86/intel_cht_int33fe.c > power/supply/act8945a_charger.c > power/supply/axp20x_ac_power.c > power/supply/axp20x_battery.c > power/supply/axp288_charger.c > power/supply/bq24190_charger.c > power/supply/cpcap-charger.c > power/supply/gpio-charger.c > soc/bcm/raspberrypi-power.c > thermal/samsung/exynos_tmu.c > tty/serial/8250/8250_dw.c > tty/serial/max310x.c > tty/serial/sccnxp.c > usb/chipidea/ci_hdrc_msm.c > usb/gadget/udc/mv_udc_core.c > usb/host/xhci-mtk.c > usb/mtu3/mtu3_plat.c > usb/musb/sunxi.c > usb/phy/phy-am335x.c > usb/phy/phy-generic.c > usb/phy/phy-twl6030-usb.c > video/backlight/hx8357.c > video/backlight/lp855x_bl.c > video/fbdev/simplefb.c > > > Coccinelle script : > ================= > // find calls to kmalloc or equivalent function > @call@ > expression ptr; > position p; > @@ > > ( > * ptr@p = kmalloc(...) > | > * ptr@p = kzalloc(...) > | > * ptr@p = kcalloc(...) > | > * ptr@p = kmalloc_array(...) Do you get any reports for the above function? Those would normally just be memory leaks. julia > | > * ptr@p = devm_kmalloc(...) > | > * ptr@p = devm_kzalloc(...) > | > * ptr@p = devm_kcalloc(...) > | > * ptr@p = devm_kmalloc_array(...) > ) > ... > * return -EPROBE_DEFER; > > -- > To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] net: dsa: loop: Check for memory allocation failure 2017-05-10 4:46 ` Julia Lawall @ 2017-05-10 4:54 ` Marion & Christophe JAILLET 0 siblings, 0 replies; 14+ messages in thread From: Marion & Christophe JAILLET @ 2017-05-10 4:54 UTC (permalink / raw) To: Julia Lawall Cc: Joe Perches, linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org Le 10/05/2017 à 06:46, Julia Lawall a écrit : > > On Wed, 10 May 2017, Christophe JAILLET wrote: > >> Le 09/05/2017 à 17:18, Joe Perches a écrit : >>> On Mon, 2017-05-08 at 17:35 -0700, Florian Fainelli wrote: >>>> On 05/08/2017 04:46 PM, Julia Lawall wrote: >>>>> On Mon, 8 May 2017, Joe Perches wrote: >>>>>> Each time -EPROBE_DEFER occurs, another set of calls to >>>>>> dsa_switch_alloc and dev_kzalloc also occurs. >>>>>> >>>>>> Perhaps it'd be better to do: >>>>>> >>>>>> if (ps->netdev) { >>>>>> devm_kfree(&devmdev->dev, ps); >>>>>> devm_kfree(&mdiodev->dev, ds); >>>>>> return -EPROBE_DEFER; >>>>>> } >>>>> Is EPROBE_DEFER handled differently than other kinds of errors? >>>> In the core device driver model, yes, EPROBE_DEFER is treated >>>> differently than other errors because it puts the driver on a retry queue. >>>> >>>> EPROBE_DEFER is already a slow and exceptional path, and this is a >>>> mock-up driver, so I am not sure what value there is in trying to >>>> balance devm_kzalloc() with corresponding devm_kfree()... >>> Example code should be as correct as possible. >>> >> Le 09/05/2017 à 17:18, Joe Perches a écrit : >>> On Mon, 2017-05-08 at 17:35 -0700, Florian Fainelli wrote: >>>> On 05/08/2017 04:46 PM, Julia Lawall wrote: >>>>> On Mon, 8 May 2017, Joe Perches wrote: >>>>>> Each time -EPROBE_DEFER occurs, another set of calls to >>>>>> dsa_switch_alloc and dev_kzalloc also occurs. >>>>>> >>>>>> Perhaps it'd be better to do: >>>>>> >>>>>> if (ps->netdev) { >>>>>> devm_kfree(&devmdev->dev, ps); >>>>>> devm_kfree(&mdiodev->dev, ds); >>>>>> return -EPROBE_DEFER; >>>>>> } >>>>> Is EPROBE_DEFER handled differently than other kinds of errors? >>>> In the core device driver model, yes, EPROBE_DEFER is treated >>>> differently than other errors because it puts the driver on a retry queue. >>>> >>>> EPROBE_DEFER is already a slow and exceptional path, and this is a >>>> mock-up driver, so I am not sure what value there is in trying to >>>> balance devm_kzalloc() with corresponding devm_kfree()... >>> Example code should be as correct as possible. >>> >> (* number of people/mailing list in copy has been reduced *) >> >> >> The coccinelle script below gives the following list of candidates for such >> improvement. >> >> char/hw_random/omap-rng.c >> clk/clk-si5351.c >> clk/clk-versaclock5.c >> crypto/mediatek/mtk-platform.c >> devfreq/rk3399_dmc.c >> dma/mv_xor_v2.c >> dma/omap-dma.c >> gpu/drm/arc/arcpgu_hdmi.c >> gpu/drm/bridge/dumb-vga-dac.c >> gpu/drm/bridge/lvds-encoder.c >> gpu/drm/exynos/exynos_dp.c >> gpu/drm/exynos/exynos_drm_dsi.c >> gpu/drm/imx/dw_hdmi-imx.c >> gpu/drm/mediatek/mtk_dpi.c >> gpu/drm/mediatek/mtk_drm_ddp_comp.c >> gpu/drm/mediatek/mtk_dsi.c >> gpu/drm/panel/panel-lvds.c >> gpu/drm/panel/panel-simple.c >> gpu/drm/panel/panel-sitronix-st7789v.c >> gpu/drm/rcar-du/rcar_du_lvdscon.c >> gpu/drm/rockchip/cdn-dp-core.c >> gpu/drm/rockchip/dw_hdmi-rockchip.c >> gpu/drm/sti/sti_hdmi.c >> gpu/drm/tegra/sor.c >> gpu/drm/tilcdc/tilcdc_panel.c >> gpu/drm/vc4/vc4_hdmi.c >> gpu/ipu-v3/ipu-common.c >> gpu/ipu-v3/ipu-pre.c >> gpu/ipu-v3/ipu-prg.c >> hwtracing/coresight/coresight-stm.c >> i2c/busses/i2c-designware-platdrv.c >> i2c/busses/i2c-mv64xxx.c >> i2c/muxes/i2c-mux-gpio.c >> i2c/muxes/i2c-mux-pinctrl.c >> i2c/muxes/i2c-mux-reg.c >> iommu/mtk_iommu.c >> iommu/mtk_iommu_v1.c >> irqchip/qcom-irq-combiner.c >> mailbox/mailbox-test.c >> media/i2c/mt9m111.c >> media/i2c/ov2640.c >> media/i2c/ov7670.c >> media/i2c/smiapp/smiapp-core.c >> media/i2c/soc_camera/imx074.c >> media/platform/coda/coda-common.c >> media/platform/mtk-vcodec/mtk_vcodec_dec_drv.c >> media/platform/mtk-vcodec/mtk_vcodec_enc_drv.c >> media/platform/s5p-cec/s5p_cec.c >> media/platform/sti/cec/stih-cec.c >> memory/tegra/tegra124-emc.c >> mfd/twl6040.c >> mtd/nand/lpc32xx_mlc.c >> mtd/nand/lpc32xx_slc.c >> net/dsa/dsa_loop.c >> net/ethernet/mediatek/mtk_eth_soc.c >> net/phy/xilinx_gmii2rgmii.c >> net/wireless/ti/wlcore/spi.c >> pci/host/pcie-iproc-platform.c >> phy/phy-exynos5250-sata.c >> phy/phy-mt65xx-usb3.c >> phy/phy-qcom-qusb2.c >> phy/phy-sun4i-usb.c >> pinctrl/core.c >> pinctrl/pinctrl-at91.c >> platform/x86/intel_cht_int33fe.c >> power/supply/act8945a_charger.c >> power/supply/axp20x_ac_power.c >> power/supply/axp20x_battery.c >> power/supply/axp288_charger.c >> power/supply/bq24190_charger.c >> power/supply/cpcap-charger.c >> power/supply/gpio-charger.c >> soc/bcm/raspberrypi-power.c >> thermal/samsung/exynos_tmu.c >> tty/serial/8250/8250_dw.c >> tty/serial/max310x.c >> tty/serial/sccnxp.c >> usb/chipidea/ci_hdrc_msm.c >> usb/gadget/udc/mv_udc_core.c >> usb/host/xhci-mtk.c >> usb/mtu3/mtu3_plat.c >> usb/musb/sunxi.c >> usb/phy/phy-am335x.c >> usb/phy/phy-generic.c >> usb/phy/phy-twl6030-usb.c >> video/backlight/hx8357.c >> video/backlight/lp855x_bl.c >> video/fbdev/simplefb.c >> >> >> Coccinelle script : >> ================= >> // find calls to kmalloc or equivalent function >> @call@ >> expression ptr; >> position p; >> @@ >> >> ( >> * ptr@p = kmalloc(...) >> | >> * ptr@p = kzalloc(...) >> | >> * ptr@p = kcalloc(...) >> | >> * ptr@p = kmalloc_array(...) > Do you get any reports for the above function? Those would normally just > be memory leaks. Only one, but the corresponding kfree was in place. > julia > >> | >> * ptr@p = devm_kmalloc(...) >> | >> * ptr@p = devm_kzalloc(...) >> | >> * ptr@p = devm_kcalloc(...) >> | >> * ptr@p = devm_kmalloc_array(...) >> ) >> ... >> * return -EPROBE_DEFER; >> >> -- >> To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in >> the body of a message to majordomo@vger.kernel.org >> More majordomo info at http://vger.kernel.org/majordomo-info.html > > ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] net: dsa: loop: Check for memory allocation failure 2017-05-06 5:29 [PATCH] net: dsa: loop: Check for memory allocation failure Christophe JAILLET ` (2 preceding siblings ...) 2017-05-08 12:05 ` David Laight @ 2017-05-08 19:01 ` David Miller 3 siblings, 0 replies; 14+ messages in thread From: David Miller @ 2017-05-08 19:01 UTC (permalink / raw) To: christophe.jaillet Cc: andrew, vivien.didelot, f.fainelli, netdev, linux-kernel, kernel-janitors From: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Date: Sat, 6 May 2017 07:29:45 +0200 > If 'devm_kzalloc' fails, a NULL pointer will be dereferenced. > Return -ENOMEM instead, as done for some other memory allocation just a > few lines above. > > Fixes: 98cd1552ea27 ("net: dsa: Mock-up driver") > > Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> Please do not separate "Fixes: " tags from signoffs and acks with empty lines in the future, thank you. Applied and queued up for -stable. ^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2017-05-10 4:54 UTC | newest] Thread overview: 14+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2017-05-06 5:29 [PATCH] net: dsa: loop: Check for memory allocation failure Christophe JAILLET 2017-05-06 14:45 ` Andrew Lunn 2017-05-07 23:22 ` Florian Fainelli 2017-05-08 12:05 ` David Laight 2017-05-08 12:32 ` Julia Lawall 2017-05-08 17:44 ` Joe Perches 2017-05-08 23:46 ` Julia Lawall 2017-05-09 0:35 ` Florian Fainelli 2017-05-09 0:39 ` Julia Lawall 2017-05-09 15:18 ` Joe Perches 2017-05-10 4:38 ` Christophe JAILLET 2017-05-10 4:46 ` Julia Lawall 2017-05-10 4:54 ` Marion & Christophe JAILLET 2017-05-08 19:01 ` David Miller
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox