Blame view

net/ipv6/inet6_hashtables.c 8.06 KB
5324a040c   Arnaldo Carvalho de Melo   [INET6_HASHTABLES...
1
2
3
4
5
6
7
  /*
   * INET		An implementation of the TCP/IP protocol suite for the LINUX
   *		operating system.  INET is implemented using the BSD Socket
   *		interface as the means of communication with the user level.
   *
   *		Generic INET6 transport hashtables
   *
d8313f5ca   Arnaldo Carvalho de Melo   [INET6]: Generali...
8
9
   * Authors:	Lotsa people, from code originally in tcp, generalised here
   * 		by Arnaldo Carvalho de Melo <acme@mandriva.com>
5324a040c   Arnaldo Carvalho de Melo   [INET6_HASHTABLES...
10
11
12
13
14
15
   *
   *	This program is free software; you can redistribute it and/or
   *      modify it under the terms of the GNU General Public License
   *      as published by the Free Software Foundation; either version
   *      2 of the License, or (at your option) any later version.
   */
5324a040c   Arnaldo Carvalho de Melo   [INET6_HASHTABLES...
16
  #include <linux/module.h>
d8313f5ca   Arnaldo Carvalho de Melo   [INET6]: Generali...
17
  #include <linux/random.h>
5324a040c   Arnaldo Carvalho de Melo   [INET6_HASHTABLES...
18
19
20
21
  
  #include <net/inet_connection_sock.h>
  #include <net/inet_hashtables.h>
  #include <net/inet6_hashtables.h>
6e5714eaf   David S. Miller   net: Compute prot...
22
  #include <net/secure_seq.h>
d8313f5ca   Arnaldo Carvalho de Melo   [INET6]: Generali...
23
  #include <net/ip.h>
5324a040c   Arnaldo Carvalho de Melo   [INET6_HASHTABLES...
24

9327f7053   Eric Dumazet   tcp: Fix a connec...
25
  int __inet6_hash(struct sock *sk, struct inet_timewait_sock *tw)
b1a7ffcb7   Denis Vlasenko   [IPV6]: Deinline ...
26
  {
39d8cda76   Pavel Emelyanov   [SOCK]: Add udp_h...
27
  	struct inet_hashinfo *hashinfo = sk->sk_prot->h.hashinfo;
9327f7053   Eric Dumazet   tcp: Fix a connec...
28
  	int twrefcnt = 0;
b1a7ffcb7   Denis Vlasenko   [IPV6]: Deinline ...
29

547b792ca   Ilpo Järvinen   net: convert BUG_...
30
  	WARN_ON(!sk_unhashed(sk));
b1a7ffcb7   Denis Vlasenko   [IPV6]: Deinline ...
31
32
  
  	if (sk->sk_state == TCP_LISTEN) {
5caea4ea7   Eric Dumazet   net: listening_ha...
33
  		struct inet_listen_hashbucket *ilb;
3ab5aee7f   Eric Dumazet   net: Convert TCP ...
34

5caea4ea7   Eric Dumazet   net: listening_ha...
35
36
  		ilb = &hashinfo->listening_hash[inet_sk_listen_hashfn(sk)];
  		spin_lock(&ilb->lock);
c25eb3bfb   Eric Dumazet   net: Convert TCP/...
37
  		__sk_nulls_add_node_rcu(sk, &ilb->head);
5caea4ea7   Eric Dumazet   net: listening_ha...
38
  		spin_unlock(&ilb->lock);
b1a7ffcb7   Denis Vlasenko   [IPV6]: Deinline ...
39
40
  	} else {
  		unsigned int hash;
3ab5aee7f   Eric Dumazet   net: Convert TCP ...
41
  		struct hlist_nulls_head *list;
9db66bdcc   Eric Dumazet   net: convert TCP/...
42
  		spinlock_t *lock;
3ab5aee7f   Eric Dumazet   net: Convert TCP ...
43

b1a7ffcb7   Denis Vlasenko   [IPV6]: Deinline ...
44
  		sk->sk_hash = hash = inet6_sk_ehashfn(sk);
230140cff   Eric Dumazet   [INET]: Remove pe...
45
46
  		list = &inet_ehash_bucket(hashinfo, hash)->chain;
  		lock = inet_ehash_lockp(hashinfo, hash);
9db66bdcc   Eric Dumazet   net: convert TCP/...
47
  		spin_lock(lock);
3ab5aee7f   Eric Dumazet   net: Convert TCP ...
48
  		__sk_nulls_add_node_rcu(sk, list);
9327f7053   Eric Dumazet   tcp: Fix a connec...
49
50
51
52
  		if (tw) {
  			WARN_ON(sk->sk_hash != tw->tw_hash);
  			twrefcnt = inet_twsk_unhash(tw);
  		}
9db66bdcc   Eric Dumazet   net: convert TCP/...
53
  		spin_unlock(lock);
b1a7ffcb7   Denis Vlasenko   [IPV6]: Deinline ...
54
  	}
c29a0bc4d   Pavel Emelyanov   [SOCK][NETNS]: Ad...
55
  	sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1);
9327f7053   Eric Dumazet   tcp: Fix a connec...
56
  	return twrefcnt;
b1a7ffcb7   Denis Vlasenko   [IPV6]: Deinline ...
57
58
59
60
61
62
63
64
65
  }
  EXPORT_SYMBOL(__inet6_hash);
  
  /*
   * Sockets in TCP_CLOSE state are _always_ taken out of the hash, so
   * we need not check it for TCP lookups anymore, thanks Alexey. -DaveM
   *
   * The sockhash lock must be held as a reader here.
   */
d86e0dac2   Pavel Emelyanov   [NETNS]: Tcp-v6 s...
66
67
  struct sock *__inet6_lookup_established(struct net *net,
  					struct inet_hashinfo *hashinfo,
b1a7ffcb7   Denis Vlasenko   [IPV6]: Deinline ...
68
  					   const struct in6_addr *saddr,
d2ecd9ccd   Al Viro   [IPV6]: annotate ...
69
  					   const __be16 sport,
b1a7ffcb7   Denis Vlasenko   [IPV6]: Deinline ...
70
71
72
73
74
  					   const struct in6_addr *daddr,
  					   const u16 hnum,
  					   const int dif)
  {
  	struct sock *sk;
3ab5aee7f   Eric Dumazet   net: Convert TCP ...
75
  	const struct hlist_nulls_node *node;
4f765d842   Al Viro   [IPV4]: INET_MATC...
76
  	const __portpair ports = INET_COMBINED_PORTS(sport, hnum);
b1a7ffcb7   Denis Vlasenko   [IPV6]: Deinline ...
77
78
79
  	/* Optimize here for direct hit, only listening connections can
  	 * have wildcards anyways.
  	 */
33de014c6   Pavel Emelyanov   inet6: add struct...
80
  	unsigned int hash = inet6_ehashfn(net, daddr, hnum, saddr, sport);
f373b53b5   Eric Dumazet   tcp: replace ehas...
81
  	unsigned int slot = hash & hashinfo->ehash_mask;
3ab5aee7f   Eric Dumazet   net: Convert TCP ...
82
  	struct inet_ehash_bucket *head = &hashinfo->ehash[slot];
b1a7ffcb7   Denis Vlasenko   [IPV6]: Deinline ...
83

3ab5aee7f   Eric Dumazet   net: Convert TCP ...
84
85
86
87
  
  	rcu_read_lock();
  begin:
  	sk_nulls_for_each_rcu(sk, node, &head->chain) {
b1a7ffcb7   Denis Vlasenko   [IPV6]: Deinline ...
88
  		/* For IPV6 do the cheaper port and family tests first. */
3ab5aee7f   Eric Dumazet   net: Convert TCP ...
89
90
91
92
93
94
95
96
97
  		if (INET6_MATCH(sk, net, hash, saddr, daddr, ports, dif)) {
  			if (unlikely(!atomic_inc_not_zero(&sk->sk_refcnt)))
  				goto begintw;
  			if (!INET6_MATCH(sk, net, hash, saddr, daddr, ports, dif)) {
  				sock_put(sk);
  				goto begin;
  			}
  		goto out;
  		}
b1a7ffcb7   Denis Vlasenko   [IPV6]: Deinline ...
98
  	}
3ab5aee7f   Eric Dumazet   net: Convert TCP ...
99
100
101
102
  	if (get_nulls_value(node) != slot)
  		goto begin;
  
  begintw:
b1a7ffcb7   Denis Vlasenko   [IPV6]: Deinline ...
103
  	/* Must check for a TIME_WAIT'er before going to listener hash. */
3ab5aee7f   Eric Dumazet   net: Convert TCP ...
104
105
106
107
108
109
110
111
112
113
114
115
  	sk_nulls_for_each_rcu(sk, node, &head->twchain) {
  		if (INET6_TW_MATCH(sk, net, hash, saddr, daddr, ports, dif)) {
  			if (unlikely(!atomic_inc_not_zero(&sk->sk_refcnt))) {
  				sk = NULL;
  				goto out;
  			}
  			if (!INET6_TW_MATCH(sk, net, hash, saddr, daddr, ports, dif)) {
  				sock_put(sk);
  				goto begintw;
  			}
  			goto out;
  		}
b1a7ffcb7   Denis Vlasenko   [IPV6]: Deinline ...
116
  	}
3ab5aee7f   Eric Dumazet   net: Convert TCP ...
117
118
119
120
121
  	if (get_nulls_value(node) != slot)
  		goto begintw;
  	sk = NULL;
  out:
  	rcu_read_unlock();
b1a7ffcb7   Denis Vlasenko   [IPV6]: Deinline ...
122
123
124
  	return sk;
  }
  EXPORT_SYMBOL(__inet6_lookup_established);
42b16b3fb   Jesper Juhl   Kill off warning:...
125
  static inline int compute_score(struct sock *sk, struct net *net,
c25eb3bfb   Eric Dumazet   net: Convert TCP/...
126
127
128
129
130
  				const unsigned short hnum,
  				const struct in6_addr *daddr,
  				const int dif)
  {
  	int score = -1;
c720c7e83   Eric Dumazet   inet: rename some...
131
  	if (net_eq(sock_net(sk), net) && inet_sk(sk)->inet_num == hnum &&
c25eb3bfb   Eric Dumazet   net: Convert TCP/...
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
  	    sk->sk_family == PF_INET6) {
  		const struct ipv6_pinfo *np = inet6_sk(sk);
  
  		score = 1;
  		if (!ipv6_addr_any(&np->rcv_saddr)) {
  			if (!ipv6_addr_equal(&np->rcv_saddr, daddr))
  				return -1;
  			score++;
  		}
  		if (sk->sk_bound_dev_if) {
  			if (sk->sk_bound_dev_if != dif)
  				return -1;
  			score++;
  		}
  	}
  	return score;
  }
d86e0dac2   Pavel Emelyanov   [NETNS]: Tcp-v6 s...
149
150
151
  struct sock *inet6_lookup_listener(struct net *net,
  		struct inet_hashinfo *hashinfo, const struct in6_addr *daddr,
  		const unsigned short hnum, const int dif)
5324a040c   Arnaldo Carvalho de Melo   [INET6_HASHTABLES...
152
153
  {
  	struct sock *sk;
c25eb3bfb   Eric Dumazet   net: Convert TCP/...
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
  	const struct hlist_nulls_node *node;
  	struct sock *result;
  	int score, hiscore;
  	unsigned int hash = inet_lhashfn(net, hnum);
  	struct inet_listen_hashbucket *ilb = &hashinfo->listening_hash[hash];
  
  	rcu_read_lock();
  begin:
  	result = NULL;
  	hiscore = -1;
  	sk_nulls_for_each(sk, node, &ilb->head) {
  		score = compute_score(sk, net, hnum, daddr, dif);
  		if (score > hiscore) {
  			hiscore = score;
  			result = sk;
5324a040c   Arnaldo Carvalho de Melo   [INET6_HASHTABLES...
169
170
  		}
  	}
c25eb3bfb   Eric Dumazet   net: Convert TCP/...
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
  	/*
  	 * if the nulls value we got at the end of this lookup is
  	 * not the expected one, we must restart lookup.
  	 * We probably met an item that was moved to another chain.
  	 */
  	if (get_nulls_value(node) != hash + LISTENING_NULLS_BASE)
  		goto begin;
  	if (result) {
  		if (unlikely(!atomic_inc_not_zero(&result->sk_refcnt)))
  			result = NULL;
  		else if (unlikely(compute_score(result, net, hnum, daddr,
  				  dif) < hiscore)) {
  			sock_put(result);
  			goto begin;
  		}
  	}
  	rcu_read_unlock();
5324a040c   Arnaldo Carvalho de Melo   [INET6_HASHTABLES...
188
189
190
191
  	return result;
  }
  
  EXPORT_SYMBOL_GPL(inet6_lookup_listener);
d86e0dac2   Pavel Emelyanov   [NETNS]: Tcp-v6 s...
192
  struct sock *inet6_lookup(struct net *net, struct inet_hashinfo *hashinfo,
d2ecd9ccd   Al Viro   [IPV6]: annotate ...
193
194
  			  const struct in6_addr *saddr, const __be16 sport,
  			  const struct in6_addr *daddr, const __be16 dport,
5324a040c   Arnaldo Carvalho de Melo   [INET6_HASHTABLES...
195
196
197
198
199
  			  const int dif)
  {
  	struct sock *sk;
  
  	local_bh_disable();
d86e0dac2   Pavel Emelyanov   [NETNS]: Tcp-v6 s...
200
  	sk = __inet6_lookup(net, hashinfo, saddr, sport, daddr, ntohs(dport), dif);
5324a040c   Arnaldo Carvalho de Melo   [INET6_HASHTABLES...
201
202
203
204
205
206
  	local_bh_enable();
  
  	return sk;
  }
  
  EXPORT_SYMBOL_GPL(inet6_lookup);
d8313f5ca   Arnaldo Carvalho de Melo   [INET6]: Generali...
207
208
209
210
211
212
  
  static int __inet6_check_established(struct inet_timewait_death_row *death_row,
  				     struct sock *sk, const __u16 lport,
  				     struct inet_timewait_sock **twp)
  {
  	struct inet_hashinfo *hinfo = death_row->hashinfo;
3759fa9c5   Herbert Xu   [TCP]: Fix zero p...
213
  	struct inet_sock *inet = inet_sk(sk);
d8313f5ca   Arnaldo Carvalho de Melo   [INET6]: Generali...
214
215
216
217
  	const struct ipv6_pinfo *np = inet6_sk(sk);
  	const struct in6_addr *daddr = &np->rcv_saddr;
  	const struct in6_addr *saddr = &np->daddr;
  	const int dif = sk->sk_bound_dev_if;
c720c7e83   Eric Dumazet   inet: rename some...
218
  	const __portpair ports = INET_COMBINED_PORTS(inet->inet_dport, lport);
33de014c6   Pavel Emelyanov   inet6: add struct...
219
220
  	struct net *net = sock_net(sk);
  	const unsigned int hash = inet6_ehashfn(net, daddr, lport, saddr,
c720c7e83   Eric Dumazet   inet: rename some...
221
  						inet->inet_dport);
d8313f5ca   Arnaldo Carvalho de Melo   [INET6]: Generali...
222
  	struct inet_ehash_bucket *head = inet_ehash_bucket(hinfo, hash);
9db66bdcc   Eric Dumazet   net: convert TCP/...
223
  	spinlock_t *lock = inet_ehash_lockp(hinfo, hash);
d8313f5ca   Arnaldo Carvalho de Melo   [INET6]: Generali...
224
  	struct sock *sk2;
3ab5aee7f   Eric Dumazet   net: Convert TCP ...
225
  	const struct hlist_nulls_node *node;
d8313f5ca   Arnaldo Carvalho de Melo   [INET6]: Generali...
226
  	struct inet_timewait_sock *tw;
13475a30b   Eric Dumazet   tcp: connect() ra...
227
  	int twrefcnt = 0;
d8313f5ca   Arnaldo Carvalho de Melo   [INET6]: Generali...
228

9db66bdcc   Eric Dumazet   net: convert TCP/...
229
  	spin_lock(lock);
d8313f5ca   Arnaldo Carvalho de Melo   [INET6]: Generali...
230
231
  
  	/* Check TIME-WAIT sockets first. */
3ab5aee7f   Eric Dumazet   net: Convert TCP ...
232
  	sk_nulls_for_each(sk2, node, &head->twchain) {
d8313f5ca   Arnaldo Carvalho de Melo   [INET6]: Generali...
233
  		tw = inet_twsk(sk2);
d86e0dac2   Pavel Emelyanov   [NETNS]: Tcp-v6 s...
234
  		if (INET6_TW_MATCH(sk2, net, hash, saddr, daddr, ports, dif)) {
d8313f5ca   Arnaldo Carvalho de Melo   [INET6]: Generali...
235
236
237
238
239
240
241
242
243
  			if (twsk_unique(sk, sk2, twp))
  				goto unique;
  			else
  				goto not_unique;
  		}
  	}
  	tw = NULL;
  
  	/* And established part... */
3ab5aee7f   Eric Dumazet   net: Convert TCP ...
244
  	sk_nulls_for_each(sk2, node, &head->chain) {
d86e0dac2   Pavel Emelyanov   [NETNS]: Tcp-v6 s...
245
  		if (INET6_MATCH(sk2, net, hash, saddr, daddr, ports, dif))
d8313f5ca   Arnaldo Carvalho de Melo   [INET6]: Generali...
246
247
248
249
  			goto not_unique;
  	}
  
  unique:
3759fa9c5   Herbert Xu   [TCP]: Fix zero p...
250
251
  	/* Must record num and sport now. Otherwise we will see
  	 * in hash table socket with a funny identity. */
c720c7e83   Eric Dumazet   inet: rename some...
252
253
  	inet->inet_num = lport;
  	inet->inet_sport = htons(lport);
13475a30b   Eric Dumazet   tcp: connect() ra...
254
  	sk->sk_hash = hash;
547b792ca   Ilpo Järvinen   net: convert BUG_...
255
  	WARN_ON(!sk_unhashed(sk));
3ab5aee7f   Eric Dumazet   net: Convert TCP ...
256
  	__sk_nulls_add_node_rcu(sk, &head->chain);
13475a30b   Eric Dumazet   tcp: connect() ra...
257
258
259
260
  	if (tw) {
  		twrefcnt = inet_twsk_unhash(tw);
  		NET_INC_STATS_BH(net, LINUX_MIB_TIMEWAITRECYCLED);
  	}
9db66bdcc   Eric Dumazet   net: convert TCP/...
261
  	spin_unlock(lock);
13475a30b   Eric Dumazet   tcp: connect() ra...
262
263
  	if (twrefcnt)
  		inet_twsk_put(tw);
c29a0bc4d   Pavel Emelyanov   [SOCK][NETNS]: Ad...
264
  	sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1);
d8313f5ca   Arnaldo Carvalho de Melo   [INET6]: Generali...
265

13475a30b   Eric Dumazet   tcp: connect() ra...
266
  	if (twp) {
d8313f5ca   Arnaldo Carvalho de Melo   [INET6]: Generali...
267
  		*twp = tw;
13475a30b   Eric Dumazet   tcp: connect() ra...
268
  	} else if (tw) {
d8313f5ca   Arnaldo Carvalho de Melo   [INET6]: Generali...
269
270
  		/* Silly. Should hash-dance instead... */
  		inet_twsk_deschedule(tw, death_row);
d8313f5ca   Arnaldo Carvalho de Melo   [INET6]: Generali...
271
272
273
274
275
276
  
  		inet_twsk_put(tw);
  	}
  	return 0;
  
  not_unique:
9db66bdcc   Eric Dumazet   net: convert TCP/...
277
  	spin_unlock(lock);
d8313f5ca   Arnaldo Carvalho de Melo   [INET6]: Generali...
278
279
280
281
282
283
284
285
286
  	return -EADDRNOTAVAIL;
  }
  
  static inline u32 inet6_sk_port_offset(const struct sock *sk)
  {
  	const struct inet_sock *inet = inet_sk(sk);
  	const struct ipv6_pinfo *np = inet6_sk(sk);
  	return secure_ipv6_port_ephemeral(np->rcv_saddr.s6_addr32,
  					  np->daddr.s6_addr32,
c720c7e83   Eric Dumazet   inet: rename some...
287
  					  inet->inet_dport);
d8313f5ca   Arnaldo Carvalho de Melo   [INET6]: Generali...
288
289
290
291
292
  }
  
  int inet6_hash_connect(struct inet_timewait_death_row *death_row,
  		       struct sock *sk)
  {
5d8c0aa94   Pavel Emelyanov   [INET]: Fix accid...
293
  	return __inet_hash_connect(death_row, sk, inet6_sk_port_offset(sk),
5ee31fc1e   Pavel Emelyanov   [INET]: Consolida...
294
  			__inet6_check_established, __inet6_hash);
d8313f5ca   Arnaldo Carvalho de Melo   [INET6]: Generali...
295
296
297
  }
  
  EXPORT_SYMBOL_GPL(inet6_hash_connect);