Skip to content

Commit eb8c426

Browse files
devnexenPaolo Abeni
authored andcommitted
net: ti: icssg-prueth: fix use-after-free of CPPI descriptor in RX path
cppi5_hdesc_get_psdata() returns a pointer into the CPPI descriptor. In both emac_rx_packet() and emac_rx_packet_zc(), the descriptor is freed via k3_cppi_desc_pool_free() before the psdata pointer is used by emac_rx_timestamp(), which dereferences psdata[0] and psdata[1]. This constitutes a use-after-free on every received packet that goes through the timestamp path. Defer the descriptor free until after all accesses through the psdata pointer are complete. For emac_rx_packet(), move the free into the requeue label so both early-exit and success paths free the descriptor after all accesses are done. For emac_rx_packet_zc(), move the free to the end of the loop body after emac_dispatch_skb_zc() (which calls emac_rx_timestamp()) has returned. Fixes: 46eeb90 ("net: ti: icssg-prueth: Use page_pool API for RX buffer allocation") Signed-off-by: David Carlier <[email protected]> Reviewed-by: Simon Horman <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Paolo Abeni <[email protected]>
1 parent 25f5463 commit eb8c426

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/net/ethernet/ti/icssg/icssg_common.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -962,7 +962,6 @@ static int emac_rx_packet_zc(struct prueth_emac *emac, u32 flow_id,
962962
pkt_len -= 4;
963963
cppi5_desc_get_tags_ids(&desc_rx->hdr, &port_id, NULL);
964964
psdata = cppi5_hdesc_get_psdata(desc_rx);
965-
k3_cppi_desc_pool_free(rx_chn->desc_pool, desc_rx);
966965
count++;
967966
xsk_buff_set_size(xdp, pkt_len);
968967
xsk_buff_dma_sync_for_cpu(xdp);
@@ -988,6 +987,7 @@ static int emac_rx_packet_zc(struct prueth_emac *emac, u32 flow_id,
988987
emac_dispatch_skb_zc(emac, xdp, psdata);
989988
xsk_buff_free(xdp);
990989
}
990+
k3_cppi_desc_pool_free(rx_chn->desc_pool, desc_rx);
991991
}
992992

993993
if (xdp_status & ICSSG_XDP_REDIR)
@@ -1057,7 +1057,6 @@ static int emac_rx_packet(struct prueth_emac *emac, u32 flow_id, u32 *xdp_state)
10571057
/* firmware adds 4 CRC bytes, strip them */
10581058
pkt_len -= 4;
10591059
cppi5_desc_get_tags_ids(&desc_rx->hdr, &port_id, NULL);
1060-
k3_cppi_desc_pool_free(rx_chn->desc_pool, desc_rx);
10611060

10621061
/* if allocation fails we drop the packet but push the
10631062
* descriptor back to the ring with old page to prevent a stall
@@ -1115,6 +1114,7 @@ static int emac_rx_packet(struct prueth_emac *emac, u32 flow_id, u32 *xdp_state)
11151114
ndev->stats.rx_packets++;
11161115

11171116
requeue:
1117+
k3_cppi_desc_pool_free(rx_chn->desc_pool, desc_rx);
11181118
/* queue another RX DMA */
11191119
ret = prueth_dma_rx_push_mapped(emac, &emac->rx_chns, new_page,
11201120
PRUETH_MAX_PKT_SIZE);

0 commit comments

Comments
 (0)