2019-03-19 00:32:38

by Aditya Pakki

[permalink] [raw]
Subject: [PATCH] scsi: ufs: Fix to avoid a potential NULL pointer dereference

In tc_dwc_g210_pltfm_probe, of_match_node can return a NULL pointer
in case of failure. The patch avoids a potential NULL pointer dereference
in such scenarios.

Signed-off-by: Aditya Pakki <[email protected]>
---
drivers/scsi/ufs/tc-dwc-g210-pltfrm.c | 2 ++
1 file changed, 2 insertions(+)

diff --git a/drivers/scsi/ufs/tc-dwc-g210-pltfrm.c b/drivers/scsi/ufs/tc-dwc-g210-pltfrm.c
index 6dfe5a9206e9..2b5bc6bd715e 100644
--- a/drivers/scsi/ufs/tc-dwc-g210-pltfrm.c
+++ b/drivers/scsi/ufs/tc-dwc-g210-pltfrm.c
@@ -61,6 +61,8 @@ static int tc_dwc_g210_pltfm_probe(struct platform_device *pdev)
struct device *dev = &pdev->dev;

of_id = of_match_node(tc_dwc_g210_pltfm_match, dev->of_node);
+ if (!of_id)
+ return -ENXIO;
vops = (struct ufs_hba_variant_ops *)of_id->data;

/* Perform generic probe */
--
2.17.1



2019-03-19 01:46:36

by Alim Akhtar

[permalink] [raw]
Subject: Re: [PATCH] scsi: ufs: Fix to avoid a potential NULL pointer dereference

On Tue, Mar 19, 2019 at 6:01 AM Aditya Pakki <[email protected]> wrote:
>
> In tc_dwc_g210_pltfm_probe, of_match_node can return a NULL pointer
> in case of failure. The patch avoids a potential NULL pointer dereference
> in such scenarios.
>
> Signed-off-by: Aditya Pakki <[email protected]>
> ---
> drivers/scsi/ufs/tc-dwc-g210-pltfrm.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/scsi/ufs/tc-dwc-g210-pltfrm.c b/drivers/scsi/ufs/tc-dwc-g210-pltfrm.c
> index 6dfe5a9206e9..2b5bc6bd715e 100644
> --- a/drivers/scsi/ufs/tc-dwc-g210-pltfrm.c
> +++ b/drivers/scsi/ufs/tc-dwc-g210-pltfrm.c
> @@ -61,6 +61,8 @@ static int tc_dwc_g210_pltfm_probe(struct platform_device *pdev)
> struct device *dev = &pdev->dev;
>
> of_id = of_match_node(tc_dwc_g210_pltfm_match, dev->of_node);
> + if (!of_id)
> + return -ENXIO;
May be just return -ENODEV
> vops = (struct ufs_hba_variant_ops *)of_id->data;
>
> /* Perform generic probe */
> --
> 2.17.1
>


--
Regards,
Alim