inet6_hashtables.c 7.6 KB
Newer Older
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
 *
8
 * Authors:	Lotsa people, from code originally in tcp, generalised here
9
 *		by Arnaldo Carvalho de Melo <acme@mandriva.com>
10 11 12 13 14 15 16 17
 *
 *	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.
 */

#include <linux/module.h>
18
#include <linux/random.h>
19

20
#include <net/addrconf.h>
21 22 23
#include <net/inet_connection_sock.h>
#include <net/inet_hashtables.h>
#include <net/inet6_hashtables.h>
24
#include <net/secure_seq.h>
25
#include <net/ip.h>
26
#include <net/sock_reuseport.h>
27

28 29 30
u32 inet6_ehashfn(const struct net *net,
		  const struct in6_addr *laddr, const u16 lport,
		  const struct in6_addr *faddr, const __be16 fport)
31
{
32 33 34 35 36 37 38 39 40 41 42
	static u32 inet6_ehash_secret __read_mostly;
	static u32 ipv6_hash_secret __read_mostly;

	u32 lhash, fhash;

	net_get_random_once(&inet6_ehash_secret, sizeof(inet6_ehash_secret));
	net_get_random_once(&ipv6_hash_secret, sizeof(ipv6_hash_secret));

	lhash = (__force u32)laddr->s6_addr32[3];
	fhash = __ipv6_addr_jhash(faddr, ipv6_hash_secret);

43
	return __inet6_ehashfn(lhash, lport, fhash, fport,
44
			       inet6_ehash_secret + net_hash_mix(net));
45 46
}

47 48 49 50 51 52
/*
 * 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.
 */
53 54
struct sock *__inet6_lookup_established(struct net *net,
					struct inet_hashinfo *hashinfo,
55
					   const struct in6_addr *saddr,
A
Al Viro 已提交
56
					   const __be16 sport,
57 58
					   const struct in6_addr *daddr,
					   const u16 hnum,
59
					   const int dif, const int sdif)
60 61
{
	struct sock *sk;
62
	const struct hlist_nulls_node *node;
A
Al Viro 已提交
63
	const __portpair ports = INET_COMBINED_PORTS(sport, hnum);
64 65 66
	/* Optimize here for direct hit, only listening connections can
	 * have wildcards anyways.
	 */
67
	unsigned int hash = inet6_ehashfn(net, daddr, hnum, saddr, sport);
68
	unsigned int slot = hash & hashinfo->ehash_mask;
69
	struct inet_ehash_bucket *head = &hashinfo->ehash[slot];
70

71 72 73

begin:
	sk_nulls_for_each_rcu(sk, node, &head->chain) {
74 75
		if (sk->sk_hash != hash)
			continue;
76
		if (!INET6_MATCH(sk, net, saddr, daddr, ports, dif, sdif))
77
			continue;
78
		if (unlikely(!refcount_inc_not_zero(&sk->sk_refcnt)))
E
Eric Dumazet 已提交
79 80
			goto out;

81
		if (unlikely(!INET6_MATCH(sk, net, saddr, daddr, ports, dif, sdif))) {
82 83
			sock_gen_put(sk);
			goto begin;
84
		}
85
		goto found;
86
	}
87 88 89
	if (get_nulls_value(node) != slot)
		goto begin;
out:
E
Eric Dumazet 已提交
90 91
	sk = NULL;
found:
92 93 94 95
	return sk;
}
EXPORT_SYMBOL(__inet6_lookup_established);

96
static inline int compute_score(struct sock *sk, struct net *net,
97 98
				const unsigned short hnum,
				const struct in6_addr *daddr,
99
				const int dif, const int sdif, bool exact_dif)
100 101 102
{
	int score = -1;

E
Eric Dumazet 已提交
103
	if (net_eq(sock_net(sk), net) && inet_sk(sk)->inet_num == hnum &&
104 105 106
	    sk->sk_family == PF_INET6) {

		score = 1;
107 108
		if (!ipv6_addr_any(&sk->sk_v6_rcv_saddr)) {
			if (!ipv6_addr_equal(&sk->sk_v6_rcv_saddr, daddr))
109 110 111
				return -1;
			score++;
		}
112
		if (sk->sk_bound_dev_if || exact_dif) {
113 114 115 116
			bool dev_match = (sk->sk_bound_dev_if == dif ||
					  sk->sk_bound_dev_if == sdif);

			if (exact_dif && !dev_match)
117
				return -1;
118 119
			if (sk->sk_bound_dev_if && dev_match)
				score++;
120
		}
121 122
		if (sk->sk_incoming_cpu == raw_smp_processor_id())
			score++;
123 124 125 126
	}
	return score;
}

127
/* called with rcu_read_lock() */
128
struct sock *inet6_lookup_listener(struct net *net,
129 130 131
		struct inet_hashinfo *hashinfo,
		struct sk_buff *skb, int doff,
		const struct in6_addr *saddr,
132
		const __be16 sport, const struct in6_addr *daddr,
133
		const unsigned short hnum, const int dif, const int sdif)
134
{
135 136
	unsigned int hash = inet_lhashfn(net, hnum);
	struct inet_listen_hashbucket *ilb = &hashinfo->listening_hash[hash];
137
	bool exact_dif = inet6_exact_dif_match(net, skb);
138
	struct sock *sk, *result = NULL;
P
Paolo Abeni 已提交
139
	int score, hiscore = 0;
140
	u32 phash = 0;
141

142
	sk_for_each(sk, &ilb->head) {
143
		score = compute_score(sk, net, hnum, daddr, dif, sdif, exact_dif);
144
		if (score > hiscore) {
P
Paolo Abeni 已提交
145
			if (sk->sk_reuseport) {
146 147
				phash = inet6_ehashfn(net, daddr, hnum,
						      saddr, sport);
148 149 150 151
				result = reuseport_select_sock(sk, phash,
							       skb, doff);
				if (result)
					return result;
152
			}
153
			result = sk;
E
Eric Dumazet 已提交
154
			hiscore = score;
155 156 157 158 159 160
		}
	}
	return result;
}
EXPORT_SYMBOL_GPL(inet6_lookup_listener);

161
struct sock *inet6_lookup(struct net *net, struct inet_hashinfo *hashinfo,
162
			  struct sk_buff *skb, int doff,
A
Al Viro 已提交
163 164
			  const struct in6_addr *saddr, const __be16 sport,
			  const struct in6_addr *daddr, const __be16 dport,
165 166 167
			  const int dif)
{
	struct sock *sk;
168
	bool refcounted;
169

170
	sk = __inet6_lookup(net, hashinfo, skb, doff, saddr, sport, daddr,
171
			    ntohs(dport), dif, 0, &refcounted);
172
	if (sk && !refcounted && !refcount_inc_not_zero(&sk->sk_refcnt))
173
		sk = NULL;
174 175 176
	return sk;
}
EXPORT_SYMBOL_GPL(inet6_lookup);
177 178 179 180 181 182

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;
183
	struct inet_sock *inet = inet_sk(sk);
184 185
	const struct in6_addr *daddr = &sk->sk_v6_rcv_saddr;
	const struct in6_addr *saddr = &sk->sk_v6_daddr;
186
	const int dif = sk->sk_bound_dev_if;
187
	struct net *net = sock_net(sk);
188 189
	const int sdif = l3mdev_master_ifindex_by_index(net, dif);
	const __portpair ports = INET_COMBINED_PORTS(inet->inet_dport, lport);
190
	const unsigned int hash = inet6_ehashfn(net, daddr, lport, saddr,
E
Eric Dumazet 已提交
191
						inet->inet_dport);
192
	struct inet_ehash_bucket *head = inet_ehash_bucket(hinfo, hash);
193
	spinlock_t *lock = inet_ehash_lockp(hinfo, hash);
194
	struct sock *sk2;
195
	const struct hlist_nulls_node *node;
E
Eric Dumazet 已提交
196
	struct inet_timewait_sock *tw = NULL;
197

198
	spin_lock(lock);
199

E
Eric Dumazet 已提交
200
	sk_nulls_for_each(sk2, node, &head->chain) {
201 202
		if (sk2->sk_hash != hash)
			continue;
203

204 205
		if (likely(INET6_MATCH(sk2, net, saddr, daddr, ports,
				       dif, sdif))) {
206
			if (sk2->sk_state == TCP_TIME_WAIT) {
E
Eric Dumazet 已提交
207 208
				tw = inet_twsk(sk2);
				if (twsk_unique(sk, sk2, twp))
209
					break;
E
Eric Dumazet 已提交
210
			}
211
			goto not_unique;
212
		}
213 214
	}

215
	/* Must record num and sport now. Otherwise we will see
216 217
	 * in hash table socket with a funny identity.
	 */
E
Eric Dumazet 已提交
218 219
	inet->inet_num = lport;
	inet->inet_sport = htons(lport);
220
	sk->sk_hash = hash;
221
	WARN_ON(!sk_unhashed(sk));
222
	__sk_nulls_add_node_rcu(sk, &head->chain);
223
	if (tw) {
224
		sk_nulls_del_node_init_rcu((struct sock *)tw);
225
		__NET_INC_STATS(net, LINUX_MIB_TIMEWAITRECYCLED);
226
	}
227
	spin_unlock(lock);
228
	sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1);
229

230
	if (twp) {
231
		*twp = tw;
232
	} else if (tw) {
233
		/* Silly. Should hash-dance instead... */
234
		inet_twsk_deschedule_put(tw);
235 236 237 238
	}
	return 0;

not_unique:
239
	spin_unlock(lock);
240 241 242
	return -EADDRNOTAVAIL;
}

243
static u32 inet6_sk_port_offset(const struct sock *sk)
244 245
{
	const struct inet_sock *inet = inet_sk(sk);
246 247 248

	return secure_ipv6_port_ephemeral(sk->sk_v6_rcv_saddr.s6_addr32,
					  sk->sk_v6_daddr.s6_addr32,
E
Eric Dumazet 已提交
249
					  inet->inet_dport);
250 251 252 253 254
}

int inet6_hash_connect(struct inet_timewait_death_row *death_row,
		       struct sock *sk)
{
255 256 257 258 259
	u32 port_offset = 0;

	if (!inet_sk(sk)->inet_num)
		port_offset = inet6_sk_port_offset(sk);
	return __inet_hash_connect(death_row, sk, port_offset,
260
				   __inet6_check_established);
261 262
}
EXPORT_SYMBOL_GPL(inet6_hash_connect);
263 264 265

int inet6_hash(struct sock *sk)
{
266 267
	int err = 0;

268 269
	if (sk->sk_state != TCP_CLOSE) {
		local_bh_disable();
270
		err = __inet_hash(sk, NULL);
271 272 273
		local_bh_enable();
	}

274
	return err;
275 276
}
EXPORT_SYMBOL_GPL(inet6_hash);