aboutsummaryrefslogtreecommitdiffstats
path: root/net/core
diff options
context:
space:
mode:
authorDenis V. Lunev <den@openvz.org>2008-01-19 02:55:19 -0500
committerDavid S. Miller <davem@davemloft.net>2008-01-28 18:08:08 -0500
commit775516bfa2bd7993620c9039191a0c30b8d8a496 (patch)
tree7385f35edda9f4124b802ccf337c55070d2e00bc /net/core
parentb7c6ba6eb1234e35a74fb8ba8123232a7b1ba9e4 (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/core')
-rw-r--r--net/core/rtnetlink.c15
1 files changed, 2 insertions, 13 deletions
diff --git a/net/core/rtnetlink.c b/net/core/rtnetlink.c
index 02cf848f71d2..ddbdde82a700 100644
--- a/net/core/rtnetlink.c
+++ b/net/core/rtnetlink.c
@@ -1368,25 +1368,14 @@ static int rtnetlink_net_init(struct net *net)
1368 rtnetlink_rcv, &rtnl_mutex, THIS_MODULE); 1368 rtnetlink_rcv, &rtnl_mutex, THIS_MODULE);
1369 if (!sk) 1369 if (!sk)
1370 return -ENOMEM; 1370 return -ENOMEM;
1371
1372 /* Don't hold an extra reference on the namespace */
1373 put_net(sk->sk_net);
1374 net->rtnl = sk; 1371 net->rtnl = sk;
1375 return 0; 1372 return 0;
1376} 1373}
1377 1374
1378static void rtnetlink_net_exit(struct net *net) 1375static void rtnetlink_net_exit(struct net *net)
1379{ 1376{
1380 struct sock *sk = net->rtnl; 1377 netlink_kernel_release(net->rtnl);
1381 if (sk) { 1378 net->rtnl = NULL;
1382 /* At the last minute lie and say this is a socket for the
1383 * initial network namespace. So the socket will be safe to
1384 * free.
1385 */
1386 sk->sk_net = get_net(&init_net);
1387 netlink_kernel_release(net->rtnl);
1388 net->rtnl = NULL;
1389 }
1390} 1379}
1391 1380
1392static struct pernet_operations rtnetlink_net_ops = { 1381static struct pernet_operations rtnetlink_net_ops = {