* [PATCH net] net: ethernet: lantiq_etop: fix memory disclosure
@ 2024-07-13 22:33 Aleksander Jan Bajkowski
2024-07-16 9:46 ` Paolo Abeni
0 siblings, 1 reply; 4+ messages in thread
From: Aleksander Jan Bajkowski @ 2024-07-13 22:33 UTC (permalink / raw)
To: davem, edumazet, kuba, pabeni, olek2, shannon.nelson, sd,
u.kleine-koenig, john, ralf, ralph.hempel, netdev, linux-kernel
When applying padding, the buffer is not zeroed, which results in
memory disclosure. This patch uses skb_put_padto() to pad Ethernet
frames properly.
It appears that only the MAC in xrx100 and newer SoCs supports
padding by hardware, so software padding must be applied.
Fixes: 504d4721ee8e ("MIPS: Lantiq: Add ethernet driver")
Signed-off-by: Aleksander Jan Bajkowski <olek2@wp.pl>
---
drivers/net/ethernet/lantiq_etop.c | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/drivers/net/ethernet/lantiq_etop.c b/drivers/net/ethernet/lantiq_etop.c
index 0b9982804370..196715d9ea43 100644
--- a/drivers/net/ethernet/lantiq_etop.c
+++ b/drivers/net/ethernet/lantiq_etop.c
@@ -478,11 +478,11 @@ ltq_etop_tx(struct sk_buff *skb, struct net_device *dev)
struct ltq_etop_priv *priv = netdev_priv(dev);
struct ltq_etop_chan *ch = &priv->ch[(queue << 1) | 1];
struct ltq_dma_desc *desc = &ch->dma.desc_base[ch->dma.desc];
- int len;
unsigned long flags;
u32 byte_offset;
- len = skb->len < ETH_ZLEN ? ETH_ZLEN : skb->len;
+ if (skb_put_padto(skb, ETH_ZLEN))
+ return NETDEV_TX_OK;
if ((desc->ctl & (LTQ_DMA_OWN | LTQ_DMA_C)) || ch->skb[ch->dma.desc]) {
netdev_err(dev, "tx ring full\n");
@@ -497,12 +497,13 @@ ltq_etop_tx(struct sk_buff *skb, struct net_device *dev)
netif_trans_update(dev);
spin_lock_irqsave(&priv->lock, flags);
- desc->addr = ((unsigned int)dma_map_single(&priv->pdev->dev, skb->data, len,
- DMA_TO_DEVICE)) - byte_offset;
+ desc->addr = ((unsigned int)dma_map_single(&priv->pdev->dev, skb->data,
+ skb->len, DMA_TO_DEVICE)) -
+ byte_offset;
/* Make sure the address is written before we give it to HW */
wmb();
desc->ctl = LTQ_DMA_OWN | LTQ_DMA_SOP | LTQ_DMA_EOP |
- LTQ_DMA_TX_OFFSET(byte_offset) | (len & LTQ_DMA_SIZE_MASK);
+ LTQ_DMA_TX_OFFSET(byte_offset) | (skb->len & LTQ_DMA_SIZE_MASK);
ch->dma.desc++;
ch->dma.desc %= LTQ_DESC_NUM;
spin_unlock_irqrestore(&priv->lock, flags);
--
2.39.2
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net] net: ethernet: lantiq_etop: fix memory disclosure
2024-07-13 22:33 [PATCH net] net: ethernet: lantiq_etop: fix memory disclosure Aleksander Jan Bajkowski
@ 2024-07-16 9:46 ` Paolo Abeni
2024-07-16 19:27 ` Aleksander Jan Bajkowski
0 siblings, 1 reply; 4+ messages in thread
From: Paolo Abeni @ 2024-07-16 9:46 UTC (permalink / raw)
To: Aleksander Jan Bajkowski, davem, edumazet, kuba, shannon.nelson,
sd, u.kleine-koenig, john, ralf, ralph.hempel, netdev,
linux-kernel
On 7/14/24 00:33, Aleksander Jan Bajkowski wrote:
> diff --git a/drivers/net/ethernet/lantiq_etop.c b/drivers/net/ethernet/lantiq_etop.c
> index 0b9982804370..196715d9ea43 100644
> --- a/drivers/net/ethernet/lantiq_etop.c
> +++ b/drivers/net/ethernet/lantiq_etop.c
> @@ -478,11 +478,11 @@ ltq_etop_tx(struct sk_buff *skb, struct net_device *dev)
> struct ltq_etop_priv *priv = netdev_priv(dev);
> struct ltq_etop_chan *ch = &priv->ch[(queue << 1) | 1];
> struct ltq_dma_desc *desc = &ch->dma.desc_base[ch->dma.desc];
> - int len;
> unsigned long flags;
> u32 byte_offset;
>
> - len = skb->len < ETH_ZLEN ? ETH_ZLEN : skb->len;
> + if (skb_put_padto(skb, ETH_ZLEN))
You may want to increment tx drop stats here.
Thanks,
Paolo
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net] net: ethernet: lantiq_etop: fix memory disclosure
2024-07-16 9:46 ` Paolo Abeni
@ 2024-07-16 19:27 ` Aleksander Jan Bajkowski
2024-07-25 19:47 ` Aleksander Jan Bajkowski
0 siblings, 1 reply; 4+ messages in thread
From: Aleksander Jan Bajkowski @ 2024-07-16 19:27 UTC (permalink / raw)
To: Paolo Abeni, davem, edumazet, kuba, shannon.nelson, sd,
u.kleine-koenig, john, ralf, ralph.hempel, netdev, linux-kernel
Hi Paolo,
On 16.07.2024 11:46, Paolo Abeni wrote:
> On 7/14/24 00:33, Aleksander Jan Bajkowski wrote:
>> diff --git a/drivers/net/ethernet/lantiq_etop.c
>> b/drivers/net/ethernet/lantiq_etop.c
>> index 0b9982804370..196715d9ea43 100644
>> --- a/drivers/net/ethernet/lantiq_etop.c
>> +++ b/drivers/net/ethernet/lantiq_etop.c
>> @@ -478,11 +478,11 @@ ltq_etop_tx(struct sk_buff *skb, struct
>> net_device *dev)
>> struct ltq_etop_priv *priv = netdev_priv(dev);
>> struct ltq_etop_chan *ch = &priv->ch[(queue << 1) | 1];
>> struct ltq_dma_desc *desc = &ch->dma.desc_base[ch->dma.desc];
>> - int len;
>> unsigned long flags;
>> u32 byte_offset;
>> - len = skb->len < ETH_ZLEN ? ETH_ZLEN : skb->len;
>> + if (skb_put_padto(skb, ETH_ZLEN))
>
> You may want to increment tx drop stats here.
Statistics are on my TODO list. The current version of this driver
does not support statistics, so I will add them then. I would first
prefer to fix all the bugs present in the current version of the driver
and then add new features.
>
> Thanks,
>
> Paolo
>
Best regards,
Aleksander
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH net] net: ethernet: lantiq_etop: fix memory disclosure
2024-07-16 19:27 ` Aleksander Jan Bajkowski
@ 2024-07-25 19:47 ` Aleksander Jan Bajkowski
0 siblings, 0 replies; 4+ messages in thread
From: Aleksander Jan Bajkowski @ 2024-07-25 19:47 UTC (permalink / raw)
To: Paolo Abeni, davem, edumazet, kuba, shannon.nelson, sd,
u.kleine-koenig, john, ralf, ralph.hempel, netdev, linux-kernel
On 16.07.2024 21:27, Aleksander Jan Bajkowski wrote:
> Hi Paolo,
>
> On 16.07.2024 11:46, Paolo Abeni wrote:
>> On 7/14/24 00:33, Aleksander Jan Bajkowski wrote:
>>> diff --git a/drivers/net/ethernet/lantiq_etop.c
>>> b/drivers/net/ethernet/lantiq_etop.c
>>> index 0b9982804370..196715d9ea43 100644
>>> --- a/drivers/net/ethernet/lantiq_etop.c
>>> +++ b/drivers/net/ethernet/lantiq_etop.c
>>> @@ -478,11 +478,11 @@ ltq_etop_tx(struct sk_buff *skb, struct
>>> net_device *dev)
>>> struct ltq_etop_priv *priv = netdev_priv(dev);
>>> struct ltq_etop_chan *ch = &priv->ch[(queue << 1) | 1];
>>> struct ltq_dma_desc *desc = &ch->dma.desc_base[ch->dma.desc];
>>> - int len;
>>> unsigned long flags;
>>> u32 byte_offset;
>>> - len = skb->len < ETH_ZLEN ? ETH_ZLEN : skb->len;
>>> + if (skb_put_padto(skb, ETH_ZLEN))
>>
>> You may want to increment tx drop stats here.
>
> Statistics are on my TODO list. The current version of this driver
> does not support statistics, so I will add them then. I would first
> prefer to fix all the bugs present in the current version of the driver
> and then add new features.
Can this patch be merged? With the current form, it should be easy
to backport. I will add statistics to this driver in the future. I think it
doesn't make sense to increment only one statistic of dropped packets.
>
>
>>
>> Thanks,
>>
>> Paolo
>>
> Best regards,
> Aleksander
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-07-25 19:53 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-07-13 22:33 [PATCH net] net: ethernet: lantiq_etop: fix memory disclosure Aleksander Jan Bajkowski
2024-07-16 9:46 ` Paolo Abeni
2024-07-16 19:27 ` Aleksander Jan Bajkowski
2024-07-25 19:47 ` Aleksander Jan Bajkowski
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®