]> git.baikalelectronics.ru Git - kernel.git/commit
net: fix potential refcount leak in ndisc_router_discovery()
authorXin Xiong <xiongx18@fudan.edu.cn>
Sat, 13 Aug 2022 12:49:08 +0000 (20:49 +0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 15 Aug 2022 10:40:28 +0000 (11:40 +0100)
commitd7c7c3d3cef292e3f61be2530c2a7cbba24530c1
treee5a72a34df9286b9cae985c720a32398b8450a4d
parentf162b2ff86ee87e89231a2a90427b49058826d78
net: fix potential refcount leak in ndisc_router_discovery()

The issue happens on specific paths in the function. After both the
object `rt` and `neigh` are grabbed successfully, when `lifetime` is
nonzero but the metric needs change, the function just deletes the
route and set `rt` to NULL. Then, it may try grabbing `rt` and `neigh`
again if above conditions hold. The function simply overwrite `neigh`
if succeeds or returns if fails, without decreasing the reference
count of previous `neigh`. This may result in memory leaks.

Fix it by decrementing the reference count of `neigh` in place.

Fixes: e39f0cd8a6a2 ("net: allow user to set metric on default route learned via Router Advertisement")
Signed-off-by: Xin Xiong <xiongx18@fudan.edu.cn>
Signed-off-by: Xin Tan <tanxin.ctf@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv6/ndisc.c