aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6/inet6_hashtables.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/ipv6/inet6_hashtables.c')
-rw-r--r--net/ipv6/inet6_hashtables.c37
1 files changed, 24 insertions, 13 deletions
diff --git a/net/ipv6/inet6_hashtables.c b/net/ipv6/inet6_hashtables.c
index 1bcc3431859e..633a6c266136 100644
--- a/net/ipv6/inet6_hashtables.c
+++ b/net/ipv6/inet6_hashtables.c
@@ -22,9 +22,10 @@
22#include <net/inet6_hashtables.h> 22#include <net/inet6_hashtables.h>
23#include <net/ip.h> 23#include <net/ip.h>
24 24
25void __inet6_hash(struct sock *sk) 25int __inet6_hash(struct sock *sk, struct inet_timewait_sock *tw)
26{ 26{
27 struct inet_hashinfo *hashinfo = sk->sk_prot->h.hashinfo; 27 struct inet_hashinfo *hashinfo = sk->sk_prot->h.hashinfo;
28 int twrefcnt = 0;
28 29
29 WARN_ON(!sk_unhashed(sk)); 30 WARN_ON(!sk_unhashed(sk));
30 31
@@ -45,10 +46,15 @@ void __inet6_hash(struct sock *sk)
45 lock = inet_ehash_lockp(hashinfo, hash); 46 lock = inet_ehash_lockp(hashinfo, hash);
46 spin_lock(lock); 47 spin_lock(lock);
47 __sk_nulls_add_node_rcu(sk, list); 48 __sk_nulls_add_node_rcu(sk, list);
49 if (tw) {
50 WARN_ON(sk->sk_hash != tw->tw_hash);
51 twrefcnt = inet_twsk_unhash(tw);
52 }
48 spin_unlock(lock); 53 spin_unlock(lock);
49 } 54 }
50 55
51 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1); 56 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1);
57 return twrefcnt;
52} 58}
53EXPORT_SYMBOL(__inet6_hash); 59EXPORT_SYMBOL(__inet6_hash);
54 60
@@ -73,7 +79,7 @@ struct sock *__inet6_lookup_established(struct net *net,
73 * have wildcards anyways. 79 * have wildcards anyways.
74 */ 80 */
75 unsigned int hash = inet6_ehashfn(net, daddr, hnum, saddr, sport); 81 unsigned int hash = inet6_ehashfn(net, daddr, hnum, saddr, sport);
76 unsigned int slot = hash & (hashinfo->ehash_size - 1); 82 unsigned int slot = hash & hashinfo->ehash_mask;
77 struct inet_ehash_bucket *head = &hashinfo->ehash[slot]; 83 struct inet_ehash_bucket *head = &hashinfo->ehash[slot];
78 84
79 85
@@ -125,7 +131,7 @@ static int inline compute_score(struct sock *sk, struct net *net,
125{ 131{
126 int score = -1; 132 int score = -1;
127 133
128 if (net_eq(sock_net(sk), net) && inet_sk(sk)->num == hnum && 134 if (net_eq(sock_net(sk), net) && inet_sk(sk)->inet_num == hnum &&
129 sk->sk_family == PF_INET6) { 135 sk->sk_family == PF_INET6) {
130 const struct ipv6_pinfo *np = inet6_sk(sk); 136 const struct ipv6_pinfo *np = inet6_sk(sk);
131 137
@@ -214,15 +220,16 @@ static int __inet6_check_established(struct inet_timewait_death_row *death_row,
214 const struct in6_addr *daddr = &np->rcv_saddr; 220 const struct in6_addr *daddr = &np->rcv_saddr;
215 const struct in6_addr *saddr = &np->daddr; 221 const struct in6_addr *saddr = &np->daddr;
216 const int dif = sk->sk_bound_dev_if; 222 const int dif = sk->sk_bound_dev_if;
217 const __portpair ports = INET_COMBINED_PORTS(inet->dport, lport); 223 const __portpair ports = INET_COMBINED_PORTS(inet->inet_dport, lport);
218 struct net *net = sock_net(sk); 224 struct net *net = sock_net(sk);
219 const unsigned int hash = inet6_ehashfn(net, daddr, lport, saddr, 225 const unsigned int hash = inet6_ehashfn(net, daddr, lport, saddr,
220 inet->dport); 226 inet->inet_dport);
221 struct inet_ehash_bucket *head = inet_ehash_bucket(hinfo, hash); 227 struct inet_ehash_bucket *head = inet_ehash_bucket(hinfo, hash);
222 spinlock_t *lock = inet_ehash_lockp(hinfo, hash); 228 spinlock_t *lock = inet_ehash_lockp(hinfo, hash);
223 struct sock *sk2; 229 struct sock *sk2;
224 const struct hlist_nulls_node *node; 230 const struct hlist_nulls_node *node;
225 struct inet_timewait_sock *tw; 231 struct inet_timewait_sock *tw;
232 int twrefcnt = 0;
226 233
227 spin_lock(lock); 234 spin_lock(lock);
228 235
@@ -248,21 +255,25 @@ static int __inet6_check_established(struct inet_timewait_death_row *death_row,
248unique: 255unique:
249 /* Must record num and sport now. Otherwise we will see 256 /* Must record num and sport now. Otherwise we will see
250 * in hash table socket with a funny identity. */ 257 * in hash table socket with a funny identity. */
251 inet->num = lport; 258 inet->inet_num = lport;
252 inet->sport = htons(lport); 259 inet->inet_sport = htons(lport);
260 sk->sk_hash = hash;
253 WARN_ON(!sk_unhashed(sk)); 261 WARN_ON(!sk_unhashed(sk));
254 __sk_nulls_add_node_rcu(sk, &head->chain); 262 __sk_nulls_add_node_rcu(sk, &head->chain);
255 sk->sk_hash = hash; 263 if (tw) {
264 twrefcnt = inet_twsk_unhash(tw);
265 NET_INC_STATS_BH(net, LINUX_MIB_TIMEWAITRECYCLED);
266 }
256 spin_unlock(lock); 267 spin_unlock(lock);
268 if (twrefcnt)
269 inet_twsk_put(tw);
257 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1); 270 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1);
258 271
259 if (twp != NULL) { 272 if (twp) {
260 *twp = tw; 273 *twp = tw;
261 NET_INC_STATS_BH(net, LINUX_MIB_TIMEWAITRECYCLED); 274 } else if (tw) {
262 } else if (tw != NULL) {
263 /* Silly. Should hash-dance instead... */ 275 /* Silly. Should hash-dance instead... */
264 inet_twsk_deschedule(tw, death_row); 276 inet_twsk_deschedule(tw, death_row);
265 NET_INC_STATS_BH(net, LINUX_MIB_TIMEWAITRECYCLED);
266 277
267 inet_twsk_put(tw); 278 inet_twsk_put(tw);
268 } 279 }
@@ -279,7 +290,7 @@ static inline u32 inet6_sk_port_offset(const struct sock *sk)
279 const struct ipv6_pinfo *np = inet6_sk(sk); 290 const struct ipv6_pinfo *np = inet6_sk(sk);
280 return secure_ipv6_port_ephemeral(np->rcv_saddr.s6_addr32, 291 return secure_ipv6_port_ephemeral(np->rcv_saddr.s6_addr32,
281 np->daddr.s6_addr32, 292 np->daddr.s6_addr32,
282 inet->dport); 293 inet->inet_dport);
283} 294}
284 295
285int inet6_hash_connect(struct inet_timewait_death_row *death_row, 296int inet6_hash_connect(struct inet_timewait_death_row *death_row,