From: David S. Miller Date: Thu, 9 Dec 2010 02:42:23 +0000 (-0800) Subject: econet: Fix crash in aun_incoming(). X-Git-Tag: v2.6.27.59~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c284f760b129a09691c76f24e25566dae1250b62;p=thirdparty%2Fkernel%2Fstable.git econet: Fix crash in aun_incoming(). commit 4e085e76cbe558b79b54cbab772f61185879bc64 upstream. Unconditional use of skb->dev won't work here, try to fetch the econet device via skb_dst()->dev instead. Suggested by Eric Dumazet. Reported-by: Nelson Elhage Tested-by: Nelson Elhage Signed-off-by: David S. Miller Cc: Moritz Muehlenhoff [jmm: Slightly adapted for 2.6.32] Signed-off-by: Greg Kroah-Hartman --- diff --git a/net/econet/af_econet.c b/net/econet/af_econet.c index dc11c44467eef..3b863a35a7941 100644 --- a/net/econet/af_econet.c +++ b/net/econet/af_econet.c @@ -845,9 +845,13 @@ static void aun_incoming(struct sk_buff *skb, struct aunhdr *ah, size_t len) { struct iphdr *ip = ip_hdr(skb); unsigned char stn = ntohl(ip->saddr) & 0xff; + struct dst_entry *dst = skb->dst; + struct ec_device *edev = NULL; struct sock *sk; struct sk_buff *newskb; - struct ec_device *edev = skb->dev->ec_ptr; + + if (dst) + edev = dst->dev->ec_ptr; if (! edev) goto bad;