* gro: Fix potential use after free
@ 2008-12-26 22:44 Herbert Xu
2008-12-26 22:57 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: Herbert Xu @ 2008-12-26 22:44 UTC (permalink / raw)
To: David S. Miller, netdev
Hi Dave:
While implementing GRO support for page frags, I found a little bug
in the original code.
gro: Fix potential use after free
The initial skb may have been freed after napi_gro_complete in
napi_gro_receive if it was merged into an existing packet. Thus
we cannot check same_flow (which indicates whether it was merged)
after calling napi_gro_complete.
This patch fixes this by saving the same_flow status before the
call to napi_gro_complete.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
diff --git a/net/core/dev.c b/net/core/dev.c
index daca72e..9d60941 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -2390,6 +2390,7 @@ int napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
__be16 type = skb->protocol;
struct list_head *head = &ptype_base[ntohs(type) & PTYPE_HASH_MASK];
int count = 0;
+ int same_flow;
int mac_len;
if (!(skb->dev->features & NETIF_F_GRO))
@@ -2425,6 +2426,8 @@ int napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
if (&ptype->list == head)
goto normal;
+ same_flow = NAPI_GRO_CB(skb)->same_flow;
+
if (pp) {
struct sk_buff *nskb = *pp;
@@ -2434,7 +2437,7 @@ int napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
count--;
}
- if (NAPI_GRO_CB(skb)->same_flow)
+ if (same_flow)
goto ok;
if (NAPI_GRO_CB(skb)->flush || count >= MAX_GRO_SKBS) {
Thanks,
--
Visit Openswan at http://www.openswan.org/
Email: Herbert Xu ~{PmV>HI~} <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: gro: Fix potential use after free
2008-12-26 22:44 gro: Fix potential use after free Herbert Xu
@ 2008-12-26 22:57 ` David Miller
0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2008-12-26 22:57 UTC (permalink / raw)
To: herbert; +Cc: netdev
From: Herbert Xu <herbert@gondor.apana.org.au>
Date: Sat, 27 Dec 2008 09:44:01 +1100
> gro: Fix potential use after free
>
> The initial skb may have been freed after napi_gro_complete in
> napi_gro_receive if it was merged into an existing packet. Thus
> we cannot check same_flow (which indicates whether it was merged)
> after calling napi_gro_complete.
>
> This patch fixes this by saving the same_flow status before the
> call to napi_gro_complete.
>
> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Applied, thanks Herbert.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-12-26 22:57 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-26 22:44 gro: Fix potential use after free Herbert Xu
2008-12-26 22:57 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox