Netdev List
 help / color / mirror / Atom feed
* [PATCH net v2] net: gro: don't merge zcopy skbs
@ 2026-05-20 15:18 Sabrina Dubroca
  2026-05-20 19:44 ` Sabrina Dubroca
  0 siblings, 1 reply; 3+ messages in thread
From: Sabrina Dubroca @ 2026-05-20 15:18 UTC (permalink / raw)
  To: netdev
  Cc: Sabrina Dubroca, Huzaifa Sidhpurwala, David S. Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Simon Horman,
	Pavel Begunkov

skb_gro_receive() can currently copy frags between the source and GRO
skb, without checking the zerocopy status, and in particular the
SKBFL_MANAGED_FRAG_REFS flag.

When SKBFL_MANAGED_FRAG_REFS is set, the skb doesn't hold a reference
on the pages in shinfo->frags. Appending those frags to another skb's
frags without fixing up the page refcount can lead to UAF.

When either the last skb in the GRO chain (the one we would append
frags to) or the source skb is zerocopy, don't merge the skbs.

Fixes: 753f1ca4e1e5 ("net: introduce managed frags infrastructure")
Reported-by: Huzaifa Sidhpurwala <huzaifas@redhat.com>
Assisted-by: Claude:claude-mythos-preview
Signed-off-by: Sabrina Dubroca <sd@queasysnail.net>
---
 net/core/gro.c | 3 +++
 1 file changed, 3 insertions(+)

v2: as Eric suggested, don't merge those skbs
v1: https://lore.kernel.org/netdev/4d583fc5401298453d0a2f1b4719a15be30c8e49.1779194090.git.sd@queasysnail.net/

Huzaifa has found this to be exploitable to overwrite the page cache

diff --git a/net/core/gro.c b/net/core/gro.c
index 31d21de5b15a..b22fb3ba7061 100644
--- a/net/core/gro.c
+++ b/net/core/gro.c
@@ -109,6 +109,9 @@ int skb_gro_receive(struct sk_buff *p, struct sk_buff *skb)
 	if (p->pp_recycle != skb->pp_recycle)
 		return -ETOOMANYREFS;
 
+	if (skb_zcopy(skb) || skb_zcopy(lp))
+		return -ETOOMANYREFS;
+
 	if (unlikely(p->len + len >= netif_get_gro_max_size(p->dev, p) ||
 		     NAPI_GRO_CB(skb)->flush))
 		return -E2BIG;
-- 
2.54.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-05-20 20:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-20 15:18 [PATCH net v2] net: gro: don't merge zcopy skbs Sabrina Dubroca
2026-05-20 19:44 ` Sabrina Dubroca
2026-05-20 20:10   ` Paolo Abeni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox