blob: c1b4d401fd950f18762573f6537d634aa5fd4ced [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>
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -080023#include <net/ip.h>
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -030024
Arnaldo Carvalho de Meloab1e0a12008-02-03 04:06:04 -080025void __inet6_hash(struct sock *sk)
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -070026{
Pavel Emelyanov39d8cda2008-03-22 16:50:58 -070027 struct inet_hashinfo *hashinfo = sk->sk_prot->h.hashinfo;
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -070028 rwlock_t *lock;
29
Ilpo Järvinen547b7922008-07-25 21:43:18 -070030 WARN_ON(!sk_unhashed(sk));
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -070031
32 if (sk->sk_state == TCP_LISTEN) {
Eric Dumazet3ab5aee2008-11-16 19:40:17 -080033 struct hlist_head *list;
34
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -070035 list = &hashinfo->listening_hash[inet_sk_listen_hashfn(sk)];
36 lock = &hashinfo->lhash_lock;
37 inet_listen_wlock(hashinfo);
Eric Dumazet3ab5aee2008-11-16 19:40:17 -080038 __sk_add_node(sk, list);
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -070039 } else {
40 unsigned int hash;
Eric Dumazet3ab5aee2008-11-16 19:40:17 -080041 struct hlist_nulls_head *list;
42
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -070043 sk->sk_hash = hash = inet6_sk_ehashfn(sk);
Eric Dumazet230140c2007-11-07 02:40:20 -080044 list = &inet_ehash_bucket(hashinfo, hash)->chain;
45 lock = inet_ehash_lockp(hashinfo, hash);
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -070046 write_lock(lock);
Eric Dumazet3ab5aee2008-11-16 19:40:17 -080047 __sk_nulls_add_node_rcu(sk, list);
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -070048 }
49
Pavel Emelyanovc29a0bc2008-03-31 19:41:46 -070050 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1);
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -070051 write_unlock(lock);
52}
53EXPORT_SYMBOL(__inet6_hash);
54
55/*
56 * Sockets in TCP_CLOSE state are _always_ taken out of the hash, so
57 * we need not check it for TCP lookups anymore, thanks Alexey. -DaveM
58 *
59 * The sockhash lock must be held as a reader here.
60 */
Pavel Emelyanovd86e0da2008-01-31 05:07:21 -080061struct sock *__inet6_lookup_established(struct net *net,
62 struct inet_hashinfo *hashinfo,
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -070063 const struct in6_addr *saddr,
Al Virod2ecd9c2006-11-08 00:20:00 -080064 const __be16 sport,
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -070065 const struct in6_addr *daddr,
66 const u16 hnum,
67 const int dif)
68{
69 struct sock *sk;
Eric Dumazet3ab5aee2008-11-16 19:40:17 -080070 const struct hlist_nulls_node *node;
Al Viro4f765d82006-09-27 18:43:07 -070071 const __portpair ports = INET_COMBINED_PORTS(sport, hnum);
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -070072 /* Optimize here for direct hit, only listening connections can
73 * have wildcards anyways.
74 */
Pavel Emelyanov33de0142008-06-16 17:13:48 -070075 unsigned int hash = inet6_ehashfn(net, daddr, hnum, saddr, sport);
Eric Dumazet3ab5aee2008-11-16 19:40:17 -080076 unsigned int slot = hash & (hashinfo->ehash_size - 1);
77 struct inet_ehash_bucket *head = &hashinfo->ehash[slot];
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -070078
Eric Dumazet3ab5aee2008-11-16 19:40:17 -080079
80 rcu_read_lock();
81begin:
82 sk_nulls_for_each_rcu(sk, node, &head->chain) {
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -070083 /* For IPV6 do the cheaper port and family tests first. */
Eric Dumazet3ab5aee2008-11-16 19:40:17 -080084 if (INET6_MATCH(sk, net, hash, saddr, daddr, ports, dif)) {
85 if (unlikely(!atomic_inc_not_zero(&sk->sk_refcnt)))
86 goto begintw;
87 if (!INET6_MATCH(sk, net, hash, saddr, daddr, ports, dif)) {
88 sock_put(sk);
89 goto begin;
90 }
91 goto out;
92 }
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -070093 }
Eric Dumazet3ab5aee2008-11-16 19:40:17 -080094 if (get_nulls_value(node) != slot)
95 goto begin;
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -070096
Eric Dumazet3ab5aee2008-11-16 19:40:17 -080097begintw:
98 /* Must check for a TIME_WAIT'er before going to listener hash. */
99 sk_nulls_for_each_rcu(sk, node, &head->twchain) {
100 if (INET6_TW_MATCH(sk, net, hash, saddr, daddr, ports, dif)) {
101 if (unlikely(!atomic_inc_not_zero(&sk->sk_refcnt))) {
102 sk = NULL;
103 goto out;
104 }
105 if (!INET6_TW_MATCH(sk, net, hash, saddr, daddr, ports, dif)) {
106 sock_put(sk);
107 goto begintw;
108 }
109 goto out;
110 }
111 }
112 if (get_nulls_value(node) != slot)
113 goto begintw;
114 sk = NULL;
115out:
116 rcu_read_unlock();
Denis Vlasenkob1a7ffc2006-04-09 22:48:59 -0700117 return sk;
118}
119EXPORT_SYMBOL(__inet6_lookup_established);
120
Pavel Emelyanovd86e0da2008-01-31 05:07:21 -0800121struct sock *inet6_lookup_listener(struct net *net,
122 struct inet_hashinfo *hashinfo, const struct in6_addr *daddr,
123 const unsigned short hnum, const int dif)
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -0300124{
125 struct sock *sk;
126 const struct hlist_node *node;
127 struct sock *result = NULL;
128 int score, hiscore = 0;
129
130 read_lock(&hashinfo->lhash_lock);
Pavel Emelyanov2086a652008-06-16 17:13:08 -0700131 sk_for_each(sk, node,
132 &hashinfo->listening_hash[inet_lhashfn(net, hnum)]) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +0900133 if (net_eq(sock_net(sk), net) && inet_sk(sk)->num == hnum &&
Pavel Emelyanovd86e0da2008-01-31 05:07:21 -0800134 sk->sk_family == PF_INET6) {
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -0300135 const struct ipv6_pinfo *np = inet6_sk(sk);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900136
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -0300137 score = 1;
138 if (!ipv6_addr_any(&np->rcv_saddr)) {
139 if (!ipv6_addr_equal(&np->rcv_saddr, daddr))
140 continue;
141 score++;
142 }
143 if (sk->sk_bound_dev_if) {
144 if (sk->sk_bound_dev_if != dif)
145 continue;
146 score++;
147 }
148 if (score == 3) {
149 result = sk;
150 break;
151 }
152 if (score > hiscore) {
153 hiscore = score;
154 result = sk;
155 }
156 }
157 }
158 if (result)
159 sock_hold(result);
160 read_unlock(&hashinfo->lhash_lock);
161 return result;
162}
163
164EXPORT_SYMBOL_GPL(inet6_lookup_listener);
165
Pavel Emelyanovd86e0da2008-01-31 05:07:21 -0800166struct sock *inet6_lookup(struct net *net, struct inet_hashinfo *hashinfo,
Al Virod2ecd9c2006-11-08 00:20:00 -0800167 const struct in6_addr *saddr, const __be16 sport,
168 const struct in6_addr *daddr, const __be16 dport,
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -0300169 const int dif)
170{
171 struct sock *sk;
172
173 local_bh_disable();
Pavel Emelyanovd86e0da2008-01-31 05:07:21 -0800174 sk = __inet6_lookup(net, hashinfo, saddr, sport, daddr, ntohs(dport), dif);
Arnaldo Carvalho de Melo5324a042005-08-12 09:26:18 -0300175 local_bh_enable();
176
177 return sk;
178}
179
180EXPORT_SYMBOL_GPL(inet6_lookup);
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -0800181
182static int __inet6_check_established(struct inet_timewait_death_row *death_row,
183 struct sock *sk, const __u16 lport,
184 struct inet_timewait_sock **twp)
185{
186 struct inet_hashinfo *hinfo = death_row->hashinfo;
Herbert Xu3759fa92006-03-13 14:26:12 -0800187 struct inet_sock *inet = inet_sk(sk);
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -0800188 const struct ipv6_pinfo *np = inet6_sk(sk);
189 const struct in6_addr *daddr = &np->rcv_saddr;
190 const struct in6_addr *saddr = &np->daddr;
191 const int dif = sk->sk_bound_dev_if;
Al Viro4f765d82006-09-27 18:43:07 -0700192 const __portpair ports = INET_COMBINED_PORTS(inet->dport, lport);
Pavel Emelyanov33de0142008-06-16 17:13:48 -0700193 struct net *net = sock_net(sk);
194 const unsigned int hash = inet6_ehashfn(net, daddr, lport, saddr,
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -0800195 inet->dport);
196 struct inet_ehash_bucket *head = inet_ehash_bucket(hinfo, hash);
Eric Dumazet230140c2007-11-07 02:40:20 -0800197 rwlock_t *lock = inet_ehash_lockp(hinfo, hash);
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -0800198 struct sock *sk2;
Eric Dumazet3ab5aee2008-11-16 19:40:17 -0800199 const struct hlist_nulls_node *node;
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -0800200 struct inet_timewait_sock *tw;
201
202 prefetch(head->chain.first);
Eric Dumazet230140c2007-11-07 02:40:20 -0800203 write_lock(lock);
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -0800204
205 /* Check TIME-WAIT sockets first. */
Eric Dumazet3ab5aee2008-11-16 19:40:17 -0800206 sk_nulls_for_each(sk2, node, &head->twchain) {
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -0800207 tw = inet_twsk(sk2);
208
Pavel Emelyanovd86e0da2008-01-31 05:07:21 -0800209 if (INET6_TW_MATCH(sk2, net, hash, saddr, daddr, ports, dif)) {
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -0800210 if (twsk_unique(sk, sk2, twp))
211 goto unique;
212 else
213 goto not_unique;
214 }
215 }
216 tw = NULL;
217
218 /* And established part... */
Eric Dumazet3ab5aee2008-11-16 19:40:17 -0800219 sk_nulls_for_each(sk2, node, &head->chain) {
Pavel Emelyanovd86e0da2008-01-31 05:07:21 -0800220 if (INET6_MATCH(sk2, net, hash, saddr, daddr, ports, dif))
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -0800221 goto not_unique;
222 }
223
224unique:
Herbert Xu3759fa92006-03-13 14:26:12 -0800225 /* Must record num and sport now. Otherwise we will see
226 * in hash table socket with a funny identity. */
227 inet->num = lport;
228 inet->sport = htons(lport);
Ilpo Järvinen547b7922008-07-25 21:43:18 -0700229 WARN_ON(!sk_unhashed(sk));
Eric Dumazet3ab5aee2008-11-16 19:40:17 -0800230 __sk_nulls_add_node_rcu(sk, &head->chain);
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -0800231 sk->sk_hash = hash;
Pavel Emelyanovc29a0bc2008-03-31 19:41:46 -0700232 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1);
Eric Dumazet230140c2007-11-07 02:40:20 -0800233 write_unlock(lock);
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -0800234
235 if (twp != NULL) {
236 *twp = tw;
Pavel Emelyanovde0744a2008-07-16 20:31:16 -0700237 NET_INC_STATS_BH(twsk_net(tw), LINUX_MIB_TIMEWAITRECYCLED);
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -0800238 } else if (tw != NULL) {
239 /* Silly. Should hash-dance instead... */
240 inet_twsk_deschedule(tw, death_row);
Pavel Emelyanovde0744a2008-07-16 20:31:16 -0700241 NET_INC_STATS_BH(twsk_net(tw), LINUX_MIB_TIMEWAITRECYCLED);
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -0800242
243 inet_twsk_put(tw);
244 }
245 return 0;
246
247not_unique:
Eric Dumazet230140c2007-11-07 02:40:20 -0800248 write_unlock(lock);
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -0800249 return -EADDRNOTAVAIL;
250}
251
252static inline u32 inet6_sk_port_offset(const struct sock *sk)
253{
254 const struct inet_sock *inet = inet_sk(sk);
255 const struct ipv6_pinfo *np = inet6_sk(sk);
256 return secure_ipv6_port_ephemeral(np->rcv_saddr.s6_addr32,
257 np->daddr.s6_addr32,
258 inet->dport);
259}
260
261int inet6_hash_connect(struct inet_timewait_death_row *death_row,
262 struct sock *sk)
263{
Pavel Emelyanov5d8c0aa2008-02-05 03:14:44 -0800264 return __inet_hash_connect(death_row, sk, inet6_sk_port_offset(sk),
Pavel Emelyanov5ee31fc2008-01-31 05:04:45 -0800265 __inet6_check_established, __inet6_hash);
Arnaldo Carvalho de Melod8313f52005-12-13 23:25:44 -0800266}
267
268EXPORT_SYMBOL_GPL(inet6_hash_connect);