Message ID | 20220413205653.1178458-1-eric.dumazet@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 0339d25a2807d913f5645b8d5e485640915f9702 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net-next] ipv6: fix NULL deref in ip6_rcv_core() | expand |
Hello: This patch was applied to netdev/net-next.git (master) by Jakub Kicinski <kuba@kernel.org>: On Wed, 13 Apr 2022 13:56:53 -0700 you wrote: > From: Eric Dumazet <edumazet@google.com> > > idev can be NULL, as the surrounding code suggests. > > Fixes: 4daf841a2ef3 ("net: ipv6: add skb drop reasons to ip6_rcv_core()") > Signed-off-by: Eric Dumazet <edumazet@google.com> > Cc: Menglong Dong <imagedong@tencent.com> > Cc: Jiang Biao <benbjiang@tencent.com> > Cc: Hao Peng <flyingpeng@tencent.com> > > [...] Here is the summary with links: - [net-next] ipv6: fix NULL deref in ip6_rcv_core() https://git.kernel.org/netdev/net-next/c/0339d25a2807 You are awesome, thank you!
diff --git a/net/ipv6/ip6_input.c b/net/ipv6/ip6_input.c index 126ae3aa67e1dc579bc0eecd21416e9d89dcbf08..0322cc86b84eaaed7529a4b65fdfba4c97a38375 100644 --- a/net/ipv6/ip6_input.c +++ b/net/ipv6/ip6_input.c @@ -166,7 +166,7 @@ static struct sk_buff *ip6_rcv_core(struct sk_buff *skb, struct net_device *dev, if ((skb = skb_share_check(skb, GFP_ATOMIC)) == NULL || !idev || unlikely(idev->cnf.disable_ipv6)) { __IP6_INC_STATS(net, idev, IPSTATS_MIB_INDISCARDS); - if (unlikely(idev->cnf.disable_ipv6)) + if (idev && unlikely(idev->cnf.disable_ipv6)) SKB_DR_SET(reason, IPV6DISABLED); goto drop; }