]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
ipv6: ip6_make_skb() needs to clear cork.base.dst
authorEric Dumazet <edumazet@google.com>
Fri, 12 Jan 2018 06:31:18 +0000 (22:31 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 31 Jan 2018 11:55:54 +0000 (12:55 +0100)
commitc2ceff11b46e6eed2a3138811864aaa645754127
tree14780af30b073636142647549cb317fe9ea1ede5
parentfb50d8c9169ee0e90cd7a733d65cb86876d795c7
ipv6: ip6_make_skb() needs to clear cork.base.dst

[ Upstream commit 95ef498d977bf44ac094778fd448b98af158a3e6 ]

In my last patch, I missed fact that cork.base.dst was not initialized
in ip6_make_skb() :

If ip6_setup_cork() returns an error, we might attempt a dst_release()
on some random pointer.

Fixes: 862c03ee1deb ("ipv6: fix possible mem leaks in ipv6_make_skb()")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Reported-by: syzbot <syzkaller@googlegroups.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
net/ipv6/ip6_output.c