* [PATCH] net: ti: icssg-prueth: fix use-after-free of CPPI descriptor in RX path
@ 2026-03-18 9:28 David Carlier
2026-03-19 17:30 ` Simon Horman
0 siblings, 1 reply; 7+ messages in thread
From: David Carlier @ 2026-03-18 9:28 UTC (permalink / raw)
To: MD Danish Anwar, Roger Quadros, Andrew Lunn, David S . Miller
Cc: netdev, David Carlier
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(), this means freeing in each
early-exit path and after emac_rx_timestamp() in the success path. 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: 46eeb90f03e0 ("net: ti: icssg-prueth: Use page_pool API for RX buffer allocation")
Signed-off-by: David Carlier <devnexen@gmail.com>
---
drivers/net/ethernet/ti/icssg/icssg_common.c | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/drivers/net/ethernet/ti/icssg/icssg_common.c b/drivers/net/ethernet/ti/icssg/icssg_common.c
index 0a3cf2f848a5..31003962ecf7 100644
--- a/drivers/net/ethernet/ti/icssg/icssg_common.c
+++ b/drivers/net/ethernet/ti/icssg/icssg_common.c
@@ -962,7 +962,6 @@ static int emac_rx_packet_zc(struct prueth_emac *emac, u32 flow_id,
pkt_len -= 4;
cppi5_desc_get_tags_ids(&desc_rx->hdr, &port_id, NULL);
psdata = cppi5_hdesc_get_psdata(desc_rx);
- k3_cppi_desc_pool_free(rx_chn->desc_pool, desc_rx);
count++;
xsk_buff_set_size(xdp, pkt_len);
xsk_buff_dma_sync_for_cpu(xdp);
@@ -988,6 +987,7 @@ static int emac_rx_packet_zc(struct prueth_emac *emac, u32 flow_id,
emac_dispatch_skb_zc(emac, xdp, psdata);
xsk_buff_free(xdp);
}
+ k3_cppi_desc_pool_free(rx_chn->desc_pool, desc_rx);
}
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)
/* firmware adds 4 CRC bytes, strip them */
pkt_len -= 4;
cppi5_desc_get_tags_ids(&desc_rx->hdr, &port_id, NULL);
- k3_cppi_desc_pool_free(rx_chn->desc_pool, desc_rx);
/* if allocation fails we drop the packet but push the
* descriptor back to the ring with old page to prevent a stall
@@ -1066,6 +1065,7 @@ static int emac_rx_packet(struct prueth_emac *emac, u32 flow_id, u32 *xdp_state)
if (unlikely(!new_page)) {
new_page = page;
ndev->stats.rx_dropped++;
+ k3_cppi_desc_pool_free(rx_chn->desc_pool, desc_rx);
goto requeue;
}
@@ -1077,11 +1077,14 @@ static int emac_rx_packet(struct prueth_emac *emac, u32 flow_id, u32 *xdp_state)
*xdp_state = emac_run_xdp(emac, &xdp, &pkt_len);
if (*xdp_state == ICSSG_XDP_CONSUMED) {
page_pool_recycle_direct(pool, page);
+ k3_cppi_desc_pool_free(rx_chn->desc_pool, desc_rx);
goto requeue;
}
- if (*xdp_state != ICSSG_XDP_PASS)
+ if (*xdp_state != ICSSG_XDP_PASS) {
+ k3_cppi_desc_pool_free(rx_chn->desc_pool, desc_rx);
goto requeue;
+ }
headroom = xdp.data - xdp.data_hard_start;
pkt_len = xdp.data_end - xdp.data;
} else {
@@ -1093,6 +1096,7 @@ static int emac_rx_packet(struct prueth_emac *emac, u32 flow_id, u32 *xdp_state)
if (!skb) {
ndev->stats.rx_dropped++;
page_pool_recycle_direct(pool, page);
+ k3_cppi_desc_pool_free(rx_chn->desc_pool, desc_rx);
goto requeue;
}
@@ -1105,6 +1109,7 @@ static int emac_rx_packet(struct prueth_emac *emac, u32 flow_id, u32 *xdp_state)
if (emac->rx_ts_enabled)
emac_rx_timestamp(emac, skb, psdata);
+ k3_cppi_desc_pool_free(rx_chn->desc_pool, desc_rx);
if (emac->prueth->is_switch_mode)
skb->offload_fwd_mark = emac->offload_fwd_mark;
skb->protocol = eth_type_trans(skb, ndev);
--
2.53.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH] net: ti: icssg-prueth: fix use-after-free of CPPI descriptor in RX path
2026-03-18 9:28 David Carlier
@ 2026-03-19 17:30 ` Simon Horman
0 siblings, 0 replies; 7+ messages in thread
From: Simon Horman @ 2026-03-19 17:30 UTC (permalink / raw)
To: David Carlier
Cc: MD Danish Anwar, Roger Quadros, Andrew Lunn, David S . Miller,
netdev
On Wed, Mar 18, 2026 at 09:28:41AM +0000, David Carlier wrote:
> 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(), this means freeing in each
> early-exit path and after emac_rx_timestamp() in the success path. 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: 46eeb90f03e0 ("net: ti: icssg-prueth: Use page_pool API for RX buffer allocation")
> Signed-off-by: David Carlier <devnexen@gmail.com>
Hi David,
As a fix for code present in the net tree, this patch should be targeted
at net line this.
Subject: [PATCH net] DAnet: ti: icssg-prueth: ...
^^^
Unfortunately our CI tried to apply the patch to the default tree, net-next.
But it doesn't apply there. So the CI didn't run.
Please repost.
--
pw-bot: changes-requested
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH net] net: ti: icssg-prueth: fix use-after-free of CPPI descriptor in RX path
@ 2026-03-19 18:12 David Carlier
2026-03-20 17:27 ` Simon Horman
2026-03-20 17:44 ` [PATCH] " David Carlier
0 siblings, 2 replies; 7+ messages in thread
From: David Carlier @ 2026-03-19 18:12 UTC (permalink / raw)
To: MD Danish Anwar, Roger Quadros, Andrew Lunn, David S . Miller,
Simon Horman
Cc: netdev, David Carlier
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(), this means freeing in each
early-exit path and after emac_rx_timestamp() in the success path. 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: 46eeb90f03e0 ("net: ti: icssg-prueth: Use page_pool API for RX buffer allocation")
Signed-off-by: David Carlier <devnexen@gmail.com>
---
drivers/net/ethernet/ti/icssg/icssg_common.c | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/drivers/net/ethernet/ti/icssg/icssg_common.c b/drivers/net/ethernet/ti/icssg/icssg_common.c
index 0a3cf2f848a5..31003962ecf7 100644
--- a/drivers/net/ethernet/ti/icssg/icssg_common.c
+++ b/drivers/net/ethernet/ti/icssg/icssg_common.c
@@ -962,7 +962,6 @@ static int emac_rx_packet_zc(struct prueth_emac *emac, u32 flow_id,
pkt_len -= 4;
cppi5_desc_get_tags_ids(&desc_rx->hdr, &port_id, NULL);
psdata = cppi5_hdesc_get_psdata(desc_rx);
- k3_cppi_desc_pool_free(rx_chn->desc_pool, desc_rx);
count++;
xsk_buff_set_size(xdp, pkt_len);
xsk_buff_dma_sync_for_cpu(xdp);
@@ -988,6 +987,7 @@ static int emac_rx_packet_zc(struct prueth_emac *emac, u32 flow_id,
emac_dispatch_skb_zc(emac, xdp, psdata);
xsk_buff_free(xdp);
}
+ k3_cppi_desc_pool_free(rx_chn->desc_pool, desc_rx);
}
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)
/* firmware adds 4 CRC bytes, strip them */
pkt_len -= 4;
cppi5_desc_get_tags_ids(&desc_rx->hdr, &port_id, NULL);
- k3_cppi_desc_pool_free(rx_chn->desc_pool, desc_rx);
/* if allocation fails we drop the packet but push the
* descriptor back to the ring with old page to prevent a stall
@@ -1066,6 +1065,7 @@ static int emac_rx_packet(struct prueth_emac *emac, u32 flow_id, u32 *xdp_state)
if (unlikely(!new_page)) {
new_page = page;
ndev->stats.rx_dropped++;
+ k3_cppi_desc_pool_free(rx_chn->desc_pool, desc_rx);
goto requeue;
}
@@ -1077,11 +1077,14 @@ static int emac_rx_packet(struct prueth_emac *emac, u32 flow_id, u32 *xdp_state)
*xdp_state = emac_run_xdp(emac, &xdp, &pkt_len);
if (*xdp_state == ICSSG_XDP_CONSUMED) {
page_pool_recycle_direct(pool, page);
+ k3_cppi_desc_pool_free(rx_chn->desc_pool, desc_rx);
goto requeue;
}
- if (*xdp_state != ICSSG_XDP_PASS)
+ if (*xdp_state != ICSSG_XDP_PASS) {
+ k3_cppi_desc_pool_free(rx_chn->desc_pool, desc_rx);
goto requeue;
+ }
headroom = xdp.data - xdp.data_hard_start;
pkt_len = xdp.data_end - xdp.data;
} else {
@@ -1093,6 +1096,7 @@ static int emac_rx_packet(struct prueth_emac *emac, u32 flow_id, u32 *xdp_state)
if (!skb) {
ndev->stats.rx_dropped++;
page_pool_recycle_direct(pool, page);
+ k3_cppi_desc_pool_free(rx_chn->desc_pool, desc_rx);
goto requeue;
}
@@ -1105,6 +1109,7 @@ static int emac_rx_packet(struct prueth_emac *emac, u32 flow_id, u32 *xdp_state)
if (emac->rx_ts_enabled)
emac_rx_timestamp(emac, skb, psdata);
+ k3_cppi_desc_pool_free(rx_chn->desc_pool, desc_rx);
if (emac->prueth->is_switch_mode)
skb->offload_fwd_mark = emac->offload_fwd_mark;
skb->protocol = eth_type_trans(skb, ndev);
--
2.53.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH net] net: ti: icssg-prueth: fix use-after-free of CPPI descriptor in RX path
2026-03-19 18:12 [PATCH net] net: ti: icssg-prueth: fix use-after-free of CPPI descriptor in RX path David Carlier
@ 2026-03-20 17:27 ` Simon Horman
2026-03-20 17:44 ` [PATCH] " David Carlier
1 sibling, 0 replies; 7+ messages in thread
From: Simon Horman @ 2026-03-20 17:27 UTC (permalink / raw)
To: David Carlier
Cc: MD Danish Anwar, Roger Quadros, Andrew Lunn, David S . Miller,
netdev
On Thu, Mar 19, 2026 at 06:12:36PM +0000, David Carlier wrote:
> 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(), this means freeing in each
> early-exit path and after emac_rx_timestamp() in the success path. 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: 46eeb90f03e0 ("net: ti: icssg-prueth: Use page_pool API for RX buffer allocation")
> Signed-off-by: David Carlier <devnexen@gmail.com>
> ---
> drivers/net/ethernet/ti/icssg/icssg_common.c | 11 ++++++++---
> 1 file changed, 8 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/net/ethernet/ti/icssg/icssg_common.c b/drivers/net/ethernet/ti/icssg/icssg_common.c
...
> @@ -1057,7 +1057,6 @@ static int emac_rx_packet(struct prueth_emac *emac, u32 flow_id, u32 *xdp_state)
> /* firmware adds 4 CRC bytes, strip them */
> pkt_len -= 4;
> cppi5_desc_get_tags_ids(&desc_rx->hdr, &port_id, NULL);
> - k3_cppi_desc_pool_free(rx_chn->desc_pool, desc_rx);
>
> /* if allocation fails we drop the packet but push the
> * descriptor back to the ring with old page to prevent a stall
> @@ -1066,6 +1065,7 @@ static int emac_rx_packet(struct prueth_emac *emac, u32 flow_id, u32 *xdp_state)
> if (unlikely(!new_page)) {
> new_page = page;
> ndev->stats.rx_dropped++;
> + k3_cppi_desc_pool_free(rx_chn->desc_pool, desc_rx);
> goto requeue;
Hi David,
I am sorry for not noticing this earlier.
It seems to me that with this patch k3_cppi_desc_pool_free()
is always called before the requeue label is reached.
Would it make sense to move the call to k3_cppi_desc_pool_free()
into the requeue label? Or does it need to be called earlier
than that in the non-goto case?
> }
>
...
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH] net: ti: icssg-prueth: fix use-after-free of CPPI descriptor in RX path
2026-03-19 18:12 [PATCH net] net: ti: icssg-prueth: fix use-after-free of CPPI descriptor in RX path David Carlier
2026-03-20 17:27 ` Simon Horman
@ 2026-03-20 17:44 ` David Carlier
2026-03-21 10:31 ` Simon Horman
2026-03-24 11:30 ` patchwork-bot+netdevbpf
1 sibling, 2 replies; 7+ messages in thread
From: David Carlier @ 2026-03-20 17:44 UTC (permalink / raw)
To: MD Danish Anwar, Roger Quadros, Andrew Lunn, David S . Miller,
Simon Horman
Cc: netdev, David Carlier
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: 46eeb90f03e0 ("net: ti: icssg-prueth: Use page_pool API for RX buffer allocation")
Signed-off-by: David Carlier <devnexen@gmail.com>
---
drivers/net/ethernet/ti/icssg/icssg_common.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/ethernet/ti/icssg/icssg_common.c b/drivers/net/ethernet/ti/icssg/icssg_common.c
index 0a3cf2f848a5..fd4e7622f123 100644
--- a/drivers/net/ethernet/ti/icssg/icssg_common.c
+++ b/drivers/net/ethernet/ti/icssg/icssg_common.c
@@ -962,7 +962,6 @@ static int emac_rx_packet_zc(struct prueth_emac *emac, u32 flow_id,
pkt_len -= 4;
cppi5_desc_get_tags_ids(&desc_rx->hdr, &port_id, NULL);
psdata = cppi5_hdesc_get_psdata(desc_rx);
- k3_cppi_desc_pool_free(rx_chn->desc_pool, desc_rx);
count++;
xsk_buff_set_size(xdp, pkt_len);
xsk_buff_dma_sync_for_cpu(xdp);
@@ -988,6 +987,7 @@ static int emac_rx_packet_zc(struct prueth_emac *emac, u32 flow_id,
emac_dispatch_skb_zc(emac, xdp, psdata);
xsk_buff_free(xdp);
}
+ k3_cppi_desc_pool_free(rx_chn->desc_pool, desc_rx);
}
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)
/* firmware adds 4 CRC bytes, strip them */
pkt_len -= 4;
cppi5_desc_get_tags_ids(&desc_rx->hdr, &port_id, NULL);
- k3_cppi_desc_pool_free(rx_chn->desc_pool, desc_rx);
/* if allocation fails we drop the packet but push the
* 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)
ndev->stats.rx_packets++;
requeue:
+ k3_cppi_desc_pool_free(rx_chn->desc_pool, desc_rx);
/* queue another RX DMA */
ret = prueth_dma_rx_push_mapped(emac, &emac->rx_chns, new_page,
PRUETH_MAX_PKT_SIZE);
--
2.53.0
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH] net: ti: icssg-prueth: fix use-after-free of CPPI descriptor in RX path
2026-03-20 17:44 ` [PATCH] " David Carlier
@ 2026-03-21 10:31 ` Simon Horman
2026-03-24 11:30 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 7+ messages in thread
From: Simon Horman @ 2026-03-21 10:31 UTC (permalink / raw)
To: David Carlier
Cc: MD Danish Anwar, Roger Quadros, Andrew Lunn, David S . Miller,
netdev
On Fri, Mar 20, 2026 at 05:44:39PM +0000, David Carlier wrote:
> 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: 46eeb90f03e0 ("net: ti: icssg-prueth: Use page_pool API for RX buffer allocation")
> Signed-off-by: David Carlier <devnexen@gmail.com>
Reviewed-by: Simon Horman <horms@kernel.org>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] net: ti: icssg-prueth: fix use-after-free of CPPI descriptor in RX path
2026-03-20 17:44 ` [PATCH] " David Carlier
2026-03-21 10:31 ` Simon Horman
@ 2026-03-24 11:30 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 7+ messages in thread
From: patchwork-bot+netdevbpf @ 2026-03-24 11:30 UTC (permalink / raw)
To: David CARLIER; +Cc: danishanwar, rogerq, andrew+netdev, davem, horms, netdev
Hello:
This patch was applied to netdev/net.git (main)
by Paolo Abeni <pabeni@redhat.com>:
On Fri, 20 Mar 2026 17:44:39 +0000 you wrote:
> 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.
>
> [...]
Here is the summary with links:
- net: ti: icssg-prueth: fix use-after-free of CPPI descriptor in RX path
https://git.kernel.org/netdev/net/c/eb8c426c9803
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-03-24 11:30 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-19 18:12 [PATCH net] net: ti: icssg-prueth: fix use-after-free of CPPI descriptor in RX path David Carlier
2026-03-20 17:27 ` Simon Horman
2026-03-20 17:44 ` [PATCH] " David Carlier
2026-03-21 10:31 ` Simon Horman
2026-03-24 11:30 ` patchwork-bot+netdevbpf
-- strict thread matches above, loose matches on Subject: below --
2026-03-18 9:28 David Carlier
2026-03-19 17:30 ` Simon Horman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox