linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] iio: mxs-lradc: fix a possible NULL dereference
@ 2016-08-16 12:10 LABBE Corentin
  2016-08-16 12:26 ` Ksenija Stanojević
  0 siblings, 1 reply; 2+ messages in thread
From: LABBE Corentin @ 2016-08-16 12:10 UTC (permalink / raw)
  To: knaack.h, lars, pmeerw; +Cc: linux-iio, linux-kernel, LABBE Corentin

of_match_device could return NULL, and so cause a NULL pointer
dereference later.

For fixing this problem, we use of_device_get_match_data(), this will
simplify the code a little by using a standard function for
getting the match data.

Reported-by: coverity (CID 1127209)
Signed-off-by: LABBE Corentin <clabbe.montjoie@gmail.com>
---
 drivers/iio/adc/mxs-lradc.c | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/drivers/iio/adc/mxs-lradc.c b/drivers/iio/adc/mxs-lradc.c
index b84d37c..378547c 100644
--- a/drivers/iio/adc/mxs-lradc.c
+++ b/drivers/iio/adc/mxs-lradc.c
@@ -1570,10 +1570,7 @@ static int mxs_lradc_probe_touchscreen(struct mxs_lradc *lradc,
 
 static int mxs_lradc_probe(struct platform_device *pdev)
 {
-	const struct of_device_id *of_id =
-		of_match_device(mxs_lradc_dt_ids, &pdev->dev);
-	const struct mxs_lradc_of_config *of_cfg =
-		&mxs_lradc_of_config[(enum mxs_lradc_id)of_id->data];
+	const struct mxs_lradc_of_config *of_cfg;
 	struct device *dev = &pdev->dev;
 	struct device_node *node = dev->of_node;
 	struct mxs_lradc *lradc;
@@ -1591,7 +1588,8 @@ static int mxs_lradc_probe(struct platform_device *pdev)
 	}
 
 	lradc = iio_priv(iio);
-	lradc->soc = (enum mxs_lradc_id)of_id->data;
+	lradc->soc = (enum mxs_lradc_id)of_device_get_match_data(&pdev->dev);
+	of_cfg = &mxs_lradc_of_config[lradc->soc];
 
 	/* Grab the memory area */
 	iores = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-- 
2.7.3

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

* Re: [PATCH] iio: mxs-lradc: fix a possible NULL dereference
  2016-08-16 12:10 [PATCH] iio: mxs-lradc: fix a possible NULL dereference LABBE Corentin
@ 2016-08-16 12:26 ` Ksenija Stanojević
  0 siblings, 0 replies; 2+ messages in thread
From: Ksenija Stanojević @ 2016-08-16 12:26 UTC (permalink / raw)
  To: LABBE Corentin
  Cc: Hartmut Knaack, Lars-Peter Clausen, Peter Meerwald-Stadler,
	linux-iio, linux-kernel

Hi Corentin,

On Tue, Aug 16, 2016 at 2:10 PM, LABBE Corentin
<clabbe.montjoie@gmail.com> wrote:
> of_match_device could return NULL, and so cause a NULL pointer
> dereference later.
>
> For fixing this problem, we use of_device_get_match_data(), this will
> simplify the code a little by using a standard function for
> getting the match data.
>
> Reported-by: coverity (CID 1127209)
> Signed-off-by: LABBE Corentin <clabbe.montjoie@gmail.com>
> ---
>  drivers/iio/adc/mxs-lradc.c | 8 +++-----
>  1 file changed, 3 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/iio/adc/mxs-lradc.c b/drivers/iio/adc/mxs-lradc.c
> index b84d37c..378547c 100644
> --- a/drivers/iio/adc/mxs-lradc.c
> +++ b/drivers/iio/adc/mxs-lradc.c
> @@ -1570,10 +1570,7 @@ static int mxs_lradc_probe_touchscreen(struct mxs_lradc *lradc,
>
>  static int mxs_lradc_probe(struct platform_device *pdev)
>  {
> -       const struct of_device_id *of_id =
> -               of_match_device(mxs_lradc_dt_ids, &pdev->dev);
> -       const struct mxs_lradc_of_config *of_cfg =
> -               &mxs_lradc_of_config[(enum mxs_lradc_id)of_id->data];
> +       const struct mxs_lradc_of_config *of_cfg;
>         struct device *dev = &pdev->dev;
>         struct device_node *node = dev->of_node;
>         struct mxs_lradc *lradc;
> @@ -1591,7 +1588,8 @@ static int mxs_lradc_probe(struct platform_device *pdev)
>         }
>
>         lradc = iio_priv(iio);
> -       lradc->soc = (enum mxs_lradc_id)of_id->data;
> +       lradc->soc = (enum mxs_lradc_id)of_device_get_match_data(&pdev->dev);
> +       of_cfg = &mxs_lradc_of_config[lradc->soc];
>
>         /* Grab the memory area */
>         iores = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> --

This driver has been split into adc, touchscreen and mfd part. It's currently in
process of review and not yet merged. And it's modified  in such a way that
your changes wouldn't apply anyway. Please see:
https://lkml.org/lkml/2016/8/4/270
I think it's better to wait for modified driver to be merged and after send
patches for it.

Thanks,
Ksenija

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

end of thread, other threads:[~2016-08-16 12:26 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-16 12:10 [PATCH] iio: mxs-lradc: fix a possible NULL dereference LABBE Corentin
2016-08-16 12:26 ` Ksenija Stanojević

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