netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] net: ti: icssg-prueth: Check return value to avoid a kernel oops
@ 2025-03-22 14:33 Benedikt Spranger
  2025-03-23  7:19 ` Roger Quadros
  0 siblings, 1 reply; 5+ messages in thread
From: Benedikt Spranger @ 2025-03-22 14:33 UTC (permalink / raw)
  To: netdev; +Cc: Roger Quadros, MD Danish Anwar, Andrew Lunn

of_get_ethdev_address() may fail, do not set a MAC address and return
an error. The icssg-prueth driver ignores that failure and try to validate
the MAC address. This let to a NULL pointer dereference in this case.

Check the return value of of_get_ethdev_address() before validating the
MAC address.

Signed-off-by: Benedikt Spranger <b.spranger@linutronix.de>
---
 drivers/net/ethernet/ti/icssg/icssg_prueth.c     | 2 +-
 drivers/net/ethernet/ti/icssg/icssg_prueth_sr1.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/ethernet/ti/icssg/icssg_prueth.c b/drivers/net/ethernet/ti/icssg/icssg_prueth.c
index 9a75733e3f8f..273615c8923c 100644
--- a/drivers/net/ethernet/ti/icssg/icssg_prueth.c
+++ b/drivers/net/ethernet/ti/icssg/icssg_prueth.c
@@ -1152,7 +1152,7 @@ static int prueth_netdev_init(struct prueth *prueth,
 
 	/* get mac address from DT and set private and netdev addr */
 	ret = of_get_ethdev_address(eth_node, ndev);
-	if (!is_valid_ether_addr(ndev->dev_addr)) {
+	if (ret || !is_valid_ether_addr(ndev->dev_addr)) {
 		eth_hw_addr_random(ndev);
 		dev_warn(prueth->dev, "port %d: using random MAC addr: %pM\n",
 			 port, ndev->dev_addr);
diff --git a/drivers/net/ethernet/ti/icssg/icssg_prueth_sr1.c b/drivers/net/ethernet/ti/icssg/icssg_prueth_sr1.c
index 64a19ff39562..61c5e10e7077 100644
--- a/drivers/net/ethernet/ti/icssg/icssg_prueth_sr1.c
+++ b/drivers/net/ethernet/ti/icssg/icssg_prueth_sr1.c
@@ -862,7 +862,7 @@ static int prueth_netdev_init(struct prueth *prueth,
 
 	/* get mac address from DT and set private and netdev addr */
 	ret = of_get_ethdev_address(eth_node, ndev);
-	if (!is_valid_ether_addr(ndev->dev_addr)) {
+	if (ret || !is_valid_ether_addr(ndev->dev_addr)) {
 		eth_hw_addr_random(ndev);
 		dev_warn(prueth->dev, "port %d: using random MAC addr: %pM\n",
 			 port, ndev->dev_addr);
-- 
2.39.5


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

* Re: [PATCH] net: ti: icssg-prueth: Check return value to avoid a kernel oops
  2025-03-22 14:33 [PATCH] net: ti: icssg-prueth: Check return value to avoid a kernel oops Benedikt Spranger
@ 2025-03-23  7:19 ` Roger Quadros
  2025-03-23 15:18   ` Benedikt Spranger
  0 siblings, 1 reply; 5+ messages in thread
From: Roger Quadros @ 2025-03-23  7:19 UTC (permalink / raw)
  To: Benedikt Spranger, netdev; +Cc: MD Danish Anwar, Andrew Lunn

Hi,

Did you actually get a kernel oops? If yes, which part of code produces the oops.

On 22/03/2025 16:33, Benedikt Spranger wrote:
> of_get_ethdev_address() may fail, do not set a MAC address and return

Even if it fails we do set a random MAC address and do not return error.
So above statement is false.


> an error. The icssg-prueth driver ignores that failure and try to validate
> the MAC address. This let to a NULL pointer dereference in this case.
> 
> Check the return value of of_get_ethdev_address() before validating the
> MAC address.

If of_get_ethdev_address() fails the netdev address will remain zero (as it was
zero initialized during allocation) so is_valid_ether_addr() will fail as well.

> 
> Signed-off-by: Benedikt Spranger <b.spranger@linutronix.de>
> ---
>  drivers/net/ethernet/ti/icssg/icssg_prueth.c     | 2 +-
>  drivers/net/ethernet/ti/icssg/icssg_prueth_sr1.c | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/net/ethernet/ti/icssg/icssg_prueth.c b/drivers/net/ethernet/ti/icssg/icssg_prueth.c
> index 9a75733e3f8f..273615c8923c 100644
> --- a/drivers/net/ethernet/ti/icssg/icssg_prueth.c
> +++ b/drivers/net/ethernet/ti/icssg/icssg_prueth.c
> @@ -1152,7 +1152,7 @@ static int prueth_netdev_init(struct prueth *prueth,
>  
>  	/* get mac address from DT and set private and netdev addr */
>  	ret = of_get_ethdev_address(eth_node, ndev);
> -	if (!is_valid_ether_addr(ndev->dev_addr)) {
> +	if (ret || !is_valid_ether_addr(ndev->dev_addr)) {
>  		eth_hw_addr_random(ndev);
>  		dev_warn(prueth->dev, "port %d: using random MAC addr: %pM\n",
>  			 port, ndev->dev_addr);
> diff --git a/drivers/net/ethernet/ti/icssg/icssg_prueth_sr1.c b/drivers/net/ethernet/ti/icssg/icssg_prueth_sr1.c
> index 64a19ff39562..61c5e10e7077 100644
> --- a/drivers/net/ethernet/ti/icssg/icssg_prueth_sr1.c
> +++ b/drivers/net/ethernet/ti/icssg/icssg_prueth_sr1.c
> @@ -862,7 +862,7 @@ static int prueth_netdev_init(struct prueth *prueth,
>  
>  	/* get mac address from DT and set private and netdev addr */
>  	ret = of_get_ethdev_address(eth_node, ndev);
> -	if (!is_valid_ether_addr(ndev->dev_addr)) {
> +	if (ret || !is_valid_ether_addr(ndev->dev_addr)) {
>  		eth_hw_addr_random(ndev);
>  		dev_warn(prueth->dev, "port %d: using random MAC addr: %pM\n",
>  			 port, ndev->dev_addr);

-- 
cheers,
-roger


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

* Re: [PATCH] net: ti: icssg-prueth: Check return value to avoid a kernel oops
  2025-03-23  7:19 ` Roger Quadros
@ 2025-03-23 15:18   ` Benedikt Spranger
  2025-03-24 14:44     ` Roger Quadros
  0 siblings, 1 reply; 5+ messages in thread
From: Benedikt Spranger @ 2025-03-23 15:18 UTC (permalink / raw)
  To: Roger Quadros; +Cc: netdev, MD Danish Anwar, Andrew Lunn

On Sun, 23 Mar 2025 09:19:35 +0200
Roger Quadros <rogerq@kernel.org> wrote:

> Did you actually get a kernel oops?
Yes. And I would like to attach the kernel output, but I do not have
access to the board ATM.

> If yes, which part of code produces the oops.
I get an NULL pointer dereference in is_multicast_ether_addr().
It happens here:

    u32 a = *(const u32 *)addr;

> Even if it fails we do set a random MAC address and do not return
> error. So above statement is false.
I doubt that. of_get_ethdev_address() do not set a random MAC address
in case of a failure. It simply returns -ENODEV. Since
is_valid_ether_addr() fails with a NULL pointer dereference in
is_multicast_ether_addr() on the other hand, no random MAC address is
set. 

> > Check the return value of of_get_ethdev_address() before validating
> > the MAC address.  
> 
> If of_get_ethdev_address() fails the netdev address will remain zero
> (as it was zero initialized during allocation) so
> is_valid_ether_addr() will fail as well.
Yes. It will fail to. But is_valid_ether_addr() is not called any more.

Due to the if statement is_valid_ether_addr() is only called, if
of_get_ethdev_address() exits with 0 aka success. In case of a failure
the if statement is true and there is no call to is_valid_ether_addr().

Regards
    Bene

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

* Re: [PATCH] net: ti: icssg-prueth: Check return value to avoid a kernel oops
  2025-03-23 15:18   ` Benedikt Spranger
@ 2025-03-24 14:44     ` Roger Quadros
  2025-03-25 10:46       ` Benedikt Spranger
  0 siblings, 1 reply; 5+ messages in thread
From: Roger Quadros @ 2025-03-24 14:44 UTC (permalink / raw)
  To: Benedikt Spranger; +Cc: netdev, MD Danish Anwar, Andrew Lunn



On 23/03/2025 17:18, Benedikt Spranger wrote:
> On Sun, 23 Mar 2025 09:19:35 +0200
> Roger Quadros <rogerq@kernel.org> wrote:
> 
>> Did you actually get a kernel oops?
> Yes. And I would like to attach the kernel output, but I do not have
> access to the board ATM.
> 
>> If yes, which part of code produces the oops.
> I get an NULL pointer dereference in is_multicast_ether_addr().
> It happens here:
> 
>     u32 a = *(const u32 *)addr;

But this should not happen. Because ndev->addr (pointer) should not be zero.
Driver allocated ndev with alloc_etherdev_mq() which allocates memory for ndev->addr using dev_addr_init(dev)).

> 
>> Even if it fails we do set a random MAC address and do not return
>> error. So above statement is false.
> I doubt that. of_get_ethdev_address() do not set a random MAC address
> in case of a failure. It simply returns -ENODEV. Since
> is_valid_ether_addr() fails with a NULL pointer dereference in
> is_multicast_ether_addr() on the other hand, no random MAC address is
> set. 

What I meant was we set random address using eth_hw_addr_random().

> 
>>> Check the return value of of_get_ethdev_address() before validating
>>> the MAC address.  
>>
>> If of_get_ethdev_address() fails the netdev address will remain zero
>> (as it was zero initialized during allocation) so
>> is_valid_ether_addr() will fail as well.
> Yes. It will fail to. But is_valid_ether_addr() is not called any more.
> 
> Due to the if statement is_valid_ether_addr() is only called, if
> of_get_ethdev_address() exits with 0 aka success. In case of a failure
> the if statement is true and there is no call to is_valid_ether_addr().
> 
> Regards
>     Bene

-- 
cheers,
-roger


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

* Re: [PATCH] net: ti: icssg-prueth: Check return value to avoid a kernel oops
  2025-03-24 14:44     ` Roger Quadros
@ 2025-03-25 10:46       ` Benedikt Spranger
  0 siblings, 0 replies; 5+ messages in thread
From: Benedikt Spranger @ 2025-03-25 10:46 UTC (permalink / raw)
  To: Roger Quadros; +Cc: netdev, MD Danish Anwar, Andrew Lunn

On Mon, 24 Mar 2025 16:44:20 +0200
Roger Quadros <rogerq@kernel.org> wrote:

> On 23/03/2025 17:18, Benedikt Spranger wrote:
> > On Sun, 23 Mar 2025 09:19:35 +0200
> > Roger Quadros <rogerq@kernel.org> wrote:
> >   
> >> Did you actually get a kernel oops?  
> > Yes. And I would like to attach the kernel output, but I do not have
> > access to the board ATM.
> >   
> >> If yes, which part of code produces the oops.  
> > I get an NULL pointer dereference in is_multicast_ether_addr().
> > It happens here:
> > 
> >     u32 a = *(const u32 *)addr;  
> 
> But this should not happen. Because ndev->addr (pointer) should not
> be zero. Driver allocated ndev with alloc_etherdev_mq() which
> allocates memory for ndev->addr using dev_addr_init(dev)).
Emphasis on *should* :)
OK, got your point. Dig deeper into that.

> >> Even if it fails we do set a random MAC address and do not return
> >> error. So above statement is false.  
> > I doubt that. of_get_ethdev_address() do not set a random MAC
> > address in case of a failure. It simply returns -ENODEV. Since
> > is_valid_ether_addr() fails with a NULL pointer dereference in
> > is_multicast_ether_addr() on the other hand, no random MAC address
> > is set.   
> 
> What I meant was we set random address using eth_hw_addr_random().
But that happens after the failing check. So evaluating the return of
of_get_ethdev_address() seem to be a good thing in the first place.

I my understanding (for now) it is nessesary to check both: the return
of of_get_ethdev_address() *and* !is_valid_ether_addr(). If any of these
checks fail eth_hw_addr_random() should be called and therefore a
random MAC address be set.

Regards
    Bene

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

end of thread, other threads:[~2025-03-25 10:44 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-22 14:33 [PATCH] net: ti: icssg-prueth: Check return value to avoid a kernel oops Benedikt Spranger
2025-03-23  7:19 ` Roger Quadros
2025-03-23 15:18   ` Benedikt Spranger
2025-03-24 14:44     ` Roger Quadros
2025-03-25 10:46       ` Benedikt Spranger

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