Commit 5c8cafd6 authored by Denis V. Lunev's avatar Denis V. Lunev Committed by David S. Miller

[NETNS]: icmp(v6)_sk should not pin a namespace.

So, change icmp(v6)_sk creation/disposal to the scheme used in the
netlink for rtnl, i.e. create a socket in the context of the init_net
and assign the namespace without getting a referrence later.

Also use sk_release_kernel instead of sock_release to properly destroy
such sockets.
Signed-off-by: default avatarDenis V. Lunev <den@openvz.org>
Acked-by: default avatarDaniel Lezcano <dlezcano@fr.ibm.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent edf02087
...@@ -1146,14 +1146,8 @@ static void __exit icmp_exit(void) ...@@ -1146,14 +1146,8 @@ static void __exit icmp_exit(void)
{ {
int i; int i;
for_each_possible_cpu(i) { for_each_possible_cpu(i)
struct sock *sk; sk_release_kernel(__icmp_sk[i]);
sk = __icmp_sk[i];
if (sk == NULL)
continue;
sock_release(sk->sk_socket);
}
kfree(__icmp_sk); kfree(__icmp_sk);
__icmp_sk = NULL; __icmp_sk = NULL;
} }
...@@ -1176,6 +1170,8 @@ int __init icmp_init(void) ...@@ -1176,6 +1170,8 @@ int __init icmp_init(void)
goto fail; goto fail;
__icmp_sk[i] = sk = sock->sk; __icmp_sk[i] = sk = sock->sk;
sk_change_net(sk, &init_net);
sk->sk_allocation = GFP_ATOMIC; sk->sk_allocation = GFP_ATOMIC;
/* Enough space for 2 64K ICMP packets, including /* Enough space for 2 64K ICMP packets, including
......
...@@ -802,6 +802,8 @@ int __init icmpv6_init(void) ...@@ -802,6 +802,8 @@ int __init icmpv6_init(void)
} }
__icmpv6_sk[i] = sk = sock->sk; __icmpv6_sk[i] = sk = sock->sk;
sk_change_net(sk, &init_net);
sk->sk_allocation = GFP_ATOMIC; sk->sk_allocation = GFP_ATOMIC;
/* /*
* Split off their lock-class, because sk->sk_dst_lock * Split off their lock-class, because sk->sk_dst_lock
...@@ -831,11 +833,8 @@ int __init icmpv6_init(void) ...@@ -831,11 +833,8 @@ int __init icmpv6_init(void)
return 0; return 0;
fail: fail:
for (j = 0; j < i; j++) { for (j = 0; j < i; j++)
if (!cpu_possible(j)) sk_release_kernel(__icmpv6_sk[j]);
continue;
sock_release(__icmpv6_sk[j]->sk_socket);
}
return err; return err;
} }
...@@ -845,7 +844,7 @@ void icmpv6_cleanup(void) ...@@ -845,7 +844,7 @@ void icmpv6_cleanup(void)
int i; int i;
for_each_possible_cpu(i) { for_each_possible_cpu(i) {
sock_release(__icmpv6_sk[i]->sk_socket); sk_release_kernel(__icmpv6_sk[i]);
} }
inet6_del_protocol(&icmpv6_protocol, IPPROTO_ICMPV6); inet6_del_protocol(&icmpv6_protocol, IPPROTO_ICMPV6);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment