net: add a refcount tracker for kernel sockets
authorEric Dumazet <edumazet@google.com>
Thu, 20 Oct 2022 23:20:18 +0000 (23:20 +0000)
committerDavid S. Miller <davem@davemloft.net>
Mon, 24 Oct 2022 10:04:43 +0000 (11:04 +0100)
commit0cafd77dcd032d1687efaba5598cf07bce85997f
treec32efa19fb02e86944f6f71cf8e79f145432b721
parentb29e0dece45174f8c791853cbf40a24212148b47
net: add a refcount tracker for kernel sockets

Commit ffa84b5ffb37 ("net: add netns refcount tracker to struct sock")
added a tracker to sockets, but did not track kernel sockets.

We still have syzbot reports hinting about netns being destroyed
while some kernel TCP sockets had not been dismantled.

This patch tracks kernel sockets, and adds a ref_tracker_dir_print()
call to net_free() right before the netns is freed.

Normally, each layer is responsible for properly releasing its
kernel sockets before last call to net_free().

This debugging facility is enabled with CONFIG_NET_NS_REFCNT_TRACKER=y

Signed-off-by: Eric Dumazet <edumazet@google.com>
Reviewed-by: Kuniyuki Iwashima <kuniyu@amazon.com>
Tested-by: Kuniyuki Iwashima <kuniyu@amazon.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/net_namespace.h
net/core/net_namespace.c
net/core/sock.c
net/netlink/af_netlink.c
net/rds/tcp.c