net: hsr: Fix potential use-after-free
authorYueHaibing <yuehaibing@huawei.com>
Fri, 25 Nov 2022 07:57:24 +0000 (15:57 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 8 Dec 2022 10:23:56 +0000 (11:23 +0100)
commit7ca81a161e406834a1fdc405fc83a572bd14b8d9
tree69c99feb90c93b1988460679609be9ccefa3a07d
parenta1ba595e35aa3afbe417ff0af353afb9f65559c0
net: hsr: Fix potential use-after-free

[ Upstream commit 7e177d32442b7ed08a9fa61b61724abc548cb248 ]

The skb is delivered to netif_rx() which may free it, after calling this,
dereferencing skb may trigger use-after-free.

Fixes: f421436a591d ("net/hsr: Add support for the High-availability Seamless Redundancy protocol (HSRv0)")
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Link: https://lore.kernel.org/r/20221125075724.27912-1-yuehaibing@huawei.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
net/hsr/hsr_forward.c