K2.6 patches and update.
[tomato.git] / release / src-rt / linux / linux-2.6 / net / ipv4 / tcp_ipv4.c
bloba0161c26c4c765bf3fbff5f41f628b5b286e5eb3
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.
6 * Implementation of the Transmission Control Protocol(TCP).
8 * Version: $Id: tcp_ipv4.c,v 1.240 2002/02/01 22:01:04 davem Exp $
10 * IPv4 specific functions
13 * code split from:
14 * linux/ipv4/tcp.c
15 * linux/ipv4/tcp_input.c
16 * linux/ipv4/tcp_output.c
18 * See tcp.c for author information
20 * This program is free software; you can redistribute it and/or
21 * modify it under the terms of the GNU General Public License
22 * as published by the Free Software Foundation; either version
23 * 2 of the License, or (at your option) any later version.
27 * Changes:
28 * David S. Miller : New socket lookup architecture.
29 * This code is dedicated to John Dyson.
30 * David S. Miller : Change semantics of established hash,
31 * half is devoted to TIME_WAIT sockets
32 * and the rest go in the other half.
33 * Andi Kleen : Add support for syncookies and fixed
34 * some bugs: ip options weren't passed to
35 * the TCP layer, missed a check for an
36 * ACK bit.
37 * Andi Kleen : Implemented fast path mtu discovery.
38 * Fixed many serious bugs in the
39 * request_sock handling and moved
40 * most of it into the af independent code.
41 * Added tail drop and some other bugfixes.
42 * Added new listen semantics.
43 * Mike McLagan : Routing by source
44 * Juan Jose Ciarlante: ip_dynaddr bits
45 * Andi Kleen: various fixes.
46 * Vitaly E. Lavrov : Transparent proxy revived after year
47 * coma.
48 * Andi Kleen : Fix new listen.
49 * Andi Kleen : Fix accept error reporting.
50 * YOSHIFUJI Hideaki @USAGI and: Support IPV6_V6ONLY socket option, which
51 * Alexey Kuznetsov allow both IPv4 and IPv6 sockets to bind
52 * a single port at the same time.
56 #include <linux/types.h>
57 #include <linux/fcntl.h>
58 #include <linux/module.h>
59 #include <linux/random.h>
60 #include <linux/cache.h>
61 #include <linux/jhash.h>
62 #include <linux/init.h>
63 #include <linux/times.h>
65 #include <net/icmp.h>
66 #include <net/inet_hashtables.h>
67 #include <net/tcp.h>
68 #include <net/transp_v6.h>
69 #include <net/ipv6.h>
70 #include <net/inet_common.h>
71 #include <net/timewait_sock.h>
72 #include <net/xfrm.h>
73 #include <net/netdma.h>
75 #include <linux/inet.h>
76 #include <linux/ipv6.h>
77 #include <linux/stddef.h>
78 #include <linux/proc_fs.h>
79 #include <linux/seq_file.h>
81 #include <linux/crypto.h>
82 #include <linux/scatterlist.h>
84 int sysctl_tcp_tw_reuse __read_mostly;
85 int sysctl_tcp_low_latency __read_mostly;
87 /* Check TCP sequence numbers in ICMP packets. */
88 #define ICMP_MIN_LENGTH 8
90 /* Socket used for sending RSTs */
91 static struct socket *tcp_socket __read_mostly;
93 void tcp_v4_send_check(struct sock *sk, int len, struct sk_buff *skb);
95 #ifdef CONFIG_TCP_MD5SIG
96 static struct tcp_md5sig_key *tcp_v4_md5_do_lookup(struct sock *sk,
97 __be32 addr);
98 static int tcp_v4_do_calc_md5_hash(char *md5_hash, struct tcp_md5sig_key *key,
99 __be32 saddr, __be32 daddr,
100 struct tcphdr *th, int protocol,
101 int tcplen);
102 #endif
104 struct inet_hashinfo __cacheline_aligned tcp_hashinfo = {
105 .lhash_lock = __RW_LOCK_UNLOCKED(tcp_hashinfo.lhash_lock),
106 .lhash_users = ATOMIC_INIT(0),
107 .lhash_wait = __WAIT_QUEUE_HEAD_INITIALIZER(tcp_hashinfo.lhash_wait),
110 static int tcp_v4_get_port(struct sock *sk, unsigned short snum)
112 return inet_csk_get_port(&tcp_hashinfo, sk, snum,
113 inet_csk_bind_conflict);
116 static void tcp_v4_hash(struct sock *sk)
118 inet_hash(&tcp_hashinfo, sk);
121 void tcp_unhash(struct sock *sk)
123 inet_unhash(&tcp_hashinfo, sk);
126 static inline __u32 tcp_v4_init_sequence(struct sk_buff *skb)
128 return secure_tcp_sequence_number(ip_hdr(skb)->daddr,
129 ip_hdr(skb)->saddr,
130 tcp_hdr(skb)->dest,
131 tcp_hdr(skb)->source);
134 int tcp_twsk_unique(struct sock *sk, struct sock *sktw, void *twp)
136 const struct tcp_timewait_sock *tcptw = tcp_twsk(sktw);
137 struct tcp_sock *tp = tcp_sk(sk);
139 /* With PAWS, it is safe from the viewpoint
140 of data integrity. Even without PAWS it is safe provided sequence
141 spaces do not overlap i.e. at data rates <= 80Mbit/sec.
143 Actually, the idea is close to VJ's one, only timestamp cache is
144 held not per host, but per port pair and TW bucket is used as state
145 holder.
147 If TW bucket has been already destroyed we fall back to VJ's scheme
148 and use initial timestamp retrieved from peer table.
150 if (tcptw->tw_ts_recent_stamp &&
151 (twp == NULL || (sysctl_tcp_tw_reuse &&
152 get_seconds() - tcptw->tw_ts_recent_stamp > 1))) {
153 tp->write_seq = tcptw->tw_snd_nxt + 65535 + 2;
154 if (tp->write_seq == 0)
155 tp->write_seq = 1;
156 tp->rx_opt.ts_recent = tcptw->tw_ts_recent;
157 tp->rx_opt.ts_recent_stamp = tcptw->tw_ts_recent_stamp;
158 sock_hold(sktw);
159 return 1;
162 return 0;
165 EXPORT_SYMBOL_GPL(tcp_twsk_unique);
167 /* This will initiate an outgoing connection. */
168 int tcp_v4_connect(struct sock *sk, struct sockaddr *uaddr, int addr_len)
170 struct inet_sock *inet = inet_sk(sk);
171 struct tcp_sock *tp = tcp_sk(sk);
172 struct sockaddr_in *usin = (struct sockaddr_in *)uaddr;
173 struct rtable *rt;
174 __be32 daddr, nexthop;
175 int tmp;
176 int err;
178 if (addr_len < sizeof(struct sockaddr_in))
179 return -EINVAL;
181 if (usin->sin_family != AF_INET)
182 return -EAFNOSUPPORT;
184 nexthop = daddr = usin->sin_addr.s_addr;
185 if (inet->opt && inet->opt->srr) {
186 if (!daddr)
187 return -EINVAL;
188 nexthop = inet->opt->faddr;
191 tmp = ip_route_connect(&rt, nexthop, inet->saddr,
192 RT_CONN_FLAGS(sk), sk->sk_bound_dev_if,
193 IPPROTO_TCP,
194 inet->sport, usin->sin_port, sk, 1);
195 if (tmp < 0) {
196 if (tmp == -ENETUNREACH)
197 IP_INC_STATS_BH(IPSTATS_MIB_OUTNOROUTES);
198 return tmp;
201 if (rt->rt_flags & (RTCF_MULTICAST | RTCF_BROADCAST)) {
202 ip_rt_put(rt);
203 return -ENETUNREACH;
206 if (!inet->opt || !inet->opt->srr)
207 daddr = rt->rt_dst;
209 if (!inet->saddr)
210 inet->saddr = rt->rt_src;
211 inet->rcv_saddr = inet->saddr;
213 if (tp->rx_opt.ts_recent_stamp && inet->daddr != daddr) {
214 /* Reset inherited state */
215 tp->rx_opt.ts_recent = 0;
216 tp->rx_opt.ts_recent_stamp = 0;
217 tp->write_seq = 0;
220 if (tcp_death_row.sysctl_tw_recycle &&
221 !tp->rx_opt.ts_recent_stamp && rt->rt_dst == daddr) {
222 struct inet_peer *peer = rt_get_peer(rt);
224 * VJ's idea. We save last timestamp seen from
225 * the destination in peer table, when entering state
226 * TIME-WAIT * and initialize rx_opt.ts_recent from it,
227 * when trying new connection.
229 if (peer != NULL &&
230 peer->tcp_ts_stamp + TCP_PAWS_MSL >= get_seconds()) {
231 tp->rx_opt.ts_recent_stamp = peer->tcp_ts_stamp;
232 tp->rx_opt.ts_recent = peer->tcp_ts;
236 inet->dport = usin->sin_port;
237 inet->daddr = daddr;
239 inet_csk(sk)->icsk_ext_hdr_len = 0;
240 if (inet->opt)
241 inet_csk(sk)->icsk_ext_hdr_len = inet->opt->optlen;
243 tp->rx_opt.mss_clamp = 536;
245 /* Socket identity is still unknown (sport may be zero).
246 * However we set state to SYN-SENT and not releasing socket
247 * lock select source port, enter ourselves into the hash tables and
248 * complete initialization after this.
250 tcp_set_state(sk, TCP_SYN_SENT);
251 err = inet_hash_connect(&tcp_death_row, sk);
252 if (err)
253 goto failure;
255 err = ip_route_newports(&rt, IPPROTO_TCP,
256 inet->sport, inet->dport, sk);
257 if (err)
258 goto failure;
260 /* OK, now commit destination to socket. */
261 sk->sk_gso_type = SKB_GSO_TCPV4;
262 sk_setup_caps(sk, &rt->u.dst);
264 if (!tp->write_seq)
265 tp->write_seq = secure_tcp_sequence_number(inet->saddr,
266 inet->daddr,
267 inet->sport,
268 usin->sin_port);
270 inet->id = tp->write_seq ^ jiffies;
272 err = tcp_connect(sk);
273 rt = NULL;
274 if (err)
275 goto failure;
277 return 0;
279 failure:
281 * This unhashes the socket and releases the local port,
282 * if necessary.
284 tcp_set_state(sk, TCP_CLOSE);
285 ip_rt_put(rt);
286 sk->sk_route_caps = 0;
287 inet->dport = 0;
288 return err;
292 * This routine does path mtu discovery as defined in RFC1191.
294 static void do_pmtu_discovery(struct sock *sk, struct iphdr *iph, u32 mtu)
296 struct dst_entry *dst;
297 struct inet_sock *inet = inet_sk(sk);
299 /* We are not interested in TCP_LISTEN and open_requests (SYN-ACKs
300 * send out by Linux are always <576bytes so they should go through
301 * unfragmented).
303 if (sk->sk_state == TCP_LISTEN)
304 return;
306 /* We don't check in the destentry if pmtu discovery is forbidden
307 * on this route. We just assume that no packet_to_big packets
308 * are send back when pmtu discovery is not active.
309 * There is a small race when the user changes this flag in the
310 * route, but I think that's acceptable.
312 if ((dst = __sk_dst_check(sk, 0)) == NULL)
313 return;
315 dst->ops->update_pmtu(dst, mtu);
317 /* Something is about to be wrong... Remember soft error
318 * for the case, if this connection will not able to recover.
320 if (mtu < dst_mtu(dst) && ip_dont_fragment(sk, dst))
321 sk->sk_err_soft = EMSGSIZE;
323 mtu = dst_mtu(dst);
325 if (inet->pmtudisc != IP_PMTUDISC_DONT &&
326 inet_csk(sk)->icsk_pmtu_cookie > mtu) {
327 tcp_sync_mss(sk, mtu);
329 /* Resend the TCP packet because it's
330 * clear that the old packet has been
331 * dropped. This is the new "fast" path mtu
332 * discovery.
334 tcp_simple_retransmit(sk);
335 } /* else let the usual retransmit timer handle it */
339 * This routine is called by the ICMP module when it gets some
340 * sort of error condition. If err < 0 then the socket should
341 * be closed and the error returned to the user. If err > 0
342 * it's just the icmp type << 8 | icmp code. After adjustment
343 * header points to the first 8 bytes of the tcp header. We need
344 * to find the appropriate port.
346 * The locking strategy used here is very "optimistic". When
347 * someone else accesses the socket the ICMP is just dropped
348 * and for some paths there is no check at all.
349 * A more general error queue to queue errors for later handling
350 * is probably better.
354 void tcp_v4_err(struct sk_buff *skb, u32 info)
356 struct iphdr *iph = (struct iphdr *)skb->data;
357 struct tcphdr *th = (struct tcphdr *)(skb->data + (iph->ihl << 2));
358 struct tcp_sock *tp;
359 struct inet_sock *inet;
360 const int type = icmp_hdr(skb)->type;
361 const int code = icmp_hdr(skb)->code;
362 struct sock *sk;
363 __u32 seq;
364 int err;
366 if (skb->len < (iph->ihl << 2) + 8) {
367 ICMP_INC_STATS_BH(ICMP_MIB_INERRORS);
368 return;
371 sk = inet_lookup(&tcp_hashinfo, iph->daddr, th->dest, iph->saddr,
372 th->source, inet_iif(skb));
373 if (!sk) {
374 ICMP_INC_STATS_BH(ICMP_MIB_INERRORS);
375 return;
377 if (sk->sk_state == TCP_TIME_WAIT) {
378 inet_twsk_put(inet_twsk(sk));
379 return;
382 bh_lock_sock(sk);
383 /* If too many ICMPs get dropped on busy
384 * servers this needs to be solved differently.
386 if (sock_owned_by_user(sk))
387 NET_INC_STATS_BH(LINUX_MIB_LOCKDROPPEDICMPS);
389 if (sk->sk_state == TCP_CLOSE)
390 goto out;
392 tp = tcp_sk(sk);
393 seq = ntohl(th->seq);
394 if (sk->sk_state != TCP_LISTEN &&
395 !between(seq, tp->snd_una, tp->snd_nxt)) {
396 NET_INC_STATS_BH(LINUX_MIB_OUTOFWINDOWICMPS);
397 goto out;
400 switch (type) {
401 case ICMP_SOURCE_QUENCH:
402 /* Just silently ignore these. */
403 goto out;
404 case ICMP_PARAMETERPROB:
405 err = EPROTO;
406 break;
407 case ICMP_DEST_UNREACH:
408 if (code > NR_ICMP_UNREACH)
409 goto out;
411 if (code == ICMP_FRAG_NEEDED) { /* PMTU discovery (RFC1191) */
412 if (!sock_owned_by_user(sk))
413 do_pmtu_discovery(sk, iph, info);
414 goto out;
417 err = icmp_err_convert[code].errno;
418 break;
419 case ICMP_TIME_EXCEEDED:
420 err = EHOSTUNREACH;
421 break;
422 default:
423 goto out;
426 switch (sk->sk_state) {
427 struct request_sock *req, **prev;
428 case TCP_LISTEN:
429 if (sock_owned_by_user(sk))
430 goto out;
432 req = inet_csk_search_req(sk, &prev, th->dest,
433 iph->daddr, iph->saddr);
434 if (!req)
435 goto out;
437 /* ICMPs are not backlogged, hence we cannot get
438 an established socket here.
440 BUG_TRAP(!req->sk);
442 if (seq != tcp_rsk(req)->snt_isn) {
443 NET_INC_STATS_BH(LINUX_MIB_OUTOFWINDOWICMPS);
444 goto out;
448 * Still in SYN_RECV, just remove it silently.
449 * There is no good way to pass the error to the newly
450 * created socket, and POSIX does not want network
451 * errors returned from accept().
453 inet_csk_reqsk_queue_drop(sk, req, prev);
454 goto out;
456 case TCP_SYN_SENT:
457 case TCP_SYN_RECV: /* Cannot happen.
458 It can f.e. if SYNs crossed.
460 if (!sock_owned_by_user(sk)) {
461 sk->sk_err = err;
463 sk->sk_error_report(sk);
465 tcp_done(sk);
466 } else {
467 sk->sk_err_soft = err;
469 goto out;
472 /* If we've already connected we will keep trying
473 * until we time out, or the user gives up.
475 * rfc1122 4.2.3.9 allows to consider as hard errors
476 * only PROTO_UNREACH and PORT_UNREACH (well, FRAG_FAILED too,
477 * but it is obsoleted by pmtu discovery).
479 * Note, that in modern internet, where routing is unreliable
480 * and in each dark corner broken firewalls sit, sending random
481 * errors ordered by their masters even this two messages finally lose
482 * their original sense (even Linux sends invalid PORT_UNREACHs)
484 * Now we are in compliance with RFCs.
485 * --ANK (980905)
488 inet = inet_sk(sk);
489 if (!sock_owned_by_user(sk) && inet->recverr) {
490 sk->sk_err = err;
491 sk->sk_error_report(sk);
492 } else { /* Only an error on timeout */
493 sk->sk_err_soft = err;
496 out:
497 bh_unlock_sock(sk);
498 sock_put(sk);
501 /* This routine computes an IPv4 TCP checksum. */
502 void tcp_v4_send_check(struct sock *sk, int len, struct sk_buff *skb)
504 struct inet_sock *inet = inet_sk(sk);
505 struct tcphdr *th = tcp_hdr(skb);
507 if (skb->ip_summed == CHECKSUM_PARTIAL) {
508 th->check = ~tcp_v4_check(len, inet->saddr,
509 inet->daddr, 0);
510 skb->csum_start = skb_transport_header(skb) - skb->head;
511 skb->csum_offset = offsetof(struct tcphdr, check);
512 } else {
513 th->check = tcp_v4_check(len, inet->saddr, inet->daddr,
514 csum_partial((char *)th,
515 th->doff << 2,
516 skb->csum));
520 int tcp_v4_gso_send_check(struct sk_buff *skb)
522 const struct iphdr *iph;
523 struct tcphdr *th;
525 if (!pskb_may_pull(skb, sizeof(*th)))
526 return -EINVAL;
528 iph = ip_hdr(skb);
529 th = tcp_hdr(skb);
531 th->check = 0;
532 th->check = ~tcp_v4_check(skb->len, iph->saddr, iph->daddr, 0);
533 skb->csum_start = skb_transport_header(skb) - skb->head;
534 skb->csum_offset = offsetof(struct tcphdr, check);
535 skb->ip_summed = CHECKSUM_PARTIAL;
536 return 0;
540 * This routine will send an RST to the other tcp.
542 * Someone asks: why I NEVER use socket parameters (TOS, TTL etc.)
543 * for reset.
544 * Answer: if a packet caused RST, it is not for a socket
545 * existing in our system, if it is matched to a socket,
546 * it is just duplicate segment or bug in other side's TCP.
547 * So that we build reply only basing on parameters
548 * arrived with segment.
549 * Exception: precedence violation. We do not implement it in any case.
552 static void tcp_v4_send_reset(struct sock *sk, struct sk_buff *skb)
554 struct tcphdr *th = tcp_hdr(skb);
555 struct {
556 struct tcphdr th;
557 #ifdef CONFIG_TCP_MD5SIG
558 __be32 opt[(TCPOLEN_MD5SIG_ALIGNED >> 2)];
559 #endif
560 } rep;
561 struct ip_reply_arg arg;
562 #ifdef CONFIG_TCP_MD5SIG
563 struct tcp_md5sig_key *key;
564 #endif
566 /* Never send a reset in response to a reset. */
567 if (th->rst)
568 return;
570 if (((struct rtable *)skb->dst)->rt_type != RTN_LOCAL)
571 return;
573 /* Swap the send and the receive. */
574 memset(&rep, 0, sizeof(rep));
575 rep.th.dest = th->source;
576 rep.th.source = th->dest;
577 rep.th.doff = sizeof(struct tcphdr) / 4;
578 rep.th.rst = 1;
580 if (th->ack) {
581 rep.th.seq = th->ack_seq;
582 } else {
583 rep.th.ack = 1;
584 rep.th.ack_seq = htonl(ntohl(th->seq) + th->syn + th->fin +
585 skb->len - (th->doff << 2));
588 memset(&arg, 0, sizeof(arg));
589 arg.iov[0].iov_base = (unsigned char *)&rep;
590 arg.iov[0].iov_len = sizeof(rep.th);
592 #ifdef CONFIG_TCP_MD5SIG
593 key = sk ? tcp_v4_md5_do_lookup(sk, ip_hdr(skb)->daddr) : NULL;
594 if (key) {
595 rep.opt[0] = htonl((TCPOPT_NOP << 24) |
596 (TCPOPT_NOP << 16) |
597 (TCPOPT_MD5SIG << 8) |
598 TCPOLEN_MD5SIG);
599 /* Update length and the length the header thinks exists */
600 arg.iov[0].iov_len += TCPOLEN_MD5SIG_ALIGNED;
601 rep.th.doff = arg.iov[0].iov_len / 4;
603 tcp_v4_do_calc_md5_hash((__u8 *)&rep.opt[1],
604 key,
605 ip_hdr(skb)->daddr,
606 ip_hdr(skb)->saddr,
607 &rep.th, IPPROTO_TCP,
608 arg.iov[0].iov_len);
610 #endif
611 arg.csum = csum_tcpudp_nofold(ip_hdr(skb)->daddr,
612 ip_hdr(skb)->saddr, /* XXX */
613 sizeof(struct tcphdr), IPPROTO_TCP, 0);
614 arg.csumoffset = offsetof(struct tcphdr, check) / 2;
616 ip_send_reply(tcp_socket->sk, skb, &arg, arg.iov[0].iov_len);
618 TCP_INC_STATS_BH(TCP_MIB_OUTSEGS);
619 TCP_INC_STATS_BH(TCP_MIB_OUTRSTS);
622 /* The code following below sending ACKs in SYN-RECV and TIME-WAIT states
623 outside socket context is ugly, certainly. What can I do?
626 static void tcp_v4_send_ack(struct tcp_timewait_sock *twsk,
627 struct sk_buff *skb, u32 seq, u32 ack,
628 u32 win, u32 ts)
630 struct tcphdr *th = tcp_hdr(skb);
631 struct {
632 struct tcphdr th;
633 __be32 opt[(TCPOLEN_TSTAMP_ALIGNED >> 2)
634 #ifdef CONFIG_TCP_MD5SIG
635 + (TCPOLEN_MD5SIG_ALIGNED >> 2)
636 #endif
638 } rep;
639 struct ip_reply_arg arg;
640 #ifdef CONFIG_TCP_MD5SIG
641 struct tcp_md5sig_key *key;
642 struct tcp_md5sig_key tw_key;
643 #endif
645 memset(&rep.th, 0, sizeof(struct tcphdr));
646 memset(&arg, 0, sizeof(arg));
648 arg.iov[0].iov_base = (unsigned char *)&rep;
649 arg.iov[0].iov_len = sizeof(rep.th);
650 if (ts) {
651 rep.opt[0] = htonl((TCPOPT_NOP << 24) | (TCPOPT_NOP << 16) |
652 (TCPOPT_TIMESTAMP << 8) |
653 TCPOLEN_TIMESTAMP);
654 rep.opt[1] = htonl(tcp_time_stamp);
655 rep.opt[2] = htonl(ts);
656 arg.iov[0].iov_len += TCPOLEN_TSTAMP_ALIGNED;
659 /* Swap the send and the receive. */
660 rep.th.dest = th->source;
661 rep.th.source = th->dest;
662 rep.th.doff = arg.iov[0].iov_len / 4;
663 rep.th.seq = htonl(seq);
664 rep.th.ack_seq = htonl(ack);
665 rep.th.ack = 1;
666 rep.th.window = htons(win);
668 #ifdef CONFIG_TCP_MD5SIG
670 * The SKB holds an imcoming packet, but may not have a valid ->sk
671 * pointer. This is especially the case when we're dealing with a
672 * TIME_WAIT ack, because the sk structure is long gone, and only
673 * the tcp_timewait_sock remains. So the md5 key is stashed in that
674 * structure, and we use it in preference. I believe that (twsk ||
675 * skb->sk) holds true, but we program defensively.
677 if (!twsk && skb->sk) {
678 key = tcp_v4_md5_do_lookup(skb->sk, ip_hdr(skb)->daddr);
679 } else if (twsk && twsk->tw_md5_keylen) {
680 tw_key.key = twsk->tw_md5_key;
681 tw_key.keylen = twsk->tw_md5_keylen;
682 key = &tw_key;
683 } else
684 key = NULL;
686 if (key) {
687 int offset = (ts) ? 3 : 0;
689 rep.opt[offset++] = htonl((TCPOPT_NOP << 24) |
690 (TCPOPT_NOP << 16) |
691 (TCPOPT_MD5SIG << 8) |
692 TCPOLEN_MD5SIG);
693 arg.iov[0].iov_len += TCPOLEN_MD5SIG_ALIGNED;
694 rep.th.doff = arg.iov[0].iov_len/4;
696 tcp_v4_do_calc_md5_hash((__u8 *)&rep.opt[offset],
697 key,
698 ip_hdr(skb)->daddr,
699 ip_hdr(skb)->saddr,
700 &rep.th, IPPROTO_TCP,
701 arg.iov[0].iov_len);
703 #endif
704 arg.csum = csum_tcpudp_nofold(ip_hdr(skb)->daddr,
705 ip_hdr(skb)->saddr, /* XXX */
706 arg.iov[0].iov_len, IPPROTO_TCP, 0);
707 arg.csumoffset = offsetof(struct tcphdr, check) / 2;
708 if (twsk)
709 arg.bound_dev_if = twsk->tw_sk.tw_bound_dev_if;
711 ip_send_reply(tcp_socket->sk, skb, &arg, arg.iov[0].iov_len);
713 TCP_INC_STATS_BH(TCP_MIB_OUTSEGS);
716 static void tcp_v4_timewait_ack(struct sock *sk, struct sk_buff *skb)
718 struct inet_timewait_sock *tw = inet_twsk(sk);
719 struct tcp_timewait_sock *tcptw = tcp_twsk(sk);
721 tcp_v4_send_ack(tcptw, skb, tcptw->tw_snd_nxt, tcptw->tw_rcv_nxt,
722 tcptw->tw_rcv_wnd >> tw->tw_rcv_wscale,
723 tcptw->tw_ts_recent);
725 inet_twsk_put(tw);
728 static void tcp_v4_reqsk_send_ack(struct sk_buff *skb,
729 struct request_sock *req)
731 tcp_v4_send_ack(NULL, skb, tcp_rsk(req)->snt_isn + 1,
732 tcp_rsk(req)->rcv_isn + 1, req->rcv_wnd,
733 req->ts_recent);
737 * Send a SYN-ACK after having received an ACK.
738 * This still operates on a request_sock only, not on a big
739 * socket.
741 static int tcp_v4_send_synack(struct sock *sk, struct request_sock *req,
742 struct dst_entry *dst)
744 const struct inet_request_sock *ireq = inet_rsk(req);
745 int err = -1;
746 struct sk_buff * skb;
748 /* First, grab a route. */
749 if (!dst && (dst = inet_csk_route_req(sk, req)) == NULL)
750 goto out;
752 skb = tcp_make_synack(sk, dst, req);
754 if (skb) {
755 struct tcphdr *th = tcp_hdr(skb);
757 th->check = tcp_v4_check(skb->len,
758 ireq->loc_addr,
759 ireq->rmt_addr,
760 csum_partial((char *)th, skb->len,
761 skb->csum));
763 err = ip_build_and_send_pkt(skb, sk, ireq->loc_addr,
764 ireq->rmt_addr,
765 ireq->opt);
766 err = net_xmit_eval(err);
769 out:
770 dst_release(dst);
771 return err;
775 * IPv4 request_sock destructor.
777 static void tcp_v4_reqsk_destructor(struct request_sock *req)
779 kfree(inet_rsk(req)->opt);
782 #ifdef CONFIG_SYN_COOKIES
783 static void syn_flood_warning(struct sk_buff *skb)
785 static unsigned long warntime;
787 if (time_after(jiffies, (warntime + HZ * 60))) {
788 warntime = jiffies;
789 printk(KERN_INFO
790 "possible SYN flooding on port %d. Sending cookies.\n",
791 ntohs(tcp_hdr(skb)->dest));
794 #endif
797 * Save and compile IPv4 options into the request_sock if needed.
799 static struct ip_options *tcp_v4_save_options(struct sock *sk,
800 struct sk_buff *skb)
802 struct ip_options *opt = &(IPCB(skb)->opt);
803 struct ip_options *dopt = NULL;
805 if (opt && opt->optlen) {
806 int opt_size = optlength(opt);
807 dopt = kmalloc(opt_size, GFP_ATOMIC);
808 if (dopt) {
809 if (ip_options_echo(dopt, skb)) {
810 kfree(dopt);
811 dopt = NULL;
815 return dopt;
818 #ifdef CONFIG_TCP_MD5SIG
820 * RFC2385 MD5 checksumming requires a mapping of
821 * IP address->MD5 Key.
822 * We need to maintain these in the sk structure.
825 /* Find the Key structure for an address. */
826 static struct tcp_md5sig_key *
827 tcp_v4_md5_do_lookup(struct sock *sk, __be32 addr)
829 struct tcp_sock *tp = tcp_sk(sk);
830 int i;
832 if (!tp->md5sig_info || !tp->md5sig_info->entries4)
833 return NULL;
834 for (i = 0; i < tp->md5sig_info->entries4; i++) {
835 if (tp->md5sig_info->keys4[i].addr == addr)
836 return &tp->md5sig_info->keys4[i].base;
838 return NULL;
841 struct tcp_md5sig_key *tcp_v4_md5_lookup(struct sock *sk,
842 struct sock *addr_sk)
844 return tcp_v4_md5_do_lookup(sk, inet_sk(addr_sk)->daddr);
847 EXPORT_SYMBOL(tcp_v4_md5_lookup);
849 static struct tcp_md5sig_key *tcp_v4_reqsk_md5_lookup(struct sock *sk,
850 struct request_sock *req)
852 return tcp_v4_md5_do_lookup(sk, inet_rsk(req)->rmt_addr);
855 /* This can be called on a newly created socket, from other files */
856 int tcp_v4_md5_do_add(struct sock *sk, __be32 addr,
857 u8 *newkey, u8 newkeylen)
859 /* Add Key to the list */
860 struct tcp4_md5sig_key *key;
861 struct tcp_sock *tp = tcp_sk(sk);
862 struct tcp4_md5sig_key *keys;
864 key = (struct tcp4_md5sig_key *)tcp_v4_md5_do_lookup(sk, addr);
865 if (key) {
866 /* Pre-existing entry - just update that one. */
867 kfree(key->base.key);
868 key->base.key = newkey;
869 key->base.keylen = newkeylen;
870 } else {
871 struct tcp_md5sig_info *md5sig;
873 if (!tp->md5sig_info) {
874 tp->md5sig_info = kzalloc(sizeof(*tp->md5sig_info),
875 GFP_ATOMIC);
876 if (!tp->md5sig_info) {
877 kfree(newkey);
878 return -ENOMEM;
880 sk->sk_route_caps &= ~NETIF_F_GSO_MASK;
882 if (tcp_alloc_md5sig_pool() == NULL) {
883 kfree(newkey);
884 return -ENOMEM;
886 md5sig = tp->md5sig_info;
888 if (md5sig->alloced4 == md5sig->entries4) {
889 keys = kmalloc((sizeof(*keys) *
890 (md5sig->entries4 + 1)), GFP_ATOMIC);
891 if (!keys) {
892 kfree(newkey);
893 tcp_free_md5sig_pool();
894 return -ENOMEM;
897 if (md5sig->entries4)
898 memcpy(keys, md5sig->keys4,
899 sizeof(*keys) * md5sig->entries4);
901 /* Free old key list, and reference new one */
902 if (md5sig->keys4)
903 kfree(md5sig->keys4);
904 md5sig->keys4 = keys;
905 md5sig->alloced4++;
907 md5sig->entries4++;
908 md5sig->keys4[md5sig->entries4 - 1].addr = addr;
909 md5sig->keys4[md5sig->entries4 - 1].base.key = newkey;
910 md5sig->keys4[md5sig->entries4 - 1].base.keylen = newkeylen;
912 return 0;
915 EXPORT_SYMBOL(tcp_v4_md5_do_add);
917 static int tcp_v4_md5_add_func(struct sock *sk, struct sock *addr_sk,
918 u8 *newkey, u8 newkeylen)
920 return tcp_v4_md5_do_add(sk, inet_sk(addr_sk)->daddr,
921 newkey, newkeylen);
924 int tcp_v4_md5_do_del(struct sock *sk, __be32 addr)
926 struct tcp_sock *tp = tcp_sk(sk);
927 int i;
929 for (i = 0; i < tp->md5sig_info->entries4; i++) {
930 if (tp->md5sig_info->keys4[i].addr == addr) {
931 /* Free the key */
932 kfree(tp->md5sig_info->keys4[i].base.key);
933 tp->md5sig_info->entries4--;
935 if (tp->md5sig_info->entries4 == 0) {
936 kfree(tp->md5sig_info->keys4);
937 tp->md5sig_info->keys4 = NULL;
938 tp->md5sig_info->alloced4 = 0;
939 } else if (tp->md5sig_info->entries4 != i) {
940 /* Need to do some manipulation */
941 memcpy(&tp->md5sig_info->keys4[i],
942 &tp->md5sig_info->keys4[i+1],
943 (tp->md5sig_info->entries4 - i) *
944 sizeof(struct tcp4_md5sig_key));
946 tcp_free_md5sig_pool();
947 return 0;
950 return -ENOENT;
953 EXPORT_SYMBOL(tcp_v4_md5_do_del);
955 static void tcp_v4_clear_md5_list(struct sock *sk)
957 struct tcp_sock *tp = tcp_sk(sk);
959 /* Free each key, then the set of key keys,
960 * the crypto element, and then decrement our
961 * hold on the last resort crypto.
963 if (tp->md5sig_info->entries4) {
964 int i;
965 for (i = 0; i < tp->md5sig_info->entries4; i++)
966 kfree(tp->md5sig_info->keys4[i].base.key);
967 tp->md5sig_info->entries4 = 0;
968 tcp_free_md5sig_pool();
970 if (tp->md5sig_info->keys4) {
971 kfree(tp->md5sig_info->keys4);
972 tp->md5sig_info->keys4 = NULL;
973 tp->md5sig_info->alloced4 = 0;
977 static int tcp_v4_parse_md5_keys(struct sock *sk, char __user *optval,
978 int optlen)
980 struct tcp_md5sig cmd;
981 struct sockaddr_in *sin = (struct sockaddr_in *)&cmd.tcpm_addr;
982 u8 *newkey;
984 if (optlen < sizeof(cmd))
985 return -EINVAL;
987 if (copy_from_user(&cmd, optval, sizeof(cmd)))
988 return -EFAULT;
990 if (sin->sin_family != AF_INET)
991 return -EINVAL;
993 if (!cmd.tcpm_key || !cmd.tcpm_keylen) {
994 if (!tcp_sk(sk)->md5sig_info)
995 return -ENOENT;
996 return tcp_v4_md5_do_del(sk, sin->sin_addr.s_addr);
999 if (cmd.tcpm_keylen > TCP_MD5SIG_MAXKEYLEN)
1000 return -EINVAL;
1002 if (!tcp_sk(sk)->md5sig_info) {
1003 struct tcp_sock *tp = tcp_sk(sk);
1004 struct tcp_md5sig_info *p = kzalloc(sizeof(*p), GFP_KERNEL);
1006 if (!p)
1007 return -EINVAL;
1009 tp->md5sig_info = p;
1010 sk->sk_route_caps &= ~NETIF_F_GSO_MASK;
1013 newkey = kmemdup(cmd.tcpm_key, cmd.tcpm_keylen, GFP_KERNEL);
1014 if (!newkey)
1015 return -ENOMEM;
1016 return tcp_v4_md5_do_add(sk, sin->sin_addr.s_addr,
1017 newkey, cmd.tcpm_keylen);
1020 static int tcp_v4_do_calc_md5_hash(char *md5_hash, struct tcp_md5sig_key *key,
1021 __be32 saddr, __be32 daddr,
1022 struct tcphdr *th, int protocol,
1023 int tcplen)
1025 struct scatterlist sg[4];
1026 __u16 data_len;
1027 int block = 0;
1028 __sum16 old_checksum;
1029 struct tcp_md5sig_pool *hp;
1030 struct tcp4_pseudohdr *bp;
1031 struct hash_desc *desc;
1032 int err;
1033 unsigned int nbytes = 0;
1036 * Okay, so RFC2385 is turned on for this connection,
1037 * so we need to generate the MD5 hash for the packet now.
1040 hp = tcp_get_md5sig_pool();
1041 if (!hp)
1042 goto clear_hash_noput;
1044 bp = &hp->md5_blk.ip4;
1045 desc = &hp->md5_desc;
1048 * 1. the TCP pseudo-header (in the order: source IP address,
1049 * destination IP address, zero-padded protocol number, and
1050 * segment length)
1052 bp->saddr = saddr;
1053 bp->daddr = daddr;
1054 bp->pad = 0;
1055 bp->protocol = protocol;
1056 bp->len = htons(tcplen);
1057 sg_set_buf(&sg[block++], bp, sizeof(*bp));
1058 nbytes += sizeof(*bp);
1060 /* 2. the TCP header, excluding options, and assuming a
1061 * checksum of zero/
1063 old_checksum = th->check;
1064 th->check = 0;
1065 sg_set_buf(&sg[block++], th, sizeof(struct tcphdr));
1066 nbytes += sizeof(struct tcphdr);
1068 /* 3. the TCP segment data (if any) */
1069 data_len = tcplen - (th->doff << 2);
1070 if (data_len > 0) {
1071 unsigned char *data = (unsigned char *)th + (th->doff << 2);
1072 sg_set_buf(&sg[block++], data, data_len);
1073 nbytes += data_len;
1076 /* 4. an independently-specified key or password, known to both
1077 * TCPs and presumably connection-specific
1079 sg_set_buf(&sg[block++], key->key, key->keylen);
1080 nbytes += key->keylen;
1082 /* Now store the Hash into the packet */
1083 err = crypto_hash_init(desc);
1084 if (err)
1085 goto clear_hash;
1086 err = crypto_hash_update(desc, sg, nbytes);
1087 if (err)
1088 goto clear_hash;
1089 err = crypto_hash_final(desc, md5_hash);
1090 if (err)
1091 goto clear_hash;
1093 /* Reset header, and free up the crypto */
1094 tcp_put_md5sig_pool();
1095 th->check = old_checksum;
1097 out:
1098 return 0;
1099 clear_hash:
1100 tcp_put_md5sig_pool();
1101 clear_hash_noput:
1102 memset(md5_hash, 0, 16);
1103 goto out;
1106 int tcp_v4_calc_md5_hash(char *md5_hash, struct tcp_md5sig_key *key,
1107 struct sock *sk,
1108 struct dst_entry *dst,
1109 struct request_sock *req,
1110 struct tcphdr *th, int protocol,
1111 int tcplen)
1113 __be32 saddr, daddr;
1115 if (sk) {
1116 saddr = inet_sk(sk)->saddr;
1117 daddr = inet_sk(sk)->daddr;
1118 } else {
1119 struct rtable *rt = (struct rtable *)dst;
1120 BUG_ON(!rt);
1121 saddr = rt->rt_src;
1122 daddr = rt->rt_dst;
1124 return tcp_v4_do_calc_md5_hash(md5_hash, key,
1125 saddr, daddr,
1126 th, protocol, tcplen);
1129 EXPORT_SYMBOL(tcp_v4_calc_md5_hash);
1131 static int tcp_v4_inbound_md5_hash(struct sock *sk, struct sk_buff *skb)
1134 * This gets called for each TCP segment that arrives
1135 * so we want to be efficient.
1136 * We have 3 drop cases:
1137 * o No MD5 hash and one expected.
1138 * o MD5 hash and we're not expecting one.
1139 * o MD5 hash and its wrong.
1141 __u8 *hash_location = NULL;
1142 struct tcp_md5sig_key *hash_expected;
1143 const struct iphdr *iph = ip_hdr(skb);
1144 struct tcphdr *th = tcp_hdr(skb);
1145 int length = (th->doff << 2) - sizeof(struct tcphdr);
1146 int genhash;
1147 unsigned char *ptr;
1148 unsigned char newhash[16];
1150 hash_expected = tcp_v4_md5_do_lookup(sk, iph->saddr);
1153 * If the TCP option length is less than the TCP_MD5SIG
1154 * option length, then we can shortcut
1156 if (length < TCPOLEN_MD5SIG) {
1157 if (hash_expected)
1158 return 1;
1159 else
1160 return 0;
1163 /* Okay, we can't shortcut - we have to grub through the options */
1164 ptr = (unsigned char *)(th + 1);
1165 while (length > 0) {
1166 int opcode = *ptr++;
1167 int opsize;
1169 switch (opcode) {
1170 case TCPOPT_EOL:
1171 goto done_opts;
1172 case TCPOPT_NOP:
1173 length--;
1174 continue;
1175 default:
1176 opsize = *ptr++;
1177 if (opsize < 2)
1178 goto done_opts;
1179 if (opsize > length)
1180 goto done_opts;
1182 if (opcode == TCPOPT_MD5SIG) {
1183 hash_location = ptr;
1184 goto done_opts;
1187 ptr += opsize-2;
1188 length -= opsize;
1190 done_opts:
1191 /* We've parsed the options - do we have a hash? */
1192 if (!hash_expected && !hash_location)
1193 return 0;
1195 if (hash_expected && !hash_location) {
1196 LIMIT_NETDEBUG(KERN_INFO "MD5 Hash expected but NOT found "
1197 "(" NIPQUAD_FMT ", %d)->(" NIPQUAD_FMT ", %d)\n",
1198 NIPQUAD(iph->saddr), ntohs(th->source),
1199 NIPQUAD(iph->daddr), ntohs(th->dest));
1200 return 1;
1203 if (!hash_expected && hash_location) {
1204 LIMIT_NETDEBUG(KERN_INFO "MD5 Hash NOT expected but found "
1205 "(" NIPQUAD_FMT ", %d)->(" NIPQUAD_FMT ", %d)\n",
1206 NIPQUAD(iph->saddr), ntohs(th->source),
1207 NIPQUAD(iph->daddr), ntohs(th->dest));
1208 return 1;
1211 /* Okay, so this is hash_expected and hash_location -
1212 * so we need to calculate the checksum.
1214 genhash = tcp_v4_do_calc_md5_hash(newhash,
1215 hash_expected,
1216 iph->saddr, iph->daddr,
1217 th, sk->sk_protocol,
1218 skb->len);
1220 if (genhash || memcmp(hash_location, newhash, 16) != 0) {
1221 if (net_ratelimit()) {
1222 printk(KERN_INFO "MD5 Hash failed for "
1223 "(" NIPQUAD_FMT ", %d)->(" NIPQUAD_FMT ", %d)%s\n",
1224 NIPQUAD(iph->saddr), ntohs(th->source),
1225 NIPQUAD(iph->daddr), ntohs(th->dest),
1226 genhash ? " tcp_v4_calc_md5_hash failed" : "");
1228 return 1;
1230 return 0;
1233 #endif
1235 struct request_sock_ops tcp_request_sock_ops __read_mostly = {
1236 .family = PF_INET,
1237 .obj_size = sizeof(struct tcp_request_sock),
1238 .rtx_syn_ack = tcp_v4_send_synack,
1239 .send_ack = tcp_v4_reqsk_send_ack,
1240 .destructor = tcp_v4_reqsk_destructor,
1241 .send_reset = tcp_v4_send_reset,
1244 #ifdef CONFIG_TCP_MD5SIG
1245 static struct tcp_request_sock_ops tcp_request_sock_ipv4_ops = {
1246 .md5_lookup = tcp_v4_reqsk_md5_lookup,
1248 #endif
1250 static struct timewait_sock_ops tcp_timewait_sock_ops = {
1251 .twsk_obj_size = sizeof(struct tcp_timewait_sock),
1252 .twsk_unique = tcp_twsk_unique,
1253 .twsk_destructor= tcp_twsk_destructor,
1256 int tcp_v4_conn_request(struct sock *sk, struct sk_buff *skb)
1258 struct inet_request_sock *ireq;
1259 struct tcp_options_received tmp_opt;
1260 struct request_sock *req;
1261 __be32 saddr = ip_hdr(skb)->saddr;
1262 __be32 daddr = ip_hdr(skb)->daddr;
1263 __u32 isn = TCP_SKB_CB(skb)->when;
1264 struct dst_entry *dst = NULL;
1265 #ifdef CONFIG_SYN_COOKIES
1266 int want_cookie = 0;
1267 #else
1268 #define want_cookie 0 /* Argh, why doesn't gcc optimize this :( */
1269 #endif
1271 /* Never answer to SYNs send to broadcast or multicast */
1272 if (((struct rtable *)skb->dst)->rt_flags &
1273 (RTCF_BROADCAST | RTCF_MULTICAST))
1274 goto drop;
1276 /* TW buckets are converted to open requests without
1277 * limitations, they conserve resources and peer is
1278 * evidently real one.
1280 if (inet_csk_reqsk_queue_is_full(sk) && !isn) {
1281 #ifdef CONFIG_SYN_COOKIES
1282 if (sysctl_tcp_syncookies) {
1283 want_cookie = 1;
1284 } else
1285 #endif
1286 goto drop;
1289 /* Accept backlog is full. If we have already queued enough
1290 * of warm entries in syn queue, drop request. It is better than
1291 * clogging syn queue with openreqs with exponentially increasing
1292 * timeout.
1294 if (sk_acceptq_is_full(sk) && inet_csk_reqsk_queue_young(sk) > 1)
1295 goto drop;
1297 req = reqsk_alloc(&tcp_request_sock_ops);
1298 if (!req)
1299 goto drop;
1301 #ifdef CONFIG_TCP_MD5SIG
1302 tcp_rsk(req)->af_specific = &tcp_request_sock_ipv4_ops;
1303 #endif
1305 tcp_clear_options(&tmp_opt);
1306 tmp_opt.mss_clamp = 536;
1307 tmp_opt.user_mss = tcp_sk(sk)->rx_opt.user_mss;
1309 tcp_parse_options(skb, &tmp_opt, 0);
1311 if (want_cookie) {
1312 tcp_clear_options(&tmp_opt);
1313 tmp_opt.saw_tstamp = 0;
1316 if (tmp_opt.saw_tstamp && !tmp_opt.rcv_tsval) {
1317 /* Some OSes (unknown ones, but I see them on web server, which
1318 * contains information interesting only for windows'
1319 * users) do not send their stamp in SYN. It is easy case.
1320 * We simply do not advertise TS support.
1322 tmp_opt.saw_tstamp = 0;
1323 tmp_opt.tstamp_ok = 0;
1325 tmp_opt.tstamp_ok = tmp_opt.saw_tstamp;
1327 tcp_openreq_init(req, &tmp_opt, skb);
1329 if (security_inet_conn_request(sk, skb, req))
1330 goto drop_and_free;
1332 ireq = inet_rsk(req);
1333 ireq->loc_addr = daddr;
1334 ireq->rmt_addr = saddr;
1335 ireq->opt = tcp_v4_save_options(sk, skb);
1336 if (!want_cookie)
1337 TCP_ECN_create_request(req, tcp_hdr(skb));
1339 if (want_cookie) {
1340 #ifdef CONFIG_SYN_COOKIES
1341 syn_flood_warning(skb);
1342 #endif
1343 isn = cookie_v4_init_sequence(sk, skb, &req->mss);
1344 } else if (!isn) {
1345 struct inet_peer *peer = NULL;
1347 /* VJ's idea. We save last timestamp seen
1348 * from the destination in peer table, when entering
1349 * state TIME-WAIT, and check against it before
1350 * accepting new connection request.
1352 * If "isn" is not zero, this request hit alive
1353 * timewait bucket, so that all the necessary checks
1354 * are made in the function processing timewait state.
1356 if (tmp_opt.saw_tstamp &&
1357 tcp_death_row.sysctl_tw_recycle &&
1358 (dst = inet_csk_route_req(sk, req)) != NULL &&
1359 (peer = rt_get_peer((struct rtable *)dst)) != NULL &&
1360 peer->v4daddr == saddr) {
1361 if (get_seconds() < peer->tcp_ts_stamp + TCP_PAWS_MSL &&
1362 (s32)(peer->tcp_ts - req->ts_recent) >
1363 TCP_PAWS_WINDOW) {
1364 NET_INC_STATS_BH(LINUX_MIB_PAWSPASSIVEREJECTED);
1365 dst_release(dst);
1366 goto drop_and_free;
1369 /* Kill the following clause, if you dislike this way. */
1370 else if (!sysctl_tcp_syncookies &&
1371 (sysctl_max_syn_backlog - inet_csk_reqsk_queue_len(sk) <
1372 (sysctl_max_syn_backlog >> 2)) &&
1373 (!peer || !peer->tcp_ts_stamp) &&
1374 (!dst || !dst_metric(dst, RTAX_RTT))) {
1375 /* Without syncookies last quarter of
1376 * backlog is filled with destinations,
1377 * proven to be alive.
1378 * It means that we continue to communicate
1379 * to destinations, already remembered
1380 * to the moment of synflood.
1382 LIMIT_NETDEBUG(KERN_DEBUG "TCP: drop open "
1383 "request from %u.%u.%u.%u/%u\n",
1384 NIPQUAD(saddr),
1385 ntohs(tcp_hdr(skb)->source));
1386 dst_release(dst);
1387 goto drop_and_free;
1390 isn = tcp_v4_init_sequence(skb);
1392 tcp_rsk(req)->snt_isn = isn;
1394 if (tcp_v4_send_synack(sk, req, dst))
1395 goto drop_and_free;
1397 if (want_cookie) {
1398 reqsk_free(req);
1399 } else {
1400 inet_csk_reqsk_queue_hash_add(sk, req, TCP_TIMEOUT_INIT);
1402 return 0;
1404 drop_and_free:
1405 reqsk_free(req);
1406 drop:
1407 return 0;
1412 * The three way handshake has completed - we got a valid synack -
1413 * now create the new socket.
1415 struct sock *tcp_v4_syn_recv_sock(struct sock *sk, struct sk_buff *skb,
1416 struct request_sock *req,
1417 struct dst_entry *dst)
1419 struct inet_request_sock *ireq;
1420 struct inet_sock *newinet;
1421 struct tcp_sock *newtp;
1422 struct sock *newsk;
1423 #ifdef CONFIG_TCP_MD5SIG
1424 struct tcp_md5sig_key *key;
1425 #endif
1427 if (sk_acceptq_is_full(sk))
1428 goto exit_overflow;
1430 if (!dst && (dst = inet_csk_route_req(sk, req)) == NULL)
1431 goto exit;
1433 newsk = tcp_create_openreq_child(sk, req, skb);
1434 if (!newsk)
1435 goto exit;
1437 newsk->sk_gso_type = SKB_GSO_TCPV4;
1438 sk_setup_caps(newsk, dst);
1440 newtp = tcp_sk(newsk);
1441 newinet = inet_sk(newsk);
1442 ireq = inet_rsk(req);
1443 newinet->daddr = ireq->rmt_addr;
1444 newinet->rcv_saddr = ireq->loc_addr;
1445 newinet->saddr = ireq->loc_addr;
1446 newinet->opt = ireq->opt;
1447 ireq->opt = NULL;
1448 newinet->mc_index = inet_iif(skb);
1449 newinet->mc_ttl = ip_hdr(skb)->ttl;
1450 inet_csk(newsk)->icsk_ext_hdr_len = 0;
1451 if (newinet->opt)
1452 inet_csk(newsk)->icsk_ext_hdr_len = newinet->opt->optlen;
1453 newinet->id = newtp->write_seq ^ jiffies;
1455 tcp_mtup_init(newsk);
1456 tcp_sync_mss(newsk, dst_mtu(dst));
1457 newtp->advmss = dst_metric(dst, RTAX_ADVMSS);
1458 if (tcp_sk(sk)->rx_opt.user_mss &&
1459 tcp_sk(sk)->rx_opt.user_mss < newtp->advmss)
1460 newtp->advmss = tcp_sk(sk)->rx_opt.user_mss;
1462 tcp_initialize_rcv_mss(newsk);
1464 #ifdef CONFIG_TCP_MD5SIG
1465 /* Copy over the MD5 key from the original socket */
1466 if ((key = tcp_v4_md5_do_lookup(sk, newinet->daddr)) != NULL) {
1468 * We're using one, so create a matching key
1469 * on the newsk structure. If we fail to get
1470 * memory, then we end up not copying the key
1471 * across. Shucks.
1473 char *newkey = kmemdup(key->key, key->keylen, GFP_ATOMIC);
1474 if (newkey != NULL)
1475 tcp_v4_md5_do_add(newsk, inet_sk(sk)->daddr,
1476 newkey, key->keylen);
1478 #endif
1480 __inet_hash_nolisten(&tcp_hashinfo, newsk);
1481 __inet_inherit_port(&tcp_hashinfo, sk, newsk);
1483 return newsk;
1485 exit_overflow:
1486 NET_INC_STATS_BH(LINUX_MIB_LISTENOVERFLOWS);
1487 exit:
1488 NET_INC_STATS_BH(LINUX_MIB_LISTENDROPS);
1489 dst_release(dst);
1490 return NULL;
1493 static struct sock *tcp_v4_hnd_req(struct sock *sk, struct sk_buff *skb)
1495 struct tcphdr *th = tcp_hdr(skb);
1496 const struct iphdr *iph = ip_hdr(skb);
1497 struct sock *nsk;
1498 struct request_sock **prev;
1499 /* Find possible connection requests. */
1500 struct request_sock *req = inet_csk_search_req(sk, &prev, th->source,
1501 iph->saddr, iph->daddr);
1502 if (req)
1503 return tcp_check_req(sk, skb, req, prev);
1505 nsk = inet_lookup_established(&tcp_hashinfo, iph->saddr, th->source,
1506 iph->daddr, th->dest, inet_iif(skb));
1508 if (nsk) {
1509 if (nsk->sk_state != TCP_TIME_WAIT) {
1510 bh_lock_sock(nsk);
1511 return nsk;
1513 inet_twsk_put(inet_twsk(nsk));
1514 return NULL;
1517 #ifdef CONFIG_SYN_COOKIES
1518 if (!th->rst && !th->syn && th->ack)
1519 sk = cookie_v4_check(sk, skb, &(IPCB(skb)->opt));
1520 #endif
1521 return sk;
1524 static __sum16 tcp_v4_checksum_init(struct sk_buff *skb)
1526 const struct iphdr *iph = ip_hdr(skb);
1528 if (skb->ip_summed == CHECKSUM_COMPLETE) {
1529 if (!tcp_v4_check(skb->len, iph->saddr,
1530 iph->daddr, skb->csum)) {
1531 skb->ip_summed = CHECKSUM_UNNECESSARY;
1532 return 0;
1536 skb->csum = csum_tcpudp_nofold(iph->saddr, iph->daddr,
1537 skb->len, IPPROTO_TCP, 0);
1539 if (skb->len <= 76) {
1540 return __skb_checksum_complete(skb);
1542 return 0;
1546 /* The socket must have it's spinlock held when we get
1547 * here.
1549 * We have a potential double-lock case here, so even when
1550 * doing backlog processing we use the BH locking scheme.
1551 * This is because we cannot sleep with the original spinlock
1552 * held.
1554 int tcp_v4_do_rcv(struct sock *sk, struct sk_buff *skb)
1556 struct sock *rsk;
1557 #ifdef CONFIG_TCP_MD5SIG
1559 * We really want to reject the packet as early as possible
1560 * if:
1561 * o We're expecting an MD5'd packet and this is no MD5 tcp option
1562 * o There is an MD5 option and we're not expecting one
1564 if (tcp_v4_inbound_md5_hash(sk, skb))
1565 goto discard;
1566 #endif
1568 if (sk->sk_state == TCP_ESTABLISHED) { /* Fast path */
1569 TCP_CHECK_TIMER(sk);
1570 if (tcp_rcv_established(sk, skb, tcp_hdr(skb), skb->len)) {
1571 rsk = sk;
1572 goto reset;
1574 TCP_CHECK_TIMER(sk);
1575 return 0;
1578 if (skb->len < tcp_hdrlen(skb) || tcp_checksum_complete(skb))
1579 goto csum_err;
1581 if (sk->sk_state == TCP_LISTEN) {
1582 struct sock *nsk = tcp_v4_hnd_req(sk, skb);
1583 if (!nsk)
1584 goto discard;
1586 if (nsk != sk) {
1587 if (tcp_child_process(sk, nsk, skb)) {
1588 rsk = nsk;
1589 goto reset;
1591 return 0;
1595 TCP_CHECK_TIMER(sk);
1596 if (tcp_rcv_state_process(sk, skb, tcp_hdr(skb), skb->len)) {
1597 rsk = sk;
1598 goto reset;
1600 TCP_CHECK_TIMER(sk);
1601 return 0;
1603 reset:
1604 tcp_v4_send_reset(rsk, skb);
1605 discard:
1606 kfree_skb(skb);
1607 /* Be careful here. If this function gets more complicated and
1608 * gcc suffers from register pressure on the x86, sk (in %ebx)
1609 * might be destroyed here. This current version compiles correctly,
1610 * but you have been warned.
1612 return 0;
1614 csum_err:
1615 TCP_INC_STATS_BH(TCP_MIB_INERRS);
1616 goto discard;
1620 * From tcp_input.c
1623 int tcp_v4_rcv(struct sk_buff *skb)
1625 const struct iphdr *iph;
1626 struct tcphdr *th;
1627 struct sock *sk;
1628 int ret;
1630 if (skb->pkt_type != PACKET_HOST)
1631 goto discard_it;
1633 /* Count it even if it's bad */
1634 TCP_INC_STATS_BH(TCP_MIB_INSEGS);
1636 if (!pskb_may_pull(skb, sizeof(struct tcphdr)))
1637 goto discard_it;
1639 th = tcp_hdr(skb);
1641 if (th->doff < sizeof(struct tcphdr) / 4)
1642 goto bad_packet;
1643 if (!pskb_may_pull(skb, th->doff * 4))
1644 goto discard_it;
1646 /* An explanation is required here, I think.
1647 * Packet length and doff are validated by header prediction,
1648 * provided case of th->doff==0 is eliminated.
1649 * So, we defer the checks. */
1650 if (!skb_csum_unnecessary(skb) && tcp_v4_checksum_init(skb))
1651 goto bad_packet;
1653 th = tcp_hdr(skb);
1654 iph = ip_hdr(skb);
1655 TCP_SKB_CB(skb)->seq = ntohl(th->seq);
1656 TCP_SKB_CB(skb)->end_seq = (TCP_SKB_CB(skb)->seq + th->syn + th->fin +
1657 skb->len - th->doff * 4);
1658 TCP_SKB_CB(skb)->ack_seq = ntohl(th->ack_seq);
1659 TCP_SKB_CB(skb)->when = 0;
1660 TCP_SKB_CB(skb)->flags = iph->tos;
1661 TCP_SKB_CB(skb)->sacked = 0;
1663 sk = __inet_lookup_skb(&tcp_hashinfo, skb, th->source, th->dest);
1664 if (!sk)
1665 goto no_tcp_socket;
1667 process:
1668 if (sk->sk_state == TCP_TIME_WAIT)
1669 goto do_time_wait;
1671 if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb))
1672 goto discard_and_relse;
1673 nf_reset(skb);
1675 if (sk_filter(sk, skb))
1676 goto discard_and_relse;
1678 skb->dev = NULL;
1680 bh_lock_sock_nested(sk);
1681 ret = 0;
1682 if (!sock_owned_by_user(sk)) {
1683 #ifdef CONFIG_NET_DMA
1684 struct tcp_sock *tp = tcp_sk(sk);
1685 if (!tp->ucopy.dma_chan && tp->ucopy.pinned_list)
1686 tp->ucopy.dma_chan = get_softnet_dma();
1687 if (tp->ucopy.dma_chan)
1688 ret = tcp_v4_do_rcv(sk, skb);
1689 else
1690 #endif
1692 if (!tcp_prequeue(sk, skb))
1693 ret = tcp_v4_do_rcv(sk, skb);
1695 } else
1696 sk_add_backlog(sk, skb);
1697 bh_unlock_sock(sk);
1699 sock_put(sk);
1701 return ret;
1703 no_tcp_socket:
1704 if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb))
1705 goto discard_it;
1707 if (skb->len < (th->doff << 2) || tcp_checksum_complete(skb)) {
1708 bad_packet:
1709 TCP_INC_STATS_BH(TCP_MIB_INERRS);
1710 } else {
1711 tcp_v4_send_reset(NULL, skb);
1714 discard_it:
1715 /* Discard frame. */
1716 kfree_skb(skb);
1717 return 0;
1719 discard_and_relse:
1720 sock_put(sk);
1721 goto discard_it;
1723 do_time_wait:
1724 if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb)) {
1725 inet_twsk_put(inet_twsk(sk));
1726 goto discard_it;
1729 if (skb->len < (th->doff << 2) || tcp_checksum_complete(skb)) {
1730 TCP_INC_STATS_BH(TCP_MIB_INERRS);
1731 inet_twsk_put(inet_twsk(sk));
1732 goto discard_it;
1734 switch (tcp_timewait_state_process(inet_twsk(sk), skb, th)) {
1735 case TCP_TW_SYN: {
1736 struct sock *sk2 = inet_lookup_listener(&tcp_hashinfo,
1737 iph->daddr, th->dest,
1738 inet_iif(skb));
1739 if (sk2) {
1740 inet_twsk_deschedule(inet_twsk(sk), &tcp_death_row);
1741 inet_twsk_put(inet_twsk(sk));
1742 sk = sk2;
1743 goto process;
1745 /* Fall through to ACK */
1747 case TCP_TW_ACK:
1748 tcp_v4_timewait_ack(sk, skb);
1749 break;
1750 case TCP_TW_RST:
1751 goto no_tcp_socket;
1752 case TCP_TW_SUCCESS:;
1754 goto discard_it;
1757 /* VJ's idea. Save last timestamp seen from this destination
1758 * and hold it at least for normal timewait interval to use for duplicate
1759 * segment detection in subsequent connections, before they enter synchronized
1760 * state.
1763 int tcp_v4_remember_stamp(struct sock *sk)
1765 struct inet_sock *inet = inet_sk(sk);
1766 struct tcp_sock *tp = tcp_sk(sk);
1767 struct rtable *rt = (struct rtable *)__sk_dst_get(sk);
1768 struct inet_peer *peer = NULL;
1769 int release_it = 0;
1771 if (!rt || rt->rt_dst != inet->daddr) {
1772 peer = inet_getpeer(inet->daddr, 1);
1773 release_it = 1;
1774 } else {
1775 if (!rt->peer)
1776 rt_bind_peer(rt, 1);
1777 peer = rt->peer;
1780 if (peer) {
1781 if ((s32)(peer->tcp_ts - tp->rx_opt.ts_recent) <= 0 ||
1782 (peer->tcp_ts_stamp + TCP_PAWS_MSL < get_seconds() &&
1783 peer->tcp_ts_stamp <= tp->rx_opt.ts_recent_stamp)) {
1784 peer->tcp_ts_stamp = tp->rx_opt.ts_recent_stamp;
1785 peer->tcp_ts = tp->rx_opt.ts_recent;
1787 if (release_it)
1788 inet_putpeer(peer);
1789 return 1;
1792 return 0;
1795 int tcp_v4_tw_remember_stamp(struct inet_timewait_sock *tw)
1797 struct inet_peer *peer = inet_getpeer(tw->tw_daddr, 1);
1799 if (peer) {
1800 const struct tcp_timewait_sock *tcptw = tcp_twsk((struct sock *)tw);
1802 if ((s32)(peer->tcp_ts - tcptw->tw_ts_recent) <= 0 ||
1803 (peer->tcp_ts_stamp + TCP_PAWS_MSL < get_seconds() &&
1804 peer->tcp_ts_stamp <= tcptw->tw_ts_recent_stamp)) {
1805 peer->tcp_ts_stamp = tcptw->tw_ts_recent_stamp;
1806 peer->tcp_ts = tcptw->tw_ts_recent;
1808 inet_putpeer(peer);
1809 return 1;
1812 return 0;
1815 struct inet_connection_sock_af_ops ipv4_specific = {
1816 .queue_xmit = ip_queue_xmit,
1817 .send_check = tcp_v4_send_check,
1818 .rebuild_header = inet_sk_rebuild_header,
1819 .conn_request = tcp_v4_conn_request,
1820 .syn_recv_sock = tcp_v4_syn_recv_sock,
1821 .remember_stamp = tcp_v4_remember_stamp,
1822 .net_header_len = sizeof(struct iphdr),
1823 .setsockopt = ip_setsockopt,
1824 .getsockopt = ip_getsockopt,
1825 .addr2sockaddr = inet_csk_addr2sockaddr,
1826 .sockaddr_len = sizeof(struct sockaddr_in),
1827 #ifdef CONFIG_COMPAT
1828 .compat_setsockopt = compat_ip_setsockopt,
1829 .compat_getsockopt = compat_ip_getsockopt,
1830 #endif
1833 #ifdef CONFIG_TCP_MD5SIG
1834 static struct tcp_sock_af_ops tcp_sock_ipv4_specific = {
1835 .md5_lookup = tcp_v4_md5_lookup,
1836 .calc_md5_hash = tcp_v4_calc_md5_hash,
1837 .md5_add = tcp_v4_md5_add_func,
1838 .md5_parse = tcp_v4_parse_md5_keys,
1840 #endif
1842 /* NOTE: A lot of things set to zero explicitly by call to
1843 * sk_alloc() so need not be done here.
1845 static int tcp_v4_init_sock(struct sock *sk)
1847 struct inet_connection_sock *icsk = inet_csk(sk);
1848 struct tcp_sock *tp = tcp_sk(sk);
1850 skb_queue_head_init(&tp->out_of_order_queue);
1851 tcp_init_xmit_timers(sk);
1852 tcp_prequeue_init(tp);
1854 icsk->icsk_rto = TCP_TIMEOUT_INIT;
1855 tp->mdev = TCP_TIMEOUT_INIT;
1857 /* So many TCP implementations out there (incorrectly) count the
1858 * initial SYN frame in their delayed-ACK and congestion control
1859 * algorithms that we must have the following bandaid to talk
1860 * efficiently to them. -DaveM
1862 tp->snd_cwnd = 2;
1864 /* See draft-stevens-tcpca-spec-01 for discussion of the
1865 * initialization of these values.
1867 tp->snd_ssthresh = 0x7fffffff; /* Infinity */
1868 tp->snd_cwnd_clamp = ~0;
1869 tp->mss_cache = 536;
1871 tp->reordering = sysctl_tcp_reordering;
1872 icsk->icsk_ca_ops = &tcp_init_congestion_ops;
1874 sk->sk_state = TCP_CLOSE;
1876 sk->sk_write_space = sk_stream_write_space;
1877 sock_set_flag(sk, SOCK_USE_WRITE_QUEUE);
1879 icsk->icsk_af_ops = &ipv4_specific;
1880 icsk->icsk_sync_mss = tcp_sync_mss;
1881 #ifdef CONFIG_TCP_MD5SIG
1882 tp->af_specific = &tcp_sock_ipv4_specific;
1883 #endif
1885 sk->sk_sndbuf = sysctl_tcp_wmem[1];
1886 sk->sk_rcvbuf = sysctl_tcp_rmem[1];
1888 atomic_inc(&tcp_sockets_allocated);
1890 return 0;
1893 int tcp_v4_destroy_sock(struct sock *sk)
1895 struct tcp_sock *tp = tcp_sk(sk);
1897 tcp_clear_xmit_timers(sk);
1899 tcp_cleanup_congestion_control(sk);
1901 /* Cleanup up the write buffer. */
1902 tcp_write_queue_purge(sk);
1904 /* Cleans up our, hopefully empty, out_of_order_queue. */
1905 __skb_queue_purge(&tp->out_of_order_queue);
1907 #ifdef CONFIG_TCP_MD5SIG
1908 /* Clean up the MD5 key list, if any */
1909 if (tp->md5sig_info) {
1910 tcp_v4_clear_md5_list(sk);
1911 kfree(tp->md5sig_info);
1912 tp->md5sig_info = NULL;
1914 #endif
1916 #ifdef CONFIG_NET_DMA
1917 /* Cleans up our sk_async_wait_queue */
1918 __skb_queue_purge(&sk->sk_async_wait_queue);
1919 #endif
1921 /* Clean prequeue, it must be empty really */
1922 __skb_queue_purge(&tp->ucopy.prequeue);
1924 /* Clean up a referenced TCP bind bucket. */
1925 if (inet_csk(sk)->icsk_bind_hash)
1926 inet_put_port(&tcp_hashinfo, sk);
1929 * If sendmsg cached page exists, toss it.
1931 if (sk->sk_sndmsg_page) {
1932 __free_page(sk->sk_sndmsg_page);
1933 sk->sk_sndmsg_page = NULL;
1936 atomic_dec(&tcp_sockets_allocated);
1938 return 0;
1941 EXPORT_SYMBOL(tcp_v4_destroy_sock);
1943 #ifdef CONFIG_PROC_FS
1944 /* Proc filesystem TCP sock list dumping. */
1946 static inline struct inet_timewait_sock *tw_head(struct hlist_head *head)
1948 return hlist_empty(head) ? NULL :
1949 list_entry(head->first, struct inet_timewait_sock, tw_node);
1952 static inline struct inet_timewait_sock *tw_next(struct inet_timewait_sock *tw)
1954 return tw->tw_node.next ?
1955 hlist_entry(tw->tw_node.next, typeof(*tw), tw_node) : NULL;
1958 static void *listening_get_next(struct seq_file *seq, void *cur)
1960 struct inet_connection_sock *icsk;
1961 struct hlist_node *node;
1962 struct sock *sk = cur;
1963 struct tcp_iter_state* st = seq->private;
1965 if (!sk) {
1966 st->bucket = 0;
1967 sk = sk_head(&tcp_hashinfo.listening_hash[0]);
1968 goto get_sk;
1971 ++st->num;
1973 if (st->state == TCP_SEQ_STATE_OPENREQ) {
1974 struct request_sock *req = cur;
1976 icsk = inet_csk(st->syn_wait_sk);
1977 req = req->dl_next;
1978 while (1) {
1979 while (req) {
1980 if (req->rsk_ops->family == st->family) {
1981 cur = req;
1982 goto out;
1984 req = req->dl_next;
1986 if (++st->sbucket >= icsk->icsk_accept_queue.listen_opt->nr_table_entries)
1987 break;
1988 get_req:
1989 req = icsk->icsk_accept_queue.listen_opt->syn_table[st->sbucket];
1991 sk = sk_next(st->syn_wait_sk);
1992 st->state = TCP_SEQ_STATE_LISTENING;
1993 read_unlock_bh(&icsk->icsk_accept_queue.syn_wait_lock);
1994 } else {
1995 icsk = inet_csk(sk);
1996 read_lock_bh(&icsk->icsk_accept_queue.syn_wait_lock);
1997 if (reqsk_queue_len(&icsk->icsk_accept_queue))
1998 goto start_req;
1999 read_unlock_bh(&icsk->icsk_accept_queue.syn_wait_lock);
2000 sk = sk_next(sk);
2002 get_sk:
2003 sk_for_each_from(sk, node) {
2004 if (sk->sk_family == st->family) {
2005 cur = sk;
2006 goto out;
2008 icsk = inet_csk(sk);
2009 read_lock_bh(&icsk->icsk_accept_queue.syn_wait_lock);
2010 if (reqsk_queue_len(&icsk->icsk_accept_queue)) {
2011 start_req:
2012 st->uid = sock_i_uid(sk);
2013 st->syn_wait_sk = sk;
2014 st->state = TCP_SEQ_STATE_OPENREQ;
2015 st->sbucket = 0;
2016 goto get_req;
2018 read_unlock_bh(&icsk->icsk_accept_queue.syn_wait_lock);
2020 if (++st->bucket < INET_LHTABLE_SIZE) {
2021 sk = sk_head(&tcp_hashinfo.listening_hash[st->bucket]);
2022 goto get_sk;
2024 cur = NULL;
2025 out:
2026 return cur;
2029 static void *listening_get_idx(struct seq_file *seq, loff_t *pos)
2031 void *rc = listening_get_next(seq, NULL);
2033 while (rc && *pos) {
2034 rc = listening_get_next(seq, rc);
2035 --*pos;
2037 return rc;
2040 static void *established_get_first(struct seq_file *seq)
2042 struct tcp_iter_state* st = seq->private;
2043 void *rc = NULL;
2045 for (st->bucket = 0; st->bucket < tcp_hashinfo.ehash_size; ++st->bucket) {
2046 struct sock *sk;
2047 struct hlist_node *node;
2048 struct inet_timewait_sock *tw;
2050 read_lock_bh(&tcp_hashinfo.ehash[st->bucket].lock);
2051 sk_for_each(sk, node, &tcp_hashinfo.ehash[st->bucket].chain) {
2052 if (sk->sk_family != st->family) {
2053 continue;
2055 rc = sk;
2056 goto out;
2058 st->state = TCP_SEQ_STATE_TIME_WAIT;
2059 inet_twsk_for_each(tw, node,
2060 &tcp_hashinfo.ehash[st->bucket].twchain) {
2061 if (tw->tw_family != st->family) {
2062 continue;
2064 rc = tw;
2065 goto out;
2067 read_unlock_bh(&tcp_hashinfo.ehash[st->bucket].lock);
2068 st->state = TCP_SEQ_STATE_ESTABLISHED;
2070 out:
2071 return rc;
2074 static void *established_get_next(struct seq_file *seq, void *cur)
2076 struct sock *sk = cur;
2077 struct inet_timewait_sock *tw;
2078 struct hlist_node *node;
2079 struct tcp_iter_state* st = seq->private;
2081 ++st->num;
2083 if (st->state == TCP_SEQ_STATE_TIME_WAIT) {
2084 tw = cur;
2085 tw = tw_next(tw);
2086 get_tw:
2087 while (tw && tw->tw_family != st->family) {
2088 tw = tw_next(tw);
2090 if (tw) {
2091 cur = tw;
2092 goto out;
2094 read_unlock_bh(&tcp_hashinfo.ehash[st->bucket].lock);
2095 st->state = TCP_SEQ_STATE_ESTABLISHED;
2097 if (++st->bucket < tcp_hashinfo.ehash_size) {
2098 read_lock_bh(&tcp_hashinfo.ehash[st->bucket].lock);
2099 sk = sk_head(&tcp_hashinfo.ehash[st->bucket].chain);
2100 } else {
2101 cur = NULL;
2102 goto out;
2104 } else
2105 sk = sk_next(sk);
2107 sk_for_each_from(sk, node) {
2108 if (sk->sk_family == st->family)
2109 goto found;
2112 st->state = TCP_SEQ_STATE_TIME_WAIT;
2113 tw = tw_head(&tcp_hashinfo.ehash[st->bucket].twchain);
2114 goto get_tw;
2115 found:
2116 cur = sk;
2117 out:
2118 return cur;
2121 static void *established_get_idx(struct seq_file *seq, loff_t pos)
2123 void *rc = established_get_first(seq);
2125 while (rc && pos) {
2126 rc = established_get_next(seq, rc);
2127 --pos;
2129 return rc;
2132 static void *tcp_get_idx(struct seq_file *seq, loff_t pos)
2134 void *rc;
2135 struct tcp_iter_state* st = seq->private;
2137 inet_listen_lock(&tcp_hashinfo);
2138 st->state = TCP_SEQ_STATE_LISTENING;
2139 rc = listening_get_idx(seq, &pos);
2141 if (!rc) {
2142 inet_listen_unlock(&tcp_hashinfo);
2143 st->state = TCP_SEQ_STATE_ESTABLISHED;
2144 rc = established_get_idx(seq, pos);
2147 return rc;
2150 static void *tcp_seq_start(struct seq_file *seq, loff_t *pos)
2152 struct tcp_iter_state* st = seq->private;
2153 st->state = TCP_SEQ_STATE_LISTENING;
2154 st->num = 0;
2155 return *pos ? tcp_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2158 static void *tcp_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2160 void *rc = NULL;
2161 struct tcp_iter_state* st;
2163 if (v == SEQ_START_TOKEN) {
2164 rc = tcp_get_idx(seq, 0);
2165 goto out;
2167 st = seq->private;
2169 switch (st->state) {
2170 case TCP_SEQ_STATE_OPENREQ:
2171 case TCP_SEQ_STATE_LISTENING:
2172 rc = listening_get_next(seq, v);
2173 if (!rc) {
2174 inet_listen_unlock(&tcp_hashinfo);
2175 st->state = TCP_SEQ_STATE_ESTABLISHED;
2176 rc = established_get_first(seq);
2178 break;
2179 case TCP_SEQ_STATE_ESTABLISHED:
2180 case TCP_SEQ_STATE_TIME_WAIT:
2181 rc = established_get_next(seq, v);
2182 break;
2184 out:
2185 ++*pos;
2186 return rc;
2189 static void tcp_seq_stop(struct seq_file *seq, void *v)
2191 struct tcp_iter_state* st = seq->private;
2193 switch (st->state) {
2194 case TCP_SEQ_STATE_OPENREQ:
2195 if (v) {
2196 struct inet_connection_sock *icsk = inet_csk(st->syn_wait_sk);
2197 read_unlock_bh(&icsk->icsk_accept_queue.syn_wait_lock);
2199 case TCP_SEQ_STATE_LISTENING:
2200 if (v != SEQ_START_TOKEN)
2201 inet_listen_unlock(&tcp_hashinfo);
2202 break;
2203 case TCP_SEQ_STATE_TIME_WAIT:
2204 case TCP_SEQ_STATE_ESTABLISHED:
2205 if (v)
2206 read_unlock_bh(&tcp_hashinfo.ehash[st->bucket].lock);
2207 break;
2211 static int tcp_seq_open(struct inode *inode, struct file *file)
2213 struct tcp_seq_afinfo *afinfo = PDE(inode)->data;
2214 struct tcp_iter_state *s;
2216 if (unlikely(afinfo == NULL))
2217 return -EINVAL;
2219 s = __seq_open_private(file, &afinfo->seq_ops,
2220 sizeof(struct tcp_iter_state));
2221 if (!s)
2222 return -ENOMEM;
2223 s->family = afinfo->family;
2225 return 0;
2228 int tcp_proc_register(struct tcp_seq_afinfo *afinfo)
2230 int rc = 0;
2231 struct proc_dir_entry *p;
2233 if (!afinfo)
2234 return -EINVAL;
2235 afinfo->seq_fops.owner = afinfo->owner;
2236 afinfo->seq_fops.open = tcp_seq_open;
2237 afinfo->seq_fops.read = seq_read;
2238 afinfo->seq_fops.llseek = seq_lseek;
2239 afinfo->seq_fops.release = seq_release_private;
2241 afinfo->seq_ops.start = tcp_seq_start;
2242 afinfo->seq_ops.next = tcp_seq_next;
2243 afinfo->seq_ops.stop = tcp_seq_stop;
2245 p = proc_net_fops_create(afinfo->name, S_IRUGO, &afinfo->seq_fops);
2246 if (p)
2247 p->data = afinfo;
2248 else
2249 rc = -ENOMEM;
2250 return rc;
2253 void tcp_proc_unregister(struct tcp_seq_afinfo *afinfo)
2255 if (!afinfo)
2256 return;
2257 proc_net_remove(afinfo->name);
2260 static void get_openreq4(struct sock *sk, struct request_sock *req,
2261 struct seq_file *f, int i, int uid, int *len)
2263 const struct inet_request_sock *ireq = inet_rsk(req);
2264 int ttd = req->expires - jiffies;
2266 seq_printf(f, "%4d: %08X:%04X %08X:%04X"
2267 " %02X %08X:%08X %02X:%08lX %08X %5d %8d %u %d %p%n",
2269 ireq->loc_addr,
2270 ntohs(inet_sk(sk)->sport),
2271 ireq->rmt_addr,
2272 ntohs(ireq->rmt_port),
2273 TCP_SYN_RECV,
2274 0, 0, /* could print option size, but that is af dependent. */
2275 1, /* timers active (only the expire timer) */
2276 jiffies_to_clock_t(ttd),
2277 req->retrans,
2278 uid,
2279 0, /* non standard timer */
2280 0, /* open_requests have no inode */
2281 atomic_read(&sk->sk_refcnt),
2282 req,
2283 len);
2286 static void get_tcp4_sock(struct sock *sk, struct seq_file *f, int i, int *len)
2288 int timer_active;
2289 unsigned long timer_expires;
2290 struct tcp_sock *tp = tcp_sk(sk);
2291 const struct inet_connection_sock *icsk = inet_csk(sk);
2292 struct inet_sock *inet = inet_sk(sk);
2293 __be32 dest = inet->daddr;
2294 __be32 src = inet->rcv_saddr;
2295 __u16 destp = ntohs(inet->dport);
2296 __u16 srcp = ntohs(inet->sport);
2298 if (icsk->icsk_pending == ICSK_TIME_RETRANS) {
2299 timer_active = 1;
2300 timer_expires = icsk->icsk_timeout;
2301 } else if (icsk->icsk_pending == ICSK_TIME_PROBE0) {
2302 timer_active = 4;
2303 timer_expires = icsk->icsk_timeout;
2304 } else if (timer_pending(&sk->sk_timer)) {
2305 timer_active = 2;
2306 timer_expires = sk->sk_timer.expires;
2307 } else {
2308 timer_active = 0;
2309 timer_expires = jiffies;
2312 seq_printf(f, "%4d: %08X:%04X %08X:%04X %02X %08X:%08X %02X:%08lX "
2313 "%08X %5d %8d %lu %d %p %u %u %u %u %d%n",
2314 i, src, srcp, dest, destp, sk->sk_state,
2315 tp->write_seq - tp->snd_una,
2316 sk->sk_state == TCP_LISTEN ? sk->sk_ack_backlog :
2317 (tp->rcv_nxt - tp->copied_seq),
2318 timer_active,
2319 jiffies_to_clock_t(timer_expires - jiffies),
2320 icsk->icsk_retransmits,
2321 sock_i_uid(sk),
2322 icsk->icsk_probes_out,
2323 sock_i_ino(sk),
2324 atomic_read(&sk->sk_refcnt), sk,
2325 icsk->icsk_rto,
2326 icsk->icsk_ack.ato,
2327 (icsk->icsk_ack.quick << 1) | icsk->icsk_ack.pingpong,
2328 tp->snd_cwnd,
2329 tp->snd_ssthresh >= 0xFFFF ? -1 : tp->snd_ssthresh,
2330 len);
2333 static void get_timewait4_sock(struct inet_timewait_sock *tw,
2334 struct seq_file *f, int i, int *len)
2336 __be32 dest, src;
2337 __u16 destp, srcp;
2338 int ttd = tw->tw_ttd - jiffies;
2340 if (ttd < 0)
2341 ttd = 0;
2343 dest = tw->tw_daddr;
2344 src = tw->tw_rcv_saddr;
2345 destp = ntohs(tw->tw_dport);
2346 srcp = ntohs(tw->tw_sport);
2348 seq_printf(f, "%4d: %08X:%04X %08X:%04X"
2349 " %02X %08X:%08X %02X:%08lX %08X %5d %8d %d %d %p%n",
2350 i, src, srcp, dest, destp, tw->tw_substate, 0, 0,
2351 3, jiffies_to_clock_t(ttd), 0, 0, 0, 0,
2352 atomic_read(&tw->tw_refcnt), tw, len);
2355 #define TMPSZ 150
2357 static int tcp4_seq_show(struct seq_file *seq, void *v)
2359 struct tcp_iter_state* st;
2360 int len;
2362 if (v == SEQ_START_TOKEN) {
2363 seq_printf(seq, "%-*s\n", TMPSZ - 1,
2364 " sl local_address rem_address st tx_queue "
2365 "rx_queue tr tm->when retrnsmt uid timeout "
2366 "inode");
2367 goto out;
2369 st = seq->private;
2371 switch (st->state) {
2372 case TCP_SEQ_STATE_LISTENING:
2373 case TCP_SEQ_STATE_ESTABLISHED:
2374 get_tcp4_sock(v, seq, st->num, &len);
2375 break;
2376 case TCP_SEQ_STATE_OPENREQ:
2377 get_openreq4(st->syn_wait_sk, v, seq, st->num, st->uid, &len);
2378 break;
2379 case TCP_SEQ_STATE_TIME_WAIT:
2380 get_timewait4_sock(v, seq, st->num, &len);
2381 break;
2383 seq_printf(seq, "%*s\n", TMPSZ - 1 - len, "");
2384 out:
2385 return 0;
2388 static struct tcp_seq_afinfo tcp4_seq_afinfo = {
2389 .owner = THIS_MODULE,
2390 .name = "tcp",
2391 .family = AF_INET,
2392 .seq_ops = {
2393 .show = tcp4_seq_show,
2397 int __init tcp4_proc_init(void)
2399 return tcp_proc_register(&tcp4_seq_afinfo);
2402 void tcp4_proc_exit(void)
2404 tcp_proc_unregister(&tcp4_seq_afinfo);
2406 #endif /* CONFIG_PROC_FS */
2408 struct proto tcp_prot = {
2409 .name = "TCP",
2410 .owner = THIS_MODULE,
2411 .close = tcp_close,
2412 .connect = tcp_v4_connect,
2413 .disconnect = tcp_disconnect,
2414 .accept = inet_csk_accept,
2415 .ioctl = tcp_ioctl,
2416 .init = tcp_v4_init_sock,
2417 .destroy = tcp_v4_destroy_sock,
2418 .shutdown = tcp_shutdown,
2419 .setsockopt = tcp_setsockopt,
2420 .getsockopt = tcp_getsockopt,
2421 .recvmsg = tcp_recvmsg,
2422 .backlog_rcv = tcp_v4_do_rcv,
2423 .hash = tcp_v4_hash,
2424 .unhash = tcp_unhash,
2425 .get_port = tcp_v4_get_port,
2426 .enter_memory_pressure = tcp_enter_memory_pressure,
2427 .sockets_allocated = &tcp_sockets_allocated,
2428 .orphan_count = &tcp_orphan_count,
2429 .memory_allocated = &tcp_memory_allocated,
2430 .memory_pressure = &tcp_memory_pressure,
2431 .sysctl_mem = sysctl_tcp_mem,
2432 .sysctl_wmem = sysctl_tcp_wmem,
2433 .sysctl_rmem = sysctl_tcp_rmem,
2434 .max_header = MAX_TCP_HEADER,
2435 .obj_size = sizeof(struct tcp_sock),
2436 .twsk_prot = &tcp_timewait_sock_ops,
2437 .rsk_prot = &tcp_request_sock_ops,
2438 #ifdef CONFIG_COMPAT
2439 .compat_setsockopt = compat_tcp_setsockopt,
2440 .compat_getsockopt = compat_tcp_getsockopt,
2441 #endif
2444 void __init tcp_v4_init(struct net_proto_family *ops)
2446 if (inet_csk_ctl_sock_create(&tcp_socket, PF_INET, SOCK_RAW,
2447 IPPROTO_TCP) < 0)
2448 panic("Failed to create the TCP control socket.\n");
2451 EXPORT_SYMBOL(ipv4_specific);
2452 EXPORT_SYMBOL(tcp_hashinfo);
2453 EXPORT_SYMBOL(tcp_prot);
2454 EXPORT_SYMBOL(tcp_unhash);
2455 EXPORT_SYMBOL(tcp_v4_conn_request);
2456 EXPORT_SYMBOL(tcp_v4_connect);
2457 EXPORT_SYMBOL(tcp_v4_do_rcv);
2458 EXPORT_SYMBOL(tcp_v4_remember_stamp);
2459 EXPORT_SYMBOL(tcp_v4_send_check);
2460 EXPORT_SYMBOL(tcp_v4_syn_recv_sock);
2462 #ifdef CONFIG_PROC_FS
2463 EXPORT_SYMBOL(tcp_proc_register);
2464 EXPORT_SYMBOL(tcp_proc_unregister);
2465 #endif
2466 EXPORT_SYMBOL(sysctl_local_port_range);
2467 EXPORT_SYMBOL(sysctl_tcp_low_latency);