linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] pinctrl: renesas: fix possible null-ptr-deref in sh_pfc_map_resources()
@ 2022-04-29  8:26 Yang Yingliang
  2022-04-29  8:26 ` [PATCH 2/2] pinctrl: renesas: rzn1: " Yang Yingliang
  2022-05-02 13:46 ` [PATCH 1/2] pinctrl: renesas: " Geert Uytterhoeven
  0 siblings, 2 replies; 4+ messages in thread
From: Yang Yingliang @ 2022-04-29  8:26 UTC (permalink / raw)
  To: linux-kernel, linux-gpio, linux-renesas-soc; +Cc: linus.walleij, geert+renesas

It will cause null-ptr-deref when using 'res', if platform_get_resource()
returns NULL, so move using 'res' after devm_ioremap_resource() that
will check it to avoid null-ptr-deref.
And use devm_platform_get_and_ioremap_resource() to simplify code.

Fixes: c7977ec4a336 ("pinctrl: sh-pfc: Convert to platform_get_*()")
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
---
 drivers/pinctrl/renesas/core.c | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/drivers/pinctrl/renesas/core.c b/drivers/pinctrl/renesas/core.c
index d0d4714731c1..3d8bf521c3e7 100644
--- a/drivers/pinctrl/renesas/core.c
+++ b/drivers/pinctrl/renesas/core.c
@@ -71,12 +71,11 @@ static int sh_pfc_map_resources(struct sh_pfc *pfc,
 
 	/* Fill them. */
 	for (i = 0; i < num_windows; i++) {
-		res = platform_get_resource(pdev, IORESOURCE_MEM, i);
-		windows->phys = res->start;
-		windows->size = resource_size(res);
-		windows->virt = devm_ioremap_resource(pfc->dev, res);
+		windows->virt = devm_platform_get_and_ioremap_resource(pdev, i, &res);
 		if (IS_ERR(windows->virt))
 			return -ENOMEM;
+		windows->phys = res->start;
+		windows->size = resource_size(res);
 		windows++;
 	}
 	for (i = 0; i < num_irqs; i++)
-- 
2.25.1


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

* [PATCH 2/2] pinctrl: renesas: rzn1: fix possible null-ptr-deref in sh_pfc_map_resources()
  2022-04-29  8:26 [PATCH 1/2] pinctrl: renesas: fix possible null-ptr-deref in sh_pfc_map_resources() Yang Yingliang
@ 2022-04-29  8:26 ` Yang Yingliang
  2022-05-02 13:47   ` Geert Uytterhoeven
  2022-05-02 13:46 ` [PATCH 1/2] pinctrl: renesas: " Geert Uytterhoeven
  1 sibling, 1 reply; 4+ messages in thread
From: Yang Yingliang @ 2022-04-29  8:26 UTC (permalink / raw)
  To: linux-kernel, linux-gpio, linux-renesas-soc; +Cc: linus.walleij, geert+renesas

It will cause null-ptr-deref when using 'res', if platform_get_resource()
returns NULL, so move using 'res' after devm_ioremap_resource() that
will check it to avoid null-ptr-deref.
And use devm_platform_get_and_ioremap_resource() to simplify code.

Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
---
 drivers/pinctrl/renesas/pinctrl-rzn1.c | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/drivers/pinctrl/renesas/pinctrl-rzn1.c b/drivers/pinctrl/renesas/pinctrl-rzn1.c
index ef5fb25b6016..cddb7804e9e0 100644
--- a/drivers/pinctrl/renesas/pinctrl-rzn1.c
+++ b/drivers/pinctrl/renesas/pinctrl-rzn1.c
@@ -865,17 +865,15 @@ static int rzn1_pinctrl_probe(struct platform_device *pdev)
 	ipctl->mdio_func[0] = -1;
 	ipctl->mdio_func[1] = -1;
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-	ipctl->lev1_protect_phys = (u32)res->start + 0x400;
-	ipctl->lev1 = devm_ioremap_resource(&pdev->dev, res);
+	ipctl->lev1 = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
 	if (IS_ERR(ipctl->lev1))
 		return PTR_ERR(ipctl->lev1);
+	ipctl->lev1_protect_phys = (u32)res->start + 0x400;
 
-	res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
-	ipctl->lev2_protect_phys = (u32)res->start + 0x400;
-	ipctl->lev2 = devm_ioremap_resource(&pdev->dev, res);
+	ipctl->lev2 = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
 	if (IS_ERR(ipctl->lev2))
 		return PTR_ERR(ipctl->lev2);
+	ipctl->lev2_protect_phys = (u32)res->start + 0x400;
 
 	ipctl->clk = devm_clk_get(&pdev->dev, NULL);
 	if (IS_ERR(ipctl->clk))
-- 
2.25.1


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

* Re: [PATCH 1/2] pinctrl: renesas: fix possible null-ptr-deref in sh_pfc_map_resources()
  2022-04-29  8:26 [PATCH 1/2] pinctrl: renesas: fix possible null-ptr-deref in sh_pfc_map_resources() Yang Yingliang
  2022-04-29  8:26 ` [PATCH 2/2] pinctrl: renesas: rzn1: " Yang Yingliang
@ 2022-05-02 13:46 ` Geert Uytterhoeven
  1 sibling, 0 replies; 4+ messages in thread
From: Geert Uytterhoeven @ 2022-05-02 13:46 UTC (permalink / raw)
  To: Yang Yingliang
  Cc: Linux Kernel Mailing List, open list:GPIO SUBSYSTEM,
	Linux-Renesas, Linus Walleij

On Fri, Apr 29, 2022 at 4:30 PM Yang Yingliang <yangyingliang@huawei.com> wrote:
> It will cause null-ptr-deref when using 'res', if platform_get_resource()
> returns NULL, so move using 'res' after devm_ioremap_resource() that
> will check it to avoid null-ptr-deref.
> And use devm_platform_get_and_ioremap_resource() to simplify code.
>
> Fixes: c7977ec4a336 ("pinctrl: sh-pfc: Convert to platform_get_*()")
> Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>

Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
i.e. will queue in renesas-pinctrl-for-v5.19.

Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

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

* Re: [PATCH 2/2] pinctrl: renesas: rzn1: fix possible null-ptr-deref in sh_pfc_map_resources()
  2022-04-29  8:26 ` [PATCH 2/2] pinctrl: renesas: rzn1: " Yang Yingliang
@ 2022-05-02 13:47   ` Geert Uytterhoeven
  0 siblings, 0 replies; 4+ messages in thread
From: Geert Uytterhoeven @ 2022-05-02 13:47 UTC (permalink / raw)
  To: Yang Yingliang
  Cc: Linux Kernel Mailing List, open list:GPIO SUBSYSTEM,
	Linux-Renesas, Linus Walleij, Geert Uytterhoeven

Hi Yang,

On Fri, Apr 29, 2022 at 1:22 PM Yang Yingliang <yangyingliang@huawei.com> wrote:
> It will cause null-ptr-deref when using 'res', if platform_get_resource()
> returns NULL, so move using 'res' after devm_ioremap_resource() that
> will check it to avoid null-ptr-deref.
> And use devm_platform_get_and_ioremap_resource() to simplify code.
>
> Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>

Thanks for your patch!

> --- a/drivers/pinctrl/renesas/pinctrl-rzn1.c
> +++ b/drivers/pinctrl/renesas/pinctrl-rzn1.c
> @@ -865,17 +865,15 @@ static int rzn1_pinctrl_probe(struct platform_device *pdev)
>         ipctl->mdio_func[0] = -1;
>         ipctl->mdio_func[1] = -1;
>
> -       res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> -       ipctl->lev1_protect_phys = (u32)res->start + 0x400;
> -       ipctl->lev1 = devm_ioremap_resource(&pdev->dev, res);
> +       ipctl->lev1 = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
>         if (IS_ERR(ipctl->lev1))
>                 return PTR_ERR(ipctl->lev1);
> +       ipctl->lev1_protect_phys = (u32)res->start + 0x400;
>
> -       res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
> -       ipctl->lev2_protect_phys = (u32)res->start + 0x400;
> -       ipctl->lev2 = devm_ioremap_resource(&pdev->dev, res);
> +       ipctl->lev2 = devm_platform_get_and_ioremap_resource(pdev, 0, &res);

..., 1, ...

>         if (IS_ERR(ipctl->lev2))
>                 return PTR_ERR(ipctl->lev2);
> +       ipctl->lev2_protect_phys = (u32)res->start + 0x400;
>
>         ipctl->clk = devm_clk_get(&pdev->dev, NULL);
>         if (IS_ERR(ipctl->clk))

Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
i.e. will queue in renesas-pinctrl-for-v5.19, with the above fixed
(no need to resend).

Gr{oetje,eeting}s,

                        Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
                                -- Linus Torvalds

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

end of thread, other threads:[~2022-05-02 13:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-29  8:26 [PATCH 1/2] pinctrl: renesas: fix possible null-ptr-deref in sh_pfc_map_resources() Yang Yingliang
2022-04-29  8:26 ` [PATCH 2/2] pinctrl: renesas: rzn1: " Yang Yingliang
2022-05-02 13:47   ` Geert Uytterhoeven
2022-05-02 13:46 ` [PATCH 1/2] pinctrl: renesas: " Geert Uytterhoeven

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