blob: fa7dd3856c555d0c6dcd4c04062c7983b1aeb61b [file] [log] [blame]
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -03001/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * Generic INET6 transport hashtables
7 *
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -08008 * Authors: Lotsa people, from code originally in tcp, generalised here
9 * by Arnaldo Carvalho de Melo <acme@mandriva.com>
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -030010 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
15 */
16
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -030017#include <linux/module.h>
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -080018#include <linux/random.h>
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -030019
20#include <net/inet_connection_sock.h>
21#include <net/inet_hashtables.h>
22#include <net/inet6_hashtables.h>
David S. Miller6e5714e2011-08-03 20:50:44 -070023#include <net/secure_seq.h>
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -080024#include <net/ip.h>
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -030025
Hannes Frederic Sowab50026b2013-10-19 21:48:52 +020026static unsigned int inet6_ehashfn(struct net *net,
27 const struct in6_addr *laddr,
28 const u16 lport,
29 const struct in6_addr *faddr,
30 const __be16 fport)
31{
32 const u32 lhash = (__force u32)laddr->s6_addr32[3];
33 const u32 fhash = __ipv6_addr_jhash(faddr, ipv6_hash_secret);
34 return __inet6_ehashfn(lhash, lport, fhash, fport,
35 inet_ehash_secret + net_hash_mix(net));
36}
37
38static int inet6_sk_ehashfn(const struct sock *sk)
39{
40 const struct inet_sock *inet = inet_sk(sk);
41 const struct in6_addr *laddr = &sk->sk_v6_rcv_saddr;
42 const struct in6_addr *faddr = &sk->sk_v6_daddr;
43 const __u16 lport = inet->inet_num;
44 const __be16 fport = inet->inet_dport;
45 struct net *net = sock_net(sk);
46
47 return inet6_ehashfn(net, laddr, lport, faddr, fport);
48}
49
Eric Dumazet9327f702009-12-04 03:46:54 +000050int __inet6_hash(struct sock *sk, struct inet_timewait_sock *tw)
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -070051{
Pavel Emelyanov39d8cda2008-03-22 16:50:58 -070052 struct inet_hashinfo *hashinfo = sk->sk_prot->h.hashinfo;
Eric Dumazet9327f702009-12-04 03:46:54 +000053 int twrefcnt = 0;
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -070054
Ilpo Järvinen547b7922008-07-25 21:43:18 -070055 WARN_ON(!sk_unhashed(sk));
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -070056
57 if (sk->sk_state == TCP_LISTEN) {
Eric Dumazet5caea4e2008-11-20 00:40:07 -080058 struct inet_listen_hashbucket *ilb;
Eric Dumazet3ab5aee2008-11-16 19:40:17 -080059
Eric Dumazet5caea4e2008-11-20 00:40:07 -080060 ilb = &hashinfo->listening_hash[inet_sk_listen_hashfn(sk)];
61 spin_lock(&ilb->lock);
Eric Dumazetc25eb3b2008-11-23 17:22:55 -080062 __sk_nulls_add_node_rcu(sk, &ilb->head);
Eric Dumazet5caea4e2008-11-20 00:40:07 -080063 spin_unlock(&ilb->lock);
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -070064 } else {
65 unsigned int hash;
Eric Dumazet3ab5aee2008-11-16 19:40:17 -080066 struct hlist_nulls_head *list;
Eric Dumazet9db66bd2008-11-20 20:39:09 -080067 spinlock_t *lock;
Eric Dumazet3ab5aee2008-11-16 19:40:17 -080068
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -070069 sk->sk_hash = hash = inet6_sk_ehashfn(sk);
Eric Dumazet230140c2007-11-07 02:40:20 -080070 list = &inet_ehash_bucket(hashinfo, hash)->chain;
71 lock = inet_ehash_lockp(hashinfo, hash);
Eric Dumazet9db66bd2008-11-20 20:39:09 -080072 spin_lock(lock);
Eric Dumazet3ab5aee2008-11-16 19:40:17 -080073 __sk_nulls_add_node_rcu(sk, list);
Eric Dumazet9327f702009-12-04 03:46:54 +000074 if (tw) {
75 WARN_ON(sk->sk_hash != tw->tw_hash);
76 twrefcnt = inet_twsk_unhash(tw);
77 }
Eric Dumazet9db66bd2008-11-20 20:39:09 -080078 spin_unlock(lock);
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -070079 }
80
Pavel Emelyanovc29a0bc2008-03-31 19:41:46 -070081 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1);
Eric Dumazet9327f702009-12-04 03:46:54 +000082 return twrefcnt;
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -070083}
84EXPORT_SYMBOL(__inet6_hash);
85
86/*
87 * Sockets in TCP_CLOSE state are _always_ taken out of the hash, so
88 * we need not check it for TCP lookups anymore, thanks Alexey. -DaveM
89 *
90 * The sockhash lock must be held as a reader here.
91 */
Pavel Emelyanovd86e0da2008-01-31 05:07:21 -080092struct sock *__inet6_lookup_established(struct net *net,
93 struct inet_hashinfo *hashinfo,
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -070094 const struct in6_addr *saddr,
Al Virod2ecd9c2006-11-08 00:20:00 -080095 const __be16 sport,
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -070096 const struct in6_addr *daddr,
97 const u16 hnum,
98 const int dif)
99{
100 struct sock *sk;
Eric Dumazet3ab5aee2008-11-16 19:40:17 -0800101 const struct hlist_nulls_node *node;
Al Viro4f765d82006-09-27 18:43:07 -0700102 const __portpair ports = INET_COMBINED_PORTS(sport, hnum);
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -0700103 /* Optimize here for direct hit, only listening connections can
104 * have wildcards anyways.
105 */
Pavel Emelyanov33de0142008-06-16 17:13:48 -0700106 unsigned int hash = inet6_ehashfn(net, daddr, hnum, saddr, sport);
Eric Dumazetf373b532009-10-09 00:16:19 +0000107 unsigned int slot = hash & hashinfo->ehash_mask;
Eric Dumazet3ab5aee2008-11-16 19:40:17 -0800108 struct inet_ehash_bucket *head = &hashinfo->ehash[slot];
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -0700109
Eric Dumazet3ab5aee2008-11-16 19:40:17 -0800110
111 rcu_read_lock();
112begin:
113 sk_nulls_for_each_rcu(sk, node, &head->chain) {
Eric Dumazetce43b032012-11-30 09:49:27 +0000114 if (sk->sk_hash != hash)
115 continue;
Eric Dumazetefe42082013-10-03 15:42:29 -0700116 if (!INET6_MATCH(sk, net, saddr, daddr, ports, dif))
117 continue;
Eric Dumazet05dbc7b2013-10-03 00:22:02 -0700118 if (unlikely(!atomic_inc_not_zero(&sk->sk_refcnt)))
119 goto out;
120
Eric Dumazetefe42082013-10-03 15:42:29 -0700121 if (unlikely(!INET6_MATCH(sk, net, saddr, daddr, ports, dif))) {
122 sock_gen_put(sk);
123 goto begin;
Eric Dumazet3ab5aee2008-11-16 19:40:17 -0800124 }
Eric Dumazetefe42082013-10-03 15:42:29 -0700125 goto found;
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -0700126 }
Eric Dumazet3ab5aee2008-11-16 19:40:17 -0800127 if (get_nulls_value(node) != slot)
128 goto begin;
Eric Dumazet3ab5aee2008-11-16 19:40:17 -0800129out:
Eric Dumazet05dbc7b2013-10-03 00:22:02 -0700130 sk = NULL;
131found:
Eric Dumazet3ab5aee2008-11-16 19:40:17 -0800132 rcu_read_unlock();
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -0700133 return sk;
134}
135EXPORT_SYMBOL(__inet6_lookup_established);
136
Jesper Juhl42b16b32011-01-17 00:09:38 +0100137static inline int compute_score(struct sock *sk, struct net *net,
Eric Dumazetc25eb3b2008-11-23 17:22:55 -0800138 const unsigned short hnum,
139 const struct in6_addr *daddr,
140 const int dif)
141{
142 int score = -1;
143
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000144 if (net_eq(sock_net(sk), net) && inet_sk(sk)->inet_num == hnum &&
Eric Dumazetc25eb3b2008-11-23 17:22:55 -0800145 sk->sk_family == PF_INET6) {
Eric Dumazetc25eb3b2008-11-23 17:22:55 -0800146
147 score = 1;
Eric Dumazetefe42082013-10-03 15:42:29 -0700148 if (!ipv6_addr_any(&sk->sk_v6_rcv_saddr)) {
149 if (!ipv6_addr_equal(&sk->sk_v6_rcv_saddr, daddr))
Eric Dumazetc25eb3b2008-11-23 17:22:55 -0800150 return -1;
151 score++;
152 }
153 if (sk->sk_bound_dev_if) {
154 if (sk->sk_bound_dev_if != dif)
155 return -1;
156 score++;
157 }
158 }
159 return score;
160}
161
Pavel Emelyanovd86e0da2008-01-31 05:07:21 -0800162struct sock *inet6_lookup_listener(struct net *net,
Tom Herbert5ba24952013-01-22 09:50:39 +0000163 struct inet_hashinfo *hashinfo, const struct in6_addr *saddr,
164 const __be16 sport, const struct in6_addr *daddr,
Pavel Emelyanovd86e0da2008-01-31 05:07:21 -0800165 const unsigned short hnum, const int dif)
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -0300166{
167 struct sock *sk;
Eric Dumazetc25eb3b2008-11-23 17:22:55 -0800168 const struct hlist_nulls_node *node;
169 struct sock *result;
Tom Herbert5ba24952013-01-22 09:50:39 +0000170 int score, hiscore, matches = 0, reuseport = 0;
171 u32 phash = 0;
Eric Dumazetc25eb3b2008-11-23 17:22:55 -0800172 unsigned int hash = inet_lhashfn(net, hnum);
173 struct inet_listen_hashbucket *ilb = &hashinfo->listening_hash[hash];
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -0300174
Eric Dumazetc25eb3b2008-11-23 17:22:55 -0800175 rcu_read_lock();
176begin:
177 result = NULL;
Tom Herbert5ba24952013-01-22 09:50:39 +0000178 hiscore = 0;
Eric Dumazetc25eb3b2008-11-23 17:22:55 -0800179 sk_nulls_for_each(sk, node, &ilb->head) {
180 score = compute_score(sk, net, hnum, daddr, dif);
181 if (score > hiscore) {
182 hiscore = score;
183 result = sk;
Tom Herbert5ba24952013-01-22 09:50:39 +0000184 reuseport = sk->sk_reuseport;
185 if (reuseport) {
186 phash = inet6_ehashfn(net, daddr, hnum,
187 saddr, sport);
188 matches = 1;
189 }
190 } else if (score == hiscore && reuseport) {
191 matches++;
192 if (((u64)phash * matches) >> 32 == 0)
193 result = sk;
194 phash = next_pseudo_random32(phash);
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -0300195 }
196 }
Eric Dumazetc25eb3b2008-11-23 17:22:55 -0800197 /*
198 * if the nulls value we got at the end of this lookup is
199 * not the expected one, we must restart lookup.
200 * We probably met an item that was moved to another chain.
201 */
202 if (get_nulls_value(node) != hash + LISTENING_NULLS_BASE)
203 goto begin;
204 if (result) {
205 if (unlikely(!atomic_inc_not_zero(&result->sk_refcnt)))
206 result = NULL;
207 else if (unlikely(compute_score(result, net, hnum, daddr,
208 dif) < hiscore)) {
209 sock_put(result);
210 goto begin;
211 }
212 }
213 rcu_read_unlock();
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -0300214 return result;
215}
216
217EXPORT_SYMBOL_GPL(inet6_lookup_listener);
218
Pavel Emelyanovd86e0da2008-01-31 05:07:21 -0800219struct sock *inet6_lookup(struct net *net, struct inet_hashinfo *hashinfo,
Al Virod2ecd9c2006-11-08 00:20:00 -0800220 const struct in6_addr *saddr, const __be16 sport,
221 const struct in6_addr *daddr, const __be16 dport,
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -0300222 const int dif)
223{
224 struct sock *sk;
225
226 local_bh_disable();
Pavel Emelyanovd86e0da2008-01-31 05:07:21 -0800227 sk = __inet6_lookup(net, hashinfo, saddr, sport, daddr, ntohs(dport), dif);
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -0300228 local_bh_enable();
229
230 return sk;
231}
232
233EXPORT_SYMBOL_GPL(inet6_lookup);
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -0800234
235static int __inet6_check_established(struct inet_timewait_death_row *death_row,
236 struct sock *sk, const __u16 lport,
237 struct inet_timewait_sock **twp)
238{
239 struct inet_hashinfo *hinfo = death_row->hashinfo;
Herbert Xu3759fa92006-03-13 14:26:12 -0800240 struct inet_sock *inet = inet_sk(sk);
Eric Dumazetefe42082013-10-03 15:42:29 -0700241 const struct in6_addr *daddr = &sk->sk_v6_rcv_saddr;
242 const struct in6_addr *saddr = &sk->sk_v6_daddr;
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -0800243 const int dif = sk->sk_bound_dev_if;
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000244 const __portpair ports = INET_COMBINED_PORTS(inet->inet_dport, lport);
Pavel Emelyanov33de0142008-06-16 17:13:48 -0700245 struct net *net = sock_net(sk);
246 const unsigned int hash = inet6_ehashfn(net, daddr, lport, saddr,
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000247 inet->inet_dport);
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -0800248 struct inet_ehash_bucket *head = inet_ehash_bucket(hinfo, hash);
Eric Dumazet9db66bd2008-11-20 20:39:09 -0800249 spinlock_t *lock = inet_ehash_lockp(hinfo, hash);
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -0800250 struct sock *sk2;
Eric Dumazet3ab5aee2008-11-16 19:40:17 -0800251 const struct hlist_nulls_node *node;
Eric Dumazet05dbc7b2013-10-03 00:22:02 -0700252 struct inet_timewait_sock *tw = NULL;
Eric Dumazet13475a32009-12-02 22:31:19 +0000253 int twrefcnt = 0;
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -0800254
Eric Dumazet9db66bd2008-11-20 20:39:09 -0800255 spin_lock(lock);
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -0800256
Eric Dumazet3ab5aee2008-11-16 19:40:17 -0800257 sk_nulls_for_each(sk2, node, &head->chain) {
Eric Dumazetce43b032012-11-30 09:49:27 +0000258 if (sk2->sk_hash != hash)
259 continue;
Eric Dumazet05dbc7b2013-10-03 00:22:02 -0700260
Eric Dumazetefe42082013-10-03 15:42:29 -0700261 if (likely(INET6_MATCH(sk2, net, saddr, daddr, ports, dif))) {
262 if (sk2->sk_state == TCP_TIME_WAIT) {
Eric Dumazet05dbc7b2013-10-03 00:22:02 -0700263 tw = inet_twsk(sk2);
264 if (twsk_unique(sk, sk2, twp))
Eric Dumazetefe42082013-10-03 15:42:29 -0700265 break;
Eric Dumazet05dbc7b2013-10-03 00:22:02 -0700266 }
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -0800267 goto not_unique;
Eric Dumazetefe42082013-10-03 15:42:29 -0700268 }
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -0800269 }
270
Herbert Xu3759fa92006-03-13 14:26:12 -0800271 /* Must record num and sport now. Otherwise we will see
Eric Dumazetefe42082013-10-03 15:42:29 -0700272 * in hash table socket with a funny identity.
273 */
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000274 inet->inet_num = lport;
275 inet->inet_sport = htons(lport);
Eric Dumazet13475a32009-12-02 22:31:19 +0000276 sk->sk_hash = hash;
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700277 WARN_ON(!sk_unhashed(sk));
Eric Dumazet3ab5aee2008-11-16 19:40:17 -0800278 __sk_nulls_add_node_rcu(sk, &head->chain);
Eric Dumazet13475a32009-12-02 22:31:19 +0000279 if (tw) {
280 twrefcnt = inet_twsk_unhash(tw);
281 NET_INC_STATS_BH(net, LINUX_MIB_TIMEWAITRECYCLED);
282 }
Eric Dumazet9db66bd2008-11-20 20:39:09 -0800283 spin_unlock(lock);
Eric Dumazet13475a32009-12-02 22:31:19 +0000284 if (twrefcnt)
285 inet_twsk_put(tw);
Pavel Emelyanovc29a0bc2008-03-31 19:41:46 -0700286 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1);
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -0800287
Eric Dumazet13475a32009-12-02 22:31:19 +0000288 if (twp) {
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -0800289 *twp = tw;
Eric Dumazet13475a32009-12-02 22:31:19 +0000290 } else if (tw) {
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -0800291 /* Silly. Should hash-dance instead... */
292 inet_twsk_deschedule(tw, death_row);
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -0800293
294 inet_twsk_put(tw);
295 }
296 return 0;
297
298not_unique:
Eric Dumazet9db66bd2008-11-20 20:39:09 -0800299 spin_unlock(lock);
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -0800300 return -EADDRNOTAVAIL;
301}
302
303static inline u32 inet6_sk_port_offset(const struct sock *sk)
304{
305 const struct inet_sock *inet = inet_sk(sk);
Eric Dumazetefe42082013-10-03 15:42:29 -0700306
307 return secure_ipv6_port_ephemeral(sk->sk_v6_rcv_saddr.s6_addr32,
308 sk->sk_v6_daddr.s6_addr32,
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000309 inet->inet_dport);
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -0800310}
311
312int inet6_hash_connect(struct inet_timewait_death_row *death_row,
313 struct sock *sk)
314{
Pavel Emelyanov5d8c0aa2008-02-05 03:14:44 -0800315 return __inet_hash_connect(death_row, sk, inet6_sk_port_offset(sk),
Pavel Emelyanov5ee31fc2008-01-31 05:04:45 -0800316 __inet6_check_established, __inet6_hash);
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -0800317}
318
319EXPORT_SYMBOL_GPL(inet6_hash_connect);