]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
ipv4: keep skb->dst around in presence of IP options
authorEric Dumazet <edumazet@google.com>
Tue, 21 Mar 2017 04:23:48 +0000 (21:23 -0700)
committerBen Hutchings <ben@decadent.org.uk>
Tue, 4 Apr 2017 21:18:32 +0000 (22:18 +0100)
Upstream commit 34b2cef20f19c87999fff3da4071e66937db9644
("ipv4: keep skb->dst around in presence of IP options") incorrectly
root caused commit d826eb14ecef ("ipv4: PKTINFO doesnt need dst
reference") as bug origin.

This patch should fix the issue for 3.2.xx stable kernels, since IPv4
options seem to get more traction these days, after years of oblivion ;)

Fixes: f84af32cbca70 ("net: ip_queue_rcv_skb() helper"))
Signed-off-by: Eric Dumazet <edumazet@google.com>
Reported-by: Anarcheuz Fritz <anarcheuz@gmail.com>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
net/ipv4/ip_sockglue.c

index b3648bbef0da1e7d57d790f6c8d86f13bf6ac91c..a6e1eeb02267340ad031577a7f62fff0243de677 100644 (file)
@@ -1009,7 +1009,8 @@ e_inval:
  */
 int ip_queue_rcv_skb(struct sock *sk, struct sk_buff *skb)
 {
-       if (!(inet_sk(sk)->cmsg_flags & IP_CMSG_PKTINFO))
+       if (!(inet_sk(sk)->cmsg_flags & IP_CMSG_PKTINFO) &&
+           !IPCB(skb)->opt.optlen)
                skb_dst_drop(skb);
        return sock_queue_rcv_skb(sk, skb);
 }