blob: db1e53a865c2edf5bc21bb268ab4eae7ed0f156d [file] [log] [blame]
Arnaldo Carvalho de Melo77d8bf92005-08-09 20:00:51 -07001/*
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 INET transport hashtables
7 *
8 * Authors: Lotsa people, from code originally in tcp
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
14 */
15
Arnaldo Carvalho de Melo2d8c4ce2005-08-09 20:07:13 -070016#include <linux/module.h>
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -080017#include <linux/random.h>
Arnaldo Carvalho de Melof3f05f72005-08-09 20:08:09 -070018#include <linux/sched.h>
Arnaldo Carvalho de Melo77d8bf92005-08-09 20:00:51 -070019#include <linux/slab.h>
Arnaldo Carvalho de Melof3f05f72005-08-09 20:08:09 -070020#include <linux/wait.h>
Arnaldo Carvalho de Melo77d8bf92005-08-09 20:00:51 -070021
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -070022#include <net/inet_connection_sock.h>
Arnaldo Carvalho de Melo77d8bf92005-08-09 20:00:51 -070023#include <net/inet_hashtables.h>
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -080024#include <net/ip.h>
Arnaldo Carvalho de Melo77d8bf92005-08-09 20:00:51 -070025
26/*
27 * Allocate and initialize a new local port bind bucket.
28 * The bindhash mutex for snum's hash chain must be held here.
29 */
Christoph Lametere18b8902006-12-06 20:33:20 -080030struct inet_bind_bucket *inet_bind_bucket_create(struct kmem_cache *cachep,
Pavel Emelyanov941b1d22008-01-31 05:05:50 -080031 struct net *net,
Arnaldo Carvalho de Melo77d8bf92005-08-09 20:00:51 -070032 struct inet_bind_hashbucket *head,
33 const unsigned short snum)
34{
Christoph Lameter54e6ecb2006-12-06 20:33:16 -080035 struct inet_bind_bucket *tb = kmem_cache_alloc(cachep, GFP_ATOMIC);
Arnaldo Carvalho de Melo77d8bf92005-08-09 20:00:51 -070036
37 if (tb != NULL) {
Pavel Emelyanov941b1d22008-01-31 05:05:50 -080038 tb->ib_net = net;
Arnaldo Carvalho de Melo77d8bf92005-08-09 20:00:51 -070039 tb->port = snum;
40 tb->fastreuse = 0;
41 INIT_HLIST_HEAD(&tb->owners);
42 hlist_add_head(&tb->node, &head->chain);
43 }
44 return tb;
45}
46
Arnaldo Carvalho de Melo77d8bf92005-08-09 20:00:51 -070047/*
48 * Caller must hold hashbucket lock for this tb with local BH disabled
49 */
Christoph Lametere18b8902006-12-06 20:33:20 -080050void inet_bind_bucket_destroy(struct kmem_cache *cachep, struct inet_bind_bucket *tb)
Arnaldo Carvalho de Melo77d8bf92005-08-09 20:00:51 -070051{
52 if (hlist_empty(&tb->owners)) {
53 __hlist_del(&tb->node);
54 kmem_cache_free(cachep, tb);
55 }
56}
Arnaldo Carvalho de Melo2d8c4ce2005-08-09 20:07:13 -070057
58void inet_bind_hash(struct sock *sk, struct inet_bind_bucket *tb,
59 const unsigned short snum)
60{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -070061 inet_sk(sk)->num = snum;
Arnaldo Carvalho de Melo2d8c4ce2005-08-09 20:07:13 -070062 sk_add_bind_node(sk, &tb->owners);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -070063 inet_csk(sk)->icsk_bind_hash = tb;
Arnaldo Carvalho de Melo2d8c4ce2005-08-09 20:07:13 -070064}
65
Arnaldo Carvalho de Melo2d8c4ce2005-08-09 20:07:13 -070066/*
67 * Get rid of any references to a local port held by the given sock.
68 */
69static void __inet_put_port(struct inet_hashinfo *hashinfo, struct sock *sk)
70{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -070071 const int bhash = inet_bhashfn(inet_sk(sk)->num, hashinfo->bhash_size);
Arnaldo Carvalho de Melo2d8c4ce2005-08-09 20:07:13 -070072 struct inet_bind_hashbucket *head = &hashinfo->bhash[bhash];
73 struct inet_bind_bucket *tb;
74
75 spin_lock(&head->lock);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -070076 tb = inet_csk(sk)->icsk_bind_hash;
Arnaldo Carvalho de Melo2d8c4ce2005-08-09 20:07:13 -070077 __sk_del_bind_node(sk);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -070078 inet_csk(sk)->icsk_bind_hash = NULL;
79 inet_sk(sk)->num = 0;
Arnaldo Carvalho de Melo2d8c4ce2005-08-09 20:07:13 -070080 inet_bind_bucket_destroy(hashinfo->bind_bucket_cachep, tb);
81 spin_unlock(&head->lock);
82}
83
84void inet_put_port(struct inet_hashinfo *hashinfo, struct sock *sk)
85{
86 local_bh_disable();
87 __inet_put_port(hashinfo, sk);
88 local_bh_enable();
89}
90
91EXPORT_SYMBOL(inet_put_port);
Arnaldo Carvalho de Melof3f05f72005-08-09 20:08:09 -070092
93/*
94 * This lock without WQ_FLAG_EXCLUSIVE is good on UP and it can be very bad on SMP.
95 * Look, when several writers sleep and reader wakes them up, all but one
96 * immediately hit write lock and grab all the cpus. Exclusive sleep solves
97 * this, _but_ remember, it adds useless work on UP machines (wake up each
98 * exclusive lock release). It should be ifdefed really.
99 */
100void inet_listen_wlock(struct inet_hashinfo *hashinfo)
Eric Dumazet9a429c42008-01-01 21:58:02 -0800101 __acquires(hashinfo->lhash_lock)
Arnaldo Carvalho de Melof3f05f72005-08-09 20:08:09 -0700102{
103 write_lock(&hashinfo->lhash_lock);
104
105 if (atomic_read(&hashinfo->lhash_users)) {
106 DEFINE_WAIT(wait);
107
108 for (;;) {
109 prepare_to_wait_exclusive(&hashinfo->lhash_wait,
110 &wait, TASK_UNINTERRUPTIBLE);
111 if (!atomic_read(&hashinfo->lhash_users))
112 break;
113 write_unlock_bh(&hashinfo->lhash_lock);
114 schedule();
115 write_lock_bh(&hashinfo->lhash_lock);
116 }
117
118 finish_wait(&hashinfo->lhash_wait, &wait);
119 }
120}
121
122EXPORT_SYMBOL(inet_listen_wlock);
Arnaldo Carvalho de Melo33b62232005-08-09 20:09:06 -0700123
124/*
125 * Don't inline this cruft. Here are some nice properties to exploit here. The
126 * BSD API does not allow a listening sock to specify the remote port nor the
127 * remote address for the connection. So always assume those are both
128 * wildcarded during the search since they can never be otherwise.
129 */
Herbert Xu8f4910692006-08-09 15:47:12 -0700130static struct sock *inet_lookup_listener_slow(const struct hlist_head *head,
Al Virofb99c842006-09-27 18:43:33 -0700131 const __be32 daddr,
Herbert Xu8f4910692006-08-09 15:47:12 -0700132 const unsigned short hnum,
133 const int dif)
Arnaldo Carvalho de Melo33b62232005-08-09 20:09:06 -0700134{
135 struct sock *result = NULL, *sk;
136 const struct hlist_node *node;
137 int hiscore = -1;
138
139 sk_for_each(sk, node, head) {
140 const struct inet_sock *inet = inet_sk(sk);
141
142 if (inet->num == hnum && !ipv6_only_sock(sk)) {
Al Virofb99c842006-09-27 18:43:33 -0700143 const __be32 rcv_saddr = inet->rcv_saddr;
Arnaldo Carvalho de Melo33b62232005-08-09 20:09:06 -0700144 int score = sk->sk_family == PF_INET ? 1 : 0;
145
146 if (rcv_saddr) {
147 if (rcv_saddr != daddr)
148 continue;
149 score += 2;
150 }
151 if (sk->sk_bound_dev_if) {
152 if (sk->sk_bound_dev_if != dif)
153 continue;
154 score += 2;
155 }
156 if (score == 5)
157 return sk;
158 if (score > hiscore) {
159 hiscore = score;
160 result = sk;
161 }
162 }
163 }
164 return result;
165}
Arnaldo Carvalho de Meloe48c4142005-08-09 20:09:46 -0700166
Herbert Xu99a92ff2006-08-08 02:18:10 -0700167/* Optimize the common listener case. */
Herbert Xu8f4910692006-08-09 15:47:12 -0700168struct sock *__inet_lookup_listener(struct inet_hashinfo *hashinfo,
Al Virofb99c842006-09-27 18:43:33 -0700169 const __be32 daddr, const unsigned short hnum,
Herbert Xu8f4910692006-08-09 15:47:12 -0700170 const int dif)
Herbert Xu99a92ff2006-08-08 02:18:10 -0700171{
172 struct sock *sk = NULL;
173 const struct hlist_head *head;
174
175 read_lock(&hashinfo->lhash_lock);
176 head = &hashinfo->listening_hash[inet_lhashfn(hnum)];
177 if (!hlist_empty(head)) {
178 const struct inet_sock *inet = inet_sk((sk = __sk_head(head)));
179
180 if (inet->num == hnum && !sk->sk_node.next &&
181 (!inet->rcv_saddr || inet->rcv_saddr == daddr) &&
182 (sk->sk_family == PF_INET || !ipv6_only_sock(sk)) &&
183 !sk->sk_bound_dev_if)
184 goto sherry_cache;
Herbert Xu8f4910692006-08-09 15:47:12 -0700185 sk = inet_lookup_listener_slow(head, daddr, hnum, dif);
Herbert Xu99a92ff2006-08-08 02:18:10 -0700186 }
187 if (sk) {
188sherry_cache:
189 sock_hold(sk);
190 }
191 read_unlock(&hashinfo->lhash_lock);
192 return sk;
193}
Herbert Xu8f4910692006-08-09 15:47:12 -0700194EXPORT_SYMBOL_GPL(__inet_lookup_listener);
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800195
Pavel Emelyanov77a5ba52007-12-20 15:32:17 -0800196struct sock * __inet_lookup_established(struct inet_hashinfo *hashinfo,
197 const __be32 saddr, const __be16 sport,
198 const __be32 daddr, const u16 hnum,
199 const int dif)
200{
201 INET_ADDR_COOKIE(acookie, saddr, daddr)
202 const __portpair ports = INET_COMBINED_PORTS(sport, hnum);
203 struct sock *sk;
204 const struct hlist_node *node;
205 /* Optimize here for direct hit, only listening connections can
206 * have wildcards anyways.
207 */
208 unsigned int hash = inet_ehashfn(daddr, hnum, saddr, sport);
209 struct inet_ehash_bucket *head = inet_ehash_bucket(hashinfo, hash);
210 rwlock_t *lock = inet_ehash_lockp(hashinfo, hash);
211
212 prefetch(head->chain.first);
213 read_lock(lock);
214 sk_for_each(sk, node, &head->chain) {
215 if (INET_MATCH(sk, hash, acookie, saddr, daddr, ports, dif))
216 goto hit; /* You sunk my battleship! */
217 }
218
219 /* Must check for a TIME_WAIT'er before going to listener hash. */
220 sk_for_each(sk, node, &head->twchain) {
221 if (INET_TW_MATCH(sk, hash, acookie, saddr, daddr, ports, dif))
222 goto hit;
223 }
224 sk = NULL;
225out:
226 read_unlock(lock);
227 return sk;
228hit:
229 sock_hold(sk);
230 goto out;
231}
232EXPORT_SYMBOL_GPL(__inet_lookup_established);
233
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800234/* called with local bh disabled */
235static int __inet_check_established(struct inet_timewait_death_row *death_row,
236 struct sock *sk, __u16 lport,
237 struct inet_timewait_sock **twp)
238{
239 struct inet_hashinfo *hinfo = death_row->hashinfo;
240 struct inet_sock *inet = inet_sk(sk);
Al Virofb99c842006-09-27 18:43:33 -0700241 __be32 daddr = inet->rcv_saddr;
242 __be32 saddr = inet->daddr;
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800243 int dif = sk->sk_bound_dev_if;
244 INET_ADDR_COOKIE(acookie, saddr, daddr)
Al Viro4f765d82006-09-27 18:43:07 -0700245 const __portpair ports = INET_COMBINED_PORTS(inet->dport, lport);
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800246 unsigned int hash = inet_ehashfn(daddr, lport, saddr, inet->dport);
247 struct inet_ehash_bucket *head = inet_ehash_bucket(hinfo, hash);
Eric Dumazet230140c2007-11-07 02:40:20 -0800248 rwlock_t *lock = inet_ehash_lockp(hinfo, hash);
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800249 struct sock *sk2;
250 const struct hlist_node *node;
251 struct inet_timewait_sock *tw;
252
253 prefetch(head->chain.first);
Eric Dumazet230140c2007-11-07 02:40:20 -0800254 write_lock(lock);
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800255
256 /* Check TIME-WAIT sockets first. */
Eric Dumazetdbca9b2752007-02-08 14:16:46 -0800257 sk_for_each(sk2, node, &head->twchain) {
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800258 tw = inet_twsk(sk2);
259
260 if (INET_TW_MATCH(sk2, hash, acookie, saddr, daddr, ports, dif)) {
261 if (twsk_unique(sk, sk2, twp))
262 goto unique;
263 else
264 goto not_unique;
265 }
266 }
267 tw = NULL;
268
269 /* And established part... */
270 sk_for_each(sk2, node, &head->chain) {
271 if (INET_MATCH(sk2, hash, acookie, saddr, daddr, ports, dif))
272 goto not_unique;
273 }
274
275unique:
276 /* Must record num and sport now. Otherwise we will see
277 * in hash table socket with a funny identity. */
278 inet->num = lport;
279 inet->sport = htons(lport);
280 sk->sk_hash = hash;
281 BUG_TRAP(sk_unhashed(sk));
282 __sk_add_node(sk, &head->chain);
Eric Dumazet65f76512008-01-03 20:46:48 -0800283 sock_prot_inuse_add(sk->sk_prot, 1);
Eric Dumazet230140c2007-11-07 02:40:20 -0800284 write_unlock(lock);
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800285
286 if (twp) {
287 *twp = tw;
288 NET_INC_STATS_BH(LINUX_MIB_TIMEWAITRECYCLED);
289 } else if (tw) {
290 /* Silly. Should hash-dance instead... */
291 inet_twsk_deschedule(tw, death_row);
292 NET_INC_STATS_BH(LINUX_MIB_TIMEWAITRECYCLED);
293
294 inet_twsk_put(tw);
295 }
296
297 return 0;
298
299not_unique:
Eric Dumazet230140c2007-11-07 02:40:20 -0800300 write_unlock(lock);
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800301 return -EADDRNOTAVAIL;
302}
303
304static inline u32 inet_sk_port_offset(const struct sock *sk)
305{
306 const struct inet_sock *inet = inet_sk(sk);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900307 return secure_ipv4_port_ephemeral(inet->rcv_saddr, inet->daddr,
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800308 inet->dport);
309}
310
Pavel Emelyanov152da812007-12-20 15:31:33 -0800311void __inet_hash_nolisten(struct inet_hashinfo *hashinfo, struct sock *sk)
312{
313 struct hlist_head *list;
314 rwlock_t *lock;
315 struct inet_ehash_bucket *head;
316
317 BUG_TRAP(sk_unhashed(sk));
318
319 sk->sk_hash = inet_sk_ehashfn(sk);
320 head = inet_ehash_bucket(hashinfo, sk->sk_hash);
321 list = &head->chain;
322 lock = inet_ehash_lockp(hashinfo, sk->sk_hash);
323
324 write_lock(lock);
325 __sk_add_node(sk, list);
Eric Dumazet65f76512008-01-03 20:46:48 -0800326 sock_prot_inuse_add(sk->sk_prot, 1);
Pavel Emelyanov152da812007-12-20 15:31:33 -0800327 write_unlock(lock);
328}
329EXPORT_SYMBOL_GPL(__inet_hash_nolisten);
330
331void __inet_hash(struct inet_hashinfo *hashinfo, struct sock *sk)
332{
333 struct hlist_head *list;
334 rwlock_t *lock;
335
336 if (sk->sk_state != TCP_LISTEN) {
337 __inet_hash_nolisten(hashinfo, sk);
338 return;
339 }
340
341 BUG_TRAP(sk_unhashed(sk));
342 list = &hashinfo->listening_hash[inet_sk_listen_hashfn(sk)];
343 lock = &hashinfo->lhash_lock;
344
345 inet_listen_wlock(hashinfo);
346 __sk_add_node(sk, list);
Eric Dumazet65f76512008-01-03 20:46:48 -0800347 sock_prot_inuse_add(sk->sk_prot, 1);
Pavel Emelyanov152da812007-12-20 15:31:33 -0800348 write_unlock(lock);
349 wake_up(&hashinfo->lhash_wait);
350}
351EXPORT_SYMBOL_GPL(__inet_hash);
352
Pavel Emelyanov5ee31fc2008-01-31 05:04:45 -0800353int __inet_hash_connect(struct inet_timewait_death_row *death_row,
354 struct sock *sk,
355 int (*check_established)(struct inet_timewait_death_row *,
356 struct sock *, __u16, struct inet_timewait_sock **),
357 void (*hash)(struct inet_hashinfo *, struct sock *))
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800358{
359 struct inet_hashinfo *hinfo = death_row->hashinfo;
360 const unsigned short snum = inet_sk(sk)->num;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900361 struct inet_bind_hashbucket *head;
362 struct inet_bind_bucket *tb;
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800363 int ret;
Pavel Emelyanov941b1d22008-01-31 05:05:50 -0800364 struct net *net = sk->sk_net;
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800365
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900366 if (!snum) {
Stephen Hemminger227b60f2007-10-10 17:30:46 -0700367 int i, remaining, low, high, port;
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800368 static u32 hint;
369 u32 offset = hint + inet_sk_port_offset(sk);
370 struct hlist_node *node;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900371 struct inet_timewait_sock *tw = NULL;
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800372
Stephen Hemminger227b60f2007-10-10 17:30:46 -0700373 inet_get_local_port_range(&low, &high);
Anton Arapova25de532007-10-18 22:00:17 -0700374 remaining = (high - low) + 1;
Stephen Hemminger227b60f2007-10-10 17:30:46 -0700375
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900376 local_bh_disable();
Stephen Hemminger227b60f2007-10-10 17:30:46 -0700377 for (i = 1; i <= remaining; i++) {
378 port = low + (i + offset) % remaining;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900379 head = &hinfo->bhash[inet_bhashfn(port, hinfo->bhash_size)];
380 spin_lock(&head->lock);
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800381
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900382 /* Does not bother with rcv_saddr checks,
383 * because the established check is already
384 * unique enough.
385 */
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800386 inet_bind_bucket_for_each(tb, node, &head->chain) {
Pavel Emelyanov941b1d22008-01-31 05:05:50 -0800387 if (tb->ib_net == net && tb->port == port) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900388 BUG_TRAP(!hlist_empty(&tb->owners));
389 if (tb->fastreuse >= 0)
390 goto next_port;
Pavel Emelyanov5ee31fc2008-01-31 05:04:45 -0800391 if (!check_established(death_row, sk,
392 port, &tw))
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900393 goto ok;
394 goto next_port;
395 }
396 }
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800397
Pavel Emelyanov941b1d22008-01-31 05:05:50 -0800398 tb = inet_bind_bucket_create(hinfo->bind_bucket_cachep,
399 net, head, port);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900400 if (!tb) {
401 spin_unlock(&head->lock);
402 break;
403 }
404 tb->fastreuse = -1;
405 goto ok;
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800406
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900407 next_port:
408 spin_unlock(&head->lock);
409 }
410 local_bh_enable();
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800411
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900412 return -EADDRNOTAVAIL;
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800413
414ok:
415 hint += i;
416
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900417 /* Head lock still held and bh's disabled */
418 inet_bind_hash(sk, tb, port);
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800419 if (sk_unhashed(sk)) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900420 inet_sk(sk)->sport = htons(port);
Pavel Emelyanov5ee31fc2008-01-31 05:04:45 -0800421 hash(hinfo, sk);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900422 }
423 spin_unlock(&head->lock);
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800424
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900425 if (tw) {
426 inet_twsk_deschedule(tw, death_row);
427 inet_twsk_put(tw);
428 }
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800429
430 ret = 0;
431 goto out;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900432 }
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800433
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900434 head = &hinfo->bhash[inet_bhashfn(snum, hinfo->bhash_size)];
435 tb = inet_csk(sk)->icsk_bind_hash;
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800436 spin_lock_bh(&head->lock);
437 if (sk_head(&tb->owners) == sk && !sk->sk_bind_node.next) {
Pavel Emelyanov5ee31fc2008-01-31 05:04:45 -0800438 hash(hinfo, sk);
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800439 spin_unlock_bh(&head->lock);
440 return 0;
441 } else {
442 spin_unlock(&head->lock);
443 /* No definite answer... Walk to established hash table */
Pavel Emelyanov5ee31fc2008-01-31 05:04:45 -0800444 ret = check_established(death_row, sk, snum, NULL);
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800445out:
446 local_bh_enable();
447 return ret;
448 }
449}
Pavel Emelyanov5ee31fc2008-01-31 05:04:45 -0800450EXPORT_SYMBOL_GPL(__inet_hash_connect);
451
452/*
453 * Bind a port for a connect operation and hash it.
454 */
455int inet_hash_connect(struct inet_timewait_death_row *death_row,
456 struct sock *sk)
457{
458 return __inet_hash_connect(death_row, sk,
459 __inet_check_established, __inet_hash_nolisten);
460}
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800461
462EXPORT_SYMBOL_GPL(inet_hash_connect);