linux-staging.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 1/2] staging: wfx: fix an error handling in wfx_init_common()
@ 2022-02-18 13:59 xkernel.wang
  2022-02-18 14:04 ` [PATCH v2 2/2] staging: wfx: check the return value of devm_kmalloc() xkernel.wang
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: xkernel.wang @ 2022-02-18 13:59 UTC (permalink / raw)
  To: jerome.pouiller, gregkh, dan.carpenter
  Cc: linux-staging, linux-kernel, Xiaoke Wang

From: Xiaoke Wang <xkernel.wang@foxmail.com>

One error handler of wfx_init_common() return without calling
ieee80211_free_hw(hw), which may result in memory leak. And I add
one err label to unify the error handler, which is useful for the
subsequent changes.

Suggested-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
Signed-off-by: Xiaoke Wang <xkernel.wang@foxmail.com>
---
Changelog
v1->v2 restore the wrong modification of a return statement.
 drivers/staging/wfx/main.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/drivers/staging/wfx/main.c b/drivers/staging/wfx/main.c
index 4b9fdf9..9ff69c5 100644
--- a/drivers/staging/wfx/main.c
+++ b/drivers/staging/wfx/main.c
@@ -309,7 +309,8 @@ struct wfx_dev *wfx_init_common(struct device *dev,
 	wdev->pdata.gpio_wakeup = devm_gpiod_get_optional(dev, "wakeup",
 							  GPIOD_OUT_LOW);
 	if (IS_ERR(wdev->pdata.gpio_wakeup))
-		return NULL;
+		goto err;
+
 	if (wdev->pdata.gpio_wakeup)
 		gpiod_set_consumer_name(wdev->pdata.gpio_wakeup, "wfx wakeup");
 
@@ -328,6 +329,10 @@ struct wfx_dev *wfx_init_common(struct device *dev,
 		return NULL;
 
 	return wdev;
+
+err:
+	ieee80211_free_hw(hw);
+	return NULL;
 }
 
 int wfx_probe(struct wfx_dev *wdev)
-- 

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH v2 2/2] staging: wfx: check the return value of devm_kmalloc()
  2022-02-18 13:59 [PATCH v2 1/2] staging: wfx: fix an error handling in wfx_init_common() xkernel.wang
@ 2022-02-18 14:04 ` xkernel.wang
  2022-02-18 14:12   ` Jérôme Pouiller
  2022-02-21 17:05   ` Greg KH
  2022-02-18 14:09 ` [PATCH v2 1/2] staging: wfx: fix an error handling in wfx_init_common() Jérôme Pouiller
  2022-02-18 14:43 ` Dan Carpenter
  2 siblings, 2 replies; 6+ messages in thread
From: xkernel.wang @ 2022-02-18 14:04 UTC (permalink / raw)
  To: jerome.pouiller, gregkh, dan.carpenter
  Cc: linux-staging, linux-kernel, Xiaoke Wang

From: Xiaoke Wang <xkernel.wang@foxmail.com>

devm_kmalloc() returns a pointer to allocated memory on success, NULL
on failure. While there is a memory allocation of devm_kmalloc()
without proper check. It is better to check the return value of it to
prevent wrong memory access.
And I use the err label which is introduced by the previous patch to
handle the error.

Signed-off-by: Xiaoke Wang <xkernel.wang@foxmail.com>
---
Changelog
v1->v2 update the description.
 drivers/staging/wfx/main.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/staging/wfx/main.c b/drivers/staging/wfx/main.c
index 9ff69c5..85fcdc3 100644
--- a/drivers/staging/wfx/main.c
+++ b/drivers/staging/wfx/main.c
@@ -294,6 +294,9 @@ struct wfx_dev *wfx_init_common(struct device *dev,
 	hw->wiphy->n_iface_combinations = ARRAY_SIZE(wfx_iface_combinations);
 	hw->wiphy->iface_combinations = wfx_iface_combinations;
 	hw->wiphy->bands[NL80211_BAND_2GHZ] = devm_kmalloc(dev, sizeof(wfx_band_2ghz), GFP_KERNEL);
+	if (!hw->wiphy->bands[NL80211_BAND_2GHZ])
+		goto err;
+
 	// FIXME: also copy wfx_rates and wfx_2ghz_chantable
 	memcpy(hw->wiphy->bands[NL80211_BAND_2GHZ], &wfx_band_2ghz,
 	       sizeof(wfx_band_2ghz));
-- 

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH v2 1/2] staging: wfx: fix an error handling in wfx_init_common()
  2022-02-18 13:59 [PATCH v2 1/2] staging: wfx: fix an error handling in wfx_init_common() xkernel.wang
  2022-02-18 14:04 ` [PATCH v2 2/2] staging: wfx: check the return value of devm_kmalloc() xkernel.wang
@ 2022-02-18 14:09 ` Jérôme Pouiller
  2022-02-18 14:43 ` Dan Carpenter
  2 siblings, 0 replies; 6+ messages in thread
From: Jérôme Pouiller @ 2022-02-18 14:09 UTC (permalink / raw)
  To: gregkh, dan.carpenter, xkernel.wang
  Cc: linux-staging, linux-kernel, Xiaoke Wang

On Friday 18 February 2022 14:59:45 CET xkernel.wang@foxmail.com wrote:
> From: Xiaoke Wang <xkernel.wang@foxmail.com>
> 
> One error handler of wfx_init_common() return without calling
> ieee80211_free_hw(hw), which may result in memory leak. And I add
> one err label to unify the error handler, which is useful for the
> subsequent changes.
> 
> Suggested-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
> Signed-off-by: Xiaoke Wang <xkernel.wang@foxmail.com>
> ---
> Changelog
> v1->v2 restore the wrong modification of a return statement.
>  drivers/staging/wfx/main.c | 7 ++++++-
>  1 file changed, 6 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/staging/wfx/main.c b/drivers/staging/wfx/main.c
> index 4b9fdf9..9ff69c5 100644
> --- a/drivers/staging/wfx/main.c
> +++ b/drivers/staging/wfx/main.c
> @@ -309,7 +309,8 @@ struct wfx_dev *wfx_init_common(struct device *dev,
>         wdev->pdata.gpio_wakeup = devm_gpiod_get_optional(dev, "wakeup",
>                                                           GPIOD_OUT_LOW);
>         if (IS_ERR(wdev->pdata.gpio_wakeup))
> -               return NULL;
> +               goto err;
> +
>         if (wdev->pdata.gpio_wakeup)
>                 gpiod_set_consumer_name(wdev->pdata.gpio_wakeup, "wfx wakeup");
> 
> @@ -328,6 +329,10 @@ struct wfx_dev *wfx_init_common(struct device *dev,
>                 return NULL;
> 
>         return wdev;
> +
> +err:
> +       ieee80211_free_hw(hw);
> +       return NULL;
>  }
> 
>  int wfx_probe(struct wfx_dev *wdev)
> --
> 

Looks right.

Reviewed-by: Jérôme Pouiller <jerome.pouiller@silabs.com>



-- 
Jérôme Pouiller



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v2 2/2] staging: wfx: check the return value of devm_kmalloc()
  2022-02-18 14:04 ` [PATCH v2 2/2] staging: wfx: check the return value of devm_kmalloc() xkernel.wang
@ 2022-02-18 14:12   ` Jérôme Pouiller
  2022-02-21 17:05   ` Greg KH
  1 sibling, 0 replies; 6+ messages in thread
From: Jérôme Pouiller @ 2022-02-18 14:12 UTC (permalink / raw)
  To: gregkh, dan.carpenter, xkernel.wang
  Cc: linux-staging, linux-kernel, Xiaoke Wang

On Friday 18 February 2022 15:04:02 CET xkernel.wang@foxmail.com wrote:
> 
> From: Xiaoke Wang <xkernel.wang@foxmail.com>
> 
> devm_kmalloc() returns a pointer to allocated memory on success, NULL
> on failure. While there is a memory allocation of devm_kmalloc()
> without proper check. It is better to check the return value of it to
> prevent wrong memory access.
> And I use the err label which is introduced by the previous patch to
> handle the error.
This last sentence is not very useful, but it is not a big deal.

Reviewed-by: Jérôme Pouiller <jerome.pouiller@silabs.com>


> 
> Signed-off-by: Xiaoke Wang <xkernel.wang@foxmail.com>
> ---
> Changelog
> v1->v2 update the description.
>  drivers/staging/wfx/main.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/drivers/staging/wfx/main.c b/drivers/staging/wfx/main.c
> index 9ff69c5..85fcdc3 100644
> --- a/drivers/staging/wfx/main.c
> +++ b/drivers/staging/wfx/main.c
> @@ -294,6 +294,9 @@ struct wfx_dev *wfx_init_common(struct device *dev,
>         hw->wiphy->n_iface_combinations = ARRAY_SIZE(wfx_iface_combinations);
>         hw->wiphy->iface_combinations = wfx_iface_combinations;
>         hw->wiphy->bands[NL80211_BAND_2GHZ] = devm_kmalloc(dev, sizeof(wfx_band_2ghz), GFP_KERNEL);
> +       if (!hw->wiphy->bands[NL80211_BAND_2GHZ])
> +               goto err;
> +
>         // FIXME: also copy wfx_rates and wfx_2ghz_chantable
>         memcpy(hw->wiphy->bands[NL80211_BAND_2GHZ], &wfx_band_2ghz,
>                sizeof(wfx_band_2ghz));
> --
> 

-- 
Jérôme Pouiller



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v2 1/2] staging: wfx: fix an error handling in wfx_init_common()
  2022-02-18 13:59 [PATCH v2 1/2] staging: wfx: fix an error handling in wfx_init_common() xkernel.wang
  2022-02-18 14:04 ` [PATCH v2 2/2] staging: wfx: check the return value of devm_kmalloc() xkernel.wang
  2022-02-18 14:09 ` [PATCH v2 1/2] staging: wfx: fix an error handling in wfx_init_common() Jérôme Pouiller
@ 2022-02-18 14:43 ` Dan Carpenter
  2 siblings, 0 replies; 6+ messages in thread
From: Dan Carpenter @ 2022-02-18 14:43 UTC (permalink / raw)
  To: xkernel.wang; +Cc: jerome.pouiller, gregkh, linux-staging, linux-kernel

Looks good, thanks.

Reviewed-by: Dan Carpenter <dan.carpenter@oracle.com>

regards,
dan carpenter


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v2 2/2] staging: wfx: check the return value of devm_kmalloc()
  2022-02-18 14:04 ` [PATCH v2 2/2] staging: wfx: check the return value of devm_kmalloc() xkernel.wang
  2022-02-18 14:12   ` Jérôme Pouiller
@ 2022-02-21 17:05   ` Greg KH
  1 sibling, 0 replies; 6+ messages in thread
From: Greg KH @ 2022-02-21 17:05 UTC (permalink / raw)
  To: xkernel.wang; +Cc: jerome.pouiller, dan.carpenter, linux-staging, linux-kernel

On Fri, Feb 18, 2022 at 10:04:02PM +0800, xkernel.wang@foxmail.com wrote:
> From: Xiaoke Wang <xkernel.wang@foxmail.com>
> 
> devm_kmalloc() returns a pointer to allocated memory on success, NULL
> on failure. While there is a memory allocation of devm_kmalloc()
> without proper check. It is better to check the return value of it to
> prevent wrong memory access.
> And I use the err label which is introduced by the previous patch to
> handle the error.
> 
> Signed-off-by: Xiaoke Wang <xkernel.wang@foxmail.com>
> ---
> Changelog
> v1->v2 update the description.
>  drivers/staging/wfx/main.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/drivers/staging/wfx/main.c b/drivers/staging/wfx/main.c
> index 9ff69c5..85fcdc3 100644
> --- a/drivers/staging/wfx/main.c
> +++ b/drivers/staging/wfx/main.c
> @@ -294,6 +294,9 @@ struct wfx_dev *wfx_init_common(struct device *dev,
>  	hw->wiphy->n_iface_combinations = ARRAY_SIZE(wfx_iface_combinations);
>  	hw->wiphy->iface_combinations = wfx_iface_combinations;
>  	hw->wiphy->bands[NL80211_BAND_2GHZ] = devm_kmalloc(dev, sizeof(wfx_band_2ghz), GFP_KERNEL);
> +	if (!hw->wiphy->bands[NL80211_BAND_2GHZ])
> +		goto err;
> +
>  	// FIXME: also copy wfx_rates and wfx_2ghz_chantable
>  	memcpy(hw->wiphy->bands[NL80211_BAND_2GHZ], &wfx_band_2ghz,
>  	       sizeof(wfx_band_2ghz));
> -- 

This patch does not apply to my tree at all.  Please rebase and resend.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-02-26 17:53 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-18 13:59 [PATCH v2 1/2] staging: wfx: fix an error handling in wfx_init_common() xkernel.wang
2022-02-18 14:04 ` [PATCH v2 2/2] staging: wfx: check the return value of devm_kmalloc() xkernel.wang
2022-02-18 14:12   ` Jérôme Pouiller
2022-02-21 17:05   ` Greg KH
2022-02-18 14:09 ` [PATCH v2 1/2] staging: wfx: fix an error handling in wfx_init_common() Jérôme Pouiller
2022-02-18 14:43 ` Dan Carpenter

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).