* [PATCH] [v2] ieee802154: ca8210: Fix a potential UAF in ca8210_probe
@ 2023-09-26 3:22 Dinghao Liu
2023-09-26 8:02 ` Miquel Raynal
0 siblings, 1 reply; 5+ messages in thread
From: Dinghao Liu @ 2023-09-26 3:22 UTC (permalink / raw)
To: dinghao.liu
Cc: Alexander Aring, Stefan Schmidt, Miquel Raynal, David S. Miller,
Eric Dumazet, Jakub Kicinski, Paolo Abeni, Marcel Holtmann,
Harry Morris, linux-wpan, netdev, linux-kernel
If of_clk_add_provider() fails in ca8210_register_ext_clock(),
it calls clk_unregister() to release priv->clk and returns an
error. However, the caller ca8210_probe() then calls ca8210_remove(),
where priv->clk is freed again in ca8210_unregister_ext_clock(). In
this case, a use-after-free may happen in the second time we call
clk_unregister().
Fix this by removing the first clk_unregister(). Also, priv->clk could
be an error code on failure of clk_register_fixed_rate(). Use
IS_ERR_OR_NULL to catch this case in ca8210_unregister_ext_clock().
Fixes: ded845a781a5 ("ieee802154: Add CA8210 IEEE 802.15.4 device driver")
Signed-off-by: Dinghao Liu <dinghao.liu@zju.edu.cn>
---
Changelog:
v2: -Remove the first clk_unregister() instead of nulling priv->clk.
---
drivers/net/ieee802154/ca8210.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/net/ieee802154/ca8210.c b/drivers/net/ieee802154/ca8210.c
index aebb19f1b3a4..b35c6f59bd1a 100644
--- a/drivers/net/ieee802154/ca8210.c
+++ b/drivers/net/ieee802154/ca8210.c
@@ -2759,7 +2759,6 @@ static int ca8210_register_ext_clock(struct spi_device *spi)
}
ret = of_clk_add_provider(np, of_clk_src_simple_get, priv->clk);
if (ret) {
- clk_unregister(priv->clk);
dev_crit(
&spi->dev,
"Failed to register external clock as clock provider\n"
@@ -2780,7 +2779,7 @@ static void ca8210_unregister_ext_clock(struct spi_device *spi)
{
struct ca8210_priv *priv = spi_get_drvdata(spi);
- if (!priv->clk)
+ if (IS_ERR_OR_NULL(priv->clk))
return
of_clk_del_provider(spi->dev.of_node);
--
2.17.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] [v2] ieee802154: ca8210: Fix a potential UAF in ca8210_probe
2023-09-26 3:22 [PATCH] [v2] ieee802154: ca8210: Fix a potential UAF in ca8210_probe Dinghao Liu
@ 2023-09-26 8:02 ` Miquel Raynal
2023-09-26 8:29 ` Stefan Schmidt
2023-09-26 12:40 ` dinghao.liu
0 siblings, 2 replies; 5+ messages in thread
From: Miquel Raynal @ 2023-09-26 8:02 UTC (permalink / raw)
To: Dinghao Liu
Cc: Alexander Aring, Stefan Schmidt, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Marcel Holtmann, Harry Morris,
linux-wpan, netdev, linux-kernel
Hi Dinghao,
dinghao.liu@zju.edu.cn wrote on Tue, 26 Sep 2023 11:22:44 +0800:
> If of_clk_add_provider() fails in ca8210_register_ext_clock(),
> it calls clk_unregister() to release priv->clk and returns an
> error. However, the caller ca8210_probe() then calls ca8210_remove(),
> where priv->clk is freed again in ca8210_unregister_ext_clock(). In
> this case, a use-after-free may happen in the second time we call
> clk_unregister().
>
> Fix this by removing the first clk_unregister(). Also, priv->clk could
> be an error code on failure of clk_register_fixed_rate(). Use
> IS_ERR_OR_NULL to catch this case in ca8210_unregister_ext_clock().
>
> Fixes: ded845a781a5 ("ieee802154: Add CA8210 IEEE 802.15.4 device driver")
Missing Cc stable, this needs to be backported.
> Signed-off-by: Dinghao Liu <dinghao.liu@zju.edu.cn>
> ---
>
> Changelog:
>
> v2: -Remove the first clk_unregister() instead of nulling priv->clk.
> ---
> drivers/net/ieee802154/ca8210.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/drivers/net/ieee802154/ca8210.c b/drivers/net/ieee802154/ca8210.c
> index aebb19f1b3a4..b35c6f59bd1a 100644
> --- a/drivers/net/ieee802154/ca8210.c
> +++ b/drivers/net/ieee802154/ca8210.c
> @@ -2759,7 +2759,6 @@ static int ca8210_register_ext_clock(struct spi_device *spi)
> }
> ret = of_clk_add_provider(np, of_clk_src_simple_get, priv->clk);
> if (ret) {
> - clk_unregister(priv->clk);
> dev_crit(
> &spi->dev,
> "Failed to register external clock as clock provider\n"
I was hoping you would simplify this function a bit more.
> @@ -2780,7 +2779,7 @@ static void ca8210_unregister_ext_clock(struct spi_device *spi)
> {
> struct ca8210_priv *priv = spi_get_drvdata(spi);
>
> - if (!priv->clk)
> + if (IS_ERR_OR_NULL(priv->clk))
> return
>
> of_clk_del_provider(spi->dev.of_node);
Alex, Stefan, who handles wpan and wpan/next this release?
Thanks,
Miquèl
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] [v2] ieee802154: ca8210: Fix a potential UAF in ca8210_probe
2023-09-26 8:02 ` Miquel Raynal
@ 2023-09-26 8:29 ` Stefan Schmidt
2023-09-26 16:40 ` Alexander Aring
2023-09-26 12:40 ` dinghao.liu
1 sibling, 1 reply; 5+ messages in thread
From: Stefan Schmidt @ 2023-09-26 8:29 UTC (permalink / raw)
To: Miquel Raynal, Dinghao Liu
Cc: Alexander Aring, David S. Miller, Eric Dumazet, Jakub Kicinski,
Paolo Abeni, Marcel Holtmann, Harry Morris, linux-wpan, netdev,
linux-kernel
Hello.
On 26.09.23 10:02, Miquel Raynal wrote:
> Hi Dinghao,
>
> dinghao.liu@zju.edu.cn wrote on Tue, 26 Sep 2023 11:22:44 +0800:
>
>> If of_clk_add_provider() fails in ca8210_register_ext_clock(),
>> it calls clk_unregister() to release priv->clk and returns an
>> error. However, the caller ca8210_probe() then calls ca8210_remove(),
>> where priv->clk is freed again in ca8210_unregister_ext_clock(). In
>> this case, a use-after-free may happen in the second time we call
>> clk_unregister().
>>
>> Fix this by removing the first clk_unregister(). Also, priv->clk could
>> be an error code on failure of clk_register_fixed_rate(). Use
>> IS_ERR_OR_NULL to catch this case in ca8210_unregister_ext_clock().
>>
>> Fixes: ded845a781a5 ("ieee802154: Add CA8210 IEEE 802.15.4 device driver")
>
> Missing Cc stable, this needs to be backported.
>
>> Signed-off-by: Dinghao Liu <dinghao.liu@zju.edu.cn>
>> ---
>>
>> Changelog:
>>
>> v2: -Remove the first clk_unregister() instead of nulling priv->clk.
>> ---
>> drivers/net/ieee802154/ca8210.c | 3 +--
>> 1 file changed, 1 insertion(+), 2 deletions(-)
>>
>> diff --git a/drivers/net/ieee802154/ca8210.c b/drivers/net/ieee802154/ca8210.c
>> index aebb19f1b3a4..b35c6f59bd1a 100644
>> --- a/drivers/net/ieee802154/ca8210.c
>> +++ b/drivers/net/ieee802154/ca8210.c
>> @@ -2759,7 +2759,6 @@ static int ca8210_register_ext_clock(struct spi_device *spi)
>> }
>> ret = of_clk_add_provider(np, of_clk_src_simple_get, priv->clk);
>> if (ret) {
>> - clk_unregister(priv->clk);
>> dev_crit(
>> &spi->dev,
>> "Failed to register external clock as clock provider\n"
>
> I was hoping you would simplify this function a bit more.
>
>> @@ -2780,7 +2779,7 @@ static void ca8210_unregister_ext_clock(struct spi_device *spi)
>> {
>> struct ca8210_priv *priv = spi_get_drvdata(spi);
>>
>> - if (!priv->clk)
>> + if (IS_ERR_OR_NULL(priv->clk))
>> return
>>
>> of_clk_del_provider(spi->dev.of_node);
>
> Alex, Stefan, who handles wpan and wpan/next this release?
IIRC it would be me for wpan and Alex for wpan-next.
regards
Stefan Schmidt
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] [v2] ieee802154: ca8210: Fix a potential UAF in ca8210_probe
2023-09-26 8:02 ` Miquel Raynal
2023-09-26 8:29 ` Stefan Schmidt
@ 2023-09-26 12:40 ` dinghao.liu
1 sibling, 0 replies; 5+ messages in thread
From: dinghao.liu @ 2023-09-26 12:40 UTC (permalink / raw)
To: Miquel Raynal
Cc: Alexander Aring, Stefan Schmidt, David S. Miller, Eric Dumazet,
Jakub Kicinski, Paolo Abeni, Marcel Holtmann, Harry Morris,
linux-wpan, netdev, linux-kernel
> Missing Cc stable, this needs to be backported.
I will cc stable (stable@vger.kernel.org) for the next version, thanks!
> > diff --git a/drivers/net/ieee802154/ca8210.c b/drivers/net/ieee802154/ca8210.c
> > index aebb19f1b3a4..b35c6f59bd1a 100644
> > --- a/drivers/net/ieee802154/ca8210.c
> > +++ b/drivers/net/ieee802154/ca8210.c
> > @@ -2759,7 +2759,6 @@ static int ca8210_register_ext_clock(struct spi_device *spi)
> > }
> > ret = of_clk_add_provider(np, of_clk_src_simple_get, priv->clk);
> > if (ret) {
> > - clk_unregister(priv->clk);
> > dev_crit(
> > &spi->dev,
> > "Failed to register external clock as clock provider\n"
>
> I was hoping you would simplify this function a bit more.
I understand. In the next patch version, I will just return of_clk_add_provider().
>
> > @@ -2780,7 +2779,7 @@ static void ca8210_unregister_ext_clock(struct spi_device *spi)
> > {
> > struct ca8210_priv *priv = spi_get_drvdata(spi);
> >
> > - if (!priv->clk)
> > + if (IS_ERR_OR_NULL(priv->clk))
> > return
> >
> > of_clk_del_provider(spi->dev.of_node);
>
> Alex, Stefan, who handles wpan and wpan/next this release?
>
Is there any problem I need to handle in the next patch?
Regards,
Dinghao
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] [v2] ieee802154: ca8210: Fix a potential UAF in ca8210_probe
2023-09-26 8:29 ` Stefan Schmidt
@ 2023-09-26 16:40 ` Alexander Aring
0 siblings, 0 replies; 5+ messages in thread
From: Alexander Aring @ 2023-09-26 16:40 UTC (permalink / raw)
To: Stefan Schmidt
Cc: Miquel Raynal, Dinghao Liu, Alexander Aring, David S. Miller,
Eric Dumazet, Jakub Kicinski, Paolo Abeni, Marcel Holtmann,
Harry Morris, linux-wpan, netdev, linux-kernel
Hi,
On Tue, Sep 26, 2023 at 4:29 AM Stefan Schmidt
<stefan@datenfreihafen.org> wrote:
>
> Hello.
>
> On 26.09.23 10:02, Miquel Raynal wrote:
> > Hi Dinghao,
> >
> > dinghao.liu@zju.edu.cn wrote on Tue, 26 Sep 2023 11:22:44 +0800:
> >
> >> If of_clk_add_provider() fails in ca8210_register_ext_clock(),
> >> it calls clk_unregister() to release priv->clk and returns an
> >> error. However, the caller ca8210_probe() then calls ca8210_remove(),
> >> where priv->clk is freed again in ca8210_unregister_ext_clock(). In
> >> this case, a use-after-free may happen in the second time we call
> >> clk_unregister().
> >>
> >> Fix this by removing the first clk_unregister(). Also, priv->clk could
> >> be an error code on failure of clk_register_fixed_rate(). Use
> >> IS_ERR_OR_NULL to catch this case in ca8210_unregister_ext_clock().
> >>
> >> Fixes: ded845a781a5 ("ieee802154: Add CA8210 IEEE 802.15.4 device driver")
> >
> > Missing Cc stable, this needs to be backported.
> >
> >> Signed-off-by: Dinghao Liu <dinghao.liu@zju.edu.cn>
> >> ---
> >>
> >> Changelog:
> >>
> >> v2: -Remove the first clk_unregister() instead of nulling priv->clk.
> >> ---
> >> drivers/net/ieee802154/ca8210.c | 3 +--
> >> 1 file changed, 1 insertion(+), 2 deletions(-)
> >>
> >> diff --git a/drivers/net/ieee802154/ca8210.c b/drivers/net/ieee802154/ca8210.c
> >> index aebb19f1b3a4..b35c6f59bd1a 100644
> >> --- a/drivers/net/ieee802154/ca8210.c
> >> +++ b/drivers/net/ieee802154/ca8210.c
> >> @@ -2759,7 +2759,6 @@ static int ca8210_register_ext_clock(struct spi_device *spi)
> >> }
> >> ret = of_clk_add_provider(np, of_clk_src_simple_get, priv->clk);
> >> if (ret) {
> >> - clk_unregister(priv->clk);
> >> dev_crit(
> >> &spi->dev,
> >> "Failed to register external clock as clock provider\n"
> >
> > I was hoping you would simplify this function a bit more.
> >
> >> @@ -2780,7 +2779,7 @@ static void ca8210_unregister_ext_clock(struct spi_device *spi)
> >> {
> >> struct ca8210_priv *priv = spi_get_drvdata(spi);
> >>
> >> - if (!priv->clk)
> >> + if (IS_ERR_OR_NULL(priv->clk))
> >> return
> >>
> >> of_clk_del_provider(spi->dev.of_node);
> >
> > Alex, Stefan, who handles wpan and wpan/next this release?
>
> IIRC it would be me for wpan and Alex for wpan-next.
That's okay for me.
- Alex
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-09-26 16:41 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-26 3:22 [PATCH] [v2] ieee802154: ca8210: Fix a potential UAF in ca8210_probe Dinghao Liu
2023-09-26 8:02 ` Miquel Raynal
2023-09-26 8:29 ` Stefan Schmidt
2023-09-26 16:40 ` Alexander Aring
2023-09-26 12:40 ` dinghao.liu
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).