blob: 29adc668ad51d87555330d653a9315c27fc9d26b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -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 * Implementation of the Transmission Control Protocol(TCP).
7 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * IPv4 specific functions
9 *
10 *
11 * code split from:
12 * linux/ipv4/tcp.c
13 * linux/ipv4/tcp_input.c
14 * linux/ipv4/tcp_output.c
15 *
16 * See tcp.c for author information
17 *
18 * This program is free software; you can redistribute it and/or
19 * modify it under the terms of the GNU General Public License
20 * as published by the Free Software Foundation; either version
21 * 2 of the License, or (at your option) any later version.
22 */
23
24/*
25 * Changes:
26 * David S. Miller : New socket lookup architecture.
27 * This code is dedicated to John Dyson.
28 * David S. Miller : Change semantics of established hash,
29 * half is devoted to TIME_WAIT sockets
30 * and the rest go in the other half.
31 * Andi Kleen : Add support for syncookies and fixed
32 * some bugs: ip options weren't passed to
33 * the TCP layer, missed a check for an
34 * ACK bit.
35 * Andi Kleen : Implemented fast path mtu discovery.
36 * Fixed many serious bugs in the
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -070037 * request_sock handling and moved
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 * most of it into the af independent code.
39 * Added tail drop and some other bugfixes.
Stephen Hemmingercaa20d9a2005-11-10 17:13:47 -080040 * Added new listen semantics.
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 * Mike McLagan : Routing by source
42 * Juan Jose Ciarlante: ip_dynaddr bits
43 * Andi Kleen: various fixes.
44 * Vitaly E. Lavrov : Transparent proxy revived after year
45 * coma.
46 * Andi Kleen : Fix new listen.
47 * Andi Kleen : Fix accept error reporting.
48 * YOSHIFUJI Hideaki @USAGI and: Support IPV6_V6ONLY socket option, which
49 * Alexey Kuznetsov allow both IPv4 and IPv6 sockets to bind
50 * a single port at the same time.
51 */
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54#include <linux/types.h>
55#include <linux/fcntl.h>
56#include <linux/module.h>
57#include <linux/random.h>
58#include <linux/cache.h>
59#include <linux/jhash.h>
60#include <linux/init.h>
61#include <linux/times.h>
62
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020063#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#include <net/icmp.h>
Arnaldo Carvalho de Melo304a1612005-08-09 19:59:20 -070065#include <net/inet_hashtables.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#include <net/tcp.h>
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030067#include <net/transp_v6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#include <net/ipv6.h>
69#include <net/inet_common.h>
Arnaldo Carvalho de Melo6d6ee432005-12-13 23:25:19 -080070#include <net/timewait_sock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#include <net/xfrm.h>
Chris Leech1a2449a2006-05-23 18:05:53 -070072#include <net/netdma.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74#include <linux/inet.h>
75#include <linux/ipv6.h>
76#include <linux/stddef.h>
77#include <linux/proc_fs.h>
78#include <linux/seq_file.h>
79
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -080080#include <linux/crypto.h>
81#include <linux/scatterlist.h>
82
Brian Haleyab32ea52006-09-22 14:15:41 -070083int sysctl_tcp_tw_reuse __read_mostly;
84int sysctl_tcp_low_latency __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -080087#ifdef CONFIG_TCP_MD5SIG
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -020088static struct tcp_md5sig_key *tcp_v4_md5_do_lookup(struct sock *sk,
89 __be32 addr);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -080090static int tcp_v4_do_calc_md5_hash(char *md5_hash, struct tcp_md5sig_key *key,
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -020091 __be32 saddr, __be32 daddr,
YOSHIFUJI Hideaki076fb722008-04-17 12:48:12 +090092 struct tcphdr *th, unsigned int tcplen);
YOSHIFUJI Hideaki9501f972008-04-18 12:45:16 +090093#else
94static inline
95struct tcp_md5sig_key *tcp_v4_md5_do_lookup(struct sock *sk, __be32 addr)
96{
97 return NULL;
98}
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -080099#endif
100
Arnaldo Carvalho de Melo0f7ff922005-08-09 19:59:44 -0700101struct inet_hashinfo __cacheline_aligned tcp_hashinfo = {
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200102 .lhash_lock = __RW_LOCK_UNLOCKED(tcp_hashinfo.lhash_lock),
103 .lhash_users = ATOMIC_INIT(0),
104 .lhash_wait = __WAIT_QUEUE_HEAD_INITIALIZER(tcp_hashinfo.lhash_wait),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105};
106
Gerrit Renkera94f7232006-11-10 14:06:49 -0800107static inline __u32 tcp_v4_init_sequence(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700109 return secure_tcp_sequence_number(ip_hdr(skb)->daddr,
110 ip_hdr(skb)->saddr,
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -0700111 tcp_hdr(skb)->dest,
112 tcp_hdr(skb)->source);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
Arnaldo Carvalho de Melo6d6ee432005-12-13 23:25:19 -0800115int tcp_twsk_unique(struct sock *sk, struct sock *sktw, void *twp)
116{
117 const struct tcp_timewait_sock *tcptw = tcp_twsk(sktw);
118 struct tcp_sock *tp = tcp_sk(sk);
119
120 /* With PAWS, it is safe from the viewpoint
121 of data integrity. Even without PAWS it is safe provided sequence
122 spaces do not overlap i.e. at data rates <= 80Mbit/sec.
123
124 Actually, the idea is close to VJ's one, only timestamp cache is
125 held not per host, but per port pair and TW bucket is used as state
126 holder.
127
128 If TW bucket has been already destroyed we fall back to VJ's scheme
129 and use initial timestamp retrieved from peer table.
130 */
131 if (tcptw->tw_ts_recent_stamp &&
132 (twp == NULL || (sysctl_tcp_tw_reuse &&
James Morris9d729f72007-03-04 16:12:44 -0800133 get_seconds() - tcptw->tw_ts_recent_stamp > 1))) {
Arnaldo Carvalho de Melo6d6ee432005-12-13 23:25:19 -0800134 tp->write_seq = tcptw->tw_snd_nxt + 65535 + 2;
135 if (tp->write_seq == 0)
136 tp->write_seq = 1;
137 tp->rx_opt.ts_recent = tcptw->tw_ts_recent;
138 tp->rx_opt.ts_recent_stamp = tcptw->tw_ts_recent_stamp;
139 sock_hold(sktw);
140 return 1;
141 }
142
143 return 0;
144}
145
146EXPORT_SYMBOL_GPL(tcp_twsk_unique);
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148/* This will initiate an outgoing connection. */
149int tcp_v4_connect(struct sock *sk, struct sockaddr *uaddr, int addr_len)
150{
151 struct inet_sock *inet = inet_sk(sk);
152 struct tcp_sock *tp = tcp_sk(sk);
153 struct sockaddr_in *usin = (struct sockaddr_in *)uaddr;
154 struct rtable *rt;
Al Virobada8ad2006-09-26 21:27:15 -0700155 __be32 daddr, nexthop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 int tmp;
157 int err;
158
159 if (addr_len < sizeof(struct sockaddr_in))
160 return -EINVAL;
161
162 if (usin->sin_family != AF_INET)
163 return -EAFNOSUPPORT;
164
165 nexthop = daddr = usin->sin_addr.s_addr;
166 if (inet->opt && inet->opt->srr) {
167 if (!daddr)
168 return -EINVAL;
169 nexthop = inet->opt->faddr;
170 }
171
172 tmp = ip_route_connect(&rt, nexthop, inet->saddr,
173 RT_CONN_FLAGS(sk), sk->sk_bound_dev_if,
174 IPPROTO_TCP,
David S. Miller8eb90862007-02-08 02:09:21 -0800175 inet->sport, usin->sin_port, sk, 1);
Wei Dong584bdf82007-05-31 22:49:28 -0700176 if (tmp < 0) {
177 if (tmp == -ENETUNREACH)
Pavel Emelyanov7c73a6f2008-07-16 20:20:11 -0700178 IP_INC_STATS_BH(sock_net(sk), IPSTATS_MIB_OUTNOROUTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 return tmp;
Wei Dong584bdf82007-05-31 22:49:28 -0700180 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182 if (rt->rt_flags & (RTCF_MULTICAST | RTCF_BROADCAST)) {
183 ip_rt_put(rt);
184 return -ENETUNREACH;
185 }
186
187 if (!inet->opt || !inet->opt->srr)
188 daddr = rt->rt_dst;
189
190 if (!inet->saddr)
191 inet->saddr = rt->rt_src;
192 inet->rcv_saddr = inet->saddr;
193
194 if (tp->rx_opt.ts_recent_stamp && inet->daddr != daddr) {
195 /* Reset inherited state */
196 tp->rx_opt.ts_recent = 0;
197 tp->rx_opt.ts_recent_stamp = 0;
198 tp->write_seq = 0;
199 }
200
Arnaldo Carvalho de Melo295ff7e2005-08-09 20:44:40 -0700201 if (tcp_death_row.sysctl_tw_recycle &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 !tp->rx_opt.ts_recent_stamp && rt->rt_dst == daddr) {
203 struct inet_peer *peer = rt_get_peer(rt);
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200204 /*
205 * VJ's idea. We save last timestamp seen from
206 * the destination in peer table, when entering state
207 * TIME-WAIT * and initialize rx_opt.ts_recent from it,
208 * when trying new connection.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 */
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200210 if (peer != NULL &&
James Morris9d729f72007-03-04 16:12:44 -0800211 peer->tcp_ts_stamp + TCP_PAWS_MSL >= get_seconds()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 tp->rx_opt.ts_recent_stamp = peer->tcp_ts_stamp;
213 tp->rx_opt.ts_recent = peer->tcp_ts;
214 }
215 }
216
217 inet->dport = usin->sin_port;
218 inet->daddr = daddr;
219
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -0800220 inet_csk(sk)->icsk_ext_hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 if (inet->opt)
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -0800222 inet_csk(sk)->icsk_ext_hdr_len = inet->opt->optlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224 tp->rx_opt.mss_clamp = 536;
225
226 /* Socket identity is still unknown (sport may be zero).
227 * However we set state to SYN-SENT and not releasing socket
228 * lock select source port, enter ourselves into the hash tables and
229 * complete initialization after this.
230 */
231 tcp_set_state(sk, TCP_SYN_SENT);
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800232 err = inet_hash_connect(&tcp_death_row, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 if (err)
234 goto failure;
235
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200236 err = ip_route_newports(&rt, IPPROTO_TCP,
237 inet->sport, inet->dport, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 if (err)
239 goto failure;
240
241 /* OK, now commit destination to socket. */
Herbert Xubcd76112006-06-30 13:36:35 -0700242 sk->sk_gso_type = SKB_GSO_TCPV4;
Arnaldo Carvalho de Melo6cbb0df2005-08-09 19:49:02 -0700243 sk_setup_caps(sk, &rt->u.dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245 if (!tp->write_seq)
246 tp->write_seq = secure_tcp_sequence_number(inet->saddr,
247 inet->daddr,
248 inet->sport,
249 usin->sin_port);
250
251 inet->id = tp->write_seq ^ jiffies;
252
253 err = tcp_connect(sk);
254 rt = NULL;
255 if (err)
256 goto failure;
257
258 return 0;
259
260failure:
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200261 /*
262 * This unhashes the socket and releases the local port,
263 * if necessary.
264 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 tcp_set_state(sk, TCP_CLOSE);
266 ip_rt_put(rt);
267 sk->sk_route_caps = 0;
268 inet->dport = 0;
269 return err;
270}
271
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272/*
273 * This routine does path mtu discovery as defined in RFC1191.
274 */
Stephen Hemminger40efc6f2006-01-03 16:03:49 -0800275static void do_pmtu_discovery(struct sock *sk, struct iphdr *iph, u32 mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
277 struct dst_entry *dst;
278 struct inet_sock *inet = inet_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 /* We are not interested in TCP_LISTEN and open_requests (SYN-ACKs
281 * send out by Linux are always <576bytes so they should go through
282 * unfragmented).
283 */
284 if (sk->sk_state == TCP_LISTEN)
285 return;
286
287 /* We don't check in the destentry if pmtu discovery is forbidden
288 * on this route. We just assume that no packet_to_big packets
289 * are send back when pmtu discovery is not active.
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900290 * There is a small race when the user changes this flag in the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 * route, but I think that's acceptable.
292 */
293 if ((dst = __sk_dst_check(sk, 0)) == NULL)
294 return;
295
296 dst->ops->update_pmtu(dst, mtu);
297
298 /* Something is about to be wrong... Remember soft error
299 * for the case, if this connection will not able to recover.
300 */
301 if (mtu < dst_mtu(dst) && ip_dont_fragment(sk, dst))
302 sk->sk_err_soft = EMSGSIZE;
303
304 mtu = dst_mtu(dst);
305
306 if (inet->pmtudisc != IP_PMTUDISC_DONT &&
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -0800307 inet_csk(sk)->icsk_pmtu_cookie > mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 tcp_sync_mss(sk, mtu);
309
310 /* Resend the TCP packet because it's
311 * clear that the old packet has been
312 * dropped. This is the new "fast" path mtu
313 * discovery.
314 */
315 tcp_simple_retransmit(sk);
316 } /* else let the usual retransmit timer handle it */
317}
318
319/*
320 * This routine is called by the ICMP module when it gets some
321 * sort of error condition. If err < 0 then the socket should
322 * be closed and the error returned to the user. If err > 0
323 * it's just the icmp type << 8 | icmp code. After adjustment
324 * header points to the first 8 bytes of the tcp header. We need
325 * to find the appropriate port.
326 *
327 * The locking strategy used here is very "optimistic". When
328 * someone else accesses the socket the ICMP is just dropped
329 * and for some paths there is no check at all.
330 * A more general error queue to queue errors for later handling
331 * is probably better.
332 *
333 */
334
335void tcp_v4_err(struct sk_buff *skb, u32 info)
336{
337 struct iphdr *iph = (struct iphdr *)skb->data;
338 struct tcphdr *th = (struct tcphdr *)(skb->data + (iph->ihl << 2));
339 struct tcp_sock *tp;
340 struct inet_sock *inet;
Arnaldo Carvalho de Melo88c76642007-03-13 14:43:18 -0300341 const int type = icmp_hdr(skb)->type;
342 const int code = icmp_hdr(skb)->code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 struct sock *sk;
344 __u32 seq;
345 int err;
Pavel Emelyanovfd54d712008-07-14 23:01:40 -0700346 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348 if (skb->len < (iph->ihl << 2) + 8) {
Pavel Emelyanovdcfc23c2008-07-14 23:03:00 -0700349 ICMP_INC_STATS_BH(net, ICMP_MIB_INERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 return;
351 }
352
Pavel Emelyanovfd54d712008-07-14 23:01:40 -0700353 sk = inet_lookup(net, &tcp_hashinfo, iph->daddr, th->dest,
Pavel Emelyanovc67499c2008-01-31 05:06:40 -0800354 iph->saddr, th->source, inet_iif(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 if (!sk) {
Pavel Emelyanovdcfc23c2008-07-14 23:03:00 -0700356 ICMP_INC_STATS_BH(net, ICMP_MIB_INERRORS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 return;
358 }
359 if (sk->sk_state == TCP_TIME_WAIT) {
YOSHIFUJI Hideaki9469c7b2006-10-10 19:41:46 -0700360 inet_twsk_put(inet_twsk(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 return;
362 }
363
364 bh_lock_sock(sk);
365 /* If too many ICMPs get dropped on busy
366 * servers this needs to be solved differently.
367 */
368 if (sock_owned_by_user(sk))
Pavel Emelyanovde0744a2008-07-16 20:31:16 -0700369 NET_INC_STATS_BH(net, LINUX_MIB_LOCKDROPPEDICMPS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371 if (sk->sk_state == TCP_CLOSE)
372 goto out;
373
374 tp = tcp_sk(sk);
375 seq = ntohl(th->seq);
376 if (sk->sk_state != TCP_LISTEN &&
377 !between(seq, tp->snd_una, tp->snd_nxt)) {
Pavel Emelyanovde0744a2008-07-16 20:31:16 -0700378 NET_INC_STATS_BH(net, LINUX_MIB_OUTOFWINDOWICMPS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 goto out;
380 }
381
382 switch (type) {
383 case ICMP_SOURCE_QUENCH:
384 /* Just silently ignore these. */
385 goto out;
386 case ICMP_PARAMETERPROB:
387 err = EPROTO;
388 break;
389 case ICMP_DEST_UNREACH:
390 if (code > NR_ICMP_UNREACH)
391 goto out;
392
393 if (code == ICMP_FRAG_NEEDED) { /* PMTU discovery (RFC1191) */
394 if (!sock_owned_by_user(sk))
395 do_pmtu_discovery(sk, iph, info);
396 goto out;
397 }
398
399 err = icmp_err_convert[code].errno;
400 break;
401 case ICMP_TIME_EXCEEDED:
402 err = EHOSTUNREACH;
403 break;
404 default:
405 goto out;
406 }
407
408 switch (sk->sk_state) {
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -0700409 struct request_sock *req, **prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 case TCP_LISTEN:
411 if (sock_owned_by_user(sk))
412 goto out;
413
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700414 req = inet_csk_search_req(sk, &prev, th->dest,
415 iph->daddr, iph->saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 if (!req)
417 goto out;
418
419 /* ICMPs are not backlogged, hence we cannot get
420 an established socket here.
421 */
422 BUG_TRAP(!req->sk);
423
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -0700424 if (seq != tcp_rsk(req)->snt_isn) {
Pavel Emelyanovde0744a2008-07-16 20:31:16 -0700425 NET_INC_STATS_BH(net, LINUX_MIB_OUTOFWINDOWICMPS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 goto out;
427 }
428
429 /*
430 * Still in SYN_RECV, just remove it silently.
431 * There is no good way to pass the error to the newly
432 * created socket, and POSIX does not want network
433 * errors returned from accept().
434 */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700435 inet_csk_reqsk_queue_drop(sk, req, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 goto out;
437
438 case TCP_SYN_SENT:
439 case TCP_SYN_RECV: /* Cannot happen.
440 It can f.e. if SYNs crossed.
441 */
442 if (!sock_owned_by_user(sk)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 sk->sk_err = err;
444
445 sk->sk_error_report(sk);
446
447 tcp_done(sk);
448 } else {
449 sk->sk_err_soft = err;
450 }
451 goto out;
452 }
453
454 /* If we've already connected we will keep trying
455 * until we time out, or the user gives up.
456 *
457 * rfc1122 4.2.3.9 allows to consider as hard errors
458 * only PROTO_UNREACH and PORT_UNREACH (well, FRAG_FAILED too,
459 * but it is obsoleted by pmtu discovery).
460 *
461 * Note, that in modern internet, where routing is unreliable
462 * and in each dark corner broken firewalls sit, sending random
463 * errors ordered by their masters even this two messages finally lose
464 * their original sense (even Linux sends invalid PORT_UNREACHs)
465 *
466 * Now we are in compliance with RFCs.
467 * --ANK (980905)
468 */
469
470 inet = inet_sk(sk);
471 if (!sock_owned_by_user(sk) && inet->recverr) {
472 sk->sk_err = err;
473 sk->sk_error_report(sk);
474 } else { /* Only an error on timeout */
475 sk->sk_err_soft = err;
476 }
477
478out:
479 bh_unlock_sock(sk);
480 sock_put(sk);
481}
482
483/* This routine computes an IPv4 TCP checksum. */
Arnaldo Carvalho de Melo8292a172005-12-13 23:15:52 -0800484void tcp_v4_send_check(struct sock *sk, int len, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
486 struct inet_sock *inet = inet_sk(sk);
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -0700487 struct tcphdr *th = tcp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Patrick McHardy84fa7932006-08-29 16:44:56 -0700489 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Frederik Deweerdtba7808e2007-02-04 20:15:27 -0800490 th->check = ~tcp_v4_check(len, inet->saddr,
491 inet->daddr, 0);
Herbert Xu663ead32007-04-09 11:59:07 -0700492 skb->csum_start = skb_transport_header(skb) - skb->head;
Al Viroff1dcad2006-11-20 18:07:29 -0800493 skb->csum_offset = offsetof(struct tcphdr, check);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 } else {
Frederik Deweerdtba7808e2007-02-04 20:15:27 -0800495 th->check = tcp_v4_check(len, inet->saddr, inet->daddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 csum_partial((char *)th,
497 th->doff << 2,
498 skb->csum));
499 }
500}
501
Herbert Xua430a432006-07-08 13:34:56 -0700502int tcp_v4_gso_send_check(struct sk_buff *skb)
503{
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700504 const struct iphdr *iph;
Herbert Xua430a432006-07-08 13:34:56 -0700505 struct tcphdr *th;
506
507 if (!pskb_may_pull(skb, sizeof(*th)))
508 return -EINVAL;
509
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700510 iph = ip_hdr(skb);
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -0700511 th = tcp_hdr(skb);
Herbert Xua430a432006-07-08 13:34:56 -0700512
513 th->check = 0;
Frederik Deweerdtba7808e2007-02-04 20:15:27 -0800514 th->check = ~tcp_v4_check(skb->len, iph->saddr, iph->daddr, 0);
Herbert Xu663ead32007-04-09 11:59:07 -0700515 skb->csum_start = skb_transport_header(skb) - skb->head;
Al Viroff1dcad2006-11-20 18:07:29 -0800516 skb->csum_offset = offsetof(struct tcphdr, check);
Patrick McHardy84fa7932006-08-29 16:44:56 -0700517 skb->ip_summed = CHECKSUM_PARTIAL;
Herbert Xua430a432006-07-08 13:34:56 -0700518 return 0;
519}
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521/*
522 * This routine will send an RST to the other tcp.
523 *
524 * Someone asks: why I NEVER use socket parameters (TOS, TTL etc.)
525 * for reset.
526 * Answer: if a packet caused RST, it is not for a socket
527 * existing in our system, if it is matched to a socket,
528 * it is just duplicate segment or bug in other side's TCP.
529 * So that we build reply only basing on parameters
530 * arrived with segment.
531 * Exception: precedence violation. We do not implement it in any case.
532 */
533
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800534static void tcp_v4_send_reset(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -0700536 struct tcphdr *th = tcp_hdr(skb);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800537 struct {
538 struct tcphdr th;
539#ifdef CONFIG_TCP_MD5SIG
Al Viro714e85b2006-11-14 20:51:49 -0800540 __be32 opt[(TCPOLEN_MD5SIG_ALIGNED >> 2)];
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800541#endif
542 } rep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 struct ip_reply_arg arg;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800544#ifdef CONFIG_TCP_MD5SIG
545 struct tcp_md5sig_key *key;
546#endif
Pavel Emelyanova86b1e32008-07-16 20:20:58 -0700547 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
549 /* Never send a reset in response to a reset. */
550 if (th->rst)
551 return;
552
Eric Dumazetee6b9672008-03-05 18:30:47 -0800553 if (skb->rtable->rt_type != RTN_LOCAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return;
555
556 /* Swap the send and the receive. */
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800557 memset(&rep, 0, sizeof(rep));
558 rep.th.dest = th->source;
559 rep.th.source = th->dest;
560 rep.th.doff = sizeof(struct tcphdr) / 4;
561 rep.th.rst = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563 if (th->ack) {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800564 rep.th.seq = th->ack_seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 } else {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800566 rep.th.ack = 1;
567 rep.th.ack_seq = htonl(ntohl(th->seq) + th->syn + th->fin +
568 skb->len - (th->doff << 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 }
570
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200571 memset(&arg, 0, sizeof(arg));
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800572 arg.iov[0].iov_base = (unsigned char *)&rep;
573 arg.iov[0].iov_len = sizeof(rep.th);
574
575#ifdef CONFIG_TCP_MD5SIG
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700576 key = sk ? tcp_v4_md5_do_lookup(sk, ip_hdr(skb)->daddr) : NULL;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800577 if (key) {
578 rep.opt[0] = htonl((TCPOPT_NOP << 24) |
579 (TCPOPT_NOP << 16) |
580 (TCPOPT_MD5SIG << 8) |
581 TCPOLEN_MD5SIG);
582 /* Update length and the length the header thinks exists */
583 arg.iov[0].iov_len += TCPOLEN_MD5SIG_ALIGNED;
584 rep.th.doff = arg.iov[0].iov_len / 4;
585
586 tcp_v4_do_calc_md5_hash((__u8 *)&rep.opt[1],
587 key,
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700588 ip_hdr(skb)->daddr,
589 ip_hdr(skb)->saddr,
YOSHIFUJI Hideaki076fb722008-04-17 12:48:12 +0900590 &rep.th, arg.iov[0].iov_len);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800591 }
592#endif
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700593 arg.csum = csum_tcpudp_nofold(ip_hdr(skb)->daddr,
594 ip_hdr(skb)->saddr, /* XXX */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 sizeof(struct tcphdr), IPPROTO_TCP, 0);
596 arg.csumoffset = offsetof(struct tcphdr, check) / 2;
597
Pavel Emelyanova86b1e32008-07-16 20:20:58 -0700598 net = dev_net(skb->dst->dev);
599 ip_send_reply(net->ipv4.tcp_sock, skb,
Denis V. Lunev7feb49c2008-04-03 14:32:00 -0700600 &arg, arg.iov[0].iov_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
Pavel Emelyanov63231bd2008-07-16 20:22:25 -0700602 TCP_INC_STATS_BH(net, TCP_MIB_OUTSEGS);
603 TCP_INC_STATS_BH(net, TCP_MIB_OUTRSTS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
605
606/* The code following below sending ACKs in SYN-RECV and TIME-WAIT states
607 outside socket context is ugly, certainly. What can I do?
608 */
609
YOSHIFUJI Hideaki9501f972008-04-18 12:45:16 +0900610static void tcp_v4_send_ack(struct sk_buff *skb, u32 seq, u32 ack,
611 u32 win, u32 ts, int oif,
612 struct tcp_md5sig_key *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -0700614 struct tcphdr *th = tcp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 struct {
616 struct tcphdr th;
Al Viro714e85b2006-11-14 20:51:49 -0800617 __be32 opt[(TCPOLEN_TSTAMP_ALIGNED >> 2)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800618#ifdef CONFIG_TCP_MD5SIG
Al Viro714e85b2006-11-14 20:51:49 -0800619 + (TCPOLEN_MD5SIG_ALIGNED >> 2)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800620#endif
621 ];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 } rep;
623 struct ip_reply_arg arg;
Pavel Emelyanova86b1e32008-07-16 20:20:58 -0700624 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
626 memset(&rep.th, 0, sizeof(struct tcphdr));
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200627 memset(&arg, 0, sizeof(arg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
629 arg.iov[0].iov_base = (unsigned char *)&rep;
630 arg.iov[0].iov_len = sizeof(rep.th);
631 if (ts) {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800632 rep.opt[0] = htonl((TCPOPT_NOP << 24) | (TCPOPT_NOP << 16) |
633 (TCPOPT_TIMESTAMP << 8) |
634 TCPOLEN_TIMESTAMP);
635 rep.opt[1] = htonl(tcp_time_stamp);
636 rep.opt[2] = htonl(ts);
Craig Schlentercb48cfe2007-01-09 00:11:15 -0800637 arg.iov[0].iov_len += TCPOLEN_TSTAMP_ALIGNED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 }
639
640 /* Swap the send and the receive. */
641 rep.th.dest = th->source;
642 rep.th.source = th->dest;
643 rep.th.doff = arg.iov[0].iov_len / 4;
644 rep.th.seq = htonl(seq);
645 rep.th.ack_seq = htonl(ack);
646 rep.th.ack = 1;
647 rep.th.window = htons(win);
648
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800649#ifdef CONFIG_TCP_MD5SIG
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800650 if (key) {
651 int offset = (ts) ? 3 : 0;
652
653 rep.opt[offset++] = htonl((TCPOPT_NOP << 24) |
654 (TCPOPT_NOP << 16) |
655 (TCPOPT_MD5SIG << 8) |
656 TCPOLEN_MD5SIG);
657 arg.iov[0].iov_len += TCPOLEN_MD5SIG_ALIGNED;
658 rep.th.doff = arg.iov[0].iov_len/4;
659
660 tcp_v4_do_calc_md5_hash((__u8 *)&rep.opt[offset],
661 key,
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700662 ip_hdr(skb)->daddr,
663 ip_hdr(skb)->saddr,
YOSHIFUJI Hideaki076fb722008-04-17 12:48:12 +0900664 &rep.th, arg.iov[0].iov_len);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800665 }
666#endif
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700667 arg.csum = csum_tcpudp_nofold(ip_hdr(skb)->daddr,
668 ip_hdr(skb)->saddr, /* XXX */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 arg.iov[0].iov_len, IPPROTO_TCP, 0);
670 arg.csumoffset = offsetof(struct tcphdr, check) / 2;
YOSHIFUJI Hideaki9501f972008-04-18 12:45:16 +0900671 if (oif)
672 arg.bound_dev_if = oif;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Pavel Emelyanova86b1e32008-07-16 20:20:58 -0700674 ip_send_reply(net->ipv4.tcp_sock, skb,
Denis V. Lunev7feb49c2008-04-03 14:32:00 -0700675 &arg, arg.iov[0].iov_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Pavel Emelyanov63231bd2008-07-16 20:22:25 -0700677 TCP_INC_STATS_BH(net, TCP_MIB_OUTSEGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678}
679
680static void tcp_v4_timewait_ack(struct sock *sk, struct sk_buff *skb)
681{
Arnaldo Carvalho de Melo8feaf0c2005-08-09 20:09:30 -0700682 struct inet_timewait_sock *tw = inet_twsk(sk);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800683 struct tcp_timewait_sock *tcptw = tcp_twsk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
YOSHIFUJI Hideaki9501f972008-04-18 12:45:16 +0900685 tcp_v4_send_ack(skb, tcptw->tw_snd_nxt, tcptw->tw_rcv_nxt,
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200686 tcptw->tw_rcv_wnd >> tw->tw_rcv_wscale,
YOSHIFUJI Hideaki9501f972008-04-18 12:45:16 +0900687 tcptw->tw_ts_recent,
688 tw->tw_bound_dev_if,
689 tcp_twsk_md5_key(tcptw)
690 );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
Arnaldo Carvalho de Melo8feaf0c2005-08-09 20:09:30 -0700692 inet_twsk_put(tw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693}
694
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200695static void tcp_v4_reqsk_send_ack(struct sk_buff *skb,
696 struct request_sock *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
YOSHIFUJI Hideaki9501f972008-04-18 12:45:16 +0900698 tcp_v4_send_ack(skb, tcp_rsk(req)->snt_isn + 1,
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800699 tcp_rsk(req)->rcv_isn + 1, req->rcv_wnd,
YOSHIFUJI Hideaki9501f972008-04-18 12:45:16 +0900700 req->ts_recent,
701 0,
702 tcp_v4_md5_do_lookup(skb->sk, ip_hdr(skb)->daddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703}
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705/*
Kris Katterjohn9bf1d832008-02-17 22:29:19 -0800706 * Send a SYN-ACK after having received a SYN.
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -0700707 * This still operates on a request_sock only, not on a big
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 * socket.
709 */
Denis V. Lunevfd80eb92008-02-29 11:43:03 -0800710static int __tcp_v4_send_synack(struct sock *sk, struct request_sock *req,
711 struct dst_entry *dst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -0700713 const struct inet_request_sock *ireq = inet_rsk(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 int err = -1;
715 struct sk_buff * skb;
716
717 /* First, grab a route. */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700718 if (!dst && (dst = inet_csk_route_req(sk, req)) == NULL)
Denis V. Lunevfd80eb92008-02-29 11:43:03 -0800719 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
721 skb = tcp_make_synack(sk, dst, req);
722
723 if (skb) {
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -0700724 struct tcphdr *th = tcp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Frederik Deweerdtba7808e2007-02-04 20:15:27 -0800726 th->check = tcp_v4_check(skb->len,
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -0700727 ireq->loc_addr,
728 ireq->rmt_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 csum_partial((char *)th, skb->len,
730 skb->csum));
731
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -0700732 err = ip_build_and_send_pkt(skb, sk, ireq->loc_addr,
733 ireq->rmt_addr,
734 ireq->opt);
Gerrit Renkerb9df3cb2006-11-14 11:21:36 -0200735 err = net_xmit_eval(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 }
737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 dst_release(dst);
739 return err;
740}
741
Denis V. Lunevfd80eb92008-02-29 11:43:03 -0800742static int tcp_v4_send_synack(struct sock *sk, struct request_sock *req)
743{
744 return __tcp_v4_send_synack(sk, req, NULL);
745}
746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747/*
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -0700748 * IPv4 request_sock destructor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 */
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -0700750static void tcp_v4_reqsk_destructor(struct request_sock *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
Jesper Juhla51482b2005-11-08 09:41:34 -0800752 kfree(inet_rsk(req)->opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753}
754
Arnaldo Carvalho de Melo80e40da2006-01-04 01:58:06 -0200755#ifdef CONFIG_SYN_COOKIES
Stephen Hemminger40efc6f2006-01-03 16:03:49 -0800756static void syn_flood_warning(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
758 static unsigned long warntime;
759
760 if (time_after(jiffies, (warntime + HZ * 60))) {
761 warntime = jiffies;
762 printk(KERN_INFO
763 "possible SYN flooding on port %d. Sending cookies.\n",
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -0700764 ntohs(tcp_hdr(skb)->dest));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 }
766}
Arnaldo Carvalho de Melo80e40da2006-01-04 01:58:06 -0200767#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
769/*
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -0700770 * Save and compile IPv4 options into the request_sock if needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 */
Stephen Hemminger40efc6f2006-01-03 16:03:49 -0800772static struct ip_options *tcp_v4_save_options(struct sock *sk,
773 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
775 struct ip_options *opt = &(IPCB(skb)->opt);
776 struct ip_options *dopt = NULL;
777
778 if (opt && opt->optlen) {
779 int opt_size = optlength(opt);
780 dopt = kmalloc(opt_size, GFP_ATOMIC);
781 if (dopt) {
782 if (ip_options_echo(dopt, skb)) {
783 kfree(dopt);
784 dopt = NULL;
785 }
786 }
787 }
788 return dopt;
789}
790
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800791#ifdef CONFIG_TCP_MD5SIG
792/*
793 * RFC2385 MD5 checksumming requires a mapping of
794 * IP address->MD5 Key.
795 * We need to maintain these in the sk structure.
796 */
797
798/* Find the Key structure for an address. */
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200799static struct tcp_md5sig_key *
800 tcp_v4_md5_do_lookup(struct sock *sk, __be32 addr)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800801{
802 struct tcp_sock *tp = tcp_sk(sk);
803 int i;
804
805 if (!tp->md5sig_info || !tp->md5sig_info->entries4)
806 return NULL;
807 for (i = 0; i < tp->md5sig_info->entries4; i++) {
808 if (tp->md5sig_info->keys4[i].addr == addr)
David S. Millerf8ab18d2007-09-28 15:18:35 -0700809 return &tp->md5sig_info->keys4[i].base;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800810 }
811 return NULL;
812}
813
814struct tcp_md5sig_key *tcp_v4_md5_lookup(struct sock *sk,
815 struct sock *addr_sk)
816{
817 return tcp_v4_md5_do_lookup(sk, inet_sk(addr_sk)->daddr);
818}
819
820EXPORT_SYMBOL(tcp_v4_md5_lookup);
821
Adrian Bunkf5b99bc2006-11-30 17:22:29 -0800822static struct tcp_md5sig_key *tcp_v4_reqsk_md5_lookup(struct sock *sk,
823 struct request_sock *req)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800824{
825 return tcp_v4_md5_do_lookup(sk, inet_rsk(req)->rmt_addr);
826}
827
828/* This can be called on a newly created socket, from other files */
829int tcp_v4_md5_do_add(struct sock *sk, __be32 addr,
830 u8 *newkey, u8 newkeylen)
831{
832 /* Add Key to the list */
Matthias M. Dellwegb0a713e2007-10-29 20:55:27 -0700833 struct tcp_md5sig_key *key;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800834 struct tcp_sock *tp = tcp_sk(sk);
835 struct tcp4_md5sig_key *keys;
836
Matthias M. Dellwegb0a713e2007-10-29 20:55:27 -0700837 key = tcp_v4_md5_do_lookup(sk, addr);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800838 if (key) {
839 /* Pre-existing entry - just update that one. */
Matthias M. Dellwegb0a713e2007-10-29 20:55:27 -0700840 kfree(key->key);
841 key->key = newkey;
842 key->keylen = newkeylen;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800843 } else {
Arnaldo Carvalho de Melof6685932006-11-17 11:06:01 -0200844 struct tcp_md5sig_info *md5sig;
845
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800846 if (!tp->md5sig_info) {
Arnaldo Carvalho de Melof6685932006-11-17 11:06:01 -0200847 tp->md5sig_info = kzalloc(sizeof(*tp->md5sig_info),
848 GFP_ATOMIC);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800849 if (!tp->md5sig_info) {
850 kfree(newkey);
851 return -ENOMEM;
852 }
David S. Miller3d7dbea2007-06-12 14:36:42 -0700853 sk->sk_route_caps &= ~NETIF_F_GSO_MASK;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800854 }
855 if (tcp_alloc_md5sig_pool() == NULL) {
856 kfree(newkey);
857 return -ENOMEM;
858 }
Arnaldo Carvalho de Melof6685932006-11-17 11:06:01 -0200859 md5sig = tp->md5sig_info;
860
861 if (md5sig->alloced4 == md5sig->entries4) {
862 keys = kmalloc((sizeof(*keys) *
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900863 (md5sig->entries4 + 1)), GFP_ATOMIC);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800864 if (!keys) {
865 kfree(newkey);
866 tcp_free_md5sig_pool();
867 return -ENOMEM;
868 }
869
Arnaldo Carvalho de Melof6685932006-11-17 11:06:01 -0200870 if (md5sig->entries4)
871 memcpy(keys, md5sig->keys4,
872 sizeof(*keys) * md5sig->entries4);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800873
874 /* Free old key list, and reference new one */
YOSHIFUJI Hideakia80cc202007-11-20 17:30:06 -0800875 kfree(md5sig->keys4);
Arnaldo Carvalho de Melof6685932006-11-17 11:06:01 -0200876 md5sig->keys4 = keys;
877 md5sig->alloced4++;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800878 }
Arnaldo Carvalho de Melof6685932006-11-17 11:06:01 -0200879 md5sig->entries4++;
David S. Millerf8ab18d2007-09-28 15:18:35 -0700880 md5sig->keys4[md5sig->entries4 - 1].addr = addr;
881 md5sig->keys4[md5sig->entries4 - 1].base.key = newkey;
882 md5sig->keys4[md5sig->entries4 - 1].base.keylen = newkeylen;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800883 }
884 return 0;
885}
886
887EXPORT_SYMBOL(tcp_v4_md5_do_add);
888
889static int tcp_v4_md5_add_func(struct sock *sk, struct sock *addr_sk,
890 u8 *newkey, u8 newkeylen)
891{
892 return tcp_v4_md5_do_add(sk, inet_sk(addr_sk)->daddr,
893 newkey, newkeylen);
894}
895
896int tcp_v4_md5_do_del(struct sock *sk, __be32 addr)
897{
898 struct tcp_sock *tp = tcp_sk(sk);
899 int i;
900
901 for (i = 0; i < tp->md5sig_info->entries4; i++) {
902 if (tp->md5sig_info->keys4[i].addr == addr) {
903 /* Free the key */
David S. Millerf8ab18d2007-09-28 15:18:35 -0700904 kfree(tp->md5sig_info->keys4[i].base.key);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800905 tp->md5sig_info->entries4--;
906
907 if (tp->md5sig_info->entries4 == 0) {
908 kfree(tp->md5sig_info->keys4);
909 tp->md5sig_info->keys4 = NULL;
Leigh Brown8228a18d2006-12-17 17:12:30 -0800910 tp->md5sig_info->alloced4 = 0;
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200911 } else if (tp->md5sig_info->entries4 != i) {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800912 /* Need to do some manipulation */
YOSHIFUJI Hideaki354faf02007-11-20 17:30:31 -0800913 memmove(&tp->md5sig_info->keys4[i],
914 &tp->md5sig_info->keys4[i+1],
915 (tp->md5sig_info->entries4 - i) *
916 sizeof(struct tcp4_md5sig_key));
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800917 }
918 tcp_free_md5sig_pool();
919 return 0;
920 }
921 }
922 return -ENOENT;
923}
924
925EXPORT_SYMBOL(tcp_v4_md5_do_del);
926
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200927static void tcp_v4_clear_md5_list(struct sock *sk)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800928{
929 struct tcp_sock *tp = tcp_sk(sk);
930
931 /* Free each key, then the set of key keys,
932 * the crypto element, and then decrement our
933 * hold on the last resort crypto.
934 */
935 if (tp->md5sig_info->entries4) {
936 int i;
937 for (i = 0; i < tp->md5sig_info->entries4; i++)
David S. Millerf8ab18d2007-09-28 15:18:35 -0700938 kfree(tp->md5sig_info->keys4[i].base.key);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800939 tp->md5sig_info->entries4 = 0;
940 tcp_free_md5sig_pool();
941 }
942 if (tp->md5sig_info->keys4) {
943 kfree(tp->md5sig_info->keys4);
944 tp->md5sig_info->keys4 = NULL;
945 tp->md5sig_info->alloced4 = 0;
946 }
947}
948
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200949static int tcp_v4_parse_md5_keys(struct sock *sk, char __user *optval,
950 int optlen)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800951{
952 struct tcp_md5sig cmd;
953 struct sockaddr_in *sin = (struct sockaddr_in *)&cmd.tcpm_addr;
954 u8 *newkey;
955
956 if (optlen < sizeof(cmd))
957 return -EINVAL;
958
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200959 if (copy_from_user(&cmd, optval, sizeof(cmd)))
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800960 return -EFAULT;
961
962 if (sin->sin_family != AF_INET)
963 return -EINVAL;
964
965 if (!cmd.tcpm_key || !cmd.tcpm_keylen) {
966 if (!tcp_sk(sk)->md5sig_info)
967 return -ENOENT;
968 return tcp_v4_md5_do_del(sk, sin->sin_addr.s_addr);
969 }
970
971 if (cmd.tcpm_keylen > TCP_MD5SIG_MAXKEYLEN)
972 return -EINVAL;
973
974 if (!tcp_sk(sk)->md5sig_info) {
975 struct tcp_sock *tp = tcp_sk(sk);
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200976 struct tcp_md5sig_info *p = kzalloc(sizeof(*p), GFP_KERNEL);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800977
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800978 if (!p)
979 return -EINVAL;
980
981 tp->md5sig_info = p;
David S. Miller3d7dbea2007-06-12 14:36:42 -0700982 sk->sk_route_caps &= ~NETIF_F_GSO_MASK;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800983 }
984
Arnaldo Carvalho de Melof6685932006-11-17 11:06:01 -0200985 newkey = kmemdup(cmd.tcpm_key, cmd.tcpm_keylen, GFP_KERNEL);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800986 if (!newkey)
987 return -ENOMEM;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800988 return tcp_v4_md5_do_add(sk, sin->sin_addr.s_addr,
989 newkey, cmd.tcpm_keylen);
990}
991
992static int tcp_v4_do_calc_md5_hash(char *md5_hash, struct tcp_md5sig_key *key,
993 __be32 saddr, __be32 daddr,
YOSHIFUJI Hideaki076fb722008-04-17 12:48:12 +0900994 struct tcphdr *th,
YOSHIFUJI Hideaki9cb57342008-01-12 02:16:03 -0800995 unsigned int tcplen)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800996{
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800997 struct tcp_md5sig_pool *hp;
998 struct tcp4_pseudohdr *bp;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800999 int err;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001000
1001 /*
1002 * Okay, so RFC2385 is turned on for this connection,
1003 * so we need to generate the MD5 hash for the packet now.
1004 */
1005
1006 hp = tcp_get_md5sig_pool();
1007 if (!hp)
1008 goto clear_hash_noput;
1009
1010 bp = &hp->md5_blk.ip4;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001011
1012 /*
YOSHIFUJI Hideaki8d26d762008-04-17 13:19:16 +09001013 * The TCP pseudo-header (in the order: source IP address,
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001014 * destination IP address, zero-padded protocol number, and
1015 * segment length)
1016 */
1017 bp->saddr = saddr;
1018 bp->daddr = daddr;
1019 bp->pad = 0;
YOSHIFUJI Hideaki076fb722008-04-17 12:48:12 +09001020 bp->protocol = IPPROTO_TCP;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001021 bp->len = htons(tcplen);
David S. Millerc7da57a2007-10-26 00:41:21 -07001022
YOSHIFUJI Hideaki8d26d762008-04-17 13:19:16 +09001023 err = tcp_calc_md5_hash(md5_hash, key, sizeof(*bp),
1024 th, tcplen, hp);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001025 if (err)
1026 goto clear_hash;
1027
YOSHIFUJI Hideaki8d26d762008-04-17 13:19:16 +09001028 /* Free up the crypto pool */
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001029 tcp_put_md5sig_pool();
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001030out:
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001031 return 0;
1032clear_hash:
1033 tcp_put_md5sig_pool();
1034clear_hash_noput:
1035 memset(md5_hash, 0, 16);
1036 goto out;
1037}
1038
1039int tcp_v4_calc_md5_hash(char *md5_hash, struct tcp_md5sig_key *key,
1040 struct sock *sk,
1041 struct dst_entry *dst,
1042 struct request_sock *req,
YOSHIFUJI Hideaki076fb722008-04-17 12:48:12 +09001043 struct tcphdr *th,
YOSHIFUJI Hideaki9cb57342008-01-12 02:16:03 -08001044 unsigned int tcplen)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001045{
1046 __be32 saddr, daddr;
1047
1048 if (sk) {
1049 saddr = inet_sk(sk)->saddr;
1050 daddr = inet_sk(sk)->daddr;
1051 } else {
1052 struct rtable *rt = (struct rtable *)dst;
1053 BUG_ON(!rt);
1054 saddr = rt->rt_src;
1055 daddr = rt->rt_dst;
1056 }
1057 return tcp_v4_do_calc_md5_hash(md5_hash, key,
1058 saddr, daddr,
YOSHIFUJI Hideaki076fb722008-04-17 12:48:12 +09001059 th, tcplen);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001060}
1061
1062EXPORT_SYMBOL(tcp_v4_calc_md5_hash);
1063
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02001064static int tcp_v4_inbound_md5_hash(struct sock *sk, struct sk_buff *skb)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001065{
1066 /*
1067 * This gets called for each TCP segment that arrives
1068 * so we want to be efficient.
1069 * We have 3 drop cases:
1070 * o No MD5 hash and one expected.
1071 * o MD5 hash and we're not expecting one.
1072 * o MD5 hash and its wrong.
1073 */
1074 __u8 *hash_location = NULL;
1075 struct tcp_md5sig_key *hash_expected;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001076 const struct iphdr *iph = ip_hdr(skb);
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001077 struct tcphdr *th = tcp_hdr(skb);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001078 int genhash;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001079 unsigned char newhash[16];
1080
1081 hash_expected = tcp_v4_md5_do_lookup(sk, iph->saddr);
YOSHIFUJI Hideaki7d5d5522008-04-17 12:29:53 +09001082 hash_location = tcp_parse_md5sig_option(th);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001083
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001084 /* We've parsed the options - do we have a hash? */
1085 if (!hash_expected && !hash_location)
1086 return 0;
1087
1088 if (hash_expected && !hash_location) {
Leigh Browna9fc00c2006-12-17 17:13:10 -08001089 LIMIT_NETDEBUG(KERN_INFO "MD5 Hash expected but NOT found "
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001090 "(" NIPQUAD_FMT ", %d)->(" NIPQUAD_FMT ", %d)\n",
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02001091 NIPQUAD(iph->saddr), ntohs(th->source),
1092 NIPQUAD(iph->daddr), ntohs(th->dest));
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001093 return 1;
1094 }
1095
1096 if (!hash_expected && hash_location) {
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02001097 LIMIT_NETDEBUG(KERN_INFO "MD5 Hash NOT expected but found "
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001098 "(" NIPQUAD_FMT ", %d)->(" NIPQUAD_FMT ", %d)\n",
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02001099 NIPQUAD(iph->saddr), ntohs(th->source),
1100 NIPQUAD(iph->daddr), ntohs(th->dest));
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001101 return 1;
1102 }
1103
1104 /* Okay, so this is hash_expected and hash_location -
1105 * so we need to calculate the checksum.
1106 */
1107 genhash = tcp_v4_do_calc_md5_hash(newhash,
1108 hash_expected,
1109 iph->saddr, iph->daddr,
YOSHIFUJI Hideaki076fb722008-04-17 12:48:12 +09001110 th, skb->len);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001111
1112 if (genhash || memcmp(hash_location, newhash, 16) != 0) {
1113 if (net_ratelimit()) {
1114 printk(KERN_INFO "MD5 Hash failed for "
1115 "(" NIPQUAD_FMT ", %d)->(" NIPQUAD_FMT ", %d)%s\n",
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02001116 NIPQUAD(iph->saddr), ntohs(th->source),
1117 NIPQUAD(iph->daddr), ntohs(th->dest),
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001118 genhash ? " tcp_v4_calc_md5_hash failed" : "");
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001119 }
1120 return 1;
1121 }
1122 return 0;
1123}
1124
1125#endif
1126
Eric Dumazet72a3eff2006-11-16 02:30:37 -08001127struct request_sock_ops tcp_request_sock_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 .family = PF_INET,
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001129 .obj_size = sizeof(struct tcp_request_sock),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 .rtx_syn_ack = tcp_v4_send_synack,
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -07001131 .send_ack = tcp_v4_reqsk_send_ack,
1132 .destructor = tcp_v4_reqsk_destructor,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 .send_reset = tcp_v4_send_reset,
1134};
1135
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001136#ifdef CONFIG_TCP_MD5SIG
Andrew Mortonb6332e62006-11-30 19:16:28 -08001137static struct tcp_request_sock_ops tcp_request_sock_ipv4_ops = {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001138 .md5_lookup = tcp_v4_reqsk_md5_lookup,
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001139};
Andrew Mortonb6332e62006-11-30 19:16:28 -08001140#endif
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001141
Arnaldo Carvalho de Melo6d6ee432005-12-13 23:25:19 -08001142static struct timewait_sock_ops tcp_timewait_sock_ops = {
1143 .twsk_obj_size = sizeof(struct tcp_timewait_sock),
1144 .twsk_unique = tcp_twsk_unique,
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001145 .twsk_destructor= tcp_twsk_destructor,
Arnaldo Carvalho de Melo6d6ee432005-12-13 23:25:19 -08001146};
1147
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148int tcp_v4_conn_request(struct sock *sk, struct sk_buff *skb)
1149{
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001150 struct inet_request_sock *ireq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 struct tcp_options_received tmp_opt;
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -07001152 struct request_sock *req;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001153 __be32 saddr = ip_hdr(skb)->saddr;
1154 __be32 daddr = ip_hdr(skb)->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 __u32 isn = TCP_SKB_CB(skb)->when;
1156 struct dst_entry *dst = NULL;
1157#ifdef CONFIG_SYN_COOKIES
1158 int want_cookie = 0;
1159#else
1160#define want_cookie 0 /* Argh, why doesn't gcc optimize this :( */
1161#endif
1162
1163 /* Never answer to SYNs send to broadcast or multicast */
Eric Dumazetee6b9672008-03-05 18:30:47 -08001164 if (skb->rtable->rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 goto drop;
1166
1167 /* TW buckets are converted to open requests without
1168 * limitations, they conserve resources and peer is
1169 * evidently real one.
1170 */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001171 if (inet_csk_reqsk_queue_is_full(sk) && !isn) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172#ifdef CONFIG_SYN_COOKIES
1173 if (sysctl_tcp_syncookies) {
1174 want_cookie = 1;
1175 } else
1176#endif
1177 goto drop;
1178 }
1179
1180 /* Accept backlog is full. If we have already queued enough
1181 * of warm entries in syn queue, drop request. It is better than
1182 * clogging syn queue with openreqs with exponentially increasing
1183 * timeout.
1184 */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001185 if (sk_acceptq_is_full(sk) && inet_csk_reqsk_queue_young(sk) > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 goto drop;
1187
Arnaldo Carvalho de Meloce4a7d02008-06-10 12:39:35 -07001188 req = inet_reqsk_alloc(&tcp_request_sock_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 if (!req)
1190 goto drop;
1191
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001192#ifdef CONFIG_TCP_MD5SIG
1193 tcp_rsk(req)->af_specific = &tcp_request_sock_ipv4_ops;
1194#endif
1195
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 tcp_clear_options(&tmp_opt);
1197 tmp_opt.mss_clamp = 536;
1198 tmp_opt.user_mss = tcp_sk(sk)->rx_opt.user_mss;
1199
1200 tcp_parse_options(skb, &tmp_opt, 0);
1201
Florian Westphal4dfc2812008-04-10 03:12:40 -07001202 if (want_cookie && !tmp_opt.saw_tstamp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 tcp_clear_options(&tmp_opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
1205 if (tmp_opt.saw_tstamp && !tmp_opt.rcv_tsval) {
1206 /* Some OSes (unknown ones, but I see them on web server, which
1207 * contains information interesting only for windows'
1208 * users) do not send their stamp in SYN. It is easy case.
1209 * We simply do not advertise TS support.
1210 */
1211 tmp_opt.saw_tstamp = 0;
1212 tmp_opt.tstamp_ok = 0;
1213 }
1214 tmp_opt.tstamp_ok = tmp_opt.saw_tstamp;
1215
1216 tcp_openreq_init(req, &tmp_opt, skb);
1217
Venkat Yekkirala4237c752006-07-24 23:32:50 -07001218 if (security_inet_conn_request(sk, skb, req))
1219 goto drop_and_free;
1220
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001221 ireq = inet_rsk(req);
1222 ireq->loc_addr = daddr;
1223 ireq->rmt_addr = saddr;
1224 ireq->opt = tcp_v4_save_options(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 if (!want_cookie)
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001226 TCP_ECN_create_request(req, tcp_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
1228 if (want_cookie) {
1229#ifdef CONFIG_SYN_COOKIES
1230 syn_flood_warning(skb);
Florian Westphal4dfc2812008-04-10 03:12:40 -07001231 req->cookie_ts = tmp_opt.tstamp_ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232#endif
1233 isn = cookie_v4_init_sequence(sk, skb, &req->mss);
1234 } else if (!isn) {
1235 struct inet_peer *peer = NULL;
1236
1237 /* VJ's idea. We save last timestamp seen
1238 * from the destination in peer table, when entering
1239 * state TIME-WAIT, and check against it before
1240 * accepting new connection request.
1241 *
1242 * If "isn" is not zero, this request hit alive
1243 * timewait bucket, so that all the necessary checks
1244 * are made in the function processing timewait state.
1245 */
1246 if (tmp_opt.saw_tstamp &&
Arnaldo Carvalho de Melo295ff7e2005-08-09 20:44:40 -07001247 tcp_death_row.sysctl_tw_recycle &&
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001248 (dst = inet_csk_route_req(sk, req)) != NULL &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 (peer = rt_get_peer((struct rtable *)dst)) != NULL &&
1250 peer->v4daddr == saddr) {
James Morris9d729f72007-03-04 16:12:44 -08001251 if (get_seconds() < peer->tcp_ts_stamp + TCP_PAWS_MSL &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 (s32)(peer->tcp_ts - req->ts_recent) >
1253 TCP_PAWS_WINDOW) {
Pavel Emelyanovde0744a2008-07-16 20:31:16 -07001254 NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_PAWSPASSIVEREJECTED);
Denis V. Lunev7cd04fa2008-03-03 11:59:32 -08001255 goto drop_and_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 }
1257 }
1258 /* Kill the following clause, if you dislike this way. */
1259 else if (!sysctl_tcp_syncookies &&
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001260 (sysctl_max_syn_backlog - inet_csk_reqsk_queue_len(sk) <
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 (sysctl_max_syn_backlog >> 2)) &&
1262 (!peer || !peer->tcp_ts_stamp) &&
1263 (!dst || !dst_metric(dst, RTAX_RTT))) {
1264 /* Without syncookies last quarter of
1265 * backlog is filled with destinations,
1266 * proven to be alive.
1267 * It means that we continue to communicate
1268 * to destinations, already remembered
1269 * to the moment of synflood.
1270 */
Patrick McHardy64ce2072005-08-09 20:50:53 -07001271 LIMIT_NETDEBUG(KERN_DEBUG "TCP: drop open "
YOSHIFUJI Hideakia7d632b2008-04-14 04:09:00 -07001272 "request from " NIPQUAD_FMT "/%u\n",
Patrick McHardy64ce2072005-08-09 20:50:53 -07001273 NIPQUAD(saddr),
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001274 ntohs(tcp_hdr(skb)->source));
Denis V. Lunev7cd04fa2008-03-03 11:59:32 -08001275 goto drop_and_release;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 }
1277
Gerrit Renkera94f7232006-11-10 14:06:49 -08001278 isn = tcp_v4_init_sequence(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 }
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001280 tcp_rsk(req)->snt_isn = isn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
Denis V. Lunev7cd04fa2008-03-03 11:59:32 -08001282 if (__tcp_v4_send_synack(sk, req, dst) || want_cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 goto drop_and_free;
1284
Denis V. Lunev7cd04fa2008-03-03 11:59:32 -08001285 inet_csk_reqsk_queue_hash_add(sk, req, TCP_TIMEOUT_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 return 0;
1287
Denis V. Lunev7cd04fa2008-03-03 11:59:32 -08001288drop_and_release:
1289 dst_release(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290drop_and_free:
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -07001291 reqsk_free(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292drop:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 return 0;
1294}
1295
1296
1297/*
1298 * The three way handshake has completed - we got a valid synack -
1299 * now create the new socket.
1300 */
1301struct sock *tcp_v4_syn_recv_sock(struct sock *sk, struct sk_buff *skb,
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -07001302 struct request_sock *req,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 struct dst_entry *dst)
1304{
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001305 struct inet_request_sock *ireq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 struct inet_sock *newinet;
1307 struct tcp_sock *newtp;
1308 struct sock *newsk;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001309#ifdef CONFIG_TCP_MD5SIG
1310 struct tcp_md5sig_key *key;
1311#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
1313 if (sk_acceptq_is_full(sk))
1314 goto exit_overflow;
1315
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001316 if (!dst && (dst = inet_csk_route_req(sk, req)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 goto exit;
1318
1319 newsk = tcp_create_openreq_child(sk, req, skb);
1320 if (!newsk)
1321 goto exit;
1322
Herbert Xubcd76112006-06-30 13:36:35 -07001323 newsk->sk_gso_type = SKB_GSO_TCPV4;
Arnaldo Carvalho de Melo6cbb0df2005-08-09 19:49:02 -07001324 sk_setup_caps(newsk, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
1326 newtp = tcp_sk(newsk);
1327 newinet = inet_sk(newsk);
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001328 ireq = inet_rsk(req);
1329 newinet->daddr = ireq->rmt_addr;
1330 newinet->rcv_saddr = ireq->loc_addr;
1331 newinet->saddr = ireq->loc_addr;
1332 newinet->opt = ireq->opt;
1333 ireq->opt = NULL;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001334 newinet->mc_index = inet_iif(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001335 newinet->mc_ttl = ip_hdr(skb)->ttl;
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -08001336 inet_csk(newsk)->icsk_ext_hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 if (newinet->opt)
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -08001338 inet_csk(newsk)->icsk_ext_hdr_len = newinet->opt->optlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 newinet->id = newtp->write_seq ^ jiffies;
1340
John Heffner5d424d52006-03-20 17:53:41 -08001341 tcp_mtup_init(newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 tcp_sync_mss(newsk, dst_mtu(dst));
1343 newtp->advmss = dst_metric(dst, RTAX_ADVMSS);
1344 tcp_initialize_rcv_mss(newsk);
1345
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001346#ifdef CONFIG_TCP_MD5SIG
1347 /* Copy over the MD5 key from the original socket */
1348 if ((key = tcp_v4_md5_do_lookup(sk, newinet->daddr)) != NULL) {
1349 /*
1350 * We're using one, so create a matching key
1351 * on the newsk structure. If we fail to get
1352 * memory, then we end up not copying the key
1353 * across. Shucks.
1354 */
Arnaldo Carvalho de Melof6685932006-11-17 11:06:01 -02001355 char *newkey = kmemdup(key->key, key->keylen, GFP_ATOMIC);
1356 if (newkey != NULL)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001357 tcp_v4_md5_do_add(newsk, inet_sk(sk)->daddr,
1358 newkey, key->keylen);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001359 }
1360#endif
1361
Arnaldo Carvalho de Meloab1e0a12008-02-03 04:06:04 -08001362 __inet_hash_nolisten(newsk);
1363 __inet_inherit_port(sk, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
1365 return newsk;
1366
1367exit_overflow:
Pavel Emelyanovde0744a2008-07-16 20:31:16 -07001368 NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_LISTENOVERFLOWS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369exit:
Pavel Emelyanovde0744a2008-07-16 20:31:16 -07001370 NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_LISTENDROPS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 dst_release(dst);
1372 return NULL;
1373}
1374
1375static struct sock *tcp_v4_hnd_req(struct sock *sk, struct sk_buff *skb)
1376{
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001377 struct tcphdr *th = tcp_hdr(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001378 const struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 struct sock *nsk;
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -07001380 struct request_sock **prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 /* Find possible connection requests. */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001382 struct request_sock *req = inet_csk_search_req(sk, &prev, th->source,
1383 iph->saddr, iph->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 if (req)
1385 return tcp_check_req(sk, skb, req, prev);
1386
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +09001387 nsk = inet_lookup_established(sock_net(sk), &tcp_hashinfo, iph->saddr,
Pavel Emelyanovc67499c2008-01-31 05:06:40 -08001388 th->source, iph->daddr, th->dest, inet_iif(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
1390 if (nsk) {
1391 if (nsk->sk_state != TCP_TIME_WAIT) {
1392 bh_lock_sock(nsk);
1393 return nsk;
1394 }
YOSHIFUJI Hideaki9469c7b2006-10-10 19:41:46 -07001395 inet_twsk_put(inet_twsk(nsk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 return NULL;
1397 }
1398
1399#ifdef CONFIG_SYN_COOKIES
1400 if (!th->rst && !th->syn && th->ack)
1401 sk = cookie_v4_check(sk, skb, &(IPCB(skb)->opt));
1402#endif
1403 return sk;
1404}
1405
Al Virob51655b2006-11-14 21:40:42 -08001406static __sum16 tcp_v4_checksum_init(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407{
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001408 const struct iphdr *iph = ip_hdr(skb);
1409
Patrick McHardy84fa7932006-08-29 16:44:56 -07001410 if (skb->ip_summed == CHECKSUM_COMPLETE) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001411 if (!tcp_v4_check(skb->len, iph->saddr,
1412 iph->daddr, skb->csum)) {
Herbert Xufb286bb2005-11-10 13:01:24 -08001413 skb->ip_summed = CHECKSUM_UNNECESSARY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 return 0;
Herbert Xufb286bb2005-11-10 13:01:24 -08001415 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 }
Herbert Xufb286bb2005-11-10 13:01:24 -08001417
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001418 skb->csum = csum_tcpudp_nofold(iph->saddr, iph->daddr,
Herbert Xufb286bb2005-11-10 13:01:24 -08001419 skb->len, IPPROTO_TCP, 0);
1420
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 if (skb->len <= 76) {
Herbert Xufb286bb2005-11-10 13:01:24 -08001422 return __skb_checksum_complete(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 }
1424 return 0;
1425}
1426
1427
1428/* The socket must have it's spinlock held when we get
1429 * here.
1430 *
1431 * We have a potential double-lock case here, so even when
1432 * doing backlog processing we use the BH locking scheme.
1433 * This is because we cannot sleep with the original spinlock
1434 * held.
1435 */
1436int tcp_v4_do_rcv(struct sock *sk, struct sk_buff *skb)
1437{
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001438 struct sock *rsk;
1439#ifdef CONFIG_TCP_MD5SIG
1440 /*
1441 * We really want to reject the packet as early as possible
1442 * if:
1443 * o We're expecting an MD5'd packet and this is no MD5 tcp option
1444 * o There is an MD5 option and we're not expecting one
1445 */
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02001446 if (tcp_v4_inbound_md5_hash(sk, skb))
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001447 goto discard;
1448#endif
1449
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 if (sk->sk_state == TCP_ESTABLISHED) { /* Fast path */
1451 TCP_CHECK_TIMER(sk);
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001452 if (tcp_rcv_established(sk, skb, tcp_hdr(skb), skb->len)) {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001453 rsk = sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 goto reset;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001455 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 TCP_CHECK_TIMER(sk);
1457 return 0;
1458 }
1459
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07001460 if (skb->len < tcp_hdrlen(skb) || tcp_checksum_complete(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 goto csum_err;
1462
1463 if (sk->sk_state == TCP_LISTEN) {
1464 struct sock *nsk = tcp_v4_hnd_req(sk, skb);
1465 if (!nsk)
1466 goto discard;
1467
1468 if (nsk != sk) {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001469 if (tcp_child_process(sk, nsk, skb)) {
1470 rsk = nsk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 goto reset;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001472 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 return 0;
1474 }
1475 }
1476
1477 TCP_CHECK_TIMER(sk);
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001478 if (tcp_rcv_state_process(sk, skb, tcp_hdr(skb), skb->len)) {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001479 rsk = sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 goto reset;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 TCP_CHECK_TIMER(sk);
1483 return 0;
1484
1485reset:
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001486 tcp_v4_send_reset(rsk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487discard:
1488 kfree_skb(skb);
1489 /* Be careful here. If this function gets more complicated and
1490 * gcc suffers from register pressure on the x86, sk (in %ebx)
1491 * might be destroyed here. This current version compiles correctly,
1492 * but you have been warned.
1493 */
1494 return 0;
1495
1496csum_err:
Pavel Emelyanov63231bd2008-07-16 20:22:25 -07001497 TCP_INC_STATS_BH(sock_net(sk), TCP_MIB_INERRS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 goto discard;
1499}
1500
1501/*
1502 * From tcp_input.c
1503 */
1504
1505int tcp_v4_rcv(struct sk_buff *skb)
1506{
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001507 const struct iphdr *iph;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 struct tcphdr *th;
1509 struct sock *sk;
1510 int ret;
Pavel Emelyanova86b1e32008-07-16 20:20:58 -07001511 struct net *net = dev_net(skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
1513 if (skb->pkt_type != PACKET_HOST)
1514 goto discard_it;
1515
1516 /* Count it even if it's bad */
Pavel Emelyanov63231bd2008-07-16 20:22:25 -07001517 TCP_INC_STATS_BH(net, TCP_MIB_INSEGS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
1519 if (!pskb_may_pull(skb, sizeof(struct tcphdr)))
1520 goto discard_it;
1521
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001522 th = tcp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
1524 if (th->doff < sizeof(struct tcphdr) / 4)
1525 goto bad_packet;
1526 if (!pskb_may_pull(skb, th->doff * 4))
1527 goto discard_it;
1528
1529 /* An explanation is required here, I think.
1530 * Packet length and doff are validated by header prediction,
Stephen Hemmingercaa20d9a2005-11-10 17:13:47 -08001531 * provided case of th->doff==0 is eliminated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 * So, we defer the checks. */
Herbert Xu60476372007-04-09 11:59:39 -07001533 if (!skb_csum_unnecessary(skb) && tcp_v4_checksum_init(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 goto bad_packet;
1535
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001536 th = tcp_hdr(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001537 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 TCP_SKB_CB(skb)->seq = ntohl(th->seq);
1539 TCP_SKB_CB(skb)->end_seq = (TCP_SKB_CB(skb)->seq + th->syn + th->fin +
1540 skb->len - th->doff * 4);
1541 TCP_SKB_CB(skb)->ack_seq = ntohl(th->ack_seq);
1542 TCP_SKB_CB(skb)->when = 0;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001543 TCP_SKB_CB(skb)->flags = iph->tos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 TCP_SKB_CB(skb)->sacked = 0;
1545
Pavel Emelyanova86b1e32008-07-16 20:20:58 -07001546 sk = __inet_lookup(net, &tcp_hashinfo, iph->saddr,
Pavel Emelyanovc67499c2008-01-31 05:06:40 -08001547 th->source, iph->daddr, th->dest, inet_iif(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 if (!sk)
1549 goto no_tcp_socket;
1550
1551process:
1552 if (sk->sk_state == TCP_TIME_WAIT)
1553 goto do_time_wait;
1554
1555 if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb))
1556 goto discard_and_relse;
Patrick McHardyb59c2702006-01-06 23:06:10 -08001557 nf_reset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Dmitry Mishinfda9ef52006-08-31 15:28:39 -07001559 if (sk_filter(sk, skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 goto discard_and_relse;
1561
1562 skb->dev = NULL;
1563
Ingo Molnarc6366182006-07-03 00:25:13 -07001564 bh_lock_sock_nested(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 ret = 0;
1566 if (!sock_owned_by_user(sk)) {
Chris Leech1a2449a2006-05-23 18:05:53 -07001567#ifdef CONFIG_NET_DMA
1568 struct tcp_sock *tp = tcp_sk(sk);
1569 if (!tp->ucopy.dma_chan && tp->ucopy.pinned_list)
1570 tp->ucopy.dma_chan = get_softnet_dma();
1571 if (tp->ucopy.dma_chan)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 ret = tcp_v4_do_rcv(sk, skb);
Chris Leech1a2449a2006-05-23 18:05:53 -07001573 else
1574#endif
1575 {
1576 if (!tcp_prequeue(sk, skb))
1577 ret = tcp_v4_do_rcv(sk, skb);
1578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 } else
1580 sk_add_backlog(sk, skb);
1581 bh_unlock_sock(sk);
1582
1583 sock_put(sk);
1584
1585 return ret;
1586
1587no_tcp_socket:
1588 if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb))
1589 goto discard_it;
1590
1591 if (skb->len < (th->doff << 2) || tcp_checksum_complete(skb)) {
1592bad_packet:
Pavel Emelyanov63231bd2008-07-16 20:22:25 -07001593 TCP_INC_STATS_BH(net, TCP_MIB_INERRS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 } else {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001595 tcp_v4_send_reset(NULL, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 }
1597
1598discard_it:
1599 /* Discard frame. */
1600 kfree_skb(skb);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001601 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
1603discard_and_relse:
1604 sock_put(sk);
1605 goto discard_it;
1606
1607do_time_wait:
1608 if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb)) {
YOSHIFUJI Hideaki9469c7b2006-10-10 19:41:46 -07001609 inet_twsk_put(inet_twsk(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 goto discard_it;
1611 }
1612
1613 if (skb->len < (th->doff << 2) || tcp_checksum_complete(skb)) {
Pavel Emelyanov63231bd2008-07-16 20:22:25 -07001614 TCP_INC_STATS_BH(net, TCP_MIB_INERRS);
YOSHIFUJI Hideaki9469c7b2006-10-10 19:41:46 -07001615 inet_twsk_put(inet_twsk(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 goto discard_it;
1617 }
YOSHIFUJI Hideaki9469c7b2006-10-10 19:41:46 -07001618 switch (tcp_timewait_state_process(inet_twsk(sk), skb, th)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 case TCP_TW_SYN: {
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001620 struct sock *sk2 = inet_lookup_listener(dev_net(skb->dev),
Pavel Emelyanovc67499c2008-01-31 05:06:40 -08001621 &tcp_hashinfo,
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001622 iph->daddr, th->dest,
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001623 inet_iif(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 if (sk2) {
YOSHIFUJI Hideaki9469c7b2006-10-10 19:41:46 -07001625 inet_twsk_deschedule(inet_twsk(sk), &tcp_death_row);
1626 inet_twsk_put(inet_twsk(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 sk = sk2;
1628 goto process;
1629 }
1630 /* Fall through to ACK */
1631 }
1632 case TCP_TW_ACK:
1633 tcp_v4_timewait_ack(sk, skb);
1634 break;
1635 case TCP_TW_RST:
1636 goto no_tcp_socket;
1637 case TCP_TW_SUCCESS:;
1638 }
1639 goto discard_it;
1640}
1641
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642/* VJ's idea. Save last timestamp seen from this destination
1643 * and hold it at least for normal timewait interval to use for duplicate
1644 * segment detection in subsequent connections, before they enter synchronized
1645 * state.
1646 */
1647
1648int tcp_v4_remember_stamp(struct sock *sk)
1649{
1650 struct inet_sock *inet = inet_sk(sk);
1651 struct tcp_sock *tp = tcp_sk(sk);
1652 struct rtable *rt = (struct rtable *)__sk_dst_get(sk);
1653 struct inet_peer *peer = NULL;
1654 int release_it = 0;
1655
1656 if (!rt || rt->rt_dst != inet->daddr) {
1657 peer = inet_getpeer(inet->daddr, 1);
1658 release_it = 1;
1659 } else {
1660 if (!rt->peer)
1661 rt_bind_peer(rt, 1);
1662 peer = rt->peer;
1663 }
1664
1665 if (peer) {
1666 if ((s32)(peer->tcp_ts - tp->rx_opt.ts_recent) <= 0 ||
James Morris9d729f72007-03-04 16:12:44 -08001667 (peer->tcp_ts_stamp + TCP_PAWS_MSL < get_seconds() &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 peer->tcp_ts_stamp <= tp->rx_opt.ts_recent_stamp)) {
1669 peer->tcp_ts_stamp = tp->rx_opt.ts_recent_stamp;
1670 peer->tcp_ts = tp->rx_opt.ts_recent;
1671 }
1672 if (release_it)
1673 inet_putpeer(peer);
1674 return 1;
1675 }
1676
1677 return 0;
1678}
1679
Arnaldo Carvalho de Melo8feaf0c2005-08-09 20:09:30 -07001680int tcp_v4_tw_remember_stamp(struct inet_timewait_sock *tw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681{
Arnaldo Carvalho de Melo8feaf0c2005-08-09 20:09:30 -07001682 struct inet_peer *peer = inet_getpeer(tw->tw_daddr, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
1684 if (peer) {
Arnaldo Carvalho de Melo8feaf0c2005-08-09 20:09:30 -07001685 const struct tcp_timewait_sock *tcptw = tcp_twsk((struct sock *)tw);
1686
1687 if ((s32)(peer->tcp_ts - tcptw->tw_ts_recent) <= 0 ||
James Morris9d729f72007-03-04 16:12:44 -08001688 (peer->tcp_ts_stamp + TCP_PAWS_MSL < get_seconds() &&
Arnaldo Carvalho de Melo8feaf0c2005-08-09 20:09:30 -07001689 peer->tcp_ts_stamp <= tcptw->tw_ts_recent_stamp)) {
1690 peer->tcp_ts_stamp = tcptw->tw_ts_recent_stamp;
1691 peer->tcp_ts = tcptw->tw_ts_recent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 }
1693 inet_putpeer(peer);
1694 return 1;
1695 }
1696
1697 return 0;
1698}
1699
Arnaldo Carvalho de Melo8292a172005-12-13 23:15:52 -08001700struct inet_connection_sock_af_ops ipv4_specific = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001701 .queue_xmit = ip_queue_xmit,
1702 .send_check = tcp_v4_send_check,
1703 .rebuild_header = inet_sk_rebuild_header,
1704 .conn_request = tcp_v4_conn_request,
1705 .syn_recv_sock = tcp_v4_syn_recv_sock,
1706 .remember_stamp = tcp_v4_remember_stamp,
1707 .net_header_len = sizeof(struct iphdr),
1708 .setsockopt = ip_setsockopt,
1709 .getsockopt = ip_getsockopt,
1710 .addr2sockaddr = inet_csk_addr2sockaddr,
1711 .sockaddr_len = sizeof(struct sockaddr_in),
Arnaldo Carvalho de Meloab1e0a12008-02-03 04:06:04 -08001712 .bind_conflict = inet_csk_bind_conflict,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001713#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001714 .compat_setsockopt = compat_ip_setsockopt,
1715 .compat_getsockopt = compat_ip_getsockopt,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001716#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717};
1718
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001719#ifdef CONFIG_TCP_MD5SIG
Andrew Mortonb6332e62006-11-30 19:16:28 -08001720static struct tcp_sock_af_ops tcp_sock_ipv4_specific = {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001721 .md5_lookup = tcp_v4_md5_lookup,
1722 .calc_md5_hash = tcp_v4_calc_md5_hash,
1723 .md5_add = tcp_v4_md5_add_func,
1724 .md5_parse = tcp_v4_parse_md5_keys,
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001725};
Andrew Mortonb6332e62006-11-30 19:16:28 -08001726#endif
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001727
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728/* NOTE: A lot of things set to zero explicitly by call to
1729 * sk_alloc() so need not be done here.
1730 */
1731static int tcp_v4_init_sock(struct sock *sk)
1732{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001733 struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 struct tcp_sock *tp = tcp_sk(sk);
1735
1736 skb_queue_head_init(&tp->out_of_order_queue);
1737 tcp_init_xmit_timers(sk);
1738 tcp_prequeue_init(tp);
1739
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001740 icsk->icsk_rto = TCP_TIMEOUT_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 tp->mdev = TCP_TIMEOUT_INIT;
1742
1743 /* So many TCP implementations out there (incorrectly) count the
1744 * initial SYN frame in their delayed-ACK and congestion control
1745 * algorithms that we must have the following bandaid to talk
1746 * efficiently to them. -DaveM
1747 */
1748 tp->snd_cwnd = 2;
1749
1750 /* See draft-stevens-tcpca-spec-01 for discussion of the
1751 * initialization of these values.
1752 */
1753 tp->snd_ssthresh = 0x7fffffff; /* Infinity */
1754 tp->snd_cwnd_clamp = ~0;
David S. Millerc1b4a7e2005-07-05 15:24:38 -07001755 tp->mss_cache = 536;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
1757 tp->reordering = sysctl_tcp_reordering;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001758 icsk->icsk_ca_ops = &tcp_init_congestion_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
1760 sk->sk_state = TCP_CLOSE;
1761
1762 sk->sk_write_space = sk_stream_write_space;
1763 sock_set_flag(sk, SOCK_USE_WRITE_QUEUE);
1764
Arnaldo Carvalho de Melo8292a172005-12-13 23:15:52 -08001765 icsk->icsk_af_ops = &ipv4_specific;
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -08001766 icsk->icsk_sync_mss = tcp_sync_mss;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001767#ifdef CONFIG_TCP_MD5SIG
1768 tp->af_specific = &tcp_sock_ipv4_specific;
1769#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
1771 sk->sk_sndbuf = sysctl_tcp_wmem[1];
1772 sk->sk_rcvbuf = sysctl_tcp_rmem[1];
1773
1774 atomic_inc(&tcp_sockets_allocated);
1775
1776 return 0;
1777}
1778
Brian Haley7d06b2e2008-06-14 17:04:49 -07001779void tcp_v4_destroy_sock(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780{
1781 struct tcp_sock *tp = tcp_sk(sk);
1782
1783 tcp_clear_xmit_timers(sk);
1784
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001785 tcp_cleanup_congestion_control(sk);
Stephen Hemminger317a76f2005-06-23 12:19:55 -07001786
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 /* Cleanup up the write buffer. */
David S. Millerfe067e82007-03-07 12:12:44 -08001788 tcp_write_queue_purge(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
1790 /* Cleans up our, hopefully empty, out_of_order_queue. */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001791 __skb_queue_purge(&tp->out_of_order_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001793#ifdef CONFIG_TCP_MD5SIG
1794 /* Clean up the MD5 key list, if any */
1795 if (tp->md5sig_info) {
1796 tcp_v4_clear_md5_list(sk);
1797 kfree(tp->md5sig_info);
1798 tp->md5sig_info = NULL;
1799 }
1800#endif
1801
Chris Leech1a2449a2006-05-23 18:05:53 -07001802#ifdef CONFIG_NET_DMA
1803 /* Cleans up our sk_async_wait_queue */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001804 __skb_queue_purge(&sk->sk_async_wait_queue);
Chris Leech1a2449a2006-05-23 18:05:53 -07001805#endif
1806
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 /* Clean prequeue, it must be empty really */
1808 __skb_queue_purge(&tp->ucopy.prequeue);
1809
1810 /* Clean up a referenced TCP bind bucket. */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001811 if (inet_csk(sk)->icsk_bind_hash)
Arnaldo Carvalho de Meloab1e0a12008-02-03 04:06:04 -08001812 inet_put_port(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
1814 /*
1815 * If sendmsg cached page exists, toss it.
1816 */
1817 if (sk->sk_sndmsg_page) {
1818 __free_page(sk->sk_sndmsg_page);
1819 sk->sk_sndmsg_page = NULL;
1820 }
1821
1822 atomic_dec(&tcp_sockets_allocated);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823}
1824
1825EXPORT_SYMBOL(tcp_v4_destroy_sock);
1826
1827#ifdef CONFIG_PROC_FS
1828/* Proc filesystem TCP sock list dumping. */
1829
Arnaldo Carvalho de Melo8feaf0c2005-08-09 20:09:30 -07001830static inline struct inet_timewait_sock *tw_head(struct hlist_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831{
1832 return hlist_empty(head) ? NULL :
Arnaldo Carvalho de Melo8feaf0c2005-08-09 20:09:30 -07001833 list_entry(head->first, struct inet_timewait_sock, tw_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834}
1835
Arnaldo Carvalho de Melo8feaf0c2005-08-09 20:09:30 -07001836static inline struct inet_timewait_sock *tw_next(struct inet_timewait_sock *tw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837{
1838 return tw->tw_node.next ?
1839 hlist_entry(tw->tw_node.next, typeof(*tw), tw_node) : NULL;
1840}
1841
1842static void *listening_get_next(struct seq_file *seq, void *cur)
1843{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001844 struct inet_connection_sock *icsk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 struct hlist_node *node;
1846 struct sock *sk = cur;
1847 struct tcp_iter_state* st = seq->private;
Denis V. Luneva4146b12008-04-13 22:11:14 -07001848 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
1850 if (!sk) {
1851 st->bucket = 0;
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07001852 sk = sk_head(&tcp_hashinfo.listening_hash[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 goto get_sk;
1854 }
1855
1856 ++st->num;
1857
1858 if (st->state == TCP_SEQ_STATE_OPENREQ) {
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -07001859 struct request_sock *req = cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860
Eric Dumazet72a3eff2006-11-16 02:30:37 -08001861 icsk = inet_csk(st->syn_wait_sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 req = req->dl_next;
1863 while (1) {
1864 while (req) {
Daniel Lezcanof40c8172008-03-21 04:13:54 -07001865 if (req->rsk_ops->family == st->family &&
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001866 net_eq(sock_net(req->sk), net)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 cur = req;
1868 goto out;
1869 }
1870 req = req->dl_next;
1871 }
Eric Dumazet72a3eff2006-11-16 02:30:37 -08001872 if (++st->sbucket >= icsk->icsk_accept_queue.listen_opt->nr_table_entries)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 break;
1874get_req:
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001875 req = icsk->icsk_accept_queue.listen_opt->syn_table[st->sbucket];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 }
1877 sk = sk_next(st->syn_wait_sk);
1878 st->state = TCP_SEQ_STATE_LISTENING;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001879 read_unlock_bh(&icsk->icsk_accept_queue.syn_wait_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 } else {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001881 icsk = inet_csk(sk);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001882 read_lock_bh(&icsk->icsk_accept_queue.syn_wait_lock);
1883 if (reqsk_queue_len(&icsk->icsk_accept_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 goto start_req;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001885 read_unlock_bh(&icsk->icsk_accept_queue.syn_wait_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 sk = sk_next(sk);
1887 }
1888get_sk:
1889 sk_for_each_from(sk, node) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001890 if (sk->sk_family == st->family && net_eq(sock_net(sk), net)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 cur = sk;
1892 goto out;
1893 }
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001894 icsk = inet_csk(sk);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001895 read_lock_bh(&icsk->icsk_accept_queue.syn_wait_lock);
1896 if (reqsk_queue_len(&icsk->icsk_accept_queue)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897start_req:
1898 st->uid = sock_i_uid(sk);
1899 st->syn_wait_sk = sk;
1900 st->state = TCP_SEQ_STATE_OPENREQ;
1901 st->sbucket = 0;
1902 goto get_req;
1903 }
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001904 read_unlock_bh(&icsk->icsk_accept_queue.syn_wait_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 }
Arnaldo Carvalho de Melo0f7ff922005-08-09 19:59:44 -07001906 if (++st->bucket < INET_LHTABLE_SIZE) {
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07001907 sk = sk_head(&tcp_hashinfo.listening_hash[st->bucket]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 goto get_sk;
1909 }
1910 cur = NULL;
1911out:
1912 return cur;
1913}
1914
1915static void *listening_get_idx(struct seq_file *seq, loff_t *pos)
1916{
1917 void *rc = listening_get_next(seq, NULL);
1918
1919 while (rc && *pos) {
1920 rc = listening_get_next(seq, rc);
1921 --*pos;
1922 }
1923 return rc;
1924}
1925
1926static void *established_get_first(struct seq_file *seq)
1927{
1928 struct tcp_iter_state* st = seq->private;
Denis V. Luneva4146b12008-04-13 22:11:14 -07001929 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 void *rc = NULL;
1931
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07001932 for (st->bucket = 0; st->bucket < tcp_hashinfo.ehash_size; ++st->bucket) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 struct sock *sk;
1934 struct hlist_node *node;
Arnaldo Carvalho de Melo8feaf0c2005-08-09 20:09:30 -07001935 struct inet_timewait_sock *tw;
Eric Dumazet230140c2007-11-07 02:40:20 -08001936 rwlock_t *lock = inet_ehash_lockp(&tcp_hashinfo, st->bucket);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
Eric Dumazet230140c2007-11-07 02:40:20 -08001938 read_lock_bh(lock);
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07001939 sk_for_each(sk, node, &tcp_hashinfo.ehash[st->bucket].chain) {
Daniel Lezcanof40c8172008-03-21 04:13:54 -07001940 if (sk->sk_family != st->family ||
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001941 !net_eq(sock_net(sk), net)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 continue;
1943 }
1944 rc = sk;
1945 goto out;
1946 }
1947 st->state = TCP_SEQ_STATE_TIME_WAIT;
Arnaldo Carvalho de Melo8feaf0c2005-08-09 20:09:30 -07001948 inet_twsk_for_each(tw, node,
Eric Dumazetdbca9b2752007-02-08 14:16:46 -08001949 &tcp_hashinfo.ehash[st->bucket].twchain) {
Pavel Emelyanov28518fc2008-03-21 15:52:00 -07001950 if (tw->tw_family != st->family ||
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001951 !net_eq(twsk_net(tw), net)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 continue;
1953 }
1954 rc = tw;
1955 goto out;
1956 }
Eric Dumazet230140c2007-11-07 02:40:20 -08001957 read_unlock_bh(lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 st->state = TCP_SEQ_STATE_ESTABLISHED;
1959 }
1960out:
1961 return rc;
1962}
1963
1964static void *established_get_next(struct seq_file *seq, void *cur)
1965{
1966 struct sock *sk = cur;
Arnaldo Carvalho de Melo8feaf0c2005-08-09 20:09:30 -07001967 struct inet_timewait_sock *tw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 struct hlist_node *node;
1969 struct tcp_iter_state* st = seq->private;
Denis V. Luneva4146b12008-04-13 22:11:14 -07001970 struct net *net = seq_file_net(seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971
1972 ++st->num;
1973
1974 if (st->state == TCP_SEQ_STATE_TIME_WAIT) {
1975 tw = cur;
1976 tw = tw_next(tw);
1977get_tw:
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001978 while (tw && (tw->tw_family != st->family || !net_eq(twsk_net(tw), net))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 tw = tw_next(tw);
1980 }
1981 if (tw) {
1982 cur = tw;
1983 goto out;
1984 }
Eric Dumazet230140c2007-11-07 02:40:20 -08001985 read_unlock_bh(inet_ehash_lockp(&tcp_hashinfo, st->bucket));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 st->state = TCP_SEQ_STATE_ESTABLISHED;
1987
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07001988 if (++st->bucket < tcp_hashinfo.ehash_size) {
Eric Dumazet230140c2007-11-07 02:40:20 -08001989 read_lock_bh(inet_ehash_lockp(&tcp_hashinfo, st->bucket));
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07001990 sk = sk_head(&tcp_hashinfo.ehash[st->bucket].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 } else {
1992 cur = NULL;
1993 goto out;
1994 }
1995 } else
1996 sk = sk_next(sk);
1997
1998 sk_for_each_from(sk, node) {
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09001999 if (sk->sk_family == st->family && net_eq(sock_net(sk), net))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 goto found;
2001 }
2002
2003 st->state = TCP_SEQ_STATE_TIME_WAIT;
Eric Dumazetdbca9b2752007-02-08 14:16:46 -08002004 tw = tw_head(&tcp_hashinfo.ehash[st->bucket].twchain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 goto get_tw;
2006found:
2007 cur = sk;
2008out:
2009 return cur;
2010}
2011
2012static void *established_get_idx(struct seq_file *seq, loff_t pos)
2013{
2014 void *rc = established_get_first(seq);
2015
2016 while (rc && pos) {
2017 rc = established_get_next(seq, rc);
2018 --pos;
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02002019 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 return rc;
2021}
2022
2023static void *tcp_get_idx(struct seq_file *seq, loff_t pos)
2024{
2025 void *rc;
2026 struct tcp_iter_state* st = seq->private;
2027
Arnaldo Carvalho de Melof3f05f72005-08-09 20:08:09 -07002028 inet_listen_lock(&tcp_hashinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 st->state = TCP_SEQ_STATE_LISTENING;
2030 rc = listening_get_idx(seq, &pos);
2031
2032 if (!rc) {
Arnaldo Carvalho de Melof3f05f72005-08-09 20:08:09 -07002033 inet_listen_unlock(&tcp_hashinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 st->state = TCP_SEQ_STATE_ESTABLISHED;
2035 rc = established_get_idx(seq, pos);
2036 }
2037
2038 return rc;
2039}
2040
2041static void *tcp_seq_start(struct seq_file *seq, loff_t *pos)
2042{
2043 struct tcp_iter_state* st = seq->private;
2044 st->state = TCP_SEQ_STATE_LISTENING;
2045 st->num = 0;
2046 return *pos ? tcp_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2047}
2048
2049static void *tcp_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2050{
2051 void *rc = NULL;
2052 struct tcp_iter_state* st;
2053
2054 if (v == SEQ_START_TOKEN) {
2055 rc = tcp_get_idx(seq, 0);
2056 goto out;
2057 }
2058 st = seq->private;
2059
2060 switch (st->state) {
2061 case TCP_SEQ_STATE_OPENREQ:
2062 case TCP_SEQ_STATE_LISTENING:
2063 rc = listening_get_next(seq, v);
2064 if (!rc) {
Arnaldo Carvalho de Melof3f05f72005-08-09 20:08:09 -07002065 inet_listen_unlock(&tcp_hashinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 st->state = TCP_SEQ_STATE_ESTABLISHED;
2067 rc = established_get_first(seq);
2068 }
2069 break;
2070 case TCP_SEQ_STATE_ESTABLISHED:
2071 case TCP_SEQ_STATE_TIME_WAIT:
2072 rc = established_get_next(seq, v);
2073 break;
2074 }
2075out:
2076 ++*pos;
2077 return rc;
2078}
2079
2080static void tcp_seq_stop(struct seq_file *seq, void *v)
2081{
2082 struct tcp_iter_state* st = seq->private;
2083
2084 switch (st->state) {
2085 case TCP_SEQ_STATE_OPENREQ:
2086 if (v) {
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002087 struct inet_connection_sock *icsk = inet_csk(st->syn_wait_sk);
2088 read_unlock_bh(&icsk->icsk_accept_queue.syn_wait_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 }
2090 case TCP_SEQ_STATE_LISTENING:
2091 if (v != SEQ_START_TOKEN)
Arnaldo Carvalho de Melof3f05f72005-08-09 20:08:09 -07002092 inet_listen_unlock(&tcp_hashinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 break;
2094 case TCP_SEQ_STATE_TIME_WAIT:
2095 case TCP_SEQ_STATE_ESTABLISHED:
2096 if (v)
Eric Dumazet230140c2007-11-07 02:40:20 -08002097 read_unlock_bh(inet_ehash_lockp(&tcp_hashinfo, st->bucket));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 break;
2099 }
2100}
2101
2102static int tcp_seq_open(struct inode *inode, struct file *file)
2103{
2104 struct tcp_seq_afinfo *afinfo = PDE(inode)->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 struct tcp_iter_state *s;
Denis V. Lunev52d6f3f2008-04-13 22:12:41 -07002106 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107
Denis V. Lunev52d6f3f2008-04-13 22:12:41 -07002108 err = seq_open_net(inode, file, &afinfo->seq_ops,
2109 sizeof(struct tcp_iter_state));
2110 if (err < 0)
2111 return err;
Daniel Lezcanof40c8172008-03-21 04:13:54 -07002112
Denis V. Lunev52d6f3f2008-04-13 22:12:41 -07002113 s = ((struct seq_file *)file->private_data)->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 s->family = afinfo->family;
Daniel Lezcanof40c8172008-03-21 04:13:54 -07002115 return 0;
2116}
2117
Daniel Lezcano6f8b13b2008-03-21 04:14:45 -07002118int tcp_proc_register(struct net *net, struct tcp_seq_afinfo *afinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119{
2120 int rc = 0;
2121 struct proc_dir_entry *p;
2122
Denis V. Lunev68fcadd2008-04-13 22:13:30 -07002123 afinfo->seq_fops.open = tcp_seq_open;
2124 afinfo->seq_fops.read = seq_read;
2125 afinfo->seq_fops.llseek = seq_lseek;
2126 afinfo->seq_fops.release = seq_release_net;
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02002127
Denis V. Lunev9427c4b2008-04-13 22:12:13 -07002128 afinfo->seq_ops.start = tcp_seq_start;
2129 afinfo->seq_ops.next = tcp_seq_next;
2130 afinfo->seq_ops.stop = tcp_seq_stop;
2131
Denis V. Lunev84841c32008-05-02 04:10:08 -07002132 p = proc_create_data(afinfo->name, S_IRUGO, net->proc_net,
2133 &afinfo->seq_fops, afinfo);
2134 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 rc = -ENOMEM;
2136 return rc;
2137}
2138
Daniel Lezcano6f8b13b2008-03-21 04:14:45 -07002139void tcp_proc_unregister(struct net *net, struct tcp_seq_afinfo *afinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140{
Daniel Lezcano6f8b13b2008-03-21 04:14:45 -07002141 proc_net_remove(net, afinfo->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142}
2143
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -07002144static void get_openreq4(struct sock *sk, struct request_sock *req,
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07002145 struct seq_file *f, int i, int uid, int *len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146{
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07002147 const struct inet_request_sock *ireq = inet_rsk(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 int ttd = req->expires - jiffies;
2149
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07002150 seq_printf(f, "%4d: %08X:%04X %08X:%04X"
2151 " %02X %08X:%08X %02X:%08lX %08X %5d %8d %u %d %p%n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 i,
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07002153 ireq->loc_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 ntohs(inet_sk(sk)->sport),
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07002155 ireq->rmt_addr,
2156 ntohs(ireq->rmt_port),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 TCP_SYN_RECV,
2158 0, 0, /* could print option size, but that is af dependent. */
2159 1, /* timers active (only the expire timer) */
2160 jiffies_to_clock_t(ttd),
2161 req->retrans,
2162 uid,
2163 0, /* non standard timer */
2164 0, /* open_requests have no inode */
2165 atomic_read(&sk->sk_refcnt),
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07002166 req,
2167 len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168}
2169
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07002170static void get_tcp4_sock(struct sock *sk, struct seq_file *f, int i, int *len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171{
2172 int timer_active;
2173 unsigned long timer_expires;
Ilpo Järvinencf4c6bf2007-02-22 01:13:58 -08002174 struct tcp_sock *tp = tcp_sk(sk);
2175 const struct inet_connection_sock *icsk = inet_csk(sk);
2176 struct inet_sock *inet = inet_sk(sk);
Al Viro714e85b2006-11-14 20:51:49 -08002177 __be32 dest = inet->daddr;
2178 __be32 src = inet->rcv_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 __u16 destp = ntohs(inet->dport);
2180 __u16 srcp = ntohs(inet->sport);
2181
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002182 if (icsk->icsk_pending == ICSK_TIME_RETRANS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 timer_active = 1;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002184 timer_expires = icsk->icsk_timeout;
2185 } else if (icsk->icsk_pending == ICSK_TIME_PROBE0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 timer_active = 4;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002187 timer_expires = icsk->icsk_timeout;
Ilpo Järvinencf4c6bf2007-02-22 01:13:58 -08002188 } else if (timer_pending(&sk->sk_timer)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 timer_active = 2;
Ilpo Järvinencf4c6bf2007-02-22 01:13:58 -08002190 timer_expires = sk->sk_timer.expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 } else {
2192 timer_active = 0;
2193 timer_expires = jiffies;
2194 }
2195
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07002196 seq_printf(f, "%4d: %08X:%04X %08X:%04X %02X %08X:%08X %02X:%08lX "
Stephen Hemminger7be87352008-06-27 20:00:19 -07002197 "%08X %5d %8d %lu %d %p %lu %lu %u %u %d%n",
Ilpo Järvinencf4c6bf2007-02-22 01:13:58 -08002198 i, src, srcp, dest, destp, sk->sk_state,
Sridhar Samudrala47da8ee2006-06-27 13:29:00 -07002199 tp->write_seq - tp->snd_una,
Ilpo Järvinencf4c6bf2007-02-22 01:13:58 -08002200 sk->sk_state == TCP_LISTEN ? sk->sk_ack_backlog :
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02002201 (tp->rcv_nxt - tp->copied_seq),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 timer_active,
2203 jiffies_to_clock_t(timer_expires - jiffies),
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002204 icsk->icsk_retransmits,
Ilpo Järvinencf4c6bf2007-02-22 01:13:58 -08002205 sock_i_uid(sk),
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002206 icsk->icsk_probes_out,
Ilpo Järvinencf4c6bf2007-02-22 01:13:58 -08002207 sock_i_ino(sk),
2208 atomic_read(&sk->sk_refcnt), sk,
Stephen Hemminger7be87352008-06-27 20:00:19 -07002209 jiffies_to_clock_t(icsk->icsk_rto),
2210 jiffies_to_clock_t(icsk->icsk_ack.ato),
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002211 (icsk->icsk_ack.quick << 1) | icsk->icsk_ack.pingpong,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 tp->snd_cwnd,
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07002213 tp->snd_ssthresh >= 0xFFFF ? -1 : tp->snd_ssthresh,
2214 len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215}
2216
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02002217static void get_timewait4_sock(struct inet_timewait_sock *tw,
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07002218 struct seq_file *f, int i, int *len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219{
Al Viro23f33c22006-09-27 18:43:50 -07002220 __be32 dest, src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 __u16 destp, srcp;
2222 int ttd = tw->tw_ttd - jiffies;
2223
2224 if (ttd < 0)
2225 ttd = 0;
2226
2227 dest = tw->tw_daddr;
2228 src = tw->tw_rcv_saddr;
2229 destp = ntohs(tw->tw_dport);
2230 srcp = ntohs(tw->tw_sport);
2231
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07002232 seq_printf(f, "%4d: %08X:%04X %08X:%04X"
2233 " %02X %08X:%08X %02X:%08lX %08X %5d %8d %d %d %p%n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 i, src, srcp, dest, destp, tw->tw_substate, 0, 0,
2235 3, jiffies_to_clock_t(ttd), 0, 0, 0, 0,
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07002236 atomic_read(&tw->tw_refcnt), tw, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237}
2238
2239#define TMPSZ 150
2240
2241static int tcp4_seq_show(struct seq_file *seq, void *v)
2242{
2243 struct tcp_iter_state* st;
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07002244 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245
2246 if (v == SEQ_START_TOKEN) {
2247 seq_printf(seq, "%-*s\n", TMPSZ - 1,
2248 " sl local_address rem_address st tx_queue "
2249 "rx_queue tr tm->when retrnsmt uid timeout "
2250 "inode");
2251 goto out;
2252 }
2253 st = seq->private;
2254
2255 switch (st->state) {
2256 case TCP_SEQ_STATE_LISTENING:
2257 case TCP_SEQ_STATE_ESTABLISHED:
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07002258 get_tcp4_sock(v, seq, st->num, &len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 break;
2260 case TCP_SEQ_STATE_OPENREQ:
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07002261 get_openreq4(st->syn_wait_sk, v, seq, st->num, st->uid, &len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 break;
2263 case TCP_SEQ_STATE_TIME_WAIT:
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07002264 get_timewait4_sock(v, seq, st->num, &len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 break;
2266 }
Pavel Emelyanov5e659e42008-04-24 01:02:16 -07002267 seq_printf(seq, "%*s\n", TMPSZ - 1 - len, "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268out:
2269 return 0;
2270}
2271
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272static struct tcp_seq_afinfo tcp4_seq_afinfo = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 .name = "tcp",
2274 .family = AF_INET,
Denis V. Lunev5f4472c2008-04-13 22:13:53 -07002275 .seq_fops = {
2276 .owner = THIS_MODULE,
2277 },
Denis V. Lunev9427c4b2008-04-13 22:12:13 -07002278 .seq_ops = {
2279 .show = tcp4_seq_show,
2280 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281};
2282
Pavel Emelyanov757764f2008-03-24 14:56:02 -07002283static int tcp4_proc_init_net(struct net *net)
2284{
2285 return tcp_proc_register(net, &tcp4_seq_afinfo);
2286}
2287
2288static void tcp4_proc_exit_net(struct net *net)
2289{
2290 tcp_proc_unregister(net, &tcp4_seq_afinfo);
2291}
2292
2293static struct pernet_operations tcp4_net_ops = {
2294 .init = tcp4_proc_init_net,
2295 .exit = tcp4_proc_exit_net,
2296};
2297
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298int __init tcp4_proc_init(void)
2299{
Pavel Emelyanov757764f2008-03-24 14:56:02 -07002300 return register_pernet_subsys(&tcp4_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301}
2302
2303void tcp4_proc_exit(void)
2304{
Pavel Emelyanov757764f2008-03-24 14:56:02 -07002305 unregister_pernet_subsys(&tcp4_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306}
2307#endif /* CONFIG_PROC_FS */
2308
2309struct proto tcp_prot = {
2310 .name = "TCP",
2311 .owner = THIS_MODULE,
2312 .close = tcp_close,
2313 .connect = tcp_v4_connect,
2314 .disconnect = tcp_disconnect,
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002315 .accept = inet_csk_accept,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 .ioctl = tcp_ioctl,
2317 .init = tcp_v4_init_sock,
2318 .destroy = tcp_v4_destroy_sock,
2319 .shutdown = tcp_shutdown,
2320 .setsockopt = tcp_setsockopt,
2321 .getsockopt = tcp_getsockopt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 .recvmsg = tcp_recvmsg,
2323 .backlog_rcv = tcp_v4_do_rcv,
Arnaldo Carvalho de Meloab1e0a12008-02-03 04:06:04 -08002324 .hash = inet_hash,
2325 .unhash = inet_unhash,
2326 .get_port = inet_csk_get_port,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 .enter_memory_pressure = tcp_enter_memory_pressure,
2328 .sockets_allocated = &tcp_sockets_allocated,
Arnaldo Carvalho de Melo0a5578c2005-08-09 20:11:41 -07002329 .orphan_count = &tcp_orphan_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 .memory_allocated = &tcp_memory_allocated,
2331 .memory_pressure = &tcp_memory_pressure,
2332 .sysctl_mem = sysctl_tcp_mem,
2333 .sysctl_wmem = sysctl_tcp_wmem,
2334 .sysctl_rmem = sysctl_tcp_rmem,
2335 .max_header = MAX_TCP_HEADER,
2336 .obj_size = sizeof(struct tcp_sock),
Arnaldo Carvalho de Melo6d6ee432005-12-13 23:25:19 -08002337 .twsk_prot = &tcp_timewait_sock_ops,
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -07002338 .rsk_prot = &tcp_request_sock_ops,
Pavel Emelyanov39d8cda2008-03-22 16:50:58 -07002339 .h.hashinfo = &tcp_hashinfo,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08002340#ifdef CONFIG_COMPAT
2341 .compat_setsockopt = compat_tcp_setsockopt,
2342 .compat_getsockopt = compat_tcp_getsockopt,
2343#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344};
2345
Denis V. Lunev046ee902008-04-03 14:31:33 -07002346
2347static int __net_init tcp_sk_init(struct net *net)
2348{
2349 return inet_ctl_sock_create(&net->ipv4.tcp_sock,
2350 PF_INET, SOCK_RAW, IPPROTO_TCP, net);
2351}
2352
2353static void __net_exit tcp_sk_exit(struct net *net)
2354{
2355 inet_ctl_sock_destroy(net->ipv4.tcp_sock);
2356}
2357
2358static struct pernet_operations __net_initdata tcp_sk_ops = {
2359 .init = tcp_sk_init,
2360 .exit = tcp_sk_exit,
2361};
2362
Denis V. Lunev9b0f9762008-02-29 11:13:15 -08002363void __init tcp_v4_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364{
Denis V. Lunev046ee902008-04-03 14:31:33 -07002365 if (register_pernet_device(&tcp_sk_ops))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 panic("Failed to create the TCP control socket.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367}
2368
2369EXPORT_SYMBOL(ipv4_specific);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370EXPORT_SYMBOL(tcp_hashinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371EXPORT_SYMBOL(tcp_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372EXPORT_SYMBOL(tcp_v4_conn_request);
2373EXPORT_SYMBOL(tcp_v4_connect);
2374EXPORT_SYMBOL(tcp_v4_do_rcv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375EXPORT_SYMBOL(tcp_v4_remember_stamp);
2376EXPORT_SYMBOL(tcp_v4_send_check);
2377EXPORT_SYMBOL(tcp_v4_syn_recv_sock);
2378
2379#ifdef CONFIG_PROC_FS
2380EXPORT_SYMBOL(tcp_proc_register);
2381EXPORT_SYMBOL(tcp_proc_unregister);
2382#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383EXPORT_SYMBOL(sysctl_tcp_low_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384