micrel: ksz8851: fixes struct pointer issue
authorJerry Ray <jerry.ray@microchip.com>
Mon, 22 Aug 2022 21:39:32 +0000 (16:39 -0500)
committerDavid S. Miller <davem@davemloft.net>
Wed, 24 Aug 2022 12:02:15 +0000 (13:02 +0100)
Issue found during code review. This bug has no impact as long as the
ks8851_net structure is the first element of the ks8851_net_spi structure.
As long as the offset to the ks8851_net struct is zero, the container_of()
macro is subtracting 0 and therefore no damage done. But if the
ks8851_net_spi struct is ever modified such that the ks8851_net struct
within it is no longer the first element of the struct, then the bug would
manifest itself and cause problems.

struct ks8851_net is contained within ks8851_net_spi.
ks is contained within kss.
kss is the priv_data of the netdev structure.

Signed-off-by: Jerry Ray <jerry.ray@microchip.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/micrel/ks8851_spi.c

index 82d55fc27edc67d6c89623665dd243fa923dbec8..70bc7253454f6b6b2794684b2a9fdd9b430bc279 100644 (file)
@@ -413,7 +413,8 @@ static int ks8851_probe_spi(struct spi_device *spi)
 
        spi->bits_per_word = 8;
 
-       ks = netdev_priv(netdev);
+       kss = netdev_priv(netdev);
+       ks = &kss->ks8851;
 
        ks->lock = ks8851_lock_spi;
        ks->unlock = ks8851_unlock_spi;
@@ -433,8 +434,6 @@ static int ks8851_probe_spi(struct spi_device *spi)
                 IRQ_RXPSI)     /* RX process stop */
        ks->rc_ier = STD_IRQ;
 
-       kss = to_ks8851_spi(ks);
-
        kss->spidev = spi;
        mutex_init(&kss->lock);
        INIT_WORK(&kss->tx_work, ks8851_tx_work);