]> git.hungrycats.org Git - linux/commitdiff
econet: Fix crash in aun_incoming().
authorDavid S. Miller <davem@davemloft.net>
Thu, 9 Dec 2010 02:42:23 +0000 (18:42 -0800)
committerAK <andi@firstfloor.org>
Sun, 6 Feb 2011 19:03:38 +0000 (11:03 -0800)
[ Upstream commit 4e085e76cbe558b79b54cbab772f61185879bc64 ]

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 <nelhage@ksplice.com>
Tested-by: Nelson Elhage <nelhage@ksplice.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Andi Kleen <ak@linux.intel.com>
net/econet/af_econet.c

index e40e6b023500237a8281cef898e0a197d94a0aec..c8d356c0f815fb865b4cd913ed72f16dd5ea8a49 100644 (file)
@@ -849,7 +849,11 @@ static void aun_incoming(struct sk_buff *skb, struct aunhdr *ah, size_t len)
        unsigned char stn = ntohl(ip->saddr) & 0xff;
        struct sock *sk;
        struct sk_buff *newskb;
-       struct ec_device *edev = skb->dev->ec_ptr;
+       struct dst_entry *dst = skb_dst(skb);
+       struct ec_device *edev = NULL;
+
+       if (dst)
+               edev = dst->dev->ec_ptr;
 
        if (! edev)
                goto bad;