Skip to content

Commit ece593f

Browse files
Furong Xugregkh
authored andcommitted
net: stmmac: TSO: Fix unbalanced DMA map/unmap for non-paged SKB data
[ Upstream commit 66600fa ] In case the non-paged data of a SKB carries protocol header and protocol payload to be transmitted on a certain platform that the DMA AXI address width is configured to 40-bit/48-bit, or the size of the non-paged data is bigger than TSO_MAX_BUFF_SIZE on a certain platform that the DMA AXI address width is configured to 32-bit, then this SKB requires at least two DMA transmit descriptors to serve it. For example, three descriptors are allocated to split one DMA buffer mapped from one piece of non-paged data: dma_desc[N + 0], dma_desc[N + 1], dma_desc[N + 2]. Then three elements of tx_q->tx_skbuff_dma[] will be allocated to hold extra information to be reused in stmmac_tx_clean(): tx_q->tx_skbuff_dma[N + 0], tx_q->tx_skbuff_dma[N + 1], tx_q->tx_skbuff_dma[N + 2]. Now we focus on tx_q->tx_skbuff_dma[entry].buf, which is the DMA buffer address returned by DMA mapping call. stmmac_tx_clean() will try to unmap the DMA buffer _ONLY_IF_ tx_q->tx_skbuff_dma[entry].buf is a valid buffer address. The expected behavior that saves DMA buffer address of this non-paged data to tx_q->tx_skbuff_dma[entry].buf is: tx_q->tx_skbuff_dma[N + 0].buf = NULL; tx_q->tx_skbuff_dma[N + 1].buf = NULL; tx_q->tx_skbuff_dma[N + 2].buf = dma_map_single(); Unfortunately, the current code misbehaves like this: tx_q->tx_skbuff_dma[N + 0].buf = dma_map_single(); tx_q->tx_skbuff_dma[N + 1].buf = NULL; tx_q->tx_skbuff_dma[N + 2].buf = NULL; On the stmmac_tx_clean() side, when dma_desc[N + 0] is closed by the DMA engine, tx_q->tx_skbuff_dma[N + 0].buf is a valid buffer address obviously, then the DMA buffer will be unmapped immediately. There may be a rare case that the DMA engine does not finish the pending dma_desc[N + 1], dma_desc[N + 2] yet. Now things will go horribly wrong, DMA is going to access a unmapped/unreferenced memory region, corrupted data will be transmited or iommu fault will be triggered :( In contrast, the for-loop that maps SKB fragments behaves perfectly as expected, and that is how the driver should do for both non-paged data and paged frags actually. This patch corrects DMA map/unmap sequences by fixing the array index for tx_q->tx_skbuff_dma[entry].buf when assigning DMA buffer address. Tested and verified on DWXGMAC CORE 3.20a Reported-by: Suraj Jaiswal <quic_jsuraj@quicinc.com> Fixes: f748be5 ("stmmac: support new GMAC4") Signed-off-by: Furong Xu <0x1207@gmail.com> Reviewed-by: Hariprasad Kelam <hkelam@marvell.com> Reviewed-by: Simon Horman <horms@kernel.org> Link: https://patch.msgid.link/20241021061023.2162701-1-0x1207@gmail.com Signed-off-by: Paolo Abeni <pabeni@redhat.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
1 parent 720be85 commit ece593f

File tree

1 file changed

+17
-5
lines changed

1 file changed

+17
-5
lines changed

drivers/net/ethernet/stmicro/stmmac/stmmac_main.c

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4110,11 +4110,6 @@ static netdev_tx_t stmmac_tso_xmit(struct sk_buff *skb, struct net_device *dev)
41104110
if (dma_mapping_error(priv->device, des))
41114111
goto dma_map_err;
41124112

4113-
tx_q->tx_skbuff_dma[first_entry].buf = des;
4114-
tx_q->tx_skbuff_dma[first_entry].len = skb_headlen(skb);
4115-
tx_q->tx_skbuff_dma[first_entry].map_as_page = false;
4116-
tx_q->tx_skbuff_dma[first_entry].buf_type = STMMAC_TXBUF_T_SKB;
4117-
41184113
if (priv->dma_cap.addr64 <= 32) {
41194114
first->des0 = cpu_to_le32(des);
41204115

@@ -4133,6 +4128,23 @@ static netdev_tx_t stmmac_tso_xmit(struct sk_buff *skb, struct net_device *dev)
41334128

41344129
stmmac_tso_allocator(priv, des, tmp_pay_len, (nfrags == 0), queue);
41354130

4131+
/* In case two or more DMA transmit descriptors are allocated for this
4132+
* non-paged SKB data, the DMA buffer address should be saved to
4133+
* tx_q->tx_skbuff_dma[].buf corresponding to the last descriptor,
4134+
* and leave the other tx_q->tx_skbuff_dma[].buf as NULL to guarantee
4135+
* that stmmac_tx_clean() does not unmap the entire DMA buffer too early
4136+
* since the tail areas of the DMA buffer can be accessed by DMA engine
4137+
* sooner or later.
4138+
* By saving the DMA buffer address to tx_q->tx_skbuff_dma[].buf
4139+
* corresponding to the last descriptor, stmmac_tx_clean() will unmap
4140+
* this DMA buffer right after the DMA engine completely finishes the
4141+
* full buffer transmission.
4142+
*/
4143+
tx_q->tx_skbuff_dma[tx_q->cur_tx].buf = des;
4144+
tx_q->tx_skbuff_dma[tx_q->cur_tx].len = skb_headlen(skb);
4145+
tx_q->tx_skbuff_dma[tx_q->cur_tx].map_as_page = false;
4146+
tx_q->tx_skbuff_dma[tx_q->cur_tx].buf_type = STMMAC_TXBUF_T_SKB;
4147+
41364148
/* Prepare fragments */
41374149
for (i = 0; i < nfrags; i++) {
41384150
const skb_frag_t *frag = &skb_shinfo(skb)->frags[i];

0 commit comments

Comments
 (0)