From: Frank Blaschka Date: Mon, 3 Mar 2008 20:16:04 +0000 (-0800) Subject: [NET]: Fix race in generic address resolution. X-Git-Tag: v3.12-rc1~22171^2~180 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7e36763b2c204d59de4e88087f84a2c0c8421f25;p=kernel%2Fkernel-generic.git [NET]: Fix race in generic address resolution. neigh_update sends skb from neigh->arp_queue while neigh_timer_handler has increased skbs refcount and calls solicit with the skb. neigh_timer_handler should not increase skbs refcount but make a copy of the skb and do solicit with the copy. Signed-off-by: Frank Blaschka Signed-off-by: David S. Miller --- diff --git a/net/core/neighbour.c b/net/core/neighbour.c index aef0153..d9a02b2 100644 --- a/net/core/neighbour.c +++ b/net/core/neighbour.c @@ -839,7 +839,7 @@ static void neigh_timer_handler(unsigned long arg) struct sk_buff *skb = skb_peek(&neigh->arp_queue); /* keep skb alive even if arp_queue overflows */ if (skb) - skb_get(skb); + skb = skb_copy(skb, GFP_ATOMIC); write_unlock(&neigh->lock); neigh->ops->solicit(neigh, skb); atomic_inc(&neigh->probes);