]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
ipv6: fix possible UAF in ip6_finish_output2()
authorEric Dumazet <edumazet@google.com>
Wed, 25 Dec 2024 05:16:24 +0000 (21:16 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 9 Jan 2025 12:24:59 +0000 (13:24 +0100)
commit1504108cb6020df7b1a31c9bb80fd587470aa448
tree9af2e44a34ccc1c994ec3af851c6df31d9982cf8
parentee6b1db17f8287b615448488fc37f42bcfe9ece6
ipv6: fix possible UAF in ip6_finish_output2()

[ Upstream commit e891b36de161fcd96f12ff83667473e5067b9037 ]

If skb_expand_head() returns NULL, skb has been freed
and associated dst/idev could also have been freed.

We need to hold rcu_read_lock() to make sure the dst and
associated idev are alive.

Fixes: 5796015fa968 ("ipv6: allocate enough headroom in ip6_finish_output2()")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Cc: Vasily Averin <vasily.averin@linux.dev>
Reviewed-by: David Ahern <dsahern@kernel.org>
Link: https://patch.msgid.link/20240820160859.3786976-3-edumazet@google.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
(cherry picked from commit e891b36de161fcd96f12ff83667473e5067b9037)
Signed-off-by: Harshvardhan Jha <harshvardhan.j.jha@oracle.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
net/ipv6/ip6_output.c