]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
appletalk: Fix socket referencing in skb
authorAndrey Utkin <andrey.krieger.utkin@gmail.com>
Mon, 7 Jul 2014 20:22:50 +0000 (23:22 +0300)
committerWilly Tarreau <w@1wt.eu>
Sun, 23 Nov 2014 09:55:38 +0000 (10:55 +0100)
[ Upstream commit 36beddc272c111689f3042bf3d10a64d8a805f93 ]

Setting just skb->sk without taking its reference and setting a
destructor is invalid. However, in the places where this was done, skb
is used in a way not requiring skb->sk setting. So dropping the setting
of skb->sk.
Thanks to Eric Dumazet <eric.dumazet@gmail.com> for correct solution.

Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=79441
Reported-by: Ed Martin <edman007@edman007.com>
Signed-off-by: Andrey Utkin <andrey.krieger.utkin@gmail.com>
Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Willy Tarreau <w@1wt.eu>
net/appletalk/ddp.c

index 5eae3606f32ff46acccba41fe98fd173c3531ab0..d44ac8dc11b852cb1a1b2424b5d87b2615e4abbe 100644 (file)
@@ -1469,8 +1469,6 @@ static int atalk_rcv(struct sk_buff *skb, struct net_device *dev,
                goto drop;
 
        /* Queue packet (standard) */
-       skb->sk = sock;
-
        if (sock_queue_rcv_skb(sock, skb) < 0)
                goto drop;
 
@@ -1616,7 +1614,6 @@ static int atalk_sendmsg(struct kiocb *iocb, struct socket *sock, struct msghdr
        if (!skb)
                return err;
 
-       skb->sk = sk;
        skb_reserve(skb, ddp_dl->header_length);
        skb_reserve(skb, dev->hard_header_len);
        skb->dev = dev;