sock: Move the socket inuse to namespace.
authorTonghao Zhang <xiangxia.m.yue@gmail.com>
Thu, 14 Dec 2017 13:51:58 +0000 (05:51 -0800)
committerDavid S. Miller <davem@davemloft.net>
Tue, 19 Dec 2017 14:58:14 +0000 (09:58 -0500)
commit648845ab7e200993dccd3948c719c858368c91e7
treeca35bba9338cb8bca9cadfa1badd2e755277beda
parent08fc7f8140730d2f8499c91b5abad44581b74635
sock: Move the socket inuse to namespace.

In some case, we want to know how many sockets are in use in
different _net_ namespaces. It's a key resource metric.

This patch add a member in struct netns_core. This is a counter
for socket-inuse in the _net_ namespace. The patch will add/sub
counter in the sk_alloc, sk_clone_lock and __sk_free.

This patch will not counter the socket created in kernel.
It's not very useful for userspace to know how many kernel
sockets we created.

The main reasons for doing this are that:

1. When linux calls the 'do_exit' for process to exit, the functions
'exit_task_namespaces' and 'exit_task_work' will be called sequentially.
'exit_task_namespaces' may have destroyed the _net_ namespace, but
'sock_release' called in 'exit_task_work' may use the _net_ namespace
if we counter the socket-inuse in sock_release.

2. socket and sock are in pair. More important, sock holds the _net_
namespace. We counter the socket-inuse in sock, for avoiding holding
_net_ namespace again in socket. It's a easy way to maintain the code.

Signed-off-by: Martin Zhang <zhangjunweimartin@didichuxing.com>
Signed-off-by: Tonghao Zhang <zhangtonghao@didichuxing.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/netns/core.h
include/net/sock.h
net/core/sock.c
net/socket.c