]> bbs.cooldavid.org Git - net-next-2.6.git/blame - net/ipv4/inet_connection_sock.c
gro: Fix handling of imprecisely split packets
[net-next-2.6.git] / net / ipv4 / inet_connection_sock.c
CommitLineData
3f421baa
ACM
1/*
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 * Support for INET connection oriented protocols.
7 *
8 * Authors: See the TCP sources
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
3f421baa
ACM
16#include <linux/module.h>
17#include <linux/jhash.h>
18
19#include <net/inet_connection_sock.h>
20#include <net/inet_hashtables.h>
21#include <net/inet_timewait_sock.h>
22#include <net/ip.h>
23#include <net/route.h>
24#include <net/tcp_states.h>
a019d6fe 25#include <net/xfrm.h>
3f421baa
ACM
26
27#ifdef INET_CSK_DEBUG
28const char inet_csk_timer_bug_msg[] = "inet_csk BUG: unknown timer value\n";
29EXPORT_SYMBOL(inet_csk_timer_bug_msg);
30#endif
31
32/*
3c689b73 33 * This struct holds the first and last local port number.
3f421baa 34 */
3c689b73
ED
35struct local_ports sysctl_local_ports __read_mostly = {
36 .lock = SEQLOCK_UNLOCKED,
37 .range = { 32768, 61000 },
38};
227b60f5
SH
39
40void inet_get_local_port_range(int *low, int *high)
41{
42 unsigned seq;
43 do {
3c689b73 44 seq = read_seqbegin(&sysctl_local_ports.lock);
227b60f5 45
3c689b73
ED
46 *low = sysctl_local_ports.range[0];
47 *high = sysctl_local_ports.range[1];
48 } while (read_seqretry(&sysctl_local_ports.lock, seq));
227b60f5
SH
49}
50EXPORT_SYMBOL(inet_get_local_port_range);
3f421baa 51
971af18b
ACM
52int inet_csk_bind_conflict(const struct sock *sk,
53 const struct inet_bind_bucket *tb)
3f421baa 54{
82103232 55 const __be32 sk_rcv_saddr = inet_rcv_saddr(sk);
3f421baa
ACM
56 struct sock *sk2;
57 struct hlist_node *node;
58 int reuse = sk->sk_reuse;
59
7477fd2e
PE
60 /*
61 * Unlike other sk lookup places we do not check
62 * for sk_net here, since _all_ the socks listed
63 * in tb->owners list belong to the same net - the
64 * one this bucket belongs to.
65 */
66
3f421baa
ACM
67 sk_for_each_bound(sk2, node, &tb->owners) {
68 if (sk != sk2 &&
69 !inet_v6_ipv6only(sk2) &&
70 (!sk->sk_bound_dev_if ||
71 !sk2->sk_bound_dev_if ||
72 sk->sk_bound_dev_if == sk2->sk_bound_dev_if)) {
73 if (!reuse || !sk2->sk_reuse ||
74 sk2->sk_state == TCP_LISTEN) {
82103232 75 const __be32 sk2_rcv_saddr = inet_rcv_saddr(sk2);
3f421baa
ACM
76 if (!sk2_rcv_saddr || !sk_rcv_saddr ||
77 sk2_rcv_saddr == sk_rcv_saddr)
78 break;
79 }
80 }
81 }
82 return node != NULL;
83}
84
971af18b
ACM
85EXPORT_SYMBOL_GPL(inet_csk_bind_conflict);
86
3f421baa
ACM
87/* Obtain a reference to a local port for the given sock,
88 * if snum is zero it means select any available local port.
89 */
ab1e0a13 90int inet_csk_get_port(struct sock *sk, unsigned short snum)
3f421baa 91{
39d8cda7 92 struct inet_hashinfo *hashinfo = sk->sk_prot->h.hashinfo;
3f421baa
ACM
93 struct inet_bind_hashbucket *head;
94 struct hlist_node *node;
95 struct inet_bind_bucket *tb;
a9d8f911 96 int ret, attempts = 5;
3b1e0a65 97 struct net *net = sock_net(sk);
a9d8f911 98 int smallest_size = -1, smallest_rover;
3f421baa
ACM
99
100 local_bh_disable();
101 if (!snum) {
227b60f5
SH
102 int remaining, rover, low, high;
103
a9d8f911 104again:
227b60f5 105 inet_get_local_port_range(&low, &high);
a25de534 106 remaining = (high - low) + 1;
a9d8f911 107 smallest_rover = rover = net_random() % remaining + low;
3f421baa 108
a9d8f911 109 smallest_size = -1;
3f421baa 110 do {
7f635ab7
PE
111 head = &hashinfo->bhash[inet_bhashfn(net, rover,
112 hashinfo->bhash_size)];
3f421baa
ACM
113 spin_lock(&head->lock);
114 inet_bind_bucket_for_each(tb, node, &head->chain)
a9d8f911
EP
115 if (ib_net(tb) == net && tb->port == rover) {
116 if (tb->fastreuse > 0 &&
117 sk->sk_reuse &&
118 sk->sk_state != TCP_LISTEN &&
119 (tb->num_owners < smallest_size || smallest_size == -1)) {
120 smallest_size = tb->num_owners;
121 smallest_rover = rover;
122 if (hashinfo->bsockets > (high - low) + 1) {
123 spin_unlock(&head->lock);
124 snum = smallest_rover;
125 goto have_snum;
126 }
127 }
3f421baa 128 goto next;
a9d8f911 129 }
3f421baa
ACM
130 break;
131 next:
132 spin_unlock(&head->lock);
6df71634
SH
133 if (++rover > high)
134 rover = low;
3f421baa 135 } while (--remaining > 0);
3f421baa
ACM
136
137 /* Exhausted local port range during search? It is not
138 * possible for us to be holding one of the bind hash
139 * locks if this test triggers, because if 'remaining'
140 * drops to zero, we broke out of the do/while loop at
141 * the top level, not from the 'break;' statement.
142 */
143 ret = 1;
a9d8f911
EP
144 if (remaining <= 0) {
145 if (smallest_size != -1) {
146 snum = smallest_rover;
147 goto have_snum;
148 }
3f421baa 149 goto fail;
a9d8f911 150 }
3f421baa
ACM
151 /* OK, here is the one we will use. HEAD is
152 * non-NULL and we hold it's mutex.
153 */
154 snum = rover;
155 } else {
a9d8f911 156have_snum:
7f635ab7
PE
157 head = &hashinfo->bhash[inet_bhashfn(net, snum,
158 hashinfo->bhash_size)];
3f421baa
ACM
159 spin_lock(&head->lock);
160 inet_bind_bucket_for_each(tb, node, &head->chain)
7a9546ee 161 if (ib_net(tb) == net && tb->port == snum)
3f421baa
ACM
162 goto tb_found;
163 }
164 tb = NULL;
165 goto tb_not_found;
166tb_found:
167 if (!hlist_empty(&tb->owners)) {
3f421baa 168 if (tb->fastreuse > 0 &&
a9d8f911
EP
169 sk->sk_reuse && sk->sk_state != TCP_LISTEN &&
170 smallest_size == -1) {
3f421baa
ACM
171 goto success;
172 } else {
173 ret = 1;
a9d8f911
EP
174 if (inet_csk(sk)->icsk_af_ops->bind_conflict(sk, tb)) {
175 if (sk->sk_reuse && sk->sk_state != TCP_LISTEN && --attempts >= 0) {
176 spin_unlock(&head->lock);
177 goto again;
178 }
3f421baa 179 goto fail_unlock;
a9d8f911 180 }
3f421baa
ACM
181 }
182 }
183tb_not_found:
184 ret = 1;
941b1d22
PE
185 if (!tb && (tb = inet_bind_bucket_create(hashinfo->bind_bucket_cachep,
186 net, head, snum)) == NULL)
3f421baa
ACM
187 goto fail_unlock;
188 if (hlist_empty(&tb->owners)) {
189 if (sk->sk_reuse && sk->sk_state != TCP_LISTEN)
190 tb->fastreuse = 1;
191 else
192 tb->fastreuse = 0;
193 } else if (tb->fastreuse &&
194 (!sk->sk_reuse || sk->sk_state == TCP_LISTEN))
195 tb->fastreuse = 0;
196success:
197 if (!inet_csk(sk)->icsk_bind_hash)
198 inet_bind_hash(sk, tb, snum);
547b792c 199 WARN_ON(inet_csk(sk)->icsk_bind_hash != tb);
e905a9ed 200 ret = 0;
3f421baa
ACM
201
202fail_unlock:
203 spin_unlock(&head->lock);
204fail:
205 local_bh_enable();
206 return ret;
207}
208
209EXPORT_SYMBOL_GPL(inet_csk_get_port);
210
211/*
212 * Wait for an incoming connection, avoid race conditions. This must be called
213 * with the socket locked.
214 */
215static int inet_csk_wait_for_connect(struct sock *sk, long timeo)
216{
217 struct inet_connection_sock *icsk = inet_csk(sk);
218 DEFINE_WAIT(wait);
219 int err;
220
221 /*
222 * True wake-one mechanism for incoming connections: only
223 * one process gets woken up, not the 'whole herd'.
224 * Since we do not 'race & poll' for established sockets
225 * anymore, the common case will execute the loop only once.
226 *
227 * Subtle issue: "add_wait_queue_exclusive()" will be added
228 * after any current non-exclusive waiters, and we know that
229 * it will always _stay_ after any new non-exclusive waiters
230 * because all non-exclusive waiters are added at the
231 * beginning of the wait-queue. As such, it's ok to "drop"
232 * our exclusiveness temporarily when we get woken up without
233 * having to remove and re-insert us on the wait queue.
234 */
235 for (;;) {
236 prepare_to_wait_exclusive(sk->sk_sleep, &wait,
237 TASK_INTERRUPTIBLE);
238 release_sock(sk);
239 if (reqsk_queue_empty(&icsk->icsk_accept_queue))
240 timeo = schedule_timeout(timeo);
241 lock_sock(sk);
242 err = 0;
243 if (!reqsk_queue_empty(&icsk->icsk_accept_queue))
244 break;
245 err = -EINVAL;
246 if (sk->sk_state != TCP_LISTEN)
247 break;
248 err = sock_intr_errno(timeo);
249 if (signal_pending(current))
250 break;
251 err = -EAGAIN;
252 if (!timeo)
253 break;
254 }
255 finish_wait(sk->sk_sleep, &wait);
256 return err;
257}
258
259/*
260 * This will accept the next outstanding connection.
261 */
262struct sock *inet_csk_accept(struct sock *sk, int flags, int *err)
263{
264 struct inet_connection_sock *icsk = inet_csk(sk);
265 struct sock *newsk;
266 int error;
267
268 lock_sock(sk);
269
270 /* We need to make sure that this socket is listening,
271 * and that it has something pending.
272 */
273 error = -EINVAL;
274 if (sk->sk_state != TCP_LISTEN)
275 goto out_err;
276
277 /* Find already established connection */
278 if (reqsk_queue_empty(&icsk->icsk_accept_queue)) {
279 long timeo = sock_rcvtimeo(sk, flags & O_NONBLOCK);
280
281 /* If this is a non blocking socket don't sleep */
282 error = -EAGAIN;
283 if (!timeo)
284 goto out_err;
285
286 error = inet_csk_wait_for_connect(sk, timeo);
287 if (error)
288 goto out_err;
289 }
290
291 newsk = reqsk_queue_get_child(&icsk->icsk_accept_queue, sk);
547b792c 292 WARN_ON(newsk->sk_state == TCP_SYN_RECV);
3f421baa
ACM
293out:
294 release_sock(sk);
295 return newsk;
296out_err:
297 newsk = NULL;
298 *err = error;
299 goto out;
300}
301
302EXPORT_SYMBOL(inet_csk_accept);
303
304/*
305 * Using different timers for retransmit, delayed acks and probes
e905a9ed 306 * We may wish use just one timer maintaining a list of expire jiffies
3f421baa
ACM
307 * to optimize.
308 */
309void inet_csk_init_xmit_timers(struct sock *sk,
310 void (*retransmit_handler)(unsigned long),
311 void (*delack_handler)(unsigned long),
312 void (*keepalive_handler)(unsigned long))
313{
314 struct inet_connection_sock *icsk = inet_csk(sk);
315
b24b8a24
PE
316 setup_timer(&icsk->icsk_retransmit_timer, retransmit_handler,
317 (unsigned long)sk);
318 setup_timer(&icsk->icsk_delack_timer, delack_handler,
319 (unsigned long)sk);
320 setup_timer(&sk->sk_timer, keepalive_handler, (unsigned long)sk);
3f421baa
ACM
321 icsk->icsk_pending = icsk->icsk_ack.pending = 0;
322}
323
324EXPORT_SYMBOL(inet_csk_init_xmit_timers);
325
326void inet_csk_clear_xmit_timers(struct sock *sk)
327{
328 struct inet_connection_sock *icsk = inet_csk(sk);
329
330 icsk->icsk_pending = icsk->icsk_ack.pending = icsk->icsk_ack.blocked = 0;
331
332 sk_stop_timer(sk, &icsk->icsk_retransmit_timer);
333 sk_stop_timer(sk, &icsk->icsk_delack_timer);
334 sk_stop_timer(sk, &sk->sk_timer);
335}
336
337EXPORT_SYMBOL(inet_csk_clear_xmit_timers);
338
339void inet_csk_delete_keepalive_timer(struct sock *sk)
340{
341 sk_stop_timer(sk, &sk->sk_timer);
342}
343
344EXPORT_SYMBOL(inet_csk_delete_keepalive_timer);
345
346void inet_csk_reset_keepalive_timer(struct sock *sk, unsigned long len)
347{
348 sk_reset_timer(sk, &sk->sk_timer, jiffies + len);
349}
350
351EXPORT_SYMBOL(inet_csk_reset_keepalive_timer);
352
d9319100 353struct dst_entry *inet_csk_route_req(struct sock *sk,
3f421baa
ACM
354 const struct request_sock *req)
355{
356 struct rtable *rt;
357 const struct inet_request_sock *ireq = inet_rsk(req);
358 struct ip_options *opt = inet_rsk(req)->opt;
359 struct flowi fl = { .oif = sk->sk_bound_dev_if,
360 .nl_u = { .ip4_u =
361 { .daddr = ((opt && opt->srr) ?
362 opt->faddr :
363 ireq->rmt_addr),
364 .saddr = ireq->loc_addr,
365 .tos = RT_CONN_FLAGS(sk) } },
366 .proto = sk->sk_protocol,
86b08d86 367 .flags = inet_sk_flowi_flags(sk),
3f421baa
ACM
368 .uli_u = { .ports =
369 { .sport = inet_sk(sk)->sport,
370 .dport = ireq->rmt_port } } };
84a3aa00 371 struct net *net = sock_net(sk);
3f421baa 372
4237c75c 373 security_req_classify_flow(req, &fl);
857a6e0a
IJ
374 if (ip_route_output_flow(net, &rt, &fl, sk, 0))
375 goto no_route;
376 if (opt && opt->is_strictroute && rt->rt_dst != rt->rt_gateway)
377 goto route_err;
3f421baa 378 return &rt->u.dst;
857a6e0a
IJ
379
380route_err:
381 ip_rt_put(rt);
382no_route:
383 IP_INC_STATS_BH(net, IPSTATS_MIB_OUTNOROUTES);
384 return NULL;
3f421baa
ACM
385}
386
387EXPORT_SYMBOL_GPL(inet_csk_route_req);
388
6b72977b 389static inline u32 inet_synq_hash(const __be32 raddr, const __be16 rport,
72a3effa 390 const u32 rnd, const u32 synq_hsize)
3f421baa 391{
6b72977b 392 return jhash_2words((__force u32)raddr, (__force u32)rport, rnd) & (synq_hsize - 1);
3f421baa
ACM
393}
394
395#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
396#define AF_INET_FAMILY(fam) ((fam) == AF_INET)
397#else
398#define AF_INET_FAMILY(fam) 1
399#endif
400
401struct request_sock *inet_csk_search_req(const struct sock *sk,
402 struct request_sock ***prevp,
6b72977b 403 const __be16 rport, const __be32 raddr,
7f25afbb 404 const __be32 laddr)
3f421baa
ACM
405{
406 const struct inet_connection_sock *icsk = inet_csk(sk);
407 struct listen_sock *lopt = icsk->icsk_accept_queue.listen_opt;
408 struct request_sock *req, **prev;
409
410 for (prev = &lopt->syn_table[inet_synq_hash(raddr, rport, lopt->hash_rnd,
411 lopt->nr_table_entries)];
412 (req = *prev) != NULL;
413 prev = &req->dl_next) {
414 const struct inet_request_sock *ireq = inet_rsk(req);
415
416 if (ireq->rmt_port == rport &&
417 ireq->rmt_addr == raddr &&
418 ireq->loc_addr == laddr &&
419 AF_INET_FAMILY(req->rsk_ops->family)) {
547b792c 420 WARN_ON(req->sk);
3f421baa
ACM
421 *prevp = prev;
422 break;
423 }
424 }
425
426 return req;
427}
428
429EXPORT_SYMBOL_GPL(inet_csk_search_req);
430
431void inet_csk_reqsk_queue_hash_add(struct sock *sk, struct request_sock *req,
c2977c22 432 unsigned long timeout)
3f421baa
ACM
433{
434 struct inet_connection_sock *icsk = inet_csk(sk);
435 struct listen_sock *lopt = icsk->icsk_accept_queue.listen_opt;
436 const u32 h = inet_synq_hash(inet_rsk(req)->rmt_addr, inet_rsk(req)->rmt_port,
437 lopt->hash_rnd, lopt->nr_table_entries);
438
439 reqsk_queue_hash_req(&icsk->icsk_accept_queue, h, req, timeout);
440 inet_csk_reqsk_queue_added(sk, timeout);
441}
442
a019d6fe
ACM
443/* Only thing we need from tcp.h */
444extern int sysctl_tcp_synack_retries;
445
3f421baa 446EXPORT_SYMBOL_GPL(inet_csk_reqsk_queue_hash_add);
9f1d2604 447
a019d6fe
ACM
448void inet_csk_reqsk_queue_prune(struct sock *parent,
449 const unsigned long interval,
450 const unsigned long timeout,
451 const unsigned long max_rto)
452{
453 struct inet_connection_sock *icsk = inet_csk(parent);
454 struct request_sock_queue *queue = &icsk->icsk_accept_queue;
455 struct listen_sock *lopt = queue->listen_opt;
ec0a1966
DM
456 int max_retries = icsk->icsk_syn_retries ? : sysctl_tcp_synack_retries;
457 int thresh = max_retries;
a019d6fe
ACM
458 unsigned long now = jiffies;
459 struct request_sock **reqp, *req;
460 int i, budget;
461
462 if (lopt == NULL || lopt->qlen == 0)
463 return;
464
465 /* Normally all the openreqs are young and become mature
466 * (i.e. converted to established socket) for first timeout.
467 * If synack was not acknowledged for 3 seconds, it means
468 * one of the following things: synack was lost, ack was lost,
469 * rtt is high or nobody planned to ack (i.e. synflood).
470 * When server is a bit loaded, queue is populated with old
471 * open requests, reducing effective size of queue.
472 * When server is well loaded, queue size reduces to zero
473 * after several minutes of work. It is not synflood,
474 * it is normal operation. The solution is pruning
475 * too old entries overriding normal timeout, when
476 * situation becomes dangerous.
477 *
478 * Essentially, we reserve half of room for young
479 * embrions; and abort old ones without pity, if old
480 * ones are about to clog our table.
481 */
482 if (lopt->qlen>>(lopt->max_qlen_log-1)) {
483 int young = (lopt->qlen_young<<1);
484
485 while (thresh > 2) {
486 if (lopt->qlen < young)
487 break;
488 thresh--;
489 young <<= 1;
490 }
491 }
492
ec0a1966
DM
493 if (queue->rskq_defer_accept)
494 max_retries = queue->rskq_defer_accept;
495
a019d6fe
ACM
496 budget = 2 * (lopt->nr_table_entries / (timeout / interval));
497 i = lopt->clock_hand;
498
499 do {
500 reqp=&lopt->syn_table[i];
501 while ((req = *reqp) != NULL) {
502 if (time_after_eq(now, req->expires)) {
93653e04
DM
503 if ((req->retrans < thresh ||
504 (inet_rsk(req)->acked && req->retrans < max_retries))
505 && !req->rsk_ops->rtx_syn_ack(parent, req)) {
a019d6fe
ACM
506 unsigned long timeo;
507
508 if (req->retrans++ == 0)
509 lopt->qlen_young--;
510 timeo = min((timeout << req->retrans), max_rto);
511 req->expires = now + timeo;
512 reqp = &req->dl_next;
513 continue;
514 }
515
516 /* Drop this request */
517 inet_csk_reqsk_queue_unlink(parent, req, reqp);
518 reqsk_queue_removed(queue, req);
519 reqsk_free(req);
520 continue;
521 }
522 reqp = &req->dl_next;
523 }
524
525 i = (i + 1) & (lopt->nr_table_entries - 1);
526
527 } while (--budget > 0);
528
529 lopt->clock_hand = i;
530
531 if (lopt->qlen)
532 inet_csk_reset_keepalive_timer(parent, interval);
533}
534
535EXPORT_SYMBOL_GPL(inet_csk_reqsk_queue_prune);
536
9f1d2604 537struct sock *inet_csk_clone(struct sock *sk, const struct request_sock *req,
dd0fc66f 538 const gfp_t priority)
9f1d2604
ACM
539{
540 struct sock *newsk = sk_clone(sk, priority);
541
542 if (newsk != NULL) {
543 struct inet_connection_sock *newicsk = inet_csk(newsk);
544
545 newsk->sk_state = TCP_SYN_RECV;
546 newicsk->icsk_bind_hash = NULL;
547
548 inet_sk(newsk)->dport = inet_rsk(req)->rmt_port;
a3116ac5
KK
549 inet_sk(newsk)->num = ntohs(inet_rsk(req)->loc_port);
550 inet_sk(newsk)->sport = inet_rsk(req)->loc_port;
9f1d2604
ACM
551 newsk->sk_write_space = sk_stream_write_space;
552
553 newicsk->icsk_retransmits = 0;
6687e988
ACM
554 newicsk->icsk_backoff = 0;
555 newicsk->icsk_probes_out = 0;
9f1d2604
ACM
556
557 /* Deinitialize accept_queue to trap illegal accesses. */
558 memset(&newicsk->icsk_accept_queue, 0, sizeof(newicsk->icsk_accept_queue));
4237c75c
VY
559
560 security_inet_csk_clone(newsk, req);
9f1d2604
ACM
561 }
562 return newsk;
563}
564
565EXPORT_SYMBOL_GPL(inet_csk_clone);
a019d6fe
ACM
566
567/*
568 * At this point, there should be no process reference to this
569 * socket, and thus no user references at all. Therefore we
570 * can assume the socket waitqueue is inactive and nobody will
571 * try to jump onto it.
572 */
573void inet_csk_destroy_sock(struct sock *sk)
574{
547b792c
IJ
575 WARN_ON(sk->sk_state != TCP_CLOSE);
576 WARN_ON(!sock_flag(sk, SOCK_DEAD));
a019d6fe
ACM
577
578 /* It cannot be in hash table! */
547b792c 579 WARN_ON(!sk_unhashed(sk));
a019d6fe
ACM
580
581 /* If it has not 0 inet_sk(sk)->num, it must be bound */
547b792c 582 WARN_ON(inet_sk(sk)->num && !inet_csk(sk)->icsk_bind_hash);
a019d6fe
ACM
583
584 sk->sk_prot->destroy(sk);
585
586 sk_stream_kill_queues(sk);
587
588 xfrm_sk_free_policy(sk);
589
590 sk_refcnt_debug_release(sk);
591
dd24c001 592 percpu_counter_dec(sk->sk_prot->orphan_count);
a019d6fe
ACM
593 sock_put(sk);
594}
595
596EXPORT_SYMBOL(inet_csk_destroy_sock);
597
598int inet_csk_listen_start(struct sock *sk, const int nr_table_entries)
599{
600 struct inet_sock *inet = inet_sk(sk);
601 struct inet_connection_sock *icsk = inet_csk(sk);
602 int rc = reqsk_queue_alloc(&icsk->icsk_accept_queue, nr_table_entries);
603
604 if (rc != 0)
605 return rc;
606
607 sk->sk_max_ack_backlog = 0;
608 sk->sk_ack_backlog = 0;
609 inet_csk_delack_init(sk);
610
611 /* There is race window here: we announce ourselves listening,
612 * but this transition is still not validated by get_port().
613 * It is OK, because this socket enters to hash table only
614 * after validation is complete.
615 */
616 sk->sk_state = TCP_LISTEN;
617 if (!sk->sk_prot->get_port(sk, inet->num)) {
618 inet->sport = htons(inet->num);
619
620 sk_dst_reset(sk);
621 sk->sk_prot->hash(sk);
622
623 return 0;
624 }
625
626 sk->sk_state = TCP_CLOSE;
627 __reqsk_queue_destroy(&icsk->icsk_accept_queue);
628 return -EADDRINUSE;
629}
630
631EXPORT_SYMBOL_GPL(inet_csk_listen_start);
632
633/*
634 * This routine closes sockets which have been at least partially
635 * opened, but not yet accepted.
636 */
637void inet_csk_listen_stop(struct sock *sk)
638{
639 struct inet_connection_sock *icsk = inet_csk(sk);
640 struct request_sock *acc_req;
641 struct request_sock *req;
642
643 inet_csk_delete_keepalive_timer(sk);
644
645 /* make all the listen_opt local to us */
646 acc_req = reqsk_queue_yank_acceptq(&icsk->icsk_accept_queue);
647
648 /* Following specs, it would be better either to send FIN
649 * (and enter FIN-WAIT-1, it is normal close)
650 * or to send active reset (abort).
651 * Certainly, it is pretty dangerous while synflood, but it is
652 * bad justification for our negligence 8)
653 * To be honest, we are not able to make either
654 * of the variants now. --ANK
655 */
656 reqsk_queue_destroy(&icsk->icsk_accept_queue);
657
658 while ((req = acc_req) != NULL) {
659 struct sock *child = req->sk;
660
661 acc_req = req->dl_next;
662
663 local_bh_disable();
664 bh_lock_sock(child);
547b792c 665 WARN_ON(sock_owned_by_user(child));
a019d6fe
ACM
666 sock_hold(child);
667
668 sk->sk_prot->disconnect(child, O_NONBLOCK);
669
670 sock_orphan(child);
671
eb4dea58
HX
672 percpu_counter_inc(sk->sk_prot->orphan_count);
673
a019d6fe
ACM
674 inet_csk_destroy_sock(child);
675
676 bh_unlock_sock(child);
677 local_bh_enable();
678 sock_put(child);
679
680 sk_acceptq_removed(sk);
681 __reqsk_free(req);
682 }
547b792c 683 WARN_ON(sk->sk_ack_backlog);
a019d6fe
ACM
684}
685
686EXPORT_SYMBOL_GPL(inet_csk_listen_stop);
af05dc93
ACM
687
688void inet_csk_addr2sockaddr(struct sock *sk, struct sockaddr *uaddr)
689{
690 struct sockaddr_in *sin = (struct sockaddr_in *)uaddr;
691 const struct inet_sock *inet = inet_sk(sk);
692
693 sin->sin_family = AF_INET;
694 sin->sin_addr.s_addr = inet->daddr;
695 sin->sin_port = inet->dport;
696}
697
698EXPORT_SYMBOL_GPL(inet_csk_addr2sockaddr);
c4d93909 699
dec73ff0
ACM
700#ifdef CONFIG_COMPAT
701int inet_csk_compat_getsockopt(struct sock *sk, int level, int optname,
702 char __user *optval, int __user *optlen)
703{
dbeff12b 704 const struct inet_connection_sock *icsk = inet_csk(sk);
dec73ff0
ACM
705
706 if (icsk->icsk_af_ops->compat_getsockopt != NULL)
707 return icsk->icsk_af_ops->compat_getsockopt(sk, level, optname,
708 optval, optlen);
709 return icsk->icsk_af_ops->getsockopt(sk, level, optname,
710 optval, optlen);
711}
712
713EXPORT_SYMBOL_GPL(inet_csk_compat_getsockopt);
714
715int inet_csk_compat_setsockopt(struct sock *sk, int level, int optname,
716 char __user *optval, int optlen)
717{
dbeff12b 718 const struct inet_connection_sock *icsk = inet_csk(sk);
dec73ff0
ACM
719
720 if (icsk->icsk_af_ops->compat_setsockopt != NULL)
721 return icsk->icsk_af_ops->compat_setsockopt(sk, level, optname,
722 optval, optlen);
723 return icsk->icsk_af_ops->setsockopt(sk, level, optname,
724 optval, optlen);
725}
726
727EXPORT_SYMBOL_GPL(inet_csk_compat_setsockopt);
728#endif