blob: a091a99ad263d7eaa3519dfccfd25d5891c60272 [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 *
8 * Version: $Id: tcp_ipv4.c,v 1.240 2002/02/01 22:01:04 davem Exp $
9 *
10 * IPv4 specific functions
11 *
12 *
13 * code split from:
14 * linux/ipv4/tcp.c
15 * linux/ipv4/tcp_input.c
16 * linux/ipv4/tcp_output.c
17 *
18 * See tcp.c for author information
19 *
20 * This program is free software; you can redistribute it and/or
21 * modify it under the terms of the GNU General Public License
22 * as published by the Free Software Foundation; either version
23 * 2 of the License, or (at your option) any later version.
24 */
25
26/*
27 * Changes:
28 * David S. Miller : New socket lookup architecture.
29 * This code is dedicated to John Dyson.
30 * David S. Miller : Change semantics of established hash,
31 * half is devoted to TIME_WAIT sockets
32 * and the rest go in the other half.
33 * Andi Kleen : Add support for syncookies and fixed
34 * some bugs: ip options weren't passed to
35 * the TCP layer, missed a check for an
36 * ACK bit.
37 * Andi Kleen : Implemented fast path mtu discovery.
38 * Fixed many serious bugs in the
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -070039 * request_sock handling and moved
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 * most of it into the af independent code.
41 * Added tail drop and some other bugfixes.
Stephen Hemmingercaa20d9a2005-11-10 17:13:47 -080042 * Added new listen semantics.
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 * Mike McLagan : Routing by source
44 * Juan Jose Ciarlante: ip_dynaddr bits
45 * Andi Kleen: various fixes.
46 * Vitaly E. Lavrov : Transparent proxy revived after year
47 * coma.
48 * Andi Kleen : Fix new listen.
49 * Andi Kleen : Fix accept error reporting.
50 * YOSHIFUJI Hideaki @USAGI and: Support IPV6_V6ONLY socket option, which
51 * Alexey Kuznetsov allow both IPv4 and IPv6 sockets to bind
52 * a single port at the same time.
53 */
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56#include <linux/types.h>
57#include <linux/fcntl.h>
58#include <linux/module.h>
59#include <linux/random.h>
60#include <linux/cache.h>
61#include <linux/jhash.h>
62#include <linux/init.h>
63#include <linux/times.h>
64
65#include <net/icmp.h>
Arnaldo Carvalho de Melo304a1612005-08-09 19:59:20 -070066#include <net/inet_hashtables.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070067#include <net/tcp.h>
Arnaldo Carvalho de Melo20380732005-08-16 02:18:02 -030068#include <net/transp_v6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#include <net/ipv6.h>
70#include <net/inet_common.h>
Arnaldo Carvalho de Melo6d6ee432005-12-13 23:25:19 -080071#include <net/timewait_sock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070072#include <net/xfrm.h>
Chris Leech1a2449a2006-05-23 18:05:53 -070073#include <net/netdma.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75#include <linux/inet.h>
76#include <linux/ipv6.h>
77#include <linux/stddef.h>
78#include <linux/proc_fs.h>
79#include <linux/seq_file.h>
80
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -080081#include <linux/crypto.h>
82#include <linux/scatterlist.h>
83
Brian Haleyab32ea52006-09-22 14:15:41 -070084int sysctl_tcp_tw_reuse __read_mostly;
85int sysctl_tcp_low_latency __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87/* Check TCP sequence numbers in ICMP packets. */
88#define ICMP_MIN_LENGTH 8
89
90/* Socket used for sending RSTs */
Eric Dumazet4103f8c2007-03-27 13:58:31 -070091static struct socket *tcp_socket __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Arnaldo Carvalho de Melo8292a172005-12-13 23:15:52 -080093void tcp_v4_send_check(struct sock *sk, int len, struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -080095#ifdef CONFIG_TCP_MD5SIG
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -020096static struct tcp_md5sig_key *tcp_v4_md5_do_lookup(struct sock *sk,
97 __be32 addr);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -080098static int tcp_v4_do_calc_md5_hash(char *md5_hash, struct tcp_md5sig_key *key,
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -020099 __be32 saddr, __be32 daddr,
100 struct tcphdr *th, int protocol,
101 int tcplen);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800102#endif
103
Arnaldo Carvalho de Melo0f7ff922005-08-09 19:59:44 -0700104struct inet_hashinfo __cacheline_aligned tcp_hashinfo = {
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200105 .lhash_lock = __RW_LOCK_UNLOCKED(tcp_hashinfo.lhash_lock),
106 .lhash_users = ATOMIC_INIT(0),
107 .lhash_wait = __WAIT_QUEUE_HEAD_INITIALIZER(tcp_hashinfo.lhash_wait),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108};
109
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700110static int tcp_v4_get_port(struct sock *sk, unsigned short snum)
111{
Arnaldo Carvalho de Melo971af182005-12-13 23:14:47 -0800112 return inet_csk_get_port(&tcp_hashinfo, sk, snum,
113 inet_csk_bind_conflict);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700114}
115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116static void tcp_v4_hash(struct sock *sk)
117{
Arnaldo Carvalho de Melo81849d12005-08-09 20:08:50 -0700118 inet_hash(&tcp_hashinfo, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
121void tcp_unhash(struct sock *sk)
122{
Arnaldo Carvalho de Melo81849d12005-08-09 20:08:50 -0700123 inet_unhash(&tcp_hashinfo, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
125
Gerrit Renkera94f7232006-11-10 14:06:49 -0800126static inline __u32 tcp_v4_init_sequence(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127{
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700128 return secure_tcp_sequence_number(ip_hdr(skb)->daddr,
129 ip_hdr(skb)->saddr,
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -0700130 tcp_hdr(skb)->dest,
131 tcp_hdr(skb)->source);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
Arnaldo Carvalho de Melo6d6ee432005-12-13 23:25:19 -0800134int tcp_twsk_unique(struct sock *sk, struct sock *sktw, void *twp)
135{
136 const struct tcp_timewait_sock *tcptw = tcp_twsk(sktw);
137 struct tcp_sock *tp = tcp_sk(sk);
138
139 /* With PAWS, it is safe from the viewpoint
140 of data integrity. Even without PAWS it is safe provided sequence
141 spaces do not overlap i.e. at data rates <= 80Mbit/sec.
142
143 Actually, the idea is close to VJ's one, only timestamp cache is
144 held not per host, but per port pair and TW bucket is used as state
145 holder.
146
147 If TW bucket has been already destroyed we fall back to VJ's scheme
148 and use initial timestamp retrieved from peer table.
149 */
150 if (tcptw->tw_ts_recent_stamp &&
151 (twp == NULL || (sysctl_tcp_tw_reuse &&
James Morris9d729f72007-03-04 16:12:44 -0800152 get_seconds() - tcptw->tw_ts_recent_stamp > 1))) {
Arnaldo Carvalho de Melo6d6ee432005-12-13 23:25:19 -0800153 tp->write_seq = tcptw->tw_snd_nxt + 65535 + 2;
154 if (tp->write_seq == 0)
155 tp->write_seq = 1;
156 tp->rx_opt.ts_recent = tcptw->tw_ts_recent;
157 tp->rx_opt.ts_recent_stamp = tcptw->tw_ts_recent_stamp;
158 sock_hold(sktw);
159 return 1;
160 }
161
162 return 0;
163}
164
165EXPORT_SYMBOL_GPL(tcp_twsk_unique);
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167/* This will initiate an outgoing connection. */
168int tcp_v4_connect(struct sock *sk, struct sockaddr *uaddr, int addr_len)
169{
170 struct inet_sock *inet = inet_sk(sk);
171 struct tcp_sock *tp = tcp_sk(sk);
172 struct sockaddr_in *usin = (struct sockaddr_in *)uaddr;
173 struct rtable *rt;
Al Virobada8ad2006-09-26 21:27:15 -0700174 __be32 daddr, nexthop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 int tmp;
176 int err;
177
178 if (addr_len < sizeof(struct sockaddr_in))
179 return -EINVAL;
180
181 if (usin->sin_family != AF_INET)
182 return -EAFNOSUPPORT;
183
184 nexthop = daddr = usin->sin_addr.s_addr;
185 if (inet->opt && inet->opt->srr) {
186 if (!daddr)
187 return -EINVAL;
188 nexthop = inet->opt->faddr;
189 }
190
191 tmp = ip_route_connect(&rt, nexthop, inet->saddr,
192 RT_CONN_FLAGS(sk), sk->sk_bound_dev_if,
193 IPPROTO_TCP,
David S. Miller8eb90862007-02-08 02:09:21 -0800194 inet->sport, usin->sin_port, sk, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 if (tmp < 0)
196 return tmp;
197
198 if (rt->rt_flags & (RTCF_MULTICAST | RTCF_BROADCAST)) {
199 ip_rt_put(rt);
200 return -ENETUNREACH;
201 }
202
203 if (!inet->opt || !inet->opt->srr)
204 daddr = rt->rt_dst;
205
206 if (!inet->saddr)
207 inet->saddr = rt->rt_src;
208 inet->rcv_saddr = inet->saddr;
209
210 if (tp->rx_opt.ts_recent_stamp && inet->daddr != daddr) {
211 /* Reset inherited state */
212 tp->rx_opt.ts_recent = 0;
213 tp->rx_opt.ts_recent_stamp = 0;
214 tp->write_seq = 0;
215 }
216
Arnaldo Carvalho de Melo295ff7e2005-08-09 20:44:40 -0700217 if (tcp_death_row.sysctl_tw_recycle &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 !tp->rx_opt.ts_recent_stamp && rt->rt_dst == daddr) {
219 struct inet_peer *peer = rt_get_peer(rt);
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200220 /*
221 * VJ's idea. We save last timestamp seen from
222 * the destination in peer table, when entering state
223 * TIME-WAIT * and initialize rx_opt.ts_recent from it,
224 * when trying new connection.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 */
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200226 if (peer != NULL &&
James Morris9d729f72007-03-04 16:12:44 -0800227 peer->tcp_ts_stamp + TCP_PAWS_MSL >= get_seconds()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 tp->rx_opt.ts_recent_stamp = peer->tcp_ts_stamp;
229 tp->rx_opt.ts_recent = peer->tcp_ts;
230 }
231 }
232
233 inet->dport = usin->sin_port;
234 inet->daddr = daddr;
235
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -0800236 inet_csk(sk)->icsk_ext_hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 if (inet->opt)
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -0800238 inet_csk(sk)->icsk_ext_hdr_len = inet->opt->optlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
240 tp->rx_opt.mss_clamp = 536;
241
242 /* Socket identity is still unknown (sport may be zero).
243 * However we set state to SYN-SENT and not releasing socket
244 * lock select source port, enter ourselves into the hash tables and
245 * complete initialization after this.
246 */
247 tcp_set_state(sk, TCP_SYN_SENT);
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800248 err = inet_hash_connect(&tcp_death_row, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 if (err)
250 goto failure;
251
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200252 err = ip_route_newports(&rt, IPPROTO_TCP,
253 inet->sport, inet->dport, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 if (err)
255 goto failure;
256
257 /* OK, now commit destination to socket. */
Herbert Xubcd76112006-06-30 13:36:35 -0700258 sk->sk_gso_type = SKB_GSO_TCPV4;
Arnaldo Carvalho de Melo6cbb0df2005-08-09 19:49:02 -0700259 sk_setup_caps(sk, &rt->u.dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 if (!tp->write_seq)
262 tp->write_seq = secure_tcp_sequence_number(inet->saddr,
263 inet->daddr,
264 inet->sport,
265 usin->sin_port);
266
267 inet->id = tp->write_seq ^ jiffies;
268
269 err = tcp_connect(sk);
270 rt = NULL;
271 if (err)
272 goto failure;
273
274 return 0;
275
276failure:
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200277 /*
278 * This unhashes the socket and releases the local port,
279 * if necessary.
280 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 tcp_set_state(sk, TCP_CLOSE);
282 ip_rt_put(rt);
283 sk->sk_route_caps = 0;
284 inet->dport = 0;
285 return err;
286}
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288/*
289 * This routine does path mtu discovery as defined in RFC1191.
290 */
Stephen Hemminger40efc6f2006-01-03 16:03:49 -0800291static void do_pmtu_discovery(struct sock *sk, struct iphdr *iph, u32 mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
293 struct dst_entry *dst;
294 struct inet_sock *inet = inet_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296 /* We are not interested in TCP_LISTEN and open_requests (SYN-ACKs
297 * send out by Linux are always <576bytes so they should go through
298 * unfragmented).
299 */
300 if (sk->sk_state == TCP_LISTEN)
301 return;
302
303 /* We don't check in the destentry if pmtu discovery is forbidden
304 * on this route. We just assume that no packet_to_big packets
305 * are send back when pmtu discovery is not active.
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900306 * There is a small race when the user changes this flag in the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 * route, but I think that's acceptable.
308 */
309 if ((dst = __sk_dst_check(sk, 0)) == NULL)
310 return;
311
312 dst->ops->update_pmtu(dst, mtu);
313
314 /* Something is about to be wrong... Remember soft error
315 * for the case, if this connection will not able to recover.
316 */
317 if (mtu < dst_mtu(dst) && ip_dont_fragment(sk, dst))
318 sk->sk_err_soft = EMSGSIZE;
319
320 mtu = dst_mtu(dst);
321
322 if (inet->pmtudisc != IP_PMTUDISC_DONT &&
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -0800323 inet_csk(sk)->icsk_pmtu_cookie > mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 tcp_sync_mss(sk, mtu);
325
326 /* Resend the TCP packet because it's
327 * clear that the old packet has been
328 * dropped. This is the new "fast" path mtu
329 * discovery.
330 */
331 tcp_simple_retransmit(sk);
332 } /* else let the usual retransmit timer handle it */
333}
334
335/*
336 * This routine is called by the ICMP module when it gets some
337 * sort of error condition. If err < 0 then the socket should
338 * be closed and the error returned to the user. If err > 0
339 * it's just the icmp type << 8 | icmp code. After adjustment
340 * header points to the first 8 bytes of the tcp header. We need
341 * to find the appropriate port.
342 *
343 * The locking strategy used here is very "optimistic". When
344 * someone else accesses the socket the ICMP is just dropped
345 * and for some paths there is no check at all.
346 * A more general error queue to queue errors for later handling
347 * is probably better.
348 *
349 */
350
351void tcp_v4_err(struct sk_buff *skb, u32 info)
352{
353 struct iphdr *iph = (struct iphdr *)skb->data;
354 struct tcphdr *th = (struct tcphdr *)(skb->data + (iph->ihl << 2));
355 struct tcp_sock *tp;
356 struct inet_sock *inet;
Arnaldo Carvalho de Melo88c76642007-03-13 14:43:18 -0300357 const int type = icmp_hdr(skb)->type;
358 const int code = icmp_hdr(skb)->code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 struct sock *sk;
360 __u32 seq;
361 int err;
362
363 if (skb->len < (iph->ihl << 2) + 8) {
364 ICMP_INC_STATS_BH(ICMP_MIB_INERRORS);
365 return;
366 }
367
Arnaldo Carvalho de Meloe48c4142005-08-09 20:09:46 -0700368 sk = inet_lookup(&tcp_hashinfo, iph->daddr, th->dest, iph->saddr,
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700369 th->source, inet_iif(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 if (!sk) {
371 ICMP_INC_STATS_BH(ICMP_MIB_INERRORS);
372 return;
373 }
374 if (sk->sk_state == TCP_TIME_WAIT) {
YOSHIFUJI Hideaki9469c7b2006-10-10 19:41:46 -0700375 inet_twsk_put(inet_twsk(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return;
377 }
378
379 bh_lock_sock(sk);
380 /* If too many ICMPs get dropped on busy
381 * servers this needs to be solved differently.
382 */
383 if (sock_owned_by_user(sk))
384 NET_INC_STATS_BH(LINUX_MIB_LOCKDROPPEDICMPS);
385
386 if (sk->sk_state == TCP_CLOSE)
387 goto out;
388
389 tp = tcp_sk(sk);
390 seq = ntohl(th->seq);
391 if (sk->sk_state != TCP_LISTEN &&
392 !between(seq, tp->snd_una, tp->snd_nxt)) {
Eric Dumazet06ca7192006-10-20 00:22:25 -0700393 NET_INC_STATS_BH(LINUX_MIB_OUTOFWINDOWICMPS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 goto out;
395 }
396
397 switch (type) {
398 case ICMP_SOURCE_QUENCH:
399 /* Just silently ignore these. */
400 goto out;
401 case ICMP_PARAMETERPROB:
402 err = EPROTO;
403 break;
404 case ICMP_DEST_UNREACH:
405 if (code > NR_ICMP_UNREACH)
406 goto out;
407
408 if (code == ICMP_FRAG_NEEDED) { /* PMTU discovery (RFC1191) */
409 if (!sock_owned_by_user(sk))
410 do_pmtu_discovery(sk, iph, info);
411 goto out;
412 }
413
414 err = icmp_err_convert[code].errno;
415 break;
416 case ICMP_TIME_EXCEEDED:
417 err = EHOSTUNREACH;
418 break;
419 default:
420 goto out;
421 }
422
423 switch (sk->sk_state) {
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -0700424 struct request_sock *req, **prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 case TCP_LISTEN:
426 if (sock_owned_by_user(sk))
427 goto out;
428
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700429 req = inet_csk_search_req(sk, &prev, th->dest,
430 iph->daddr, iph->saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 if (!req)
432 goto out;
433
434 /* ICMPs are not backlogged, hence we cannot get
435 an established socket here.
436 */
437 BUG_TRAP(!req->sk);
438
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -0700439 if (seq != tcp_rsk(req)->snt_isn) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 NET_INC_STATS_BH(LINUX_MIB_OUTOFWINDOWICMPS);
441 goto out;
442 }
443
444 /*
445 * Still in SYN_RECV, just remove it silently.
446 * There is no good way to pass the error to the newly
447 * created socket, and POSIX does not want network
448 * errors returned from accept().
449 */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700450 inet_csk_reqsk_queue_drop(sk, req, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 goto out;
452
453 case TCP_SYN_SENT:
454 case TCP_SYN_RECV: /* Cannot happen.
455 It can f.e. if SYNs crossed.
456 */
457 if (!sock_owned_by_user(sk)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 sk->sk_err = err;
459
460 sk->sk_error_report(sk);
461
462 tcp_done(sk);
463 } else {
464 sk->sk_err_soft = err;
465 }
466 goto out;
467 }
468
469 /* If we've already connected we will keep trying
470 * until we time out, or the user gives up.
471 *
472 * rfc1122 4.2.3.9 allows to consider as hard errors
473 * only PROTO_UNREACH and PORT_UNREACH (well, FRAG_FAILED too,
474 * but it is obsoleted by pmtu discovery).
475 *
476 * Note, that in modern internet, where routing is unreliable
477 * and in each dark corner broken firewalls sit, sending random
478 * errors ordered by their masters even this two messages finally lose
479 * their original sense (even Linux sends invalid PORT_UNREACHs)
480 *
481 * Now we are in compliance with RFCs.
482 * --ANK (980905)
483 */
484
485 inet = inet_sk(sk);
486 if (!sock_owned_by_user(sk) && inet->recverr) {
487 sk->sk_err = err;
488 sk->sk_error_report(sk);
489 } else { /* Only an error on timeout */
490 sk->sk_err_soft = err;
491 }
492
493out:
494 bh_unlock_sock(sk);
495 sock_put(sk);
496}
497
498/* This routine computes an IPv4 TCP checksum. */
Arnaldo Carvalho de Melo8292a172005-12-13 23:15:52 -0800499void tcp_v4_send_check(struct sock *sk, int len, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
501 struct inet_sock *inet = inet_sk(sk);
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -0700502 struct tcphdr *th = tcp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Patrick McHardy84fa7932006-08-29 16:44:56 -0700504 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Frederik Deweerdtba7808e2007-02-04 20:15:27 -0800505 th->check = ~tcp_v4_check(len, inet->saddr,
506 inet->daddr, 0);
Herbert Xu663ead32007-04-09 11:59:07 -0700507 skb->csum_start = skb_transport_header(skb) - skb->head;
Al Viroff1dcad2006-11-20 18:07:29 -0800508 skb->csum_offset = offsetof(struct tcphdr, check);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 } else {
Frederik Deweerdtba7808e2007-02-04 20:15:27 -0800510 th->check = tcp_v4_check(len, inet->saddr, inet->daddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 csum_partial((char *)th,
512 th->doff << 2,
513 skb->csum));
514 }
515}
516
Herbert Xua430a432006-07-08 13:34:56 -0700517int tcp_v4_gso_send_check(struct sk_buff *skb)
518{
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700519 const struct iphdr *iph;
Herbert Xua430a432006-07-08 13:34:56 -0700520 struct tcphdr *th;
521
522 if (!pskb_may_pull(skb, sizeof(*th)))
523 return -EINVAL;
524
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700525 iph = ip_hdr(skb);
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -0700526 th = tcp_hdr(skb);
Herbert Xua430a432006-07-08 13:34:56 -0700527
528 th->check = 0;
Frederik Deweerdtba7808e2007-02-04 20:15:27 -0800529 th->check = ~tcp_v4_check(skb->len, iph->saddr, iph->daddr, 0);
Herbert Xu663ead32007-04-09 11:59:07 -0700530 skb->csum_start = skb_transport_header(skb) - skb->head;
Al Viroff1dcad2006-11-20 18:07:29 -0800531 skb->csum_offset = offsetof(struct tcphdr, check);
Patrick McHardy84fa7932006-08-29 16:44:56 -0700532 skb->ip_summed = CHECKSUM_PARTIAL;
Herbert Xua430a432006-07-08 13:34:56 -0700533 return 0;
534}
535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536/*
537 * This routine will send an RST to the other tcp.
538 *
539 * Someone asks: why I NEVER use socket parameters (TOS, TTL etc.)
540 * for reset.
541 * Answer: if a packet caused RST, it is not for a socket
542 * existing in our system, if it is matched to a socket,
543 * it is just duplicate segment or bug in other side's TCP.
544 * So that we build reply only basing on parameters
545 * arrived with segment.
546 * Exception: precedence violation. We do not implement it in any case.
547 */
548
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800549static void tcp_v4_send_reset(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -0700551 struct tcphdr *th = tcp_hdr(skb);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800552 struct {
553 struct tcphdr th;
554#ifdef CONFIG_TCP_MD5SIG
Al Viro714e85b2006-11-14 20:51:49 -0800555 __be32 opt[(TCPOLEN_MD5SIG_ALIGNED >> 2)];
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800556#endif
557 } rep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 struct ip_reply_arg arg;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800559#ifdef CONFIG_TCP_MD5SIG
560 struct tcp_md5sig_key *key;
561#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563 /* Never send a reset in response to a reset. */
564 if (th->rst)
565 return;
566
567 if (((struct rtable *)skb->dst)->rt_type != RTN_LOCAL)
568 return;
569
570 /* Swap the send and the receive. */
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800571 memset(&rep, 0, sizeof(rep));
572 rep.th.dest = th->source;
573 rep.th.source = th->dest;
574 rep.th.doff = sizeof(struct tcphdr) / 4;
575 rep.th.rst = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577 if (th->ack) {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800578 rep.th.seq = th->ack_seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 } else {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800580 rep.th.ack = 1;
581 rep.th.ack_seq = htonl(ntohl(th->seq) + th->syn + th->fin +
582 skb->len - (th->doff << 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 }
584
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200585 memset(&arg, 0, sizeof(arg));
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800586 arg.iov[0].iov_base = (unsigned char *)&rep;
587 arg.iov[0].iov_len = sizeof(rep.th);
588
589#ifdef CONFIG_TCP_MD5SIG
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700590 key = sk ? tcp_v4_md5_do_lookup(sk, ip_hdr(skb)->daddr) : NULL;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800591 if (key) {
592 rep.opt[0] = htonl((TCPOPT_NOP << 24) |
593 (TCPOPT_NOP << 16) |
594 (TCPOPT_MD5SIG << 8) |
595 TCPOLEN_MD5SIG);
596 /* Update length and the length the header thinks exists */
597 arg.iov[0].iov_len += TCPOLEN_MD5SIG_ALIGNED;
598 rep.th.doff = arg.iov[0].iov_len / 4;
599
600 tcp_v4_do_calc_md5_hash((__u8 *)&rep.opt[1],
601 key,
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700602 ip_hdr(skb)->daddr,
603 ip_hdr(skb)->saddr,
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800604 &rep.th, IPPROTO_TCP,
605 arg.iov[0].iov_len);
606 }
607#endif
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700608 arg.csum = csum_tcpudp_nofold(ip_hdr(skb)->daddr,
609 ip_hdr(skb)->saddr, /* XXX */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 sizeof(struct tcphdr), IPPROTO_TCP, 0);
611 arg.csumoffset = offsetof(struct tcphdr, check) / 2;
612
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800613 ip_send_reply(tcp_socket->sk, skb, &arg, arg.iov[0].iov_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615 TCP_INC_STATS_BH(TCP_MIB_OUTSEGS);
616 TCP_INC_STATS_BH(TCP_MIB_OUTRSTS);
617}
618
619/* The code following below sending ACKs in SYN-RECV and TIME-WAIT states
620 outside socket context is ugly, certainly. What can I do?
621 */
622
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800623static void tcp_v4_send_ack(struct tcp_timewait_sock *twsk,
624 struct sk_buff *skb, u32 seq, u32 ack,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 u32 win, u32 ts)
626{
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -0700627 struct tcphdr *th = tcp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 struct {
629 struct tcphdr th;
Al Viro714e85b2006-11-14 20:51:49 -0800630 __be32 opt[(TCPOLEN_TSTAMP_ALIGNED >> 2)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800631#ifdef CONFIG_TCP_MD5SIG
Al Viro714e85b2006-11-14 20:51:49 -0800632 + (TCPOLEN_MD5SIG_ALIGNED >> 2)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800633#endif
634 ];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 } rep;
636 struct ip_reply_arg arg;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800637#ifdef CONFIG_TCP_MD5SIG
638 struct tcp_md5sig_key *key;
639 struct tcp_md5sig_key tw_key;
640#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
642 memset(&rep.th, 0, sizeof(struct tcphdr));
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200643 memset(&arg, 0, sizeof(arg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645 arg.iov[0].iov_base = (unsigned char *)&rep;
646 arg.iov[0].iov_len = sizeof(rep.th);
647 if (ts) {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800648 rep.opt[0] = htonl((TCPOPT_NOP << 24) | (TCPOPT_NOP << 16) |
649 (TCPOPT_TIMESTAMP << 8) |
650 TCPOLEN_TIMESTAMP);
651 rep.opt[1] = htonl(tcp_time_stamp);
652 rep.opt[2] = htonl(ts);
Craig Schlentercb48cfe2007-01-09 00:11:15 -0800653 arg.iov[0].iov_len += TCPOLEN_TSTAMP_ALIGNED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 }
655
656 /* Swap the send and the receive. */
657 rep.th.dest = th->source;
658 rep.th.source = th->dest;
659 rep.th.doff = arg.iov[0].iov_len / 4;
660 rep.th.seq = htonl(seq);
661 rep.th.ack_seq = htonl(ack);
662 rep.th.ack = 1;
663 rep.th.window = htons(win);
664
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800665#ifdef CONFIG_TCP_MD5SIG
666 /*
667 * The SKB holds an imcoming packet, but may not have a valid ->sk
668 * pointer. This is especially the case when we're dealing with a
669 * TIME_WAIT ack, because the sk structure is long gone, and only
670 * the tcp_timewait_sock remains. So the md5 key is stashed in that
671 * structure, and we use it in preference. I believe that (twsk ||
672 * skb->sk) holds true, but we program defensively.
673 */
674 if (!twsk && skb->sk) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700675 key = tcp_v4_md5_do_lookup(skb->sk, ip_hdr(skb)->daddr);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800676 } else if (twsk && twsk->tw_md5_keylen) {
677 tw_key.key = twsk->tw_md5_key;
678 tw_key.keylen = twsk->tw_md5_keylen;
679 key = &tw_key;
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200680 } else
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800681 key = NULL;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800682
683 if (key) {
684 int offset = (ts) ? 3 : 0;
685
686 rep.opt[offset++] = htonl((TCPOPT_NOP << 24) |
687 (TCPOPT_NOP << 16) |
688 (TCPOPT_MD5SIG << 8) |
689 TCPOLEN_MD5SIG);
690 arg.iov[0].iov_len += TCPOLEN_MD5SIG_ALIGNED;
691 rep.th.doff = arg.iov[0].iov_len/4;
692
693 tcp_v4_do_calc_md5_hash((__u8 *)&rep.opt[offset],
694 key,
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700695 ip_hdr(skb)->daddr,
696 ip_hdr(skb)->saddr,
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800697 &rep.th, IPPROTO_TCP,
698 arg.iov[0].iov_len);
699 }
700#endif
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700701 arg.csum = csum_tcpudp_nofold(ip_hdr(skb)->daddr,
702 ip_hdr(skb)->saddr, /* XXX */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 arg.iov[0].iov_len, IPPROTO_TCP, 0);
704 arg.csumoffset = offsetof(struct tcphdr, check) / 2;
705
706 ip_send_reply(tcp_socket->sk, skb, &arg, arg.iov[0].iov_len);
707
708 TCP_INC_STATS_BH(TCP_MIB_OUTSEGS);
709}
710
711static void tcp_v4_timewait_ack(struct sock *sk, struct sk_buff *skb)
712{
Arnaldo Carvalho de Melo8feaf0c2005-08-09 20:09:30 -0700713 struct inet_timewait_sock *tw = inet_twsk(sk);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800714 struct tcp_timewait_sock *tcptw = tcp_twsk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800716 tcp_v4_send_ack(tcptw, skb, tcptw->tw_snd_nxt, tcptw->tw_rcv_nxt,
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200717 tcptw->tw_rcv_wnd >> tw->tw_rcv_wscale,
718 tcptw->tw_ts_recent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Arnaldo Carvalho de Melo8feaf0c2005-08-09 20:09:30 -0700720 inet_twsk_put(tw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721}
722
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200723static void tcp_v4_reqsk_send_ack(struct sk_buff *skb,
724 struct request_sock *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725{
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800726 tcp_v4_send_ack(NULL, skb, tcp_rsk(req)->snt_isn + 1,
727 tcp_rsk(req)->rcv_isn + 1, req->rcv_wnd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 req->ts_recent);
729}
730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731/*
732 * Send a SYN-ACK after having received an ACK.
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -0700733 * This still operates on a request_sock only, not on a big
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 * socket.
735 */
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -0700736static int tcp_v4_send_synack(struct sock *sk, struct request_sock *req,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 struct dst_entry *dst)
738{
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -0700739 const struct inet_request_sock *ireq = inet_rsk(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 int err = -1;
741 struct sk_buff * skb;
742
743 /* First, grab a route. */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700744 if (!dst && (dst = inet_csk_route_req(sk, req)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 goto out;
746
747 skb = tcp_make_synack(sk, dst, req);
748
749 if (skb) {
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -0700750 struct tcphdr *th = tcp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Frederik Deweerdtba7808e2007-02-04 20:15:27 -0800752 th->check = tcp_v4_check(skb->len,
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -0700753 ireq->loc_addr,
754 ireq->rmt_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 csum_partial((char *)th, skb->len,
756 skb->csum));
757
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -0700758 err = ip_build_and_send_pkt(skb, sk, ireq->loc_addr,
759 ireq->rmt_addr,
760 ireq->opt);
Gerrit Renkerb9df3cb2006-11-14 11:21:36 -0200761 err = net_xmit_eval(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 }
763
764out:
765 dst_release(dst);
766 return err;
767}
768
769/*
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -0700770 * IPv4 request_sock destructor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 */
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -0700772static void tcp_v4_reqsk_destructor(struct request_sock *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
Jesper Juhla51482b2005-11-08 09:41:34 -0800774 kfree(inet_rsk(req)->opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775}
776
Arnaldo Carvalho de Melo80e40da2006-01-04 01:58:06 -0200777#ifdef CONFIG_SYN_COOKIES
Stephen Hemminger40efc6f2006-01-03 16:03:49 -0800778static void syn_flood_warning(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
780 static unsigned long warntime;
781
782 if (time_after(jiffies, (warntime + HZ * 60))) {
783 warntime = jiffies;
784 printk(KERN_INFO
785 "possible SYN flooding on port %d. Sending cookies.\n",
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -0700786 ntohs(tcp_hdr(skb)->dest));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 }
788}
Arnaldo Carvalho de Melo80e40da2006-01-04 01:58:06 -0200789#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791/*
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -0700792 * Save and compile IPv4 options into the request_sock if needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 */
Stephen Hemminger40efc6f2006-01-03 16:03:49 -0800794static struct ip_options *tcp_v4_save_options(struct sock *sk,
795 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796{
797 struct ip_options *opt = &(IPCB(skb)->opt);
798 struct ip_options *dopt = NULL;
799
800 if (opt && opt->optlen) {
801 int opt_size = optlength(opt);
802 dopt = kmalloc(opt_size, GFP_ATOMIC);
803 if (dopt) {
804 if (ip_options_echo(dopt, skb)) {
805 kfree(dopt);
806 dopt = NULL;
807 }
808 }
809 }
810 return dopt;
811}
812
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800813#ifdef CONFIG_TCP_MD5SIG
814/*
815 * RFC2385 MD5 checksumming requires a mapping of
816 * IP address->MD5 Key.
817 * We need to maintain these in the sk structure.
818 */
819
820/* Find the Key structure for an address. */
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200821static struct tcp_md5sig_key *
822 tcp_v4_md5_do_lookup(struct sock *sk, __be32 addr)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800823{
824 struct tcp_sock *tp = tcp_sk(sk);
825 int i;
826
827 if (!tp->md5sig_info || !tp->md5sig_info->entries4)
828 return NULL;
829 for (i = 0; i < tp->md5sig_info->entries4; i++) {
830 if (tp->md5sig_info->keys4[i].addr == addr)
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200831 return (struct tcp_md5sig_key *)
832 &tp->md5sig_info->keys4[i];
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800833 }
834 return NULL;
835}
836
837struct tcp_md5sig_key *tcp_v4_md5_lookup(struct sock *sk,
838 struct sock *addr_sk)
839{
840 return tcp_v4_md5_do_lookup(sk, inet_sk(addr_sk)->daddr);
841}
842
843EXPORT_SYMBOL(tcp_v4_md5_lookup);
844
Adrian Bunkf5b99bc2006-11-30 17:22:29 -0800845static struct tcp_md5sig_key *tcp_v4_reqsk_md5_lookup(struct sock *sk,
846 struct request_sock *req)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800847{
848 return tcp_v4_md5_do_lookup(sk, inet_rsk(req)->rmt_addr);
849}
850
851/* This can be called on a newly created socket, from other files */
852int tcp_v4_md5_do_add(struct sock *sk, __be32 addr,
853 u8 *newkey, u8 newkeylen)
854{
855 /* Add Key to the list */
856 struct tcp4_md5sig_key *key;
857 struct tcp_sock *tp = tcp_sk(sk);
858 struct tcp4_md5sig_key *keys;
859
Arnaldo Carvalho de Melof6685932006-11-17 11:06:01 -0200860 key = (struct tcp4_md5sig_key *)tcp_v4_md5_do_lookup(sk, addr);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800861 if (key) {
862 /* Pre-existing entry - just update that one. */
Arnaldo Carvalho de Melof6685932006-11-17 11:06:01 -0200863 kfree(key->key);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800864 key->key = newkey;
865 key->keylen = newkeylen;
866 } else {
Arnaldo Carvalho de Melof6685932006-11-17 11:06:01 -0200867 struct tcp_md5sig_info *md5sig;
868
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800869 if (!tp->md5sig_info) {
Arnaldo Carvalho de Melof6685932006-11-17 11:06:01 -0200870 tp->md5sig_info = kzalloc(sizeof(*tp->md5sig_info),
871 GFP_ATOMIC);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800872 if (!tp->md5sig_info) {
873 kfree(newkey);
874 return -ENOMEM;
875 }
876 }
877 if (tcp_alloc_md5sig_pool() == NULL) {
878 kfree(newkey);
879 return -ENOMEM;
880 }
Arnaldo Carvalho de Melof6685932006-11-17 11:06:01 -0200881 md5sig = tp->md5sig_info;
882
883 if (md5sig->alloced4 == md5sig->entries4) {
884 keys = kmalloc((sizeof(*keys) *
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900885 (md5sig->entries4 + 1)), GFP_ATOMIC);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800886 if (!keys) {
887 kfree(newkey);
888 tcp_free_md5sig_pool();
889 return -ENOMEM;
890 }
891
Arnaldo Carvalho de Melof6685932006-11-17 11:06:01 -0200892 if (md5sig->entries4)
893 memcpy(keys, md5sig->keys4,
894 sizeof(*keys) * md5sig->entries4);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800895
896 /* Free old key list, and reference new one */
Arnaldo Carvalho de Melof6685932006-11-17 11:06:01 -0200897 if (md5sig->keys4)
898 kfree(md5sig->keys4);
899 md5sig->keys4 = keys;
900 md5sig->alloced4++;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800901 }
Arnaldo Carvalho de Melof6685932006-11-17 11:06:01 -0200902 md5sig->entries4++;
903 md5sig->keys4[md5sig->entries4 - 1].addr = addr;
904 md5sig->keys4[md5sig->entries4 - 1].key = newkey;
905 md5sig->keys4[md5sig->entries4 - 1].keylen = newkeylen;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800906 }
907 return 0;
908}
909
910EXPORT_SYMBOL(tcp_v4_md5_do_add);
911
912static int tcp_v4_md5_add_func(struct sock *sk, struct sock *addr_sk,
913 u8 *newkey, u8 newkeylen)
914{
915 return tcp_v4_md5_do_add(sk, inet_sk(addr_sk)->daddr,
916 newkey, newkeylen);
917}
918
919int tcp_v4_md5_do_del(struct sock *sk, __be32 addr)
920{
921 struct tcp_sock *tp = tcp_sk(sk);
922 int i;
923
924 for (i = 0; i < tp->md5sig_info->entries4; i++) {
925 if (tp->md5sig_info->keys4[i].addr == addr) {
926 /* Free the key */
927 kfree(tp->md5sig_info->keys4[i].key);
928 tp->md5sig_info->entries4--;
929
930 if (tp->md5sig_info->entries4 == 0) {
931 kfree(tp->md5sig_info->keys4);
932 tp->md5sig_info->keys4 = NULL;
Leigh Brown8228a18d2006-12-17 17:12:30 -0800933 tp->md5sig_info->alloced4 = 0;
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200934 } else if (tp->md5sig_info->entries4 != i) {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800935 /* Need to do some manipulation */
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200936 memcpy(&tp->md5sig_info->keys4[i],
937 &tp->md5sig_info->keys4[i+1],
938 (tp->md5sig_info->entries4 - i) *
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900939 sizeof(struct tcp4_md5sig_key));
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800940 }
941 tcp_free_md5sig_pool();
942 return 0;
943 }
944 }
945 return -ENOENT;
946}
947
948EXPORT_SYMBOL(tcp_v4_md5_do_del);
949
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200950static void tcp_v4_clear_md5_list(struct sock *sk)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800951{
952 struct tcp_sock *tp = tcp_sk(sk);
953
954 /* Free each key, then the set of key keys,
955 * the crypto element, and then decrement our
956 * hold on the last resort crypto.
957 */
958 if (tp->md5sig_info->entries4) {
959 int i;
960 for (i = 0; i < tp->md5sig_info->entries4; i++)
961 kfree(tp->md5sig_info->keys4[i].key);
962 tp->md5sig_info->entries4 = 0;
963 tcp_free_md5sig_pool();
964 }
965 if (tp->md5sig_info->keys4) {
966 kfree(tp->md5sig_info->keys4);
967 tp->md5sig_info->keys4 = NULL;
968 tp->md5sig_info->alloced4 = 0;
969 }
970}
971
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200972static int tcp_v4_parse_md5_keys(struct sock *sk, char __user *optval,
973 int optlen)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800974{
975 struct tcp_md5sig cmd;
976 struct sockaddr_in *sin = (struct sockaddr_in *)&cmd.tcpm_addr;
977 u8 *newkey;
978
979 if (optlen < sizeof(cmd))
980 return -EINVAL;
981
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200982 if (copy_from_user(&cmd, optval, sizeof(cmd)))
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800983 return -EFAULT;
984
985 if (sin->sin_family != AF_INET)
986 return -EINVAL;
987
988 if (!cmd.tcpm_key || !cmd.tcpm_keylen) {
989 if (!tcp_sk(sk)->md5sig_info)
990 return -ENOENT;
991 return tcp_v4_md5_do_del(sk, sin->sin_addr.s_addr);
992 }
993
994 if (cmd.tcpm_keylen > TCP_MD5SIG_MAXKEYLEN)
995 return -EINVAL;
996
997 if (!tcp_sk(sk)->md5sig_info) {
998 struct tcp_sock *tp = tcp_sk(sk);
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200999 struct tcp_md5sig_info *p = kzalloc(sizeof(*p), GFP_KERNEL);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001000
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001001 if (!p)
1002 return -EINVAL;
1003
1004 tp->md5sig_info = p;
1005
1006 }
1007
Arnaldo Carvalho de Melof6685932006-11-17 11:06:01 -02001008 newkey = kmemdup(cmd.tcpm_key, cmd.tcpm_keylen, GFP_KERNEL);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001009 if (!newkey)
1010 return -ENOMEM;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001011 return tcp_v4_md5_do_add(sk, sin->sin_addr.s_addr,
1012 newkey, cmd.tcpm_keylen);
1013}
1014
1015static int tcp_v4_do_calc_md5_hash(char *md5_hash, struct tcp_md5sig_key *key,
1016 __be32 saddr, __be32 daddr,
1017 struct tcphdr *th, int protocol,
1018 int tcplen)
1019{
1020 struct scatterlist sg[4];
1021 __u16 data_len;
1022 int block = 0;
Al Viro8e5200f2006-11-20 18:06:37 -08001023 __sum16 old_checksum;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001024 struct tcp_md5sig_pool *hp;
1025 struct tcp4_pseudohdr *bp;
1026 struct hash_desc *desc;
1027 int err;
1028 unsigned int nbytes = 0;
1029
1030 /*
1031 * Okay, so RFC2385 is turned on for this connection,
1032 * so we need to generate the MD5 hash for the packet now.
1033 */
1034
1035 hp = tcp_get_md5sig_pool();
1036 if (!hp)
1037 goto clear_hash_noput;
1038
1039 bp = &hp->md5_blk.ip4;
1040 desc = &hp->md5_desc;
1041
1042 /*
1043 * 1. the TCP pseudo-header (in the order: source IP address,
1044 * destination IP address, zero-padded protocol number, and
1045 * segment length)
1046 */
1047 bp->saddr = saddr;
1048 bp->daddr = daddr;
1049 bp->pad = 0;
1050 bp->protocol = protocol;
1051 bp->len = htons(tcplen);
1052 sg_set_buf(&sg[block++], bp, sizeof(*bp));
1053 nbytes += sizeof(*bp);
1054
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001055 /* 2. the TCP header, excluding options, and assuming a
1056 * checksum of zero/
1057 */
1058 old_checksum = th->check;
1059 th->check = 0;
1060 sg_set_buf(&sg[block++], th, sizeof(struct tcphdr));
1061 nbytes += sizeof(struct tcphdr);
David S. Miller08dd1a52006-11-30 16:35:01 -08001062
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001063 /* 3. the TCP segment data (if any) */
1064 data_len = tcplen - (th->doff << 2);
1065 if (data_len > 0) {
1066 unsigned char *data = (unsigned char *)th + (th->doff << 2);
1067 sg_set_buf(&sg[block++], data, data_len);
1068 nbytes += data_len;
1069 }
1070
1071 /* 4. an independently-specified key or password, known to both
1072 * TCPs and presumably connection-specific
1073 */
1074 sg_set_buf(&sg[block++], key->key, key->keylen);
1075 nbytes += key->keylen;
1076
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001077 /* Now store the Hash into the packet */
1078 err = crypto_hash_init(desc);
1079 if (err)
1080 goto clear_hash;
1081 err = crypto_hash_update(desc, sg, nbytes);
1082 if (err)
1083 goto clear_hash;
1084 err = crypto_hash_final(desc, md5_hash);
1085 if (err)
1086 goto clear_hash;
1087
1088 /* Reset header, and free up the crypto */
1089 tcp_put_md5sig_pool();
1090 th->check = old_checksum;
1091
1092out:
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001093 return 0;
1094clear_hash:
1095 tcp_put_md5sig_pool();
1096clear_hash_noput:
1097 memset(md5_hash, 0, 16);
1098 goto out;
1099}
1100
1101int tcp_v4_calc_md5_hash(char *md5_hash, struct tcp_md5sig_key *key,
1102 struct sock *sk,
1103 struct dst_entry *dst,
1104 struct request_sock *req,
1105 struct tcphdr *th, int protocol,
1106 int tcplen)
1107{
1108 __be32 saddr, daddr;
1109
1110 if (sk) {
1111 saddr = inet_sk(sk)->saddr;
1112 daddr = inet_sk(sk)->daddr;
1113 } else {
1114 struct rtable *rt = (struct rtable *)dst;
1115 BUG_ON(!rt);
1116 saddr = rt->rt_src;
1117 daddr = rt->rt_dst;
1118 }
1119 return tcp_v4_do_calc_md5_hash(md5_hash, key,
1120 saddr, daddr,
1121 th, protocol, tcplen);
1122}
1123
1124EXPORT_SYMBOL(tcp_v4_calc_md5_hash);
1125
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02001126static int tcp_v4_inbound_md5_hash(struct sock *sk, struct sk_buff *skb)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001127{
1128 /*
1129 * This gets called for each TCP segment that arrives
1130 * so we want to be efficient.
1131 * We have 3 drop cases:
1132 * o No MD5 hash and one expected.
1133 * o MD5 hash and we're not expecting one.
1134 * o MD5 hash and its wrong.
1135 */
1136 __u8 *hash_location = NULL;
1137 struct tcp_md5sig_key *hash_expected;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001138 const struct iphdr *iph = ip_hdr(skb);
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001139 struct tcphdr *th = tcp_hdr(skb);
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02001140 int length = (th->doff << 2) - sizeof(struct tcphdr);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001141 int genhash;
1142 unsigned char *ptr;
1143 unsigned char newhash[16];
1144
1145 hash_expected = tcp_v4_md5_do_lookup(sk, iph->saddr);
1146
1147 /*
1148 * If the TCP option length is less than the TCP_MD5SIG
1149 * option length, then we can shortcut
1150 */
1151 if (length < TCPOLEN_MD5SIG) {
1152 if (hash_expected)
1153 return 1;
1154 else
1155 return 0;
1156 }
1157
1158 /* Okay, we can't shortcut - we have to grub through the options */
1159 ptr = (unsigned char *)(th + 1);
1160 while (length > 0) {
1161 int opcode = *ptr++;
1162 int opsize;
1163
1164 switch (opcode) {
1165 case TCPOPT_EOL:
1166 goto done_opts;
1167 case TCPOPT_NOP:
1168 length--;
1169 continue;
1170 default:
1171 opsize = *ptr++;
1172 if (opsize < 2)
1173 goto done_opts;
1174 if (opsize > length)
1175 goto done_opts;
1176
1177 if (opcode == TCPOPT_MD5SIG) {
1178 hash_location = ptr;
1179 goto done_opts;
1180 }
1181 }
1182 ptr += opsize-2;
1183 length -= opsize;
1184 }
1185done_opts:
1186 /* We've parsed the options - do we have a hash? */
1187 if (!hash_expected && !hash_location)
1188 return 0;
1189
1190 if (hash_expected && !hash_location) {
Leigh Browna9fc00c2006-12-17 17:13:10 -08001191 LIMIT_NETDEBUG(KERN_INFO "MD5 Hash expected but NOT found "
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001192 "(" NIPQUAD_FMT ", %d)->(" NIPQUAD_FMT ", %d)\n",
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02001193 NIPQUAD(iph->saddr), ntohs(th->source),
1194 NIPQUAD(iph->daddr), ntohs(th->dest));
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001195 return 1;
1196 }
1197
1198 if (!hash_expected && hash_location) {
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02001199 LIMIT_NETDEBUG(KERN_INFO "MD5 Hash NOT expected but found "
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001200 "(" NIPQUAD_FMT ", %d)->(" NIPQUAD_FMT ", %d)\n",
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02001201 NIPQUAD(iph->saddr), ntohs(th->source),
1202 NIPQUAD(iph->daddr), ntohs(th->dest));
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001203 return 1;
1204 }
1205
1206 /* Okay, so this is hash_expected and hash_location -
1207 * so we need to calculate the checksum.
1208 */
1209 genhash = tcp_v4_do_calc_md5_hash(newhash,
1210 hash_expected,
1211 iph->saddr, iph->daddr,
1212 th, sk->sk_protocol,
1213 skb->len);
1214
1215 if (genhash || memcmp(hash_location, newhash, 16) != 0) {
1216 if (net_ratelimit()) {
1217 printk(KERN_INFO "MD5 Hash failed for "
1218 "(" NIPQUAD_FMT ", %d)->(" NIPQUAD_FMT ", %d)%s\n",
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02001219 NIPQUAD(iph->saddr), ntohs(th->source),
1220 NIPQUAD(iph->daddr), ntohs(th->dest),
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001221 genhash ? " tcp_v4_calc_md5_hash failed" : "");
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001222 }
1223 return 1;
1224 }
1225 return 0;
1226}
1227
1228#endif
1229
Eric Dumazet72a3eff2006-11-16 02:30:37 -08001230struct request_sock_ops tcp_request_sock_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 .family = PF_INET,
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001232 .obj_size = sizeof(struct tcp_request_sock),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 .rtx_syn_ack = tcp_v4_send_synack,
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -07001234 .send_ack = tcp_v4_reqsk_send_ack,
1235 .destructor = tcp_v4_reqsk_destructor,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 .send_reset = tcp_v4_send_reset,
1237};
1238
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001239#ifdef CONFIG_TCP_MD5SIG
Andrew Mortonb6332e62006-11-30 19:16:28 -08001240static struct tcp_request_sock_ops tcp_request_sock_ipv4_ops = {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001241 .md5_lookup = tcp_v4_reqsk_md5_lookup,
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001242};
Andrew Mortonb6332e62006-11-30 19:16:28 -08001243#endif
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001244
Arnaldo Carvalho de Melo6d6ee432005-12-13 23:25:19 -08001245static struct timewait_sock_ops tcp_timewait_sock_ops = {
1246 .twsk_obj_size = sizeof(struct tcp_timewait_sock),
1247 .twsk_unique = tcp_twsk_unique,
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001248 .twsk_destructor= tcp_twsk_destructor,
Arnaldo Carvalho de Melo6d6ee432005-12-13 23:25:19 -08001249};
1250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251int tcp_v4_conn_request(struct sock *sk, struct sk_buff *skb)
1252{
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001253 struct inet_request_sock *ireq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 struct tcp_options_received tmp_opt;
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -07001255 struct request_sock *req;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001256 __be32 saddr = ip_hdr(skb)->saddr;
1257 __be32 daddr = ip_hdr(skb)->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 __u32 isn = TCP_SKB_CB(skb)->when;
1259 struct dst_entry *dst = NULL;
1260#ifdef CONFIG_SYN_COOKIES
1261 int want_cookie = 0;
1262#else
1263#define want_cookie 0 /* Argh, why doesn't gcc optimize this :( */
1264#endif
1265
1266 /* Never answer to SYNs send to broadcast or multicast */
1267 if (((struct rtable *)skb->dst)->rt_flags &
1268 (RTCF_BROADCAST | RTCF_MULTICAST))
1269 goto drop;
1270
1271 /* TW buckets are converted to open requests without
1272 * limitations, they conserve resources and peer is
1273 * evidently real one.
1274 */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001275 if (inet_csk_reqsk_queue_is_full(sk) && !isn) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276#ifdef CONFIG_SYN_COOKIES
1277 if (sysctl_tcp_syncookies) {
1278 want_cookie = 1;
1279 } else
1280#endif
1281 goto drop;
1282 }
1283
1284 /* Accept backlog is full. If we have already queued enough
1285 * of warm entries in syn queue, drop request. It is better than
1286 * clogging syn queue with openreqs with exponentially increasing
1287 * timeout.
1288 */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001289 if (sk_acceptq_is_full(sk) && inet_csk_reqsk_queue_young(sk) > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 goto drop;
1291
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -07001292 req = reqsk_alloc(&tcp_request_sock_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 if (!req)
1294 goto drop;
1295
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001296#ifdef CONFIG_TCP_MD5SIG
1297 tcp_rsk(req)->af_specific = &tcp_request_sock_ipv4_ops;
1298#endif
1299
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 tcp_clear_options(&tmp_opt);
1301 tmp_opt.mss_clamp = 536;
1302 tmp_opt.user_mss = tcp_sk(sk)->rx_opt.user_mss;
1303
1304 tcp_parse_options(skb, &tmp_opt, 0);
1305
1306 if (want_cookie) {
1307 tcp_clear_options(&tmp_opt);
1308 tmp_opt.saw_tstamp = 0;
1309 }
1310
1311 if (tmp_opt.saw_tstamp && !tmp_opt.rcv_tsval) {
1312 /* Some OSes (unknown ones, but I see them on web server, which
1313 * contains information interesting only for windows'
1314 * users) do not send their stamp in SYN. It is easy case.
1315 * We simply do not advertise TS support.
1316 */
1317 tmp_opt.saw_tstamp = 0;
1318 tmp_opt.tstamp_ok = 0;
1319 }
1320 tmp_opt.tstamp_ok = tmp_opt.saw_tstamp;
1321
1322 tcp_openreq_init(req, &tmp_opt, skb);
1323
Venkat Yekkirala4237c752006-07-24 23:32:50 -07001324 if (security_inet_conn_request(sk, skb, req))
1325 goto drop_and_free;
1326
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001327 ireq = inet_rsk(req);
1328 ireq->loc_addr = daddr;
1329 ireq->rmt_addr = saddr;
1330 ireq->opt = tcp_v4_save_options(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 if (!want_cookie)
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001332 TCP_ECN_create_request(req, tcp_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
1334 if (want_cookie) {
1335#ifdef CONFIG_SYN_COOKIES
1336 syn_flood_warning(skb);
1337#endif
1338 isn = cookie_v4_init_sequence(sk, skb, &req->mss);
1339 } else if (!isn) {
1340 struct inet_peer *peer = NULL;
1341
1342 /* VJ's idea. We save last timestamp seen
1343 * from the destination in peer table, when entering
1344 * state TIME-WAIT, and check against it before
1345 * accepting new connection request.
1346 *
1347 * If "isn" is not zero, this request hit alive
1348 * timewait bucket, so that all the necessary checks
1349 * are made in the function processing timewait state.
1350 */
1351 if (tmp_opt.saw_tstamp &&
Arnaldo Carvalho de Melo295ff7e2005-08-09 20:44:40 -07001352 tcp_death_row.sysctl_tw_recycle &&
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001353 (dst = inet_csk_route_req(sk, req)) != NULL &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 (peer = rt_get_peer((struct rtable *)dst)) != NULL &&
1355 peer->v4daddr == saddr) {
James Morris9d729f72007-03-04 16:12:44 -08001356 if (get_seconds() < peer->tcp_ts_stamp + TCP_PAWS_MSL &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 (s32)(peer->tcp_ts - req->ts_recent) >
1358 TCP_PAWS_WINDOW) {
1359 NET_INC_STATS_BH(LINUX_MIB_PAWSPASSIVEREJECTED);
1360 dst_release(dst);
1361 goto drop_and_free;
1362 }
1363 }
1364 /* Kill the following clause, if you dislike this way. */
1365 else if (!sysctl_tcp_syncookies &&
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001366 (sysctl_max_syn_backlog - inet_csk_reqsk_queue_len(sk) <
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 (sysctl_max_syn_backlog >> 2)) &&
1368 (!peer || !peer->tcp_ts_stamp) &&
1369 (!dst || !dst_metric(dst, RTAX_RTT))) {
1370 /* Without syncookies last quarter of
1371 * backlog is filled with destinations,
1372 * proven to be alive.
1373 * It means that we continue to communicate
1374 * to destinations, already remembered
1375 * to the moment of synflood.
1376 */
Patrick McHardy64ce2072005-08-09 20:50:53 -07001377 LIMIT_NETDEBUG(KERN_DEBUG "TCP: drop open "
1378 "request from %u.%u.%u.%u/%u\n",
1379 NIPQUAD(saddr),
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001380 ntohs(tcp_hdr(skb)->source));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 dst_release(dst);
1382 goto drop_and_free;
1383 }
1384
Gerrit Renkera94f7232006-11-10 14:06:49 -08001385 isn = tcp_v4_init_sequence(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 }
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001387 tcp_rsk(req)->snt_isn = isn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
1389 if (tcp_v4_send_synack(sk, req, dst))
1390 goto drop_and_free;
1391
1392 if (want_cookie) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001393 reqsk_free(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 } else {
Arnaldo Carvalho de Melo3f421ba2005-08-09 20:11:08 -07001395 inet_csk_reqsk_queue_hash_add(sk, req, TCP_TIMEOUT_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 }
1397 return 0;
1398
1399drop_and_free:
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -07001400 reqsk_free(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401drop:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 return 0;
1403}
1404
1405
1406/*
1407 * The three way handshake has completed - we got a valid synack -
1408 * now create the new socket.
1409 */
1410struct sock *tcp_v4_syn_recv_sock(struct sock *sk, struct sk_buff *skb,
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -07001411 struct request_sock *req,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 struct dst_entry *dst)
1413{
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001414 struct inet_request_sock *ireq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 struct inet_sock *newinet;
1416 struct tcp_sock *newtp;
1417 struct sock *newsk;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001418#ifdef CONFIG_TCP_MD5SIG
1419 struct tcp_md5sig_key *key;
1420#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421
1422 if (sk_acceptq_is_full(sk))
1423 goto exit_overflow;
1424
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001425 if (!dst && (dst = inet_csk_route_req(sk, req)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 goto exit;
1427
1428 newsk = tcp_create_openreq_child(sk, req, skb);
1429 if (!newsk)
1430 goto exit;
1431
Herbert Xubcd76112006-06-30 13:36:35 -07001432 newsk->sk_gso_type = SKB_GSO_TCPV4;
Arnaldo Carvalho de Melo6cbb0df2005-08-09 19:49:02 -07001433 sk_setup_caps(newsk, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
1435 newtp = tcp_sk(newsk);
1436 newinet = inet_sk(newsk);
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001437 ireq = inet_rsk(req);
1438 newinet->daddr = ireq->rmt_addr;
1439 newinet->rcv_saddr = ireq->loc_addr;
1440 newinet->saddr = ireq->loc_addr;
1441 newinet->opt = ireq->opt;
1442 ireq->opt = NULL;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001443 newinet->mc_index = inet_iif(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001444 newinet->mc_ttl = ip_hdr(skb)->ttl;
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -08001445 inet_csk(newsk)->icsk_ext_hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 if (newinet->opt)
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -08001447 inet_csk(newsk)->icsk_ext_hdr_len = newinet->opt->optlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 newinet->id = newtp->write_seq ^ jiffies;
1449
John Heffner5d424d52006-03-20 17:53:41 -08001450 tcp_mtup_init(newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 tcp_sync_mss(newsk, dst_mtu(dst));
1452 newtp->advmss = dst_metric(dst, RTAX_ADVMSS);
1453 tcp_initialize_rcv_mss(newsk);
1454
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001455#ifdef CONFIG_TCP_MD5SIG
1456 /* Copy over the MD5 key from the original socket */
1457 if ((key = tcp_v4_md5_do_lookup(sk, newinet->daddr)) != NULL) {
1458 /*
1459 * We're using one, so create a matching key
1460 * on the newsk structure. If we fail to get
1461 * memory, then we end up not copying the key
1462 * across. Shucks.
1463 */
Arnaldo Carvalho de Melof6685932006-11-17 11:06:01 -02001464 char *newkey = kmemdup(key->key, key->keylen, GFP_ATOMIC);
1465 if (newkey != NULL)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001466 tcp_v4_md5_do_add(newsk, inet_sk(sk)->daddr,
1467 newkey, key->keylen);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001468 }
1469#endif
1470
Arnaldo Carvalho de Melof3f05f72005-08-09 20:08:09 -07001471 __inet_hash(&tcp_hashinfo, newsk, 0);
Arnaldo Carvalho de Melo2d8c4ce2005-08-09 20:07:13 -07001472 __inet_inherit_port(&tcp_hashinfo, sk, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
1474 return newsk;
1475
1476exit_overflow:
1477 NET_INC_STATS_BH(LINUX_MIB_LISTENOVERFLOWS);
1478exit:
1479 NET_INC_STATS_BH(LINUX_MIB_LISTENDROPS);
1480 dst_release(dst);
1481 return NULL;
1482}
1483
1484static struct sock *tcp_v4_hnd_req(struct sock *sk, struct sk_buff *skb)
1485{
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001486 struct tcphdr *th = tcp_hdr(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001487 const struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 struct sock *nsk;
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -07001489 struct request_sock **prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 /* Find possible connection requests. */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001491 struct request_sock *req = inet_csk_search_req(sk, &prev, th->source,
1492 iph->saddr, iph->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 if (req)
1494 return tcp_check_req(sk, skb, req, prev);
1495
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001496 nsk = inet_lookup_established(&tcp_hashinfo, iph->saddr, th->source,
1497 iph->daddr, th->dest, inet_iif(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
1499 if (nsk) {
1500 if (nsk->sk_state != TCP_TIME_WAIT) {
1501 bh_lock_sock(nsk);
1502 return nsk;
1503 }
YOSHIFUJI Hideaki9469c7b2006-10-10 19:41:46 -07001504 inet_twsk_put(inet_twsk(nsk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 return NULL;
1506 }
1507
1508#ifdef CONFIG_SYN_COOKIES
1509 if (!th->rst && !th->syn && th->ack)
1510 sk = cookie_v4_check(sk, skb, &(IPCB(skb)->opt));
1511#endif
1512 return sk;
1513}
1514
Al Virob51655b2006-11-14 21:40:42 -08001515static __sum16 tcp_v4_checksum_init(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516{
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001517 const struct iphdr *iph = ip_hdr(skb);
1518
Patrick McHardy84fa7932006-08-29 16:44:56 -07001519 if (skb->ip_summed == CHECKSUM_COMPLETE) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001520 if (!tcp_v4_check(skb->len, iph->saddr,
1521 iph->daddr, skb->csum)) {
Herbert Xufb286bb2005-11-10 13:01:24 -08001522 skb->ip_summed = CHECKSUM_UNNECESSARY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 return 0;
Herbert Xufb286bb2005-11-10 13:01:24 -08001524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 }
Herbert Xufb286bb2005-11-10 13:01:24 -08001526
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001527 skb->csum = csum_tcpudp_nofold(iph->saddr, iph->daddr,
Herbert Xufb286bb2005-11-10 13:01:24 -08001528 skb->len, IPPROTO_TCP, 0);
1529
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 if (skb->len <= 76) {
Herbert Xufb286bb2005-11-10 13:01:24 -08001531 return __skb_checksum_complete(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 }
1533 return 0;
1534}
1535
1536
1537/* The socket must have it's spinlock held when we get
1538 * here.
1539 *
1540 * We have a potential double-lock case here, so even when
1541 * doing backlog processing we use the BH locking scheme.
1542 * This is because we cannot sleep with the original spinlock
1543 * held.
1544 */
1545int tcp_v4_do_rcv(struct sock *sk, struct sk_buff *skb)
1546{
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001547 struct sock *rsk;
1548#ifdef CONFIG_TCP_MD5SIG
1549 /*
1550 * We really want to reject the packet as early as possible
1551 * if:
1552 * o We're expecting an MD5'd packet and this is no MD5 tcp option
1553 * o There is an MD5 option and we're not expecting one
1554 */
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02001555 if (tcp_v4_inbound_md5_hash(sk, skb))
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001556 goto discard;
1557#endif
1558
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 if (sk->sk_state == TCP_ESTABLISHED) { /* Fast path */
1560 TCP_CHECK_TIMER(sk);
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001561 if (tcp_rcv_established(sk, skb, tcp_hdr(skb), skb->len)) {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001562 rsk = sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 goto reset;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001564 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 TCP_CHECK_TIMER(sk);
1566 return 0;
1567 }
1568
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07001569 if (skb->len < tcp_hdrlen(skb) || tcp_checksum_complete(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 goto csum_err;
1571
1572 if (sk->sk_state == TCP_LISTEN) {
1573 struct sock *nsk = tcp_v4_hnd_req(sk, skb);
1574 if (!nsk)
1575 goto discard;
1576
1577 if (nsk != sk) {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001578 if (tcp_child_process(sk, nsk, skb)) {
1579 rsk = nsk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 goto reset;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 return 0;
1583 }
1584 }
1585
1586 TCP_CHECK_TIMER(sk);
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001587 if (tcp_rcv_state_process(sk, skb, tcp_hdr(skb), skb->len)) {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001588 rsk = sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 goto reset;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001590 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 TCP_CHECK_TIMER(sk);
1592 return 0;
1593
1594reset:
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001595 tcp_v4_send_reset(rsk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596discard:
1597 kfree_skb(skb);
1598 /* Be careful here. If this function gets more complicated and
1599 * gcc suffers from register pressure on the x86, sk (in %ebx)
1600 * might be destroyed here. This current version compiles correctly,
1601 * but you have been warned.
1602 */
1603 return 0;
1604
1605csum_err:
1606 TCP_INC_STATS_BH(TCP_MIB_INERRS);
1607 goto discard;
1608}
1609
1610/*
1611 * From tcp_input.c
1612 */
1613
1614int tcp_v4_rcv(struct sk_buff *skb)
1615{
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001616 const struct iphdr *iph;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 struct tcphdr *th;
1618 struct sock *sk;
1619 int ret;
1620
1621 if (skb->pkt_type != PACKET_HOST)
1622 goto discard_it;
1623
1624 /* Count it even if it's bad */
1625 TCP_INC_STATS_BH(TCP_MIB_INSEGS);
1626
1627 if (!pskb_may_pull(skb, sizeof(struct tcphdr)))
1628 goto discard_it;
1629
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001630 th = tcp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
1632 if (th->doff < sizeof(struct tcphdr) / 4)
1633 goto bad_packet;
1634 if (!pskb_may_pull(skb, th->doff * 4))
1635 goto discard_it;
1636
1637 /* An explanation is required here, I think.
1638 * Packet length and doff are validated by header prediction,
Stephen Hemmingercaa20d9a2005-11-10 17:13:47 -08001639 * provided case of th->doff==0 is eliminated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 * So, we defer the checks. */
1641 if ((skb->ip_summed != CHECKSUM_UNNECESSARY &&
Herbert Xufb286bb2005-11-10 13:01:24 -08001642 tcp_v4_checksum_init(skb)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 goto bad_packet;
1644
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001645 th = tcp_hdr(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001646 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 TCP_SKB_CB(skb)->seq = ntohl(th->seq);
1648 TCP_SKB_CB(skb)->end_seq = (TCP_SKB_CB(skb)->seq + th->syn + th->fin +
1649 skb->len - th->doff * 4);
1650 TCP_SKB_CB(skb)->ack_seq = ntohl(th->ack_seq);
1651 TCP_SKB_CB(skb)->when = 0;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001652 TCP_SKB_CB(skb)->flags = iph->tos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 TCP_SKB_CB(skb)->sacked = 0;
1654
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001655 sk = __inet_lookup(&tcp_hashinfo, iph->saddr, th->source,
1656 iph->daddr, th->dest, inet_iif(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 if (!sk)
1658 goto no_tcp_socket;
1659
1660process:
1661 if (sk->sk_state == TCP_TIME_WAIT)
1662 goto do_time_wait;
1663
1664 if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb))
1665 goto discard_and_relse;
Patrick McHardyb59c2702006-01-06 23:06:10 -08001666 nf_reset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
Dmitry Mishinfda9ef52006-08-31 15:28:39 -07001668 if (sk_filter(sk, skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 goto discard_and_relse;
1670
1671 skb->dev = NULL;
1672
Ingo Molnarc6366182006-07-03 00:25:13 -07001673 bh_lock_sock_nested(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 ret = 0;
1675 if (!sock_owned_by_user(sk)) {
Chris Leech1a2449a2006-05-23 18:05:53 -07001676#ifdef CONFIG_NET_DMA
1677 struct tcp_sock *tp = tcp_sk(sk);
1678 if (!tp->ucopy.dma_chan && tp->ucopy.pinned_list)
1679 tp->ucopy.dma_chan = get_softnet_dma();
1680 if (tp->ucopy.dma_chan)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 ret = tcp_v4_do_rcv(sk, skb);
Chris Leech1a2449a2006-05-23 18:05:53 -07001682 else
1683#endif
1684 {
1685 if (!tcp_prequeue(sk, skb))
1686 ret = tcp_v4_do_rcv(sk, skb);
1687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 } else
1689 sk_add_backlog(sk, skb);
1690 bh_unlock_sock(sk);
1691
1692 sock_put(sk);
1693
1694 return ret;
1695
1696no_tcp_socket:
1697 if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb))
1698 goto discard_it;
1699
1700 if (skb->len < (th->doff << 2) || tcp_checksum_complete(skb)) {
1701bad_packet:
1702 TCP_INC_STATS_BH(TCP_MIB_INERRS);
1703 } else {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001704 tcp_v4_send_reset(NULL, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 }
1706
1707discard_it:
1708 /* Discard frame. */
1709 kfree_skb(skb);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001710 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
1712discard_and_relse:
1713 sock_put(sk);
1714 goto discard_it;
1715
1716do_time_wait:
1717 if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb)) {
YOSHIFUJI Hideaki9469c7b2006-10-10 19:41:46 -07001718 inet_twsk_put(inet_twsk(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 goto discard_it;
1720 }
1721
1722 if (skb->len < (th->doff << 2) || tcp_checksum_complete(skb)) {
1723 TCP_INC_STATS_BH(TCP_MIB_INERRS);
YOSHIFUJI Hideaki9469c7b2006-10-10 19:41:46 -07001724 inet_twsk_put(inet_twsk(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 goto discard_it;
1726 }
YOSHIFUJI Hideaki9469c7b2006-10-10 19:41:46 -07001727 switch (tcp_timewait_state_process(inet_twsk(sk), skb, th)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 case TCP_TW_SYN: {
Arnaldo Carvalho de Melo33b62232005-08-09 20:09:06 -07001729 struct sock *sk2 = inet_lookup_listener(&tcp_hashinfo,
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001730 iph->daddr, th->dest,
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001731 inet_iif(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 if (sk2) {
YOSHIFUJI Hideaki9469c7b2006-10-10 19:41:46 -07001733 inet_twsk_deschedule(inet_twsk(sk), &tcp_death_row);
1734 inet_twsk_put(inet_twsk(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 sk = sk2;
1736 goto process;
1737 }
1738 /* Fall through to ACK */
1739 }
1740 case TCP_TW_ACK:
1741 tcp_v4_timewait_ack(sk, skb);
1742 break;
1743 case TCP_TW_RST:
1744 goto no_tcp_socket;
1745 case TCP_TW_SUCCESS:;
1746 }
1747 goto discard_it;
1748}
1749
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750/* VJ's idea. Save last timestamp seen from this destination
1751 * and hold it at least for normal timewait interval to use for duplicate
1752 * segment detection in subsequent connections, before they enter synchronized
1753 * state.
1754 */
1755
1756int tcp_v4_remember_stamp(struct sock *sk)
1757{
1758 struct inet_sock *inet = inet_sk(sk);
1759 struct tcp_sock *tp = tcp_sk(sk);
1760 struct rtable *rt = (struct rtable *)__sk_dst_get(sk);
1761 struct inet_peer *peer = NULL;
1762 int release_it = 0;
1763
1764 if (!rt || rt->rt_dst != inet->daddr) {
1765 peer = inet_getpeer(inet->daddr, 1);
1766 release_it = 1;
1767 } else {
1768 if (!rt->peer)
1769 rt_bind_peer(rt, 1);
1770 peer = rt->peer;
1771 }
1772
1773 if (peer) {
1774 if ((s32)(peer->tcp_ts - tp->rx_opt.ts_recent) <= 0 ||
James Morris9d729f72007-03-04 16:12:44 -08001775 (peer->tcp_ts_stamp + TCP_PAWS_MSL < get_seconds() &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 peer->tcp_ts_stamp <= tp->rx_opt.ts_recent_stamp)) {
1777 peer->tcp_ts_stamp = tp->rx_opt.ts_recent_stamp;
1778 peer->tcp_ts = tp->rx_opt.ts_recent;
1779 }
1780 if (release_it)
1781 inet_putpeer(peer);
1782 return 1;
1783 }
1784
1785 return 0;
1786}
1787
Arnaldo Carvalho de Melo8feaf0c2005-08-09 20:09:30 -07001788int tcp_v4_tw_remember_stamp(struct inet_timewait_sock *tw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789{
Arnaldo Carvalho de Melo8feaf0c2005-08-09 20:09:30 -07001790 struct inet_peer *peer = inet_getpeer(tw->tw_daddr, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
1792 if (peer) {
Arnaldo Carvalho de Melo8feaf0c2005-08-09 20:09:30 -07001793 const struct tcp_timewait_sock *tcptw = tcp_twsk((struct sock *)tw);
1794
1795 if ((s32)(peer->tcp_ts - tcptw->tw_ts_recent) <= 0 ||
James Morris9d729f72007-03-04 16:12:44 -08001796 (peer->tcp_ts_stamp + TCP_PAWS_MSL < get_seconds() &&
Arnaldo Carvalho de Melo8feaf0c2005-08-09 20:09:30 -07001797 peer->tcp_ts_stamp <= tcptw->tw_ts_recent_stamp)) {
1798 peer->tcp_ts_stamp = tcptw->tw_ts_recent_stamp;
1799 peer->tcp_ts = tcptw->tw_ts_recent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 }
1801 inet_putpeer(peer);
1802 return 1;
1803 }
1804
1805 return 0;
1806}
1807
Arnaldo Carvalho de Melo8292a172005-12-13 23:15:52 -08001808struct inet_connection_sock_af_ops ipv4_specific = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001809 .queue_xmit = ip_queue_xmit,
1810 .send_check = tcp_v4_send_check,
1811 .rebuild_header = inet_sk_rebuild_header,
1812 .conn_request = tcp_v4_conn_request,
1813 .syn_recv_sock = tcp_v4_syn_recv_sock,
1814 .remember_stamp = tcp_v4_remember_stamp,
1815 .net_header_len = sizeof(struct iphdr),
1816 .setsockopt = ip_setsockopt,
1817 .getsockopt = ip_getsockopt,
1818 .addr2sockaddr = inet_csk_addr2sockaddr,
1819 .sockaddr_len = sizeof(struct sockaddr_in),
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001820#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001821 .compat_setsockopt = compat_ip_setsockopt,
1822 .compat_getsockopt = compat_ip_getsockopt,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001823#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824};
1825
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001826#ifdef CONFIG_TCP_MD5SIG
Andrew Mortonb6332e62006-11-30 19:16:28 -08001827static struct tcp_sock_af_ops tcp_sock_ipv4_specific = {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001828 .md5_lookup = tcp_v4_md5_lookup,
1829 .calc_md5_hash = tcp_v4_calc_md5_hash,
1830 .md5_add = tcp_v4_md5_add_func,
1831 .md5_parse = tcp_v4_parse_md5_keys,
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001832};
Andrew Mortonb6332e62006-11-30 19:16:28 -08001833#endif
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001834
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835/* NOTE: A lot of things set to zero explicitly by call to
1836 * sk_alloc() so need not be done here.
1837 */
1838static int tcp_v4_init_sock(struct sock *sk)
1839{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001840 struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 struct tcp_sock *tp = tcp_sk(sk);
1842
1843 skb_queue_head_init(&tp->out_of_order_queue);
1844 tcp_init_xmit_timers(sk);
1845 tcp_prequeue_init(tp);
1846
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001847 icsk->icsk_rto = TCP_TIMEOUT_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 tp->mdev = TCP_TIMEOUT_INIT;
1849
1850 /* So many TCP implementations out there (incorrectly) count the
1851 * initial SYN frame in their delayed-ACK and congestion control
1852 * algorithms that we must have the following bandaid to talk
1853 * efficiently to them. -DaveM
1854 */
1855 tp->snd_cwnd = 2;
1856
1857 /* See draft-stevens-tcpca-spec-01 for discussion of the
1858 * initialization of these values.
1859 */
1860 tp->snd_ssthresh = 0x7fffffff; /* Infinity */
1861 tp->snd_cwnd_clamp = ~0;
David S. Millerc1b4a7e2005-07-05 15:24:38 -07001862 tp->mss_cache = 536;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
1864 tp->reordering = sysctl_tcp_reordering;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001865 icsk->icsk_ca_ops = &tcp_init_congestion_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
1867 sk->sk_state = TCP_CLOSE;
1868
1869 sk->sk_write_space = sk_stream_write_space;
1870 sock_set_flag(sk, SOCK_USE_WRITE_QUEUE);
1871
Arnaldo Carvalho de Melo8292a172005-12-13 23:15:52 -08001872 icsk->icsk_af_ops = &ipv4_specific;
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -08001873 icsk->icsk_sync_mss = tcp_sync_mss;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001874#ifdef CONFIG_TCP_MD5SIG
1875 tp->af_specific = &tcp_sock_ipv4_specific;
1876#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
1878 sk->sk_sndbuf = sysctl_tcp_wmem[1];
1879 sk->sk_rcvbuf = sysctl_tcp_rmem[1];
1880
1881 atomic_inc(&tcp_sockets_allocated);
1882
1883 return 0;
1884}
1885
1886int tcp_v4_destroy_sock(struct sock *sk)
1887{
1888 struct tcp_sock *tp = tcp_sk(sk);
1889
1890 tcp_clear_xmit_timers(sk);
1891
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001892 tcp_cleanup_congestion_control(sk);
Stephen Hemminger317a76f2005-06-23 12:19:55 -07001893
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 /* Cleanup up the write buffer. */
David S. Millerfe067e82007-03-07 12:12:44 -08001895 tcp_write_queue_purge(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
1897 /* Cleans up our, hopefully empty, out_of_order_queue. */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001898 __skb_queue_purge(&tp->out_of_order_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001900#ifdef CONFIG_TCP_MD5SIG
1901 /* Clean up the MD5 key list, if any */
1902 if (tp->md5sig_info) {
1903 tcp_v4_clear_md5_list(sk);
1904 kfree(tp->md5sig_info);
1905 tp->md5sig_info = NULL;
1906 }
1907#endif
1908
Chris Leech1a2449a2006-05-23 18:05:53 -07001909#ifdef CONFIG_NET_DMA
1910 /* Cleans up our sk_async_wait_queue */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001911 __skb_queue_purge(&sk->sk_async_wait_queue);
Chris Leech1a2449a2006-05-23 18:05:53 -07001912#endif
1913
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 /* Clean prequeue, it must be empty really */
1915 __skb_queue_purge(&tp->ucopy.prequeue);
1916
1917 /* Clean up a referenced TCP bind bucket. */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001918 if (inet_csk(sk)->icsk_bind_hash)
Arnaldo Carvalho de Melo2d8c4ce2005-08-09 20:07:13 -07001919 inet_put_port(&tcp_hashinfo, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
1921 /*
1922 * If sendmsg cached page exists, toss it.
1923 */
1924 if (sk->sk_sndmsg_page) {
1925 __free_page(sk->sk_sndmsg_page);
1926 sk->sk_sndmsg_page = NULL;
1927 }
1928
1929 atomic_dec(&tcp_sockets_allocated);
1930
1931 return 0;
1932}
1933
1934EXPORT_SYMBOL(tcp_v4_destroy_sock);
1935
1936#ifdef CONFIG_PROC_FS
1937/* Proc filesystem TCP sock list dumping. */
1938
Arnaldo Carvalho de Melo8feaf0c2005-08-09 20:09:30 -07001939static inline struct inet_timewait_sock *tw_head(struct hlist_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940{
1941 return hlist_empty(head) ? NULL :
Arnaldo Carvalho de Melo8feaf0c2005-08-09 20:09:30 -07001942 list_entry(head->first, struct inet_timewait_sock, tw_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943}
1944
Arnaldo Carvalho de Melo8feaf0c2005-08-09 20:09:30 -07001945static inline struct inet_timewait_sock *tw_next(struct inet_timewait_sock *tw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946{
1947 return tw->tw_node.next ?
1948 hlist_entry(tw->tw_node.next, typeof(*tw), tw_node) : NULL;
1949}
1950
1951static void *listening_get_next(struct seq_file *seq, void *cur)
1952{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001953 struct inet_connection_sock *icsk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 struct hlist_node *node;
1955 struct sock *sk = cur;
1956 struct tcp_iter_state* st = seq->private;
1957
1958 if (!sk) {
1959 st->bucket = 0;
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07001960 sk = sk_head(&tcp_hashinfo.listening_hash[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 goto get_sk;
1962 }
1963
1964 ++st->num;
1965
1966 if (st->state == TCP_SEQ_STATE_OPENREQ) {
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -07001967 struct request_sock *req = cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968
Eric Dumazet72a3eff2006-11-16 02:30:37 -08001969 icsk = inet_csk(st->syn_wait_sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 req = req->dl_next;
1971 while (1) {
1972 while (req) {
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -07001973 if (req->rsk_ops->family == st->family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 cur = req;
1975 goto out;
1976 }
1977 req = req->dl_next;
1978 }
Eric Dumazet72a3eff2006-11-16 02:30:37 -08001979 if (++st->sbucket >= icsk->icsk_accept_queue.listen_opt->nr_table_entries)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 break;
1981get_req:
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001982 req = icsk->icsk_accept_queue.listen_opt->syn_table[st->sbucket];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 }
1984 sk = sk_next(st->syn_wait_sk);
1985 st->state = TCP_SEQ_STATE_LISTENING;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001986 read_unlock_bh(&icsk->icsk_accept_queue.syn_wait_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 } else {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001988 icsk = inet_csk(sk);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001989 read_lock_bh(&icsk->icsk_accept_queue.syn_wait_lock);
1990 if (reqsk_queue_len(&icsk->icsk_accept_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 goto start_req;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001992 read_unlock_bh(&icsk->icsk_accept_queue.syn_wait_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 sk = sk_next(sk);
1994 }
1995get_sk:
1996 sk_for_each_from(sk, node) {
1997 if (sk->sk_family == st->family) {
1998 cur = sk;
1999 goto out;
2000 }
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002001 icsk = inet_csk(sk);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002002 read_lock_bh(&icsk->icsk_accept_queue.syn_wait_lock);
2003 if (reqsk_queue_len(&icsk->icsk_accept_queue)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004start_req:
2005 st->uid = sock_i_uid(sk);
2006 st->syn_wait_sk = sk;
2007 st->state = TCP_SEQ_STATE_OPENREQ;
2008 st->sbucket = 0;
2009 goto get_req;
2010 }
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002011 read_unlock_bh(&icsk->icsk_accept_queue.syn_wait_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 }
Arnaldo Carvalho de Melo0f7ff922005-08-09 19:59:44 -07002013 if (++st->bucket < INET_LHTABLE_SIZE) {
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07002014 sk = sk_head(&tcp_hashinfo.listening_hash[st->bucket]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 goto get_sk;
2016 }
2017 cur = NULL;
2018out:
2019 return cur;
2020}
2021
2022static void *listening_get_idx(struct seq_file *seq, loff_t *pos)
2023{
2024 void *rc = listening_get_next(seq, NULL);
2025
2026 while (rc && *pos) {
2027 rc = listening_get_next(seq, rc);
2028 --*pos;
2029 }
2030 return rc;
2031}
2032
2033static void *established_get_first(struct seq_file *seq)
2034{
2035 struct tcp_iter_state* st = seq->private;
2036 void *rc = NULL;
2037
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07002038 for (st->bucket = 0; st->bucket < tcp_hashinfo.ehash_size; ++st->bucket) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 struct sock *sk;
2040 struct hlist_node *node;
Arnaldo Carvalho de Melo8feaf0c2005-08-09 20:09:30 -07002041 struct inet_timewait_sock *tw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042
2043 /* We can reschedule _before_ having picked the target: */
2044 cond_resched_softirq();
2045
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07002046 read_lock(&tcp_hashinfo.ehash[st->bucket].lock);
2047 sk_for_each(sk, node, &tcp_hashinfo.ehash[st->bucket].chain) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 if (sk->sk_family != st->family) {
2049 continue;
2050 }
2051 rc = sk;
2052 goto out;
2053 }
2054 st->state = TCP_SEQ_STATE_TIME_WAIT;
Arnaldo Carvalho de Melo8feaf0c2005-08-09 20:09:30 -07002055 inet_twsk_for_each(tw, node,
Eric Dumazetdbca9b2752007-02-08 14:16:46 -08002056 &tcp_hashinfo.ehash[st->bucket].twchain) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 if (tw->tw_family != st->family) {
2058 continue;
2059 }
2060 rc = tw;
2061 goto out;
2062 }
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07002063 read_unlock(&tcp_hashinfo.ehash[st->bucket].lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 st->state = TCP_SEQ_STATE_ESTABLISHED;
2065 }
2066out:
2067 return rc;
2068}
2069
2070static void *established_get_next(struct seq_file *seq, void *cur)
2071{
2072 struct sock *sk = cur;
Arnaldo Carvalho de Melo8feaf0c2005-08-09 20:09:30 -07002073 struct inet_timewait_sock *tw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 struct hlist_node *node;
2075 struct tcp_iter_state* st = seq->private;
2076
2077 ++st->num;
2078
2079 if (st->state == TCP_SEQ_STATE_TIME_WAIT) {
2080 tw = cur;
2081 tw = tw_next(tw);
2082get_tw:
2083 while (tw && tw->tw_family != st->family) {
2084 tw = tw_next(tw);
2085 }
2086 if (tw) {
2087 cur = tw;
2088 goto out;
2089 }
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07002090 read_unlock(&tcp_hashinfo.ehash[st->bucket].lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 st->state = TCP_SEQ_STATE_ESTABLISHED;
2092
2093 /* We can reschedule between buckets: */
2094 cond_resched_softirq();
2095
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07002096 if (++st->bucket < tcp_hashinfo.ehash_size) {
2097 read_lock(&tcp_hashinfo.ehash[st->bucket].lock);
2098 sk = sk_head(&tcp_hashinfo.ehash[st->bucket].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 } else {
2100 cur = NULL;
2101 goto out;
2102 }
2103 } else
2104 sk = sk_next(sk);
2105
2106 sk_for_each_from(sk, node) {
2107 if (sk->sk_family == st->family)
2108 goto found;
2109 }
2110
2111 st->state = TCP_SEQ_STATE_TIME_WAIT;
Eric Dumazetdbca9b2752007-02-08 14:16:46 -08002112 tw = tw_head(&tcp_hashinfo.ehash[st->bucket].twchain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 goto get_tw;
2114found:
2115 cur = sk;
2116out:
2117 return cur;
2118}
2119
2120static void *established_get_idx(struct seq_file *seq, loff_t pos)
2121{
2122 void *rc = established_get_first(seq);
2123
2124 while (rc && pos) {
2125 rc = established_get_next(seq, rc);
2126 --pos;
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02002127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 return rc;
2129}
2130
2131static void *tcp_get_idx(struct seq_file *seq, loff_t pos)
2132{
2133 void *rc;
2134 struct tcp_iter_state* st = seq->private;
2135
Arnaldo Carvalho de Melof3f05f72005-08-09 20:08:09 -07002136 inet_listen_lock(&tcp_hashinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 st->state = TCP_SEQ_STATE_LISTENING;
2138 rc = listening_get_idx(seq, &pos);
2139
2140 if (!rc) {
Arnaldo Carvalho de Melof3f05f72005-08-09 20:08:09 -07002141 inet_listen_unlock(&tcp_hashinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 local_bh_disable();
2143 st->state = TCP_SEQ_STATE_ESTABLISHED;
2144 rc = established_get_idx(seq, pos);
2145 }
2146
2147 return rc;
2148}
2149
2150static void *tcp_seq_start(struct seq_file *seq, loff_t *pos)
2151{
2152 struct tcp_iter_state* st = seq->private;
2153 st->state = TCP_SEQ_STATE_LISTENING;
2154 st->num = 0;
2155 return *pos ? tcp_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2156}
2157
2158static void *tcp_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2159{
2160 void *rc = NULL;
2161 struct tcp_iter_state* st;
2162
2163 if (v == SEQ_START_TOKEN) {
2164 rc = tcp_get_idx(seq, 0);
2165 goto out;
2166 }
2167 st = seq->private;
2168
2169 switch (st->state) {
2170 case TCP_SEQ_STATE_OPENREQ:
2171 case TCP_SEQ_STATE_LISTENING:
2172 rc = listening_get_next(seq, v);
2173 if (!rc) {
Arnaldo Carvalho de Melof3f05f72005-08-09 20:08:09 -07002174 inet_listen_unlock(&tcp_hashinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 local_bh_disable();
2176 st->state = TCP_SEQ_STATE_ESTABLISHED;
2177 rc = established_get_first(seq);
2178 }
2179 break;
2180 case TCP_SEQ_STATE_ESTABLISHED:
2181 case TCP_SEQ_STATE_TIME_WAIT:
2182 rc = established_get_next(seq, v);
2183 break;
2184 }
2185out:
2186 ++*pos;
2187 return rc;
2188}
2189
2190static void tcp_seq_stop(struct seq_file *seq, void *v)
2191{
2192 struct tcp_iter_state* st = seq->private;
2193
2194 switch (st->state) {
2195 case TCP_SEQ_STATE_OPENREQ:
2196 if (v) {
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002197 struct inet_connection_sock *icsk = inet_csk(st->syn_wait_sk);
2198 read_unlock_bh(&icsk->icsk_accept_queue.syn_wait_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 }
2200 case TCP_SEQ_STATE_LISTENING:
2201 if (v != SEQ_START_TOKEN)
Arnaldo Carvalho de Melof3f05f72005-08-09 20:08:09 -07002202 inet_listen_unlock(&tcp_hashinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 break;
2204 case TCP_SEQ_STATE_TIME_WAIT:
2205 case TCP_SEQ_STATE_ESTABLISHED:
2206 if (v)
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07002207 read_unlock(&tcp_hashinfo.ehash[st->bucket].lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 local_bh_enable();
2209 break;
2210 }
2211}
2212
2213static int tcp_seq_open(struct inode *inode, struct file *file)
2214{
2215 struct tcp_seq_afinfo *afinfo = PDE(inode)->data;
2216 struct seq_file *seq;
2217 struct tcp_iter_state *s;
2218 int rc;
2219
2220 if (unlikely(afinfo == NULL))
2221 return -EINVAL;
2222
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07002223 s = kzalloc(sizeof(*s), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 if (!s)
2225 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 s->family = afinfo->family;
2227 s->seq_ops.start = tcp_seq_start;
2228 s->seq_ops.next = tcp_seq_next;
2229 s->seq_ops.show = afinfo->seq_show;
2230 s->seq_ops.stop = tcp_seq_stop;
2231
2232 rc = seq_open(file, &s->seq_ops);
2233 if (rc)
2234 goto out_kfree;
2235 seq = file->private_data;
2236 seq->private = s;
2237out:
2238 return rc;
2239out_kfree:
2240 kfree(s);
2241 goto out;
2242}
2243
2244int tcp_proc_register(struct tcp_seq_afinfo *afinfo)
2245{
2246 int rc = 0;
2247 struct proc_dir_entry *p;
2248
2249 if (!afinfo)
2250 return -EINVAL;
2251 afinfo->seq_fops->owner = afinfo->owner;
2252 afinfo->seq_fops->open = tcp_seq_open;
2253 afinfo->seq_fops->read = seq_read;
2254 afinfo->seq_fops->llseek = seq_lseek;
2255 afinfo->seq_fops->release = seq_release_private;
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02002256
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 p = proc_net_fops_create(afinfo->name, S_IRUGO, afinfo->seq_fops);
2258 if (p)
2259 p->data = afinfo;
2260 else
2261 rc = -ENOMEM;
2262 return rc;
2263}
2264
2265void tcp_proc_unregister(struct tcp_seq_afinfo *afinfo)
2266{
2267 if (!afinfo)
2268 return;
2269 proc_net_remove(afinfo->name);
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02002270 memset(afinfo->seq_fops, 0, sizeof(*afinfo->seq_fops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271}
2272
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -07002273static void get_openreq4(struct sock *sk, struct request_sock *req,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 char *tmpbuf, int i, int uid)
2275{
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07002276 const struct inet_request_sock *ireq = inet_rsk(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 int ttd = req->expires - jiffies;
2278
2279 sprintf(tmpbuf, "%4d: %08X:%04X %08X:%04X"
2280 " %02X %08X:%08X %02X:%08lX %08X %5d %8d %u %d %p",
2281 i,
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07002282 ireq->loc_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 ntohs(inet_sk(sk)->sport),
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07002284 ireq->rmt_addr,
2285 ntohs(ireq->rmt_port),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 TCP_SYN_RECV,
2287 0, 0, /* could print option size, but that is af dependent. */
2288 1, /* timers active (only the expire timer) */
2289 jiffies_to_clock_t(ttd),
2290 req->retrans,
2291 uid,
2292 0, /* non standard timer */
2293 0, /* open_requests have no inode */
2294 atomic_read(&sk->sk_refcnt),
2295 req);
2296}
2297
Ilpo Järvinencf4c6bf2007-02-22 01:13:58 -08002298static void get_tcp4_sock(struct sock *sk, char *tmpbuf, int i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299{
2300 int timer_active;
2301 unsigned long timer_expires;
Ilpo Järvinencf4c6bf2007-02-22 01:13:58 -08002302 struct tcp_sock *tp = tcp_sk(sk);
2303 const struct inet_connection_sock *icsk = inet_csk(sk);
2304 struct inet_sock *inet = inet_sk(sk);
Al Viro714e85b2006-11-14 20:51:49 -08002305 __be32 dest = inet->daddr;
2306 __be32 src = inet->rcv_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 __u16 destp = ntohs(inet->dport);
2308 __u16 srcp = ntohs(inet->sport);
2309
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002310 if (icsk->icsk_pending == ICSK_TIME_RETRANS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 timer_active = 1;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002312 timer_expires = icsk->icsk_timeout;
2313 } else if (icsk->icsk_pending == ICSK_TIME_PROBE0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 timer_active = 4;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002315 timer_expires = icsk->icsk_timeout;
Ilpo Järvinencf4c6bf2007-02-22 01:13:58 -08002316 } else if (timer_pending(&sk->sk_timer)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 timer_active = 2;
Ilpo Järvinencf4c6bf2007-02-22 01:13:58 -08002318 timer_expires = sk->sk_timer.expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 } else {
2320 timer_active = 0;
2321 timer_expires = jiffies;
2322 }
2323
2324 sprintf(tmpbuf, "%4d: %08X:%04X %08X:%04X %02X %08X:%08X %02X:%08lX "
2325 "%08X %5d %8d %lu %d %p %u %u %u %u %d",
Ilpo Järvinencf4c6bf2007-02-22 01:13:58 -08002326 i, src, srcp, dest, destp, sk->sk_state,
Sridhar Samudrala47da8ee2006-06-27 13:29:00 -07002327 tp->write_seq - tp->snd_una,
Ilpo Järvinencf4c6bf2007-02-22 01:13:58 -08002328 sk->sk_state == TCP_LISTEN ? sk->sk_ack_backlog :
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02002329 (tp->rcv_nxt - tp->copied_seq),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 timer_active,
2331 jiffies_to_clock_t(timer_expires - jiffies),
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002332 icsk->icsk_retransmits,
Ilpo Järvinencf4c6bf2007-02-22 01:13:58 -08002333 sock_i_uid(sk),
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002334 icsk->icsk_probes_out,
Ilpo Järvinencf4c6bf2007-02-22 01:13:58 -08002335 sock_i_ino(sk),
2336 atomic_read(&sk->sk_refcnt), sk,
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002337 icsk->icsk_rto,
2338 icsk->icsk_ack.ato,
2339 (icsk->icsk_ack.quick << 1) | icsk->icsk_ack.pingpong,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 tp->snd_cwnd,
2341 tp->snd_ssthresh >= 0xFFFF ? -1 : tp->snd_ssthresh);
2342}
2343
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02002344static void get_timewait4_sock(struct inet_timewait_sock *tw,
2345 char *tmpbuf, int i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346{
Al Viro23f33c22006-09-27 18:43:50 -07002347 __be32 dest, src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 __u16 destp, srcp;
2349 int ttd = tw->tw_ttd - jiffies;
2350
2351 if (ttd < 0)
2352 ttd = 0;
2353
2354 dest = tw->tw_daddr;
2355 src = tw->tw_rcv_saddr;
2356 destp = ntohs(tw->tw_dport);
2357 srcp = ntohs(tw->tw_sport);
2358
2359 sprintf(tmpbuf, "%4d: %08X:%04X %08X:%04X"
2360 " %02X %08X:%08X %02X:%08lX %08X %5d %8d %d %d %p",
2361 i, src, srcp, dest, destp, tw->tw_substate, 0, 0,
2362 3, jiffies_to_clock_t(ttd), 0, 0, 0, 0,
2363 atomic_read(&tw->tw_refcnt), tw);
2364}
2365
2366#define TMPSZ 150
2367
2368static int tcp4_seq_show(struct seq_file *seq, void *v)
2369{
2370 struct tcp_iter_state* st;
2371 char tmpbuf[TMPSZ + 1];
2372
2373 if (v == SEQ_START_TOKEN) {
2374 seq_printf(seq, "%-*s\n", TMPSZ - 1,
2375 " sl local_address rem_address st tx_queue "
2376 "rx_queue tr tm->when retrnsmt uid timeout "
2377 "inode");
2378 goto out;
2379 }
2380 st = seq->private;
2381
2382 switch (st->state) {
2383 case TCP_SEQ_STATE_LISTENING:
2384 case TCP_SEQ_STATE_ESTABLISHED:
2385 get_tcp4_sock(v, tmpbuf, st->num);
2386 break;
2387 case TCP_SEQ_STATE_OPENREQ:
2388 get_openreq4(st->syn_wait_sk, v, tmpbuf, st->num, st->uid);
2389 break;
2390 case TCP_SEQ_STATE_TIME_WAIT:
2391 get_timewait4_sock(v, tmpbuf, st->num);
2392 break;
2393 }
2394 seq_printf(seq, "%-*s\n", TMPSZ - 1, tmpbuf);
2395out:
2396 return 0;
2397}
2398
2399static struct file_operations tcp4_seq_fops;
2400static struct tcp_seq_afinfo tcp4_seq_afinfo = {
2401 .owner = THIS_MODULE,
2402 .name = "tcp",
2403 .family = AF_INET,
2404 .seq_show = tcp4_seq_show,
2405 .seq_fops = &tcp4_seq_fops,
2406};
2407
2408int __init tcp4_proc_init(void)
2409{
2410 return tcp_proc_register(&tcp4_seq_afinfo);
2411}
2412
2413void tcp4_proc_exit(void)
2414{
2415 tcp_proc_unregister(&tcp4_seq_afinfo);
2416}
2417#endif /* CONFIG_PROC_FS */
2418
2419struct proto tcp_prot = {
2420 .name = "TCP",
2421 .owner = THIS_MODULE,
2422 .close = tcp_close,
2423 .connect = tcp_v4_connect,
2424 .disconnect = tcp_disconnect,
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002425 .accept = inet_csk_accept,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 .ioctl = tcp_ioctl,
2427 .init = tcp_v4_init_sock,
2428 .destroy = tcp_v4_destroy_sock,
2429 .shutdown = tcp_shutdown,
2430 .setsockopt = tcp_setsockopt,
2431 .getsockopt = tcp_getsockopt,
2432 .sendmsg = tcp_sendmsg,
2433 .recvmsg = tcp_recvmsg,
2434 .backlog_rcv = tcp_v4_do_rcv,
2435 .hash = tcp_v4_hash,
2436 .unhash = tcp_unhash,
2437 .get_port = tcp_v4_get_port,
2438 .enter_memory_pressure = tcp_enter_memory_pressure,
2439 .sockets_allocated = &tcp_sockets_allocated,
Arnaldo Carvalho de Melo0a5578c2005-08-09 20:11:41 -07002440 .orphan_count = &tcp_orphan_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 .memory_allocated = &tcp_memory_allocated,
2442 .memory_pressure = &tcp_memory_pressure,
2443 .sysctl_mem = sysctl_tcp_mem,
2444 .sysctl_wmem = sysctl_tcp_wmem,
2445 .sysctl_rmem = sysctl_tcp_rmem,
2446 .max_header = MAX_TCP_HEADER,
2447 .obj_size = sizeof(struct tcp_sock),
Arnaldo Carvalho de Melo6d6ee432005-12-13 23:25:19 -08002448 .twsk_prot = &tcp_timewait_sock_ops,
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -07002449 .rsk_prot = &tcp_request_sock_ops,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08002450#ifdef CONFIG_COMPAT
2451 .compat_setsockopt = compat_tcp_setsockopt,
2452 .compat_getsockopt = compat_tcp_getsockopt,
2453#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454};
2455
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456void __init tcp_v4_init(struct net_proto_family *ops)
2457{
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02002458 if (inet_csk_ctl_sock_create(&tcp_socket, PF_INET, SOCK_RAW,
2459 IPPROTO_TCP) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 panic("Failed to create the TCP control socket.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461}
2462
2463EXPORT_SYMBOL(ipv4_specific);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464EXPORT_SYMBOL(tcp_hashinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465EXPORT_SYMBOL(tcp_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466EXPORT_SYMBOL(tcp_unhash);
2467EXPORT_SYMBOL(tcp_v4_conn_request);
2468EXPORT_SYMBOL(tcp_v4_connect);
2469EXPORT_SYMBOL(tcp_v4_do_rcv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470EXPORT_SYMBOL(tcp_v4_remember_stamp);
2471EXPORT_SYMBOL(tcp_v4_send_check);
2472EXPORT_SYMBOL(tcp_v4_syn_recv_sock);
2473
2474#ifdef CONFIG_PROC_FS
2475EXPORT_SYMBOL(tcp_proc_register);
2476EXPORT_SYMBOL(tcp_proc_unregister);
2477#endif
2478EXPORT_SYMBOL(sysctl_local_port_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479EXPORT_SYMBOL(sysctl_tcp_low_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480