diff options
author | Denis V. Lunev <den@openvz.org> | 2008-01-19 02:55:19 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-28 18:08:08 -0500 |
commit | 775516bfa2bd7993620c9039191a0c30b8d8a496 (patch) | |
tree | 7385f35edda9f4124b802ccf337c55070d2e00bc /net/netlink | |
parent | b7c6ba6eb1234e35a74fb8ba8123232a7b1ba9e4 (diff) |
[NETNS]: Namespace stop vs 'ip r l' race.
During network namespace stop process kernel side netlink sockets
belonging to a namespace should be closed. They should not prevent
namespace to stop, so they do not increment namespace usage
counter. Though this counter will be put during last sock_put.
The raplacement of the correct netns for init_ns solves the problem
only partial as socket to be stoped until proper stop is a valid
netlink kernel socket and can be looked up by the user processes. This
is not a problem until it resides in initial namespace (no processes
inside this net), but this is not true for init_net.
So, hold the referrence for a socket, remove it from lookup tables and
only after that change namespace and perform a last put.
Signed-off-by: Denis V. Lunev <den@openvz.org>
Tested-by: Alexey Dobriyan <adobriyan@openvz.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/netlink')
-rw-r--r-- | net/netlink/af_netlink.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/net/netlink/af_netlink.c b/net/netlink/af_netlink.c index 626a58206298..6b178e1247b5 100644 --- a/net/netlink/af_netlink.c +++ b/net/netlink/af_netlink.c | |||
@@ -1396,6 +1396,9 @@ netlink_kernel_create(struct net *net, int unit, unsigned int groups, | |||
1396 | } | 1396 | } |
1397 | netlink_table_ungrab(); | 1397 | netlink_table_ungrab(); |
1398 | 1398 | ||
1399 | /* Do not hold an extra referrence to a namespace as this socket is | ||
1400 | * internal to a namespace and does not prevent it to stop. */ | ||
1401 | put_net(net); | ||
1399 | return sk; | 1402 | return sk; |
1400 | 1403 | ||
1401 | out_sock_release: | 1404 | out_sock_release: |
@@ -1411,7 +1414,19 @@ netlink_kernel_release(struct sock *sk) | |||
1411 | { | 1414 | { |
1412 | if (sk == NULL || sk->sk_socket == NULL) | 1415 | if (sk == NULL || sk->sk_socket == NULL) |
1413 | return; | 1416 | return; |
1417 | |||
1418 | /* | ||
1419 | * Last sock_put should drop referrence to sk->sk_net. It has already | ||
1420 | * been dropped in netlink_kernel_create. Taking referrence to stopping | ||
1421 | * namespace is not an option. | ||
1422 | * Take referrence to a socket to remove it from netlink lookup table | ||
1423 | * _alive_ and after that destroy it in the context of init_net. | ||
1424 | */ | ||
1425 | sock_hold(sk); | ||
1414 | sock_release(sk->sk_socket); | 1426 | sock_release(sk->sk_socket); |
1427 | |||
1428 | sk->sk_net = get_net(&init_net); | ||
1429 | sock_put(sk); | ||
1415 | } | 1430 | } |
1416 | EXPORT_SYMBOL(netlink_kernel_release); | 1431 | EXPORT_SYMBOL(netlink_kernel_release); |
1417 | 1432 | ||