diff options
author | Xin Xiong <xiongx18@fudan.edu.cn> | 2022-08-13 14:49:08 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2022-08-15 12:40:28 +0200 |
commit | 7396ba87f1edf549284869451665c7c4e74ecd4f (patch) | |
tree | e5a72a34df9286b9cae985c720a32398b8450a4d /net/ipv6/addrconf.c | |
parent | Merge branch '100GbE' of git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net (diff) | |
download | linux-7396ba87f1edf549284869451665c7c4e74ecd4f.tar.xz linux-7396ba87f1edf549284869451665c7c4e74ecd4f.zip |
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: 6b2e04bc240f ("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>
Diffstat (limited to 'net/ipv6/addrconf.c')
0 files changed, 0 insertions, 0 deletions