e100: Fix possible use after free in e100_xmit_prepare
authorWang Hai <wanghai38@huawei.com>
Tue, 15 Nov 2022 17:24:07 +0000 (01:24 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 8 Dec 2022 10:28:39 +0000 (11:28 +0100)
[ Upstream commit 45605c75c52c7ae7bfe902214343aabcfe5ba0ff ]

In e100_xmit_prepare(), if we can't map the skb, then return -ENOMEM, so
e100_xmit_frame() will return NETDEV_TX_BUSY and the upper layer will
resend the skb. But the skb is already freed, which will cause UAF bug
when the upper layer resends the skb.

Remove the harmful free.

Fixes: 5e5d49422dfb ("e100: Release skb when DMA mapping is failed in e100_xmit_prepare")
Signed-off-by: Wang Hai <wanghai38@huawei.com>
Reviewed-by: Alexander Duyck <alexanderduyck@fb.com>
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/ethernet/intel/e100.c

index 36d5224..8cd3714 100644 (file)
@@ -1742,11 +1742,8 @@ static int e100_xmit_prepare(struct nic *nic, struct cb *cb,
        dma_addr = dma_map_single(&nic->pdev->dev, skb->data, skb->len,
                                  DMA_TO_DEVICE);
        /* If we can't map the skb, have the upper layer try later */
-       if (dma_mapping_error(&nic->pdev->dev, dma_addr)) {
-               dev_kfree_skb_any(skb);
-               skb = NULL;
+       if (dma_mapping_error(&nic->pdev->dev, dma_addr))
                return -ENOMEM;
-       }
 
        /*
         * Use the last 4 bytes of the SKB payload packet as the CRC, used for