blob: 97e294e8267913477987ef38d473cf5ff534df2c [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);
Wei Dong584bdf82007-05-31 22:49:28 -0700195 if (tmp < 0) {
196 if (tmp == -ENETUNREACH)
197 IP_INC_STATS_BH(IPSTATS_MIB_OUTNOROUTES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 return tmp;
Wei Dong584bdf82007-05-31 22:49:28 -0700199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201 if (rt->rt_flags & (RTCF_MULTICAST | RTCF_BROADCAST)) {
202 ip_rt_put(rt);
203 return -ENETUNREACH;
204 }
205
206 if (!inet->opt || !inet->opt->srr)
207 daddr = rt->rt_dst;
208
209 if (!inet->saddr)
210 inet->saddr = rt->rt_src;
211 inet->rcv_saddr = inet->saddr;
212
213 if (tp->rx_opt.ts_recent_stamp && inet->daddr != daddr) {
214 /* Reset inherited state */
215 tp->rx_opt.ts_recent = 0;
216 tp->rx_opt.ts_recent_stamp = 0;
217 tp->write_seq = 0;
218 }
219
Arnaldo Carvalho de Melo295ff7e2005-08-09 20:44:40 -0700220 if (tcp_death_row.sysctl_tw_recycle &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 !tp->rx_opt.ts_recent_stamp && rt->rt_dst == daddr) {
222 struct inet_peer *peer = rt_get_peer(rt);
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200223 /*
224 * VJ's idea. We save last timestamp seen from
225 * the destination in peer table, when entering state
226 * TIME-WAIT * and initialize rx_opt.ts_recent from it,
227 * when trying new connection.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 */
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200229 if (peer != NULL &&
James Morris9d729f72007-03-04 16:12:44 -0800230 peer->tcp_ts_stamp + TCP_PAWS_MSL >= get_seconds()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 tp->rx_opt.ts_recent_stamp = peer->tcp_ts_stamp;
232 tp->rx_opt.ts_recent = peer->tcp_ts;
233 }
234 }
235
236 inet->dport = usin->sin_port;
237 inet->daddr = daddr;
238
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -0800239 inet_csk(sk)->icsk_ext_hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 if (inet->opt)
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -0800241 inet_csk(sk)->icsk_ext_hdr_len = inet->opt->optlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243 tp->rx_opt.mss_clamp = 536;
244
245 /* Socket identity is still unknown (sport may be zero).
246 * However we set state to SYN-SENT and not releasing socket
247 * lock select source port, enter ourselves into the hash tables and
248 * complete initialization after this.
249 */
250 tcp_set_state(sk, TCP_SYN_SENT);
Arnaldo Carvalho de Meloa7f5e7f2005-12-13 23:25:31 -0800251 err = inet_hash_connect(&tcp_death_row, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 if (err)
253 goto failure;
254
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200255 err = ip_route_newports(&rt, IPPROTO_TCP,
256 inet->sport, inet->dport, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 if (err)
258 goto failure;
259
260 /* OK, now commit destination to socket. */
Herbert Xubcd76112006-06-30 13:36:35 -0700261 sk->sk_gso_type = SKB_GSO_TCPV4;
Arnaldo Carvalho de Melo6cbb0df2005-08-09 19:49:02 -0700262 sk_setup_caps(sk, &rt->u.dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264 if (!tp->write_seq)
265 tp->write_seq = secure_tcp_sequence_number(inet->saddr,
266 inet->daddr,
267 inet->sport,
268 usin->sin_port);
269
270 inet->id = tp->write_seq ^ jiffies;
271
272 err = tcp_connect(sk);
273 rt = NULL;
274 if (err)
275 goto failure;
276
277 return 0;
278
279failure:
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200280 /*
281 * This unhashes the socket and releases the local port,
282 * if necessary.
283 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 tcp_set_state(sk, TCP_CLOSE);
285 ip_rt_put(rt);
286 sk->sk_route_caps = 0;
287 inet->dport = 0;
288 return err;
289}
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291/*
292 * This routine does path mtu discovery as defined in RFC1191.
293 */
Stephen Hemminger40efc6f2006-01-03 16:03:49 -0800294static void do_pmtu_discovery(struct sock *sk, struct iphdr *iph, u32 mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295{
296 struct dst_entry *dst;
297 struct inet_sock *inet = inet_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299 /* We are not interested in TCP_LISTEN and open_requests (SYN-ACKs
300 * send out by Linux are always <576bytes so they should go through
301 * unfragmented).
302 */
303 if (sk->sk_state == TCP_LISTEN)
304 return;
305
306 /* We don't check in the destentry if pmtu discovery is forbidden
307 * on this route. We just assume that no packet_to_big packets
308 * are send back when pmtu discovery is not active.
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900309 * There is a small race when the user changes this flag in the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 * route, but I think that's acceptable.
311 */
312 if ((dst = __sk_dst_check(sk, 0)) == NULL)
313 return;
314
315 dst->ops->update_pmtu(dst, mtu);
316
317 /* Something is about to be wrong... Remember soft error
318 * for the case, if this connection will not able to recover.
319 */
320 if (mtu < dst_mtu(dst) && ip_dont_fragment(sk, dst))
321 sk->sk_err_soft = EMSGSIZE;
322
323 mtu = dst_mtu(dst);
324
325 if (inet->pmtudisc != IP_PMTUDISC_DONT &&
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -0800326 inet_csk(sk)->icsk_pmtu_cookie > mtu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 tcp_sync_mss(sk, mtu);
328
329 /* Resend the TCP packet because it's
330 * clear that the old packet has been
331 * dropped. This is the new "fast" path mtu
332 * discovery.
333 */
334 tcp_simple_retransmit(sk);
335 } /* else let the usual retransmit timer handle it */
336}
337
338/*
339 * This routine is called by the ICMP module when it gets some
340 * sort of error condition. If err < 0 then the socket should
341 * be closed and the error returned to the user. If err > 0
342 * it's just the icmp type << 8 | icmp code. After adjustment
343 * header points to the first 8 bytes of the tcp header. We need
344 * to find the appropriate port.
345 *
346 * The locking strategy used here is very "optimistic". When
347 * someone else accesses the socket the ICMP is just dropped
348 * and for some paths there is no check at all.
349 * A more general error queue to queue errors for later handling
350 * is probably better.
351 *
352 */
353
354void tcp_v4_err(struct sk_buff *skb, u32 info)
355{
356 struct iphdr *iph = (struct iphdr *)skb->data;
357 struct tcphdr *th = (struct tcphdr *)(skb->data + (iph->ihl << 2));
358 struct tcp_sock *tp;
359 struct inet_sock *inet;
Arnaldo Carvalho de Melo88c76642007-03-13 14:43:18 -0300360 const int type = icmp_hdr(skb)->type;
361 const int code = icmp_hdr(skb)->code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 struct sock *sk;
363 __u32 seq;
364 int err;
365
366 if (skb->len < (iph->ihl << 2) + 8) {
367 ICMP_INC_STATS_BH(ICMP_MIB_INERRORS);
368 return;
369 }
370
Arnaldo Carvalho de Meloe48c4142005-08-09 20:09:46 -0700371 sk = inet_lookup(&tcp_hashinfo, iph->daddr, th->dest, iph->saddr,
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700372 th->source, inet_iif(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 if (!sk) {
374 ICMP_INC_STATS_BH(ICMP_MIB_INERRORS);
375 return;
376 }
377 if (sk->sk_state == TCP_TIME_WAIT) {
YOSHIFUJI Hideaki9469c7b2006-10-10 19:41:46 -0700378 inet_twsk_put(inet_twsk(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 return;
380 }
381
382 bh_lock_sock(sk);
383 /* If too many ICMPs get dropped on busy
384 * servers this needs to be solved differently.
385 */
386 if (sock_owned_by_user(sk))
387 NET_INC_STATS_BH(LINUX_MIB_LOCKDROPPEDICMPS);
388
389 if (sk->sk_state == TCP_CLOSE)
390 goto out;
391
392 tp = tcp_sk(sk);
393 seq = ntohl(th->seq);
394 if (sk->sk_state != TCP_LISTEN &&
395 !between(seq, tp->snd_una, tp->snd_nxt)) {
Eric Dumazet06ca7192006-10-20 00:22:25 -0700396 NET_INC_STATS_BH(LINUX_MIB_OUTOFWINDOWICMPS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 goto out;
398 }
399
400 switch (type) {
401 case ICMP_SOURCE_QUENCH:
402 /* Just silently ignore these. */
403 goto out;
404 case ICMP_PARAMETERPROB:
405 err = EPROTO;
406 break;
407 case ICMP_DEST_UNREACH:
408 if (code > NR_ICMP_UNREACH)
409 goto out;
410
411 if (code == ICMP_FRAG_NEEDED) { /* PMTU discovery (RFC1191) */
412 if (!sock_owned_by_user(sk))
413 do_pmtu_discovery(sk, iph, info);
414 goto out;
415 }
416
417 err = icmp_err_convert[code].errno;
418 break;
419 case ICMP_TIME_EXCEEDED:
420 err = EHOSTUNREACH;
421 break;
422 default:
423 goto out;
424 }
425
426 switch (sk->sk_state) {
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -0700427 struct request_sock *req, **prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 case TCP_LISTEN:
429 if (sock_owned_by_user(sk))
430 goto out;
431
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700432 req = inet_csk_search_req(sk, &prev, th->dest,
433 iph->daddr, iph->saddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 if (!req)
435 goto out;
436
437 /* ICMPs are not backlogged, hence we cannot get
438 an established socket here.
439 */
440 BUG_TRAP(!req->sk);
441
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -0700442 if (seq != tcp_rsk(req)->snt_isn) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 NET_INC_STATS_BH(LINUX_MIB_OUTOFWINDOWICMPS);
444 goto out;
445 }
446
447 /*
448 * Still in SYN_RECV, just remove it silently.
449 * There is no good way to pass the error to the newly
450 * created socket, and POSIX does not want network
451 * errors returned from accept().
452 */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700453 inet_csk_reqsk_queue_drop(sk, req, prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 goto out;
455
456 case TCP_SYN_SENT:
457 case TCP_SYN_RECV: /* Cannot happen.
458 It can f.e. if SYNs crossed.
459 */
460 if (!sock_owned_by_user(sk)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 sk->sk_err = err;
462
463 sk->sk_error_report(sk);
464
465 tcp_done(sk);
466 } else {
467 sk->sk_err_soft = err;
468 }
469 goto out;
470 }
471
472 /* If we've already connected we will keep trying
473 * until we time out, or the user gives up.
474 *
475 * rfc1122 4.2.3.9 allows to consider as hard errors
476 * only PROTO_UNREACH and PORT_UNREACH (well, FRAG_FAILED too,
477 * but it is obsoleted by pmtu discovery).
478 *
479 * Note, that in modern internet, where routing is unreliable
480 * and in each dark corner broken firewalls sit, sending random
481 * errors ordered by their masters even this two messages finally lose
482 * their original sense (even Linux sends invalid PORT_UNREACHs)
483 *
484 * Now we are in compliance with RFCs.
485 * --ANK (980905)
486 */
487
488 inet = inet_sk(sk);
489 if (!sock_owned_by_user(sk) && inet->recverr) {
490 sk->sk_err = err;
491 sk->sk_error_report(sk);
492 } else { /* Only an error on timeout */
493 sk->sk_err_soft = err;
494 }
495
496out:
497 bh_unlock_sock(sk);
498 sock_put(sk);
499}
500
501/* This routine computes an IPv4 TCP checksum. */
Arnaldo Carvalho de Melo8292a172005-12-13 23:15:52 -0800502void tcp_v4_send_check(struct sock *sk, int len, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
504 struct inet_sock *inet = inet_sk(sk);
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -0700505 struct tcphdr *th = tcp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
Patrick McHardy84fa7932006-08-29 16:44:56 -0700507 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Frederik Deweerdtba7808e2007-02-04 20:15:27 -0800508 th->check = ~tcp_v4_check(len, inet->saddr,
509 inet->daddr, 0);
Herbert Xu663ead32007-04-09 11:59:07 -0700510 skb->csum_start = skb_transport_header(skb) - skb->head;
Al Viroff1dcad2006-11-20 18:07:29 -0800511 skb->csum_offset = offsetof(struct tcphdr, check);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 } else {
Frederik Deweerdtba7808e2007-02-04 20:15:27 -0800513 th->check = tcp_v4_check(len, inet->saddr, inet->daddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 csum_partial((char *)th,
515 th->doff << 2,
516 skb->csum));
517 }
518}
519
Herbert Xua430a432006-07-08 13:34:56 -0700520int tcp_v4_gso_send_check(struct sk_buff *skb)
521{
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700522 const struct iphdr *iph;
Herbert Xua430a432006-07-08 13:34:56 -0700523 struct tcphdr *th;
524
525 if (!pskb_may_pull(skb, sizeof(*th)))
526 return -EINVAL;
527
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700528 iph = ip_hdr(skb);
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -0700529 th = tcp_hdr(skb);
Herbert Xua430a432006-07-08 13:34:56 -0700530
531 th->check = 0;
Frederik Deweerdtba7808e2007-02-04 20:15:27 -0800532 th->check = ~tcp_v4_check(skb->len, iph->saddr, iph->daddr, 0);
Herbert Xu663ead32007-04-09 11:59:07 -0700533 skb->csum_start = skb_transport_header(skb) - skb->head;
Al Viroff1dcad2006-11-20 18:07:29 -0800534 skb->csum_offset = offsetof(struct tcphdr, check);
Patrick McHardy84fa7932006-08-29 16:44:56 -0700535 skb->ip_summed = CHECKSUM_PARTIAL;
Herbert Xua430a432006-07-08 13:34:56 -0700536 return 0;
537}
538
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539/*
540 * This routine will send an RST to the other tcp.
541 *
542 * Someone asks: why I NEVER use socket parameters (TOS, TTL etc.)
543 * for reset.
544 * Answer: if a packet caused RST, it is not for a socket
545 * existing in our system, if it is matched to a socket,
546 * it is just duplicate segment or bug in other side's TCP.
547 * So that we build reply only basing on parameters
548 * arrived with segment.
549 * Exception: precedence violation. We do not implement it in any case.
550 */
551
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800552static void tcp_v4_send_reset(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -0700554 struct tcphdr *th = tcp_hdr(skb);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800555 struct {
556 struct tcphdr th;
557#ifdef CONFIG_TCP_MD5SIG
Al Viro714e85b2006-11-14 20:51:49 -0800558 __be32 opt[(TCPOLEN_MD5SIG_ALIGNED >> 2)];
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800559#endif
560 } rep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 struct ip_reply_arg arg;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800562#ifdef CONFIG_TCP_MD5SIG
563 struct tcp_md5sig_key *key;
564#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566 /* Never send a reset in response to a reset. */
567 if (th->rst)
568 return;
569
570 if (((struct rtable *)skb->dst)->rt_type != RTN_LOCAL)
571 return;
572
573 /* Swap the send and the receive. */
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800574 memset(&rep, 0, sizeof(rep));
575 rep.th.dest = th->source;
576 rep.th.source = th->dest;
577 rep.th.doff = sizeof(struct tcphdr) / 4;
578 rep.th.rst = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 if (th->ack) {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800581 rep.th.seq = th->ack_seq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 } else {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800583 rep.th.ack = 1;
584 rep.th.ack_seq = htonl(ntohl(th->seq) + th->syn + th->fin +
585 skb->len - (th->doff << 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 }
587
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200588 memset(&arg, 0, sizeof(arg));
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800589 arg.iov[0].iov_base = (unsigned char *)&rep;
590 arg.iov[0].iov_len = sizeof(rep.th);
591
592#ifdef CONFIG_TCP_MD5SIG
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700593 key = sk ? tcp_v4_md5_do_lookup(sk, ip_hdr(skb)->daddr) : NULL;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800594 if (key) {
595 rep.opt[0] = htonl((TCPOPT_NOP << 24) |
596 (TCPOPT_NOP << 16) |
597 (TCPOPT_MD5SIG << 8) |
598 TCPOLEN_MD5SIG);
599 /* Update length and the length the header thinks exists */
600 arg.iov[0].iov_len += TCPOLEN_MD5SIG_ALIGNED;
601 rep.th.doff = arg.iov[0].iov_len / 4;
602
603 tcp_v4_do_calc_md5_hash((__u8 *)&rep.opt[1],
604 key,
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700605 ip_hdr(skb)->daddr,
606 ip_hdr(skb)->saddr,
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800607 &rep.th, IPPROTO_TCP,
608 arg.iov[0].iov_len);
609 }
610#endif
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700611 arg.csum = csum_tcpudp_nofold(ip_hdr(skb)->daddr,
612 ip_hdr(skb)->saddr, /* XXX */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 sizeof(struct tcphdr), IPPROTO_TCP, 0);
614 arg.csumoffset = offsetof(struct tcphdr, check) / 2;
615
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800616 ip_send_reply(tcp_socket->sk, skb, &arg, arg.iov[0].iov_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
618 TCP_INC_STATS_BH(TCP_MIB_OUTSEGS);
619 TCP_INC_STATS_BH(TCP_MIB_OUTRSTS);
620}
621
622/* The code following below sending ACKs in SYN-RECV and TIME-WAIT states
623 outside socket context is ugly, certainly. What can I do?
624 */
625
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800626static void tcp_v4_send_ack(struct tcp_timewait_sock *twsk,
627 struct sk_buff *skb, u32 seq, u32 ack,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 u32 win, u32 ts)
629{
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -0700630 struct tcphdr *th = tcp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 struct {
632 struct tcphdr th;
Al Viro714e85b2006-11-14 20:51:49 -0800633 __be32 opt[(TCPOLEN_TSTAMP_ALIGNED >> 2)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800634#ifdef CONFIG_TCP_MD5SIG
Al Viro714e85b2006-11-14 20:51:49 -0800635 + (TCPOLEN_MD5SIG_ALIGNED >> 2)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800636#endif
637 ];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 } rep;
639 struct ip_reply_arg arg;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800640#ifdef CONFIG_TCP_MD5SIG
641 struct tcp_md5sig_key *key;
642 struct tcp_md5sig_key tw_key;
643#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
645 memset(&rep.th, 0, sizeof(struct tcphdr));
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200646 memset(&arg, 0, sizeof(arg));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
648 arg.iov[0].iov_base = (unsigned char *)&rep;
649 arg.iov[0].iov_len = sizeof(rep.th);
650 if (ts) {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800651 rep.opt[0] = htonl((TCPOPT_NOP << 24) | (TCPOPT_NOP << 16) |
652 (TCPOPT_TIMESTAMP << 8) |
653 TCPOLEN_TIMESTAMP);
654 rep.opt[1] = htonl(tcp_time_stamp);
655 rep.opt[2] = htonl(ts);
Craig Schlentercb48cfe2007-01-09 00:11:15 -0800656 arg.iov[0].iov_len += TCPOLEN_TSTAMP_ALIGNED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 }
658
659 /* Swap the send and the receive. */
660 rep.th.dest = th->source;
661 rep.th.source = th->dest;
662 rep.th.doff = arg.iov[0].iov_len / 4;
663 rep.th.seq = htonl(seq);
664 rep.th.ack_seq = htonl(ack);
665 rep.th.ack = 1;
666 rep.th.window = htons(win);
667
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800668#ifdef CONFIG_TCP_MD5SIG
669 /*
670 * The SKB holds an imcoming packet, but may not have a valid ->sk
671 * pointer. This is especially the case when we're dealing with a
672 * TIME_WAIT ack, because the sk structure is long gone, and only
673 * the tcp_timewait_sock remains. So the md5 key is stashed in that
674 * structure, and we use it in preference. I believe that (twsk ||
675 * skb->sk) holds true, but we program defensively.
676 */
677 if (!twsk && skb->sk) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700678 key = tcp_v4_md5_do_lookup(skb->sk, ip_hdr(skb)->daddr);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800679 } else if (twsk && twsk->tw_md5_keylen) {
680 tw_key.key = twsk->tw_md5_key;
681 tw_key.keylen = twsk->tw_md5_keylen;
682 key = &tw_key;
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200683 } else
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800684 key = NULL;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800685
686 if (key) {
687 int offset = (ts) ? 3 : 0;
688
689 rep.opt[offset++] = htonl((TCPOPT_NOP << 24) |
690 (TCPOPT_NOP << 16) |
691 (TCPOPT_MD5SIG << 8) |
692 TCPOLEN_MD5SIG);
693 arg.iov[0].iov_len += TCPOLEN_MD5SIG_ALIGNED;
694 rep.th.doff = arg.iov[0].iov_len/4;
695
696 tcp_v4_do_calc_md5_hash((__u8 *)&rep.opt[offset],
697 key,
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700698 ip_hdr(skb)->daddr,
699 ip_hdr(skb)->saddr,
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800700 &rep.th, IPPROTO_TCP,
701 arg.iov[0].iov_len);
702 }
703#endif
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700704 arg.csum = csum_tcpudp_nofold(ip_hdr(skb)->daddr,
705 ip_hdr(skb)->saddr, /* XXX */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 arg.iov[0].iov_len, IPPROTO_TCP, 0);
707 arg.csumoffset = offsetof(struct tcphdr, check) / 2;
Patrick McHardyf0e48db2007-06-04 21:32:46 -0700708 if (twsk)
709 arg.bound_dev_if = twsk->tw_sk.tw_bound_dev_if;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711 ip_send_reply(tcp_socket->sk, skb, &arg, arg.iov[0].iov_len);
712
713 TCP_INC_STATS_BH(TCP_MIB_OUTSEGS);
714}
715
716static void tcp_v4_timewait_ack(struct sock *sk, struct sk_buff *skb)
717{
Arnaldo Carvalho de Melo8feaf0c02005-08-09 20:09:30 -0700718 struct inet_timewait_sock *tw = inet_twsk(sk);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800719 struct tcp_timewait_sock *tcptw = tcp_twsk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800721 tcp_v4_send_ack(tcptw, skb, tcptw->tw_snd_nxt, tcptw->tw_rcv_nxt,
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200722 tcptw->tw_rcv_wnd >> tw->tw_rcv_wscale,
723 tcptw->tw_ts_recent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Arnaldo Carvalho de Melo8feaf0c02005-08-09 20:09:30 -0700725 inet_twsk_put(tw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726}
727
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200728static void tcp_v4_reqsk_send_ack(struct sk_buff *skb,
729 struct request_sock *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800731 tcp_v4_send_ack(NULL, skb, tcp_rsk(req)->snt_isn + 1,
732 tcp_rsk(req)->rcv_isn + 1, req->rcv_wnd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 req->ts_recent);
734}
735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736/*
737 * Send a SYN-ACK after having received an ACK.
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -0700738 * This still operates on a request_sock only, not on a big
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 * socket.
740 */
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -0700741static int tcp_v4_send_synack(struct sock *sk, struct request_sock *req,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 struct dst_entry *dst)
743{
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -0700744 const struct inet_request_sock *ireq = inet_rsk(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 int err = -1;
746 struct sk_buff * skb;
747
748 /* First, grab a route. */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700749 if (!dst && (dst = inet_csk_route_req(sk, req)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 goto out;
751
752 skb = tcp_make_synack(sk, dst, req);
753
754 if (skb) {
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -0700755 struct tcphdr *th = tcp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
Frederik Deweerdtba7808e2007-02-04 20:15:27 -0800757 th->check = tcp_v4_check(skb->len,
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -0700758 ireq->loc_addr,
759 ireq->rmt_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 csum_partial((char *)th, skb->len,
761 skb->csum));
762
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -0700763 err = ip_build_and_send_pkt(skb, sk, ireq->loc_addr,
764 ireq->rmt_addr,
765 ireq->opt);
Gerrit Renkerb9df3cb2006-11-14 11:21:36 -0200766 err = net_xmit_eval(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 }
768
769out:
770 dst_release(dst);
771 return err;
772}
773
774/*
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -0700775 * IPv4 request_sock destructor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 */
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -0700777static void tcp_v4_reqsk_destructor(struct request_sock *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
Jesper Juhla51482b2005-11-08 09:41:34 -0800779 kfree(inet_rsk(req)->opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780}
781
Arnaldo Carvalho de Melo80e40da2006-01-04 01:58:06 -0200782#ifdef CONFIG_SYN_COOKIES
Stephen Hemminger40efc6f2006-01-03 16:03:49 -0800783static void syn_flood_warning(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784{
785 static unsigned long warntime;
786
787 if (time_after(jiffies, (warntime + HZ * 60))) {
788 warntime = jiffies;
789 printk(KERN_INFO
790 "possible SYN flooding on port %d. Sending cookies.\n",
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -0700791 ntohs(tcp_hdr(skb)->dest));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 }
793}
Arnaldo Carvalho de Melo80e40da2006-01-04 01:58:06 -0200794#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
796/*
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -0700797 * Save and compile IPv4 options into the request_sock if needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 */
Stephen Hemminger40efc6f2006-01-03 16:03:49 -0800799static struct ip_options *tcp_v4_save_options(struct sock *sk,
800 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801{
802 struct ip_options *opt = &(IPCB(skb)->opt);
803 struct ip_options *dopt = NULL;
804
805 if (opt && opt->optlen) {
806 int opt_size = optlength(opt);
807 dopt = kmalloc(opt_size, GFP_ATOMIC);
808 if (dopt) {
809 if (ip_options_echo(dopt, skb)) {
810 kfree(dopt);
811 dopt = NULL;
812 }
813 }
814 }
815 return dopt;
816}
817
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800818#ifdef CONFIG_TCP_MD5SIG
819/*
820 * RFC2385 MD5 checksumming requires a mapping of
821 * IP address->MD5 Key.
822 * We need to maintain these in the sk structure.
823 */
824
825/* Find the Key structure for an address. */
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200826static struct tcp_md5sig_key *
827 tcp_v4_md5_do_lookup(struct sock *sk, __be32 addr)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800828{
829 struct tcp_sock *tp = tcp_sk(sk);
830 int i;
831
832 if (!tp->md5sig_info || !tp->md5sig_info->entries4)
833 return NULL;
834 for (i = 0; i < tp->md5sig_info->entries4; i++) {
835 if (tp->md5sig_info->keys4[i].addr == addr)
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200836 return (struct tcp_md5sig_key *)
837 &tp->md5sig_info->keys4[i];
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800838 }
839 return NULL;
840}
841
842struct tcp_md5sig_key *tcp_v4_md5_lookup(struct sock *sk,
843 struct sock *addr_sk)
844{
845 return tcp_v4_md5_do_lookup(sk, inet_sk(addr_sk)->daddr);
846}
847
848EXPORT_SYMBOL(tcp_v4_md5_lookup);
849
Adrian Bunkf5b99bc2006-11-30 17:22:29 -0800850static struct tcp_md5sig_key *tcp_v4_reqsk_md5_lookup(struct sock *sk,
851 struct request_sock *req)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800852{
853 return tcp_v4_md5_do_lookup(sk, inet_rsk(req)->rmt_addr);
854}
855
856/* This can be called on a newly created socket, from other files */
857int tcp_v4_md5_do_add(struct sock *sk, __be32 addr,
858 u8 *newkey, u8 newkeylen)
859{
860 /* Add Key to the list */
861 struct tcp4_md5sig_key *key;
862 struct tcp_sock *tp = tcp_sk(sk);
863 struct tcp4_md5sig_key *keys;
864
Arnaldo Carvalho de Melof6685932006-11-17 11:06:01 -0200865 key = (struct tcp4_md5sig_key *)tcp_v4_md5_do_lookup(sk, addr);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800866 if (key) {
867 /* Pre-existing entry - just update that one. */
Arnaldo Carvalho de Melof6685932006-11-17 11:06:01 -0200868 kfree(key->key);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800869 key->key = newkey;
870 key->keylen = newkeylen;
871 } else {
Arnaldo Carvalho de Melof6685932006-11-17 11:06:01 -0200872 struct tcp_md5sig_info *md5sig;
873
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800874 if (!tp->md5sig_info) {
Arnaldo Carvalho de Melof6685932006-11-17 11:06:01 -0200875 tp->md5sig_info = kzalloc(sizeof(*tp->md5sig_info),
876 GFP_ATOMIC);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800877 if (!tp->md5sig_info) {
878 kfree(newkey);
879 return -ENOMEM;
880 }
881 }
882 if (tcp_alloc_md5sig_pool() == NULL) {
883 kfree(newkey);
884 return -ENOMEM;
885 }
Arnaldo Carvalho de Melof6685932006-11-17 11:06:01 -0200886 md5sig = tp->md5sig_info;
887
888 if (md5sig->alloced4 == md5sig->entries4) {
889 keys = kmalloc((sizeof(*keys) *
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900890 (md5sig->entries4 + 1)), GFP_ATOMIC);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800891 if (!keys) {
892 kfree(newkey);
893 tcp_free_md5sig_pool();
894 return -ENOMEM;
895 }
896
Arnaldo Carvalho de Melof6685932006-11-17 11:06:01 -0200897 if (md5sig->entries4)
898 memcpy(keys, md5sig->keys4,
899 sizeof(*keys) * md5sig->entries4);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800900
901 /* Free old key list, and reference new one */
Arnaldo Carvalho de Melof6685932006-11-17 11:06:01 -0200902 if (md5sig->keys4)
903 kfree(md5sig->keys4);
904 md5sig->keys4 = keys;
905 md5sig->alloced4++;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800906 }
Arnaldo Carvalho de Melof6685932006-11-17 11:06:01 -0200907 md5sig->entries4++;
908 md5sig->keys4[md5sig->entries4 - 1].addr = addr;
909 md5sig->keys4[md5sig->entries4 - 1].key = newkey;
910 md5sig->keys4[md5sig->entries4 - 1].keylen = newkeylen;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800911 }
912 return 0;
913}
914
915EXPORT_SYMBOL(tcp_v4_md5_do_add);
916
917static int tcp_v4_md5_add_func(struct sock *sk, struct sock *addr_sk,
918 u8 *newkey, u8 newkeylen)
919{
920 return tcp_v4_md5_do_add(sk, inet_sk(addr_sk)->daddr,
921 newkey, newkeylen);
922}
923
924int tcp_v4_md5_do_del(struct sock *sk, __be32 addr)
925{
926 struct tcp_sock *tp = tcp_sk(sk);
927 int i;
928
929 for (i = 0; i < tp->md5sig_info->entries4; i++) {
930 if (tp->md5sig_info->keys4[i].addr == addr) {
931 /* Free the key */
932 kfree(tp->md5sig_info->keys4[i].key);
933 tp->md5sig_info->entries4--;
934
935 if (tp->md5sig_info->entries4 == 0) {
936 kfree(tp->md5sig_info->keys4);
937 tp->md5sig_info->keys4 = NULL;
Leigh Brown8228a18d2006-12-17 17:12:30 -0800938 tp->md5sig_info->alloced4 = 0;
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200939 } else if (tp->md5sig_info->entries4 != i) {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800940 /* Need to do some manipulation */
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200941 memcpy(&tp->md5sig_info->keys4[i],
942 &tp->md5sig_info->keys4[i+1],
943 (tp->md5sig_info->entries4 - i) *
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900944 sizeof(struct tcp4_md5sig_key));
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800945 }
946 tcp_free_md5sig_pool();
947 return 0;
948 }
949 }
950 return -ENOENT;
951}
952
953EXPORT_SYMBOL(tcp_v4_md5_do_del);
954
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200955static void tcp_v4_clear_md5_list(struct sock *sk)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800956{
957 struct tcp_sock *tp = tcp_sk(sk);
958
959 /* Free each key, then the set of key keys,
960 * the crypto element, and then decrement our
961 * hold on the last resort crypto.
962 */
963 if (tp->md5sig_info->entries4) {
964 int i;
965 for (i = 0; i < tp->md5sig_info->entries4; i++)
966 kfree(tp->md5sig_info->keys4[i].key);
967 tp->md5sig_info->entries4 = 0;
968 tcp_free_md5sig_pool();
969 }
970 if (tp->md5sig_info->keys4) {
971 kfree(tp->md5sig_info->keys4);
972 tp->md5sig_info->keys4 = NULL;
973 tp->md5sig_info->alloced4 = 0;
974 }
975}
976
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200977static int tcp_v4_parse_md5_keys(struct sock *sk, char __user *optval,
978 int optlen)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800979{
980 struct tcp_md5sig cmd;
981 struct sockaddr_in *sin = (struct sockaddr_in *)&cmd.tcpm_addr;
982 u8 *newkey;
983
984 if (optlen < sizeof(cmd))
985 return -EINVAL;
986
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -0200987 if (copy_from_user(&cmd, optval, sizeof(cmd)))
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -0800988 return -EFAULT;
989
990 if (sin->sin_family != AF_INET)
991 return -EINVAL;
992
993 if (!cmd.tcpm_key || !cmd.tcpm_keylen) {
994 if (!tcp_sk(sk)->md5sig_info)
995 return -ENOENT;
996 return tcp_v4_md5_do_del(sk, sin->sin_addr.s_addr);
997 }
998
999 if (cmd.tcpm_keylen > TCP_MD5SIG_MAXKEYLEN)
1000 return -EINVAL;
1001
1002 if (!tcp_sk(sk)->md5sig_info) {
1003 struct tcp_sock *tp = tcp_sk(sk);
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02001004 struct tcp_md5sig_info *p = kzalloc(sizeof(*p), GFP_KERNEL);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001005
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001006 if (!p)
1007 return -EINVAL;
1008
1009 tp->md5sig_info = p;
1010
1011 }
1012
Arnaldo Carvalho de Melof6685932006-11-17 11:06:01 -02001013 newkey = kmemdup(cmd.tcpm_key, cmd.tcpm_keylen, GFP_KERNEL);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001014 if (!newkey)
1015 return -ENOMEM;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001016 return tcp_v4_md5_do_add(sk, sin->sin_addr.s_addr,
1017 newkey, cmd.tcpm_keylen);
1018}
1019
1020static int tcp_v4_do_calc_md5_hash(char *md5_hash, struct tcp_md5sig_key *key,
1021 __be32 saddr, __be32 daddr,
1022 struct tcphdr *th, int protocol,
1023 int tcplen)
1024{
1025 struct scatterlist sg[4];
1026 __u16 data_len;
1027 int block = 0;
Al Viro8e5200f2006-11-20 18:06:37 -08001028 __sum16 old_checksum;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001029 struct tcp_md5sig_pool *hp;
1030 struct tcp4_pseudohdr *bp;
1031 struct hash_desc *desc;
1032 int err;
1033 unsigned int nbytes = 0;
1034
1035 /*
1036 * Okay, so RFC2385 is turned on for this connection,
1037 * so we need to generate the MD5 hash for the packet now.
1038 */
1039
1040 hp = tcp_get_md5sig_pool();
1041 if (!hp)
1042 goto clear_hash_noput;
1043
1044 bp = &hp->md5_blk.ip4;
1045 desc = &hp->md5_desc;
1046
1047 /*
1048 * 1. the TCP pseudo-header (in the order: source IP address,
1049 * destination IP address, zero-padded protocol number, and
1050 * segment length)
1051 */
1052 bp->saddr = saddr;
1053 bp->daddr = daddr;
1054 bp->pad = 0;
1055 bp->protocol = protocol;
1056 bp->len = htons(tcplen);
1057 sg_set_buf(&sg[block++], bp, sizeof(*bp));
1058 nbytes += sizeof(*bp);
1059
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001060 /* 2. the TCP header, excluding options, and assuming a
1061 * checksum of zero/
1062 */
1063 old_checksum = th->check;
1064 th->check = 0;
1065 sg_set_buf(&sg[block++], th, sizeof(struct tcphdr));
1066 nbytes += sizeof(struct tcphdr);
David S. Miller08dd1a52006-11-30 16:35:01 -08001067
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001068 /* 3. the TCP segment data (if any) */
1069 data_len = tcplen - (th->doff << 2);
1070 if (data_len > 0) {
1071 unsigned char *data = (unsigned char *)th + (th->doff << 2);
1072 sg_set_buf(&sg[block++], data, data_len);
1073 nbytes += data_len;
1074 }
1075
1076 /* 4. an independently-specified key or password, known to both
1077 * TCPs and presumably connection-specific
1078 */
1079 sg_set_buf(&sg[block++], key->key, key->keylen);
1080 nbytes += key->keylen;
1081
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001082 /* Now store the Hash into the packet */
1083 err = crypto_hash_init(desc);
1084 if (err)
1085 goto clear_hash;
1086 err = crypto_hash_update(desc, sg, nbytes);
1087 if (err)
1088 goto clear_hash;
1089 err = crypto_hash_final(desc, md5_hash);
1090 if (err)
1091 goto clear_hash;
1092
1093 /* Reset header, and free up the crypto */
1094 tcp_put_md5sig_pool();
1095 th->check = old_checksum;
1096
1097out:
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001098 return 0;
1099clear_hash:
1100 tcp_put_md5sig_pool();
1101clear_hash_noput:
1102 memset(md5_hash, 0, 16);
1103 goto out;
1104}
1105
1106int tcp_v4_calc_md5_hash(char *md5_hash, struct tcp_md5sig_key *key,
1107 struct sock *sk,
1108 struct dst_entry *dst,
1109 struct request_sock *req,
1110 struct tcphdr *th, int protocol,
1111 int tcplen)
1112{
1113 __be32 saddr, daddr;
1114
1115 if (sk) {
1116 saddr = inet_sk(sk)->saddr;
1117 daddr = inet_sk(sk)->daddr;
1118 } else {
1119 struct rtable *rt = (struct rtable *)dst;
1120 BUG_ON(!rt);
1121 saddr = rt->rt_src;
1122 daddr = rt->rt_dst;
1123 }
1124 return tcp_v4_do_calc_md5_hash(md5_hash, key,
1125 saddr, daddr,
1126 th, protocol, tcplen);
1127}
1128
1129EXPORT_SYMBOL(tcp_v4_calc_md5_hash);
1130
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02001131static int tcp_v4_inbound_md5_hash(struct sock *sk, struct sk_buff *skb)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001132{
1133 /*
1134 * This gets called for each TCP segment that arrives
1135 * so we want to be efficient.
1136 * We have 3 drop cases:
1137 * o No MD5 hash and one expected.
1138 * o MD5 hash and we're not expecting one.
1139 * o MD5 hash and its wrong.
1140 */
1141 __u8 *hash_location = NULL;
1142 struct tcp_md5sig_key *hash_expected;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001143 const struct iphdr *iph = ip_hdr(skb);
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001144 struct tcphdr *th = tcp_hdr(skb);
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02001145 int length = (th->doff << 2) - sizeof(struct tcphdr);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001146 int genhash;
1147 unsigned char *ptr;
1148 unsigned char newhash[16];
1149
1150 hash_expected = tcp_v4_md5_do_lookup(sk, iph->saddr);
1151
1152 /*
1153 * If the TCP option length is less than the TCP_MD5SIG
1154 * option length, then we can shortcut
1155 */
1156 if (length < TCPOLEN_MD5SIG) {
1157 if (hash_expected)
1158 return 1;
1159 else
1160 return 0;
1161 }
1162
1163 /* Okay, we can't shortcut - we have to grub through the options */
1164 ptr = (unsigned char *)(th + 1);
1165 while (length > 0) {
1166 int opcode = *ptr++;
1167 int opsize;
1168
1169 switch (opcode) {
1170 case TCPOPT_EOL:
1171 goto done_opts;
1172 case TCPOPT_NOP:
1173 length--;
1174 continue;
1175 default:
1176 opsize = *ptr++;
1177 if (opsize < 2)
1178 goto done_opts;
1179 if (opsize > length)
1180 goto done_opts;
1181
1182 if (opcode == TCPOPT_MD5SIG) {
1183 hash_location = ptr;
1184 goto done_opts;
1185 }
1186 }
1187 ptr += opsize-2;
1188 length -= opsize;
1189 }
1190done_opts:
1191 /* We've parsed the options - do we have a hash? */
1192 if (!hash_expected && !hash_location)
1193 return 0;
1194
1195 if (hash_expected && !hash_location) {
Leigh Browna9fc00c2006-12-17 17:13:10 -08001196 LIMIT_NETDEBUG(KERN_INFO "MD5 Hash expected but NOT found "
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001197 "(" NIPQUAD_FMT ", %d)->(" NIPQUAD_FMT ", %d)\n",
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02001198 NIPQUAD(iph->saddr), ntohs(th->source),
1199 NIPQUAD(iph->daddr), ntohs(th->dest));
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001200 return 1;
1201 }
1202
1203 if (!hash_expected && hash_location) {
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02001204 LIMIT_NETDEBUG(KERN_INFO "MD5 Hash NOT expected but found "
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001205 "(" NIPQUAD_FMT ", %d)->(" NIPQUAD_FMT ", %d)\n",
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02001206 NIPQUAD(iph->saddr), ntohs(th->source),
1207 NIPQUAD(iph->daddr), ntohs(th->dest));
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001208 return 1;
1209 }
1210
1211 /* Okay, so this is hash_expected and hash_location -
1212 * so we need to calculate the checksum.
1213 */
1214 genhash = tcp_v4_do_calc_md5_hash(newhash,
1215 hash_expected,
1216 iph->saddr, iph->daddr,
1217 th, sk->sk_protocol,
1218 skb->len);
1219
1220 if (genhash || memcmp(hash_location, newhash, 16) != 0) {
1221 if (net_ratelimit()) {
1222 printk(KERN_INFO "MD5 Hash failed for "
1223 "(" NIPQUAD_FMT ", %d)->(" NIPQUAD_FMT ", %d)%s\n",
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02001224 NIPQUAD(iph->saddr), ntohs(th->source),
1225 NIPQUAD(iph->daddr), ntohs(th->dest),
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001226 genhash ? " tcp_v4_calc_md5_hash failed" : "");
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001227 }
1228 return 1;
1229 }
1230 return 0;
1231}
1232
1233#endif
1234
Eric Dumazet72a3eff2006-11-16 02:30:37 -08001235struct request_sock_ops tcp_request_sock_ops __read_mostly = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 .family = PF_INET,
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001237 .obj_size = sizeof(struct tcp_request_sock),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 .rtx_syn_ack = tcp_v4_send_synack,
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -07001239 .send_ack = tcp_v4_reqsk_send_ack,
1240 .destructor = tcp_v4_reqsk_destructor,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 .send_reset = tcp_v4_send_reset,
1242};
1243
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001244#ifdef CONFIG_TCP_MD5SIG
Andrew Mortonb6332e62006-11-30 19:16:28 -08001245static struct tcp_request_sock_ops tcp_request_sock_ipv4_ops = {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001246 .md5_lookup = tcp_v4_reqsk_md5_lookup,
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001247};
Andrew Mortonb6332e62006-11-30 19:16:28 -08001248#endif
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001249
Arnaldo Carvalho de Melo6d6ee432005-12-13 23:25:19 -08001250static struct timewait_sock_ops tcp_timewait_sock_ops = {
1251 .twsk_obj_size = sizeof(struct tcp_timewait_sock),
1252 .twsk_unique = tcp_twsk_unique,
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001253 .twsk_destructor= tcp_twsk_destructor,
Arnaldo Carvalho de Melo6d6ee432005-12-13 23:25:19 -08001254};
1255
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256int tcp_v4_conn_request(struct sock *sk, struct sk_buff *skb)
1257{
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001258 struct inet_request_sock *ireq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 struct tcp_options_received tmp_opt;
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -07001260 struct request_sock *req;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001261 __be32 saddr = ip_hdr(skb)->saddr;
1262 __be32 daddr = ip_hdr(skb)->daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 __u32 isn = TCP_SKB_CB(skb)->when;
1264 struct dst_entry *dst = NULL;
1265#ifdef CONFIG_SYN_COOKIES
1266 int want_cookie = 0;
1267#else
1268#define want_cookie 0 /* Argh, why doesn't gcc optimize this :( */
1269#endif
1270
1271 /* Never answer to SYNs send to broadcast or multicast */
1272 if (((struct rtable *)skb->dst)->rt_flags &
1273 (RTCF_BROADCAST | RTCF_MULTICAST))
1274 goto drop;
1275
1276 /* TW buckets are converted to open requests without
1277 * limitations, they conserve resources and peer is
1278 * evidently real one.
1279 */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001280 if (inet_csk_reqsk_queue_is_full(sk) && !isn) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281#ifdef CONFIG_SYN_COOKIES
1282 if (sysctl_tcp_syncookies) {
1283 want_cookie = 1;
1284 } else
1285#endif
1286 goto drop;
1287 }
1288
1289 /* Accept backlog is full. If we have already queued enough
1290 * of warm entries in syn queue, drop request. It is better than
1291 * clogging syn queue with openreqs with exponentially increasing
1292 * timeout.
1293 */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001294 if (sk_acceptq_is_full(sk) && inet_csk_reqsk_queue_young(sk) > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 goto drop;
1296
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -07001297 req = reqsk_alloc(&tcp_request_sock_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 if (!req)
1299 goto drop;
1300
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001301#ifdef CONFIG_TCP_MD5SIG
1302 tcp_rsk(req)->af_specific = &tcp_request_sock_ipv4_ops;
1303#endif
1304
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 tcp_clear_options(&tmp_opt);
1306 tmp_opt.mss_clamp = 536;
1307 tmp_opt.user_mss = tcp_sk(sk)->rx_opt.user_mss;
1308
1309 tcp_parse_options(skb, &tmp_opt, 0);
1310
1311 if (want_cookie) {
1312 tcp_clear_options(&tmp_opt);
1313 tmp_opt.saw_tstamp = 0;
1314 }
1315
1316 if (tmp_opt.saw_tstamp && !tmp_opt.rcv_tsval) {
1317 /* Some OSes (unknown ones, but I see them on web server, which
1318 * contains information interesting only for windows'
1319 * users) do not send their stamp in SYN. It is easy case.
1320 * We simply do not advertise TS support.
1321 */
1322 tmp_opt.saw_tstamp = 0;
1323 tmp_opt.tstamp_ok = 0;
1324 }
1325 tmp_opt.tstamp_ok = tmp_opt.saw_tstamp;
1326
1327 tcp_openreq_init(req, &tmp_opt, skb);
1328
Venkat Yekkirala4237c752006-07-24 23:32:50 -07001329 if (security_inet_conn_request(sk, skb, req))
1330 goto drop_and_free;
1331
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001332 ireq = inet_rsk(req);
1333 ireq->loc_addr = daddr;
1334 ireq->rmt_addr = saddr;
1335 ireq->opt = tcp_v4_save_options(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 if (!want_cookie)
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001337 TCP_ECN_create_request(req, tcp_hdr(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
1339 if (want_cookie) {
1340#ifdef CONFIG_SYN_COOKIES
1341 syn_flood_warning(skb);
1342#endif
1343 isn = cookie_v4_init_sequence(sk, skb, &req->mss);
1344 } else if (!isn) {
1345 struct inet_peer *peer = NULL;
1346
1347 /* VJ's idea. We save last timestamp seen
1348 * from the destination in peer table, when entering
1349 * state TIME-WAIT, and check against it before
1350 * accepting new connection request.
1351 *
1352 * If "isn" is not zero, this request hit alive
1353 * timewait bucket, so that all the necessary checks
1354 * are made in the function processing timewait state.
1355 */
1356 if (tmp_opt.saw_tstamp &&
Arnaldo Carvalho de Melo295ff7e2005-08-09 20:44:40 -07001357 tcp_death_row.sysctl_tw_recycle &&
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001358 (dst = inet_csk_route_req(sk, req)) != NULL &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 (peer = rt_get_peer((struct rtable *)dst)) != NULL &&
1360 peer->v4daddr == saddr) {
James Morris9d729f72007-03-04 16:12:44 -08001361 if (get_seconds() < peer->tcp_ts_stamp + TCP_PAWS_MSL &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 (s32)(peer->tcp_ts - req->ts_recent) >
1363 TCP_PAWS_WINDOW) {
1364 NET_INC_STATS_BH(LINUX_MIB_PAWSPASSIVEREJECTED);
1365 dst_release(dst);
1366 goto drop_and_free;
1367 }
1368 }
1369 /* Kill the following clause, if you dislike this way. */
1370 else if (!sysctl_tcp_syncookies &&
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001371 (sysctl_max_syn_backlog - inet_csk_reqsk_queue_len(sk) <
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 (sysctl_max_syn_backlog >> 2)) &&
1373 (!peer || !peer->tcp_ts_stamp) &&
1374 (!dst || !dst_metric(dst, RTAX_RTT))) {
1375 /* Without syncookies last quarter of
1376 * backlog is filled with destinations,
1377 * proven to be alive.
1378 * It means that we continue to communicate
1379 * to destinations, already remembered
1380 * to the moment of synflood.
1381 */
Patrick McHardy64ce2072005-08-09 20:50:53 -07001382 LIMIT_NETDEBUG(KERN_DEBUG "TCP: drop open "
1383 "request from %u.%u.%u.%u/%u\n",
1384 NIPQUAD(saddr),
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001385 ntohs(tcp_hdr(skb)->source));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 dst_release(dst);
1387 goto drop_and_free;
1388 }
1389
Gerrit Renkera94f7232006-11-10 14:06:49 -08001390 isn = tcp_v4_init_sequence(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 }
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001392 tcp_rsk(req)->snt_isn = isn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
1394 if (tcp_v4_send_synack(sk, req, dst))
1395 goto drop_and_free;
1396
1397 if (want_cookie) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001398 reqsk_free(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 } else {
Arnaldo Carvalho de Melo3f421ba2005-08-09 20:11:08 -07001400 inet_csk_reqsk_queue_hash_add(sk, req, TCP_TIMEOUT_INIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 }
1402 return 0;
1403
1404drop_and_free:
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -07001405 reqsk_free(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406drop:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 return 0;
1408}
1409
1410
1411/*
1412 * The three way handshake has completed - we got a valid synack -
1413 * now create the new socket.
1414 */
1415struct sock *tcp_v4_syn_recv_sock(struct sock *sk, struct sk_buff *skb,
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -07001416 struct request_sock *req,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 struct dst_entry *dst)
1418{
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001419 struct inet_request_sock *ireq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 struct inet_sock *newinet;
1421 struct tcp_sock *newtp;
1422 struct sock *newsk;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001423#ifdef CONFIG_TCP_MD5SIG
1424 struct tcp_md5sig_key *key;
1425#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
1427 if (sk_acceptq_is_full(sk))
1428 goto exit_overflow;
1429
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001430 if (!dst && (dst = inet_csk_route_req(sk, req)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 goto exit;
1432
1433 newsk = tcp_create_openreq_child(sk, req, skb);
1434 if (!newsk)
1435 goto exit;
1436
Herbert Xubcd76112006-06-30 13:36:35 -07001437 newsk->sk_gso_type = SKB_GSO_TCPV4;
Arnaldo Carvalho de Melo6cbb0df2005-08-09 19:49:02 -07001438 sk_setup_caps(newsk, dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
1440 newtp = tcp_sk(newsk);
1441 newinet = inet_sk(newsk);
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07001442 ireq = inet_rsk(req);
1443 newinet->daddr = ireq->rmt_addr;
1444 newinet->rcv_saddr = ireq->loc_addr;
1445 newinet->saddr = ireq->loc_addr;
1446 newinet->opt = ireq->opt;
1447 ireq->opt = NULL;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001448 newinet->mc_index = inet_iif(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001449 newinet->mc_ttl = ip_hdr(skb)->ttl;
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -08001450 inet_csk(newsk)->icsk_ext_hdr_len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 if (newinet->opt)
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -08001452 inet_csk(newsk)->icsk_ext_hdr_len = newinet->opt->optlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 newinet->id = newtp->write_seq ^ jiffies;
1454
John Heffner5d424d52006-03-20 17:53:41 -08001455 tcp_mtup_init(newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 tcp_sync_mss(newsk, dst_mtu(dst));
1457 newtp->advmss = dst_metric(dst, RTAX_ADVMSS);
1458 tcp_initialize_rcv_mss(newsk);
1459
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001460#ifdef CONFIG_TCP_MD5SIG
1461 /* Copy over the MD5 key from the original socket */
1462 if ((key = tcp_v4_md5_do_lookup(sk, newinet->daddr)) != NULL) {
1463 /*
1464 * We're using one, so create a matching key
1465 * on the newsk structure. If we fail to get
1466 * memory, then we end up not copying the key
1467 * across. Shucks.
1468 */
Arnaldo Carvalho de Melof6685932006-11-17 11:06:01 -02001469 char *newkey = kmemdup(key->key, key->keylen, GFP_ATOMIC);
1470 if (newkey != NULL)
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001471 tcp_v4_md5_do_add(newsk, inet_sk(sk)->daddr,
1472 newkey, key->keylen);
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001473 }
1474#endif
1475
Arnaldo Carvalho de Melof3f05f72005-08-09 20:08:09 -07001476 __inet_hash(&tcp_hashinfo, newsk, 0);
Arnaldo Carvalho de Melo2d8c4ce2005-08-09 20:07:13 -07001477 __inet_inherit_port(&tcp_hashinfo, sk, newsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
1479 return newsk;
1480
1481exit_overflow:
1482 NET_INC_STATS_BH(LINUX_MIB_LISTENOVERFLOWS);
1483exit:
1484 NET_INC_STATS_BH(LINUX_MIB_LISTENDROPS);
1485 dst_release(dst);
1486 return NULL;
1487}
1488
1489static struct sock *tcp_v4_hnd_req(struct sock *sk, struct sk_buff *skb)
1490{
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001491 struct tcphdr *th = tcp_hdr(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001492 const struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 struct sock *nsk;
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -07001494 struct request_sock **prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 /* Find possible connection requests. */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001496 struct request_sock *req = inet_csk_search_req(sk, &prev, th->source,
1497 iph->saddr, iph->daddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 if (req)
1499 return tcp_check_req(sk, skb, req, prev);
1500
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001501 nsk = inet_lookup_established(&tcp_hashinfo, iph->saddr, th->source,
1502 iph->daddr, th->dest, inet_iif(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
1504 if (nsk) {
1505 if (nsk->sk_state != TCP_TIME_WAIT) {
1506 bh_lock_sock(nsk);
1507 return nsk;
1508 }
YOSHIFUJI Hideaki9469c7b2006-10-10 19:41:46 -07001509 inet_twsk_put(inet_twsk(nsk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 return NULL;
1511 }
1512
1513#ifdef CONFIG_SYN_COOKIES
1514 if (!th->rst && !th->syn && th->ack)
1515 sk = cookie_v4_check(sk, skb, &(IPCB(skb)->opt));
1516#endif
1517 return sk;
1518}
1519
Al Virob51655b2006-11-14 21:40:42 -08001520static __sum16 tcp_v4_checksum_init(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521{
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001522 const struct iphdr *iph = ip_hdr(skb);
1523
Patrick McHardy84fa7932006-08-29 16:44:56 -07001524 if (skb->ip_summed == CHECKSUM_COMPLETE) {
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001525 if (!tcp_v4_check(skb->len, iph->saddr,
1526 iph->daddr, skb->csum)) {
Herbert Xufb286bb2005-11-10 13:01:24 -08001527 skb->ip_summed = CHECKSUM_UNNECESSARY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 return 0;
Herbert Xufb286bb2005-11-10 13:01:24 -08001529 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 }
Herbert Xufb286bb2005-11-10 13:01:24 -08001531
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001532 skb->csum = csum_tcpudp_nofold(iph->saddr, iph->daddr,
Herbert Xufb286bb2005-11-10 13:01:24 -08001533 skb->len, IPPROTO_TCP, 0);
1534
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 if (skb->len <= 76) {
Herbert Xufb286bb2005-11-10 13:01:24 -08001536 return __skb_checksum_complete(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 }
1538 return 0;
1539}
1540
1541
1542/* The socket must have it's spinlock held when we get
1543 * here.
1544 *
1545 * We have a potential double-lock case here, so even when
1546 * doing backlog processing we use the BH locking scheme.
1547 * This is because we cannot sleep with the original spinlock
1548 * held.
1549 */
1550int tcp_v4_do_rcv(struct sock *sk, struct sk_buff *skb)
1551{
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001552 struct sock *rsk;
1553#ifdef CONFIG_TCP_MD5SIG
1554 /*
1555 * We really want to reject the packet as early as possible
1556 * if:
1557 * o We're expecting an MD5'd packet and this is no MD5 tcp option
1558 * o There is an MD5 option and we're not expecting one
1559 */
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02001560 if (tcp_v4_inbound_md5_hash(sk, skb))
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001561 goto discard;
1562#endif
1563
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 if (sk->sk_state == TCP_ESTABLISHED) { /* Fast path */
1565 TCP_CHECK_TIMER(sk);
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001566 if (tcp_rcv_established(sk, skb, tcp_hdr(skb), skb->len)) {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001567 rsk = sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 goto reset;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 TCP_CHECK_TIMER(sk);
1571 return 0;
1572 }
1573
Arnaldo Carvalho de Meloab6a5bb2007-03-18 17:43:48 -07001574 if (skb->len < tcp_hdrlen(skb) || tcp_checksum_complete(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 goto csum_err;
1576
1577 if (sk->sk_state == TCP_LISTEN) {
1578 struct sock *nsk = tcp_v4_hnd_req(sk, skb);
1579 if (!nsk)
1580 goto discard;
1581
1582 if (nsk != sk) {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001583 if (tcp_child_process(sk, nsk, skb)) {
1584 rsk = nsk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 goto reset;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001586 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 return 0;
1588 }
1589 }
1590
1591 TCP_CHECK_TIMER(sk);
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001592 if (tcp_rcv_state_process(sk, skb, tcp_hdr(skb), skb->len)) {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001593 rsk = sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 goto reset;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001595 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 TCP_CHECK_TIMER(sk);
1597 return 0;
1598
1599reset:
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001600 tcp_v4_send_reset(rsk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601discard:
1602 kfree_skb(skb);
1603 /* Be careful here. If this function gets more complicated and
1604 * gcc suffers from register pressure on the x86, sk (in %ebx)
1605 * might be destroyed here. This current version compiles correctly,
1606 * but you have been warned.
1607 */
1608 return 0;
1609
1610csum_err:
1611 TCP_INC_STATS_BH(TCP_MIB_INERRS);
1612 goto discard;
1613}
1614
1615/*
1616 * From tcp_input.c
1617 */
1618
1619int tcp_v4_rcv(struct sk_buff *skb)
1620{
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001621 const struct iphdr *iph;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 struct tcphdr *th;
1623 struct sock *sk;
1624 int ret;
1625
1626 if (skb->pkt_type != PACKET_HOST)
1627 goto discard_it;
1628
1629 /* Count it even if it's bad */
1630 TCP_INC_STATS_BH(TCP_MIB_INSEGS);
1631
1632 if (!pskb_may_pull(skb, sizeof(struct tcphdr)))
1633 goto discard_it;
1634
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001635 th = tcp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
1637 if (th->doff < sizeof(struct tcphdr) / 4)
1638 goto bad_packet;
1639 if (!pskb_may_pull(skb, th->doff * 4))
1640 goto discard_it;
1641
1642 /* An explanation is required here, I think.
1643 * Packet length and doff are validated by header prediction,
Stephen Hemmingercaa20d9a2005-11-10 17:13:47 -08001644 * provided case of th->doff==0 is eliminated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 * So, we defer the checks. */
Herbert Xu60476372007-04-09 11:59:39 -07001646 if (!skb_csum_unnecessary(skb) && tcp_v4_checksum_init(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 goto bad_packet;
1648
Arnaldo Carvalho de Meloaa8223c2007-04-10 21:04:22 -07001649 th = tcp_hdr(skb);
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001650 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 TCP_SKB_CB(skb)->seq = ntohl(th->seq);
1652 TCP_SKB_CB(skb)->end_seq = (TCP_SKB_CB(skb)->seq + th->syn + th->fin +
1653 skb->len - th->doff * 4);
1654 TCP_SKB_CB(skb)->ack_seq = ntohl(th->ack_seq);
1655 TCP_SKB_CB(skb)->when = 0;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001656 TCP_SKB_CB(skb)->flags = iph->tos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 TCP_SKB_CB(skb)->sacked = 0;
1658
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001659 sk = __inet_lookup(&tcp_hashinfo, iph->saddr, th->source,
1660 iph->daddr, th->dest, inet_iif(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 if (!sk)
1662 goto no_tcp_socket;
1663
1664process:
1665 if (sk->sk_state == TCP_TIME_WAIT)
1666 goto do_time_wait;
1667
1668 if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb))
1669 goto discard_and_relse;
Patrick McHardyb59c2702006-01-06 23:06:10 -08001670 nf_reset(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
Dmitry Mishinfda9ef52006-08-31 15:28:39 -07001672 if (sk_filter(sk, skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 goto discard_and_relse;
1674
1675 skb->dev = NULL;
1676
Ingo Molnarc6366182006-07-03 00:25:13 -07001677 bh_lock_sock_nested(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 ret = 0;
1679 if (!sock_owned_by_user(sk)) {
Chris Leech1a2449a2006-05-23 18:05:53 -07001680#ifdef CONFIG_NET_DMA
1681 struct tcp_sock *tp = tcp_sk(sk);
1682 if (!tp->ucopy.dma_chan && tp->ucopy.pinned_list)
1683 tp->ucopy.dma_chan = get_softnet_dma();
1684 if (tp->ucopy.dma_chan)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 ret = tcp_v4_do_rcv(sk, skb);
Chris Leech1a2449a2006-05-23 18:05:53 -07001686 else
1687#endif
1688 {
1689 if (!tcp_prequeue(sk, skb))
1690 ret = tcp_v4_do_rcv(sk, skb);
1691 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 } else
1693 sk_add_backlog(sk, skb);
1694 bh_unlock_sock(sk);
1695
1696 sock_put(sk);
1697
1698 return ret;
1699
1700no_tcp_socket:
1701 if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb))
1702 goto discard_it;
1703
1704 if (skb->len < (th->doff << 2) || tcp_checksum_complete(skb)) {
1705bad_packet:
1706 TCP_INC_STATS_BH(TCP_MIB_INERRS);
1707 } else {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001708 tcp_v4_send_reset(NULL, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 }
1710
1711discard_it:
1712 /* Discard frame. */
1713 kfree_skb(skb);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001714 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715
1716discard_and_relse:
1717 sock_put(sk);
1718 goto discard_it;
1719
1720do_time_wait:
1721 if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb)) {
YOSHIFUJI Hideaki9469c7b2006-10-10 19:41:46 -07001722 inet_twsk_put(inet_twsk(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 goto discard_it;
1724 }
1725
1726 if (skb->len < (th->doff << 2) || tcp_checksum_complete(skb)) {
1727 TCP_INC_STATS_BH(TCP_MIB_INERRS);
YOSHIFUJI Hideaki9469c7b2006-10-10 19:41:46 -07001728 inet_twsk_put(inet_twsk(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 goto discard_it;
1730 }
YOSHIFUJI Hideaki9469c7b2006-10-10 19:41:46 -07001731 switch (tcp_timewait_state_process(inet_twsk(sk), skb, th)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 case TCP_TW_SYN: {
Arnaldo Carvalho de Melo33b62232005-08-09 20:09:06 -07001733 struct sock *sk2 = inet_lookup_listener(&tcp_hashinfo,
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -07001734 iph->daddr, th->dest,
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001735 inet_iif(skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 if (sk2) {
YOSHIFUJI Hideaki9469c7b2006-10-10 19:41:46 -07001737 inet_twsk_deschedule(inet_twsk(sk), &tcp_death_row);
1738 inet_twsk_put(inet_twsk(sk));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 sk = sk2;
1740 goto process;
1741 }
1742 /* Fall through to ACK */
1743 }
1744 case TCP_TW_ACK:
1745 tcp_v4_timewait_ack(sk, skb);
1746 break;
1747 case TCP_TW_RST:
1748 goto no_tcp_socket;
1749 case TCP_TW_SUCCESS:;
1750 }
1751 goto discard_it;
1752}
1753
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754/* VJ's idea. Save last timestamp seen from this destination
1755 * and hold it at least for normal timewait interval to use for duplicate
1756 * segment detection in subsequent connections, before they enter synchronized
1757 * state.
1758 */
1759
1760int tcp_v4_remember_stamp(struct sock *sk)
1761{
1762 struct inet_sock *inet = inet_sk(sk);
1763 struct tcp_sock *tp = tcp_sk(sk);
1764 struct rtable *rt = (struct rtable *)__sk_dst_get(sk);
1765 struct inet_peer *peer = NULL;
1766 int release_it = 0;
1767
1768 if (!rt || rt->rt_dst != inet->daddr) {
1769 peer = inet_getpeer(inet->daddr, 1);
1770 release_it = 1;
1771 } else {
1772 if (!rt->peer)
1773 rt_bind_peer(rt, 1);
1774 peer = rt->peer;
1775 }
1776
1777 if (peer) {
1778 if ((s32)(peer->tcp_ts - tp->rx_opt.ts_recent) <= 0 ||
James Morris9d729f72007-03-04 16:12:44 -08001779 (peer->tcp_ts_stamp + TCP_PAWS_MSL < get_seconds() &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 peer->tcp_ts_stamp <= tp->rx_opt.ts_recent_stamp)) {
1781 peer->tcp_ts_stamp = tp->rx_opt.ts_recent_stamp;
1782 peer->tcp_ts = tp->rx_opt.ts_recent;
1783 }
1784 if (release_it)
1785 inet_putpeer(peer);
1786 return 1;
1787 }
1788
1789 return 0;
1790}
1791
Arnaldo Carvalho de Melo8feaf0c02005-08-09 20:09:30 -07001792int tcp_v4_tw_remember_stamp(struct inet_timewait_sock *tw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793{
Arnaldo Carvalho de Melo8feaf0c02005-08-09 20:09:30 -07001794 struct inet_peer *peer = inet_getpeer(tw->tw_daddr, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
1796 if (peer) {
Arnaldo Carvalho de Melo8feaf0c02005-08-09 20:09:30 -07001797 const struct tcp_timewait_sock *tcptw = tcp_twsk((struct sock *)tw);
1798
1799 if ((s32)(peer->tcp_ts - tcptw->tw_ts_recent) <= 0 ||
James Morris9d729f72007-03-04 16:12:44 -08001800 (peer->tcp_ts_stamp + TCP_PAWS_MSL < get_seconds() &&
Arnaldo Carvalho de Melo8feaf0c02005-08-09 20:09:30 -07001801 peer->tcp_ts_stamp <= tcptw->tw_ts_recent_stamp)) {
1802 peer->tcp_ts_stamp = tcptw->tw_ts_recent_stamp;
1803 peer->tcp_ts = tcptw->tw_ts_recent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 }
1805 inet_putpeer(peer);
1806 return 1;
1807 }
1808
1809 return 0;
1810}
1811
Arnaldo Carvalho de Melo8292a172005-12-13 23:15:52 -08001812struct inet_connection_sock_af_ops ipv4_specific = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001813 .queue_xmit = ip_queue_xmit,
1814 .send_check = tcp_v4_send_check,
1815 .rebuild_header = inet_sk_rebuild_header,
1816 .conn_request = tcp_v4_conn_request,
1817 .syn_recv_sock = tcp_v4_syn_recv_sock,
1818 .remember_stamp = tcp_v4_remember_stamp,
1819 .net_header_len = sizeof(struct iphdr),
1820 .setsockopt = ip_setsockopt,
1821 .getsockopt = ip_getsockopt,
1822 .addr2sockaddr = inet_csk_addr2sockaddr,
1823 .sockaddr_len = sizeof(struct sockaddr_in),
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001824#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001825 .compat_setsockopt = compat_ip_setsockopt,
1826 .compat_getsockopt = compat_ip_getsockopt,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001827#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828};
1829
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001830#ifdef CONFIG_TCP_MD5SIG
Andrew Mortonb6332e62006-11-30 19:16:28 -08001831static struct tcp_sock_af_ops tcp_sock_ipv4_specific = {
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001832 .md5_lookup = tcp_v4_md5_lookup,
1833 .calc_md5_hash = tcp_v4_calc_md5_hash,
1834 .md5_add = tcp_v4_md5_add_func,
1835 .md5_parse = tcp_v4_parse_md5_keys,
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001836};
Andrew Mortonb6332e62006-11-30 19:16:28 -08001837#endif
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001838
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839/* NOTE: A lot of things set to zero explicitly by call to
1840 * sk_alloc() so need not be done here.
1841 */
1842static int tcp_v4_init_sock(struct sock *sk)
1843{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001844 struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 struct tcp_sock *tp = tcp_sk(sk);
1846
1847 skb_queue_head_init(&tp->out_of_order_queue);
1848 tcp_init_xmit_timers(sk);
1849 tcp_prequeue_init(tp);
1850
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001851 icsk->icsk_rto = TCP_TIMEOUT_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 tp->mdev = TCP_TIMEOUT_INIT;
1853
1854 /* So many TCP implementations out there (incorrectly) count the
1855 * initial SYN frame in their delayed-ACK and congestion control
1856 * algorithms that we must have the following bandaid to talk
1857 * efficiently to them. -DaveM
1858 */
1859 tp->snd_cwnd = 2;
1860
1861 /* See draft-stevens-tcpca-spec-01 for discussion of the
1862 * initialization of these values.
1863 */
1864 tp->snd_ssthresh = 0x7fffffff; /* Infinity */
1865 tp->snd_cwnd_clamp = ~0;
David S. Millerc1b4a7e2005-07-05 15:24:38 -07001866 tp->mss_cache = 536;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
1868 tp->reordering = sysctl_tcp_reordering;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001869 icsk->icsk_ca_ops = &tcp_init_congestion_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
1871 sk->sk_state = TCP_CLOSE;
1872
1873 sk->sk_write_space = sk_stream_write_space;
1874 sock_set_flag(sk, SOCK_USE_WRITE_QUEUE);
1875
Arnaldo Carvalho de Melo8292a172005-12-13 23:15:52 -08001876 icsk->icsk_af_ops = &ipv4_specific;
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -08001877 icsk->icsk_sync_mss = tcp_sync_mss;
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001878#ifdef CONFIG_TCP_MD5SIG
1879 tp->af_specific = &tcp_sock_ipv4_specific;
1880#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
1882 sk->sk_sndbuf = sysctl_tcp_wmem[1];
1883 sk->sk_rcvbuf = sysctl_tcp_rmem[1];
1884
1885 atomic_inc(&tcp_sockets_allocated);
1886
1887 return 0;
1888}
1889
1890int tcp_v4_destroy_sock(struct sock *sk)
1891{
1892 struct tcp_sock *tp = tcp_sk(sk);
1893
1894 tcp_clear_xmit_timers(sk);
1895
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001896 tcp_cleanup_congestion_control(sk);
Stephen Hemminger317a76f2005-06-23 12:19:55 -07001897
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 /* Cleanup up the write buffer. */
David S. Millerfe067e82007-03-07 12:12:44 -08001899 tcp_write_queue_purge(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
1901 /* Cleans up our, hopefully empty, out_of_order_queue. */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001902 __skb_queue_purge(&tp->out_of_order_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08001904#ifdef CONFIG_TCP_MD5SIG
1905 /* Clean up the MD5 key list, if any */
1906 if (tp->md5sig_info) {
1907 tcp_v4_clear_md5_list(sk);
1908 kfree(tp->md5sig_info);
1909 tp->md5sig_info = NULL;
1910 }
1911#endif
1912
Chris Leech1a2449a2006-05-23 18:05:53 -07001913#ifdef CONFIG_NET_DMA
1914 /* Cleans up our sk_async_wait_queue */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001915 __skb_queue_purge(&sk->sk_async_wait_queue);
Chris Leech1a2449a2006-05-23 18:05:53 -07001916#endif
1917
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 /* Clean prequeue, it must be empty really */
1919 __skb_queue_purge(&tp->ucopy.prequeue);
1920
1921 /* Clean up a referenced TCP bind bucket. */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001922 if (inet_csk(sk)->icsk_bind_hash)
Arnaldo Carvalho de Melo2d8c4ce2005-08-09 20:07:13 -07001923 inet_put_port(&tcp_hashinfo, sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924
1925 /*
1926 * If sendmsg cached page exists, toss it.
1927 */
1928 if (sk->sk_sndmsg_page) {
1929 __free_page(sk->sk_sndmsg_page);
1930 sk->sk_sndmsg_page = NULL;
1931 }
1932
1933 atomic_dec(&tcp_sockets_allocated);
1934
1935 return 0;
1936}
1937
1938EXPORT_SYMBOL(tcp_v4_destroy_sock);
1939
1940#ifdef CONFIG_PROC_FS
1941/* Proc filesystem TCP sock list dumping. */
1942
Arnaldo Carvalho de Melo8feaf0c02005-08-09 20:09:30 -07001943static inline struct inet_timewait_sock *tw_head(struct hlist_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944{
1945 return hlist_empty(head) ? NULL :
Arnaldo Carvalho de Melo8feaf0c02005-08-09 20:09:30 -07001946 list_entry(head->first, struct inet_timewait_sock, tw_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947}
1948
Arnaldo Carvalho de Melo8feaf0c02005-08-09 20:09:30 -07001949static inline struct inet_timewait_sock *tw_next(struct inet_timewait_sock *tw)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950{
1951 return tw->tw_node.next ?
1952 hlist_entry(tw->tw_node.next, typeof(*tw), tw_node) : NULL;
1953}
1954
1955static void *listening_get_next(struct seq_file *seq, void *cur)
1956{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001957 struct inet_connection_sock *icsk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 struct hlist_node *node;
1959 struct sock *sk = cur;
1960 struct tcp_iter_state* st = seq->private;
1961
1962 if (!sk) {
1963 st->bucket = 0;
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07001964 sk = sk_head(&tcp_hashinfo.listening_hash[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 goto get_sk;
1966 }
1967
1968 ++st->num;
1969
1970 if (st->state == TCP_SEQ_STATE_OPENREQ) {
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -07001971 struct request_sock *req = cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
Eric Dumazet72a3eff2006-11-16 02:30:37 -08001973 icsk = inet_csk(st->syn_wait_sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 req = req->dl_next;
1975 while (1) {
1976 while (req) {
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -07001977 if (req->rsk_ops->family == st->family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 cur = req;
1979 goto out;
1980 }
1981 req = req->dl_next;
1982 }
Eric Dumazet72a3eff2006-11-16 02:30:37 -08001983 if (++st->sbucket >= icsk->icsk_accept_queue.listen_opt->nr_table_entries)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 break;
1985get_req:
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001986 req = icsk->icsk_accept_queue.listen_opt->syn_table[st->sbucket];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 }
1988 sk = sk_next(st->syn_wait_sk);
1989 st->state = TCP_SEQ_STATE_LISTENING;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001990 read_unlock_bh(&icsk->icsk_accept_queue.syn_wait_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 } else {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001992 icsk = inet_csk(sk);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001993 read_lock_bh(&icsk->icsk_accept_queue.syn_wait_lock);
1994 if (reqsk_queue_len(&icsk->icsk_accept_queue))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 goto start_req;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001996 read_unlock_bh(&icsk->icsk_accept_queue.syn_wait_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 sk = sk_next(sk);
1998 }
1999get_sk:
2000 sk_for_each_from(sk, node) {
2001 if (sk->sk_family == st->family) {
2002 cur = sk;
2003 goto out;
2004 }
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002005 icsk = inet_csk(sk);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002006 read_lock_bh(&icsk->icsk_accept_queue.syn_wait_lock);
2007 if (reqsk_queue_len(&icsk->icsk_accept_queue)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008start_req:
2009 st->uid = sock_i_uid(sk);
2010 st->syn_wait_sk = sk;
2011 st->state = TCP_SEQ_STATE_OPENREQ;
2012 st->sbucket = 0;
2013 goto get_req;
2014 }
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002015 read_unlock_bh(&icsk->icsk_accept_queue.syn_wait_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 }
Arnaldo Carvalho de Melo0f7ff922005-08-09 19:59:44 -07002017 if (++st->bucket < INET_LHTABLE_SIZE) {
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07002018 sk = sk_head(&tcp_hashinfo.listening_hash[st->bucket]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 goto get_sk;
2020 }
2021 cur = NULL;
2022out:
2023 return cur;
2024}
2025
2026static void *listening_get_idx(struct seq_file *seq, loff_t *pos)
2027{
2028 void *rc = listening_get_next(seq, NULL);
2029
2030 while (rc && *pos) {
2031 rc = listening_get_next(seq, rc);
2032 --*pos;
2033 }
2034 return rc;
2035}
2036
2037static void *established_get_first(struct seq_file *seq)
2038{
2039 struct tcp_iter_state* st = seq->private;
2040 void *rc = NULL;
2041
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07002042 for (st->bucket = 0; st->bucket < tcp_hashinfo.ehash_size; ++st->bucket) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 struct sock *sk;
2044 struct hlist_node *node;
Arnaldo Carvalho de Melo8feaf0c02005-08-09 20:09:30 -07002045 struct inet_timewait_sock *tw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
2047 /* We can reschedule _before_ having picked the target: */
2048 cond_resched_softirq();
2049
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07002050 read_lock(&tcp_hashinfo.ehash[st->bucket].lock);
2051 sk_for_each(sk, node, &tcp_hashinfo.ehash[st->bucket].chain) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 if (sk->sk_family != st->family) {
2053 continue;
2054 }
2055 rc = sk;
2056 goto out;
2057 }
2058 st->state = TCP_SEQ_STATE_TIME_WAIT;
Arnaldo Carvalho de Melo8feaf0c02005-08-09 20:09:30 -07002059 inet_twsk_for_each(tw, node,
Eric Dumazetdbca9b2752007-02-08 14:16:46 -08002060 &tcp_hashinfo.ehash[st->bucket].twchain) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 if (tw->tw_family != st->family) {
2062 continue;
2063 }
2064 rc = tw;
2065 goto out;
2066 }
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07002067 read_unlock(&tcp_hashinfo.ehash[st->bucket].lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 st->state = TCP_SEQ_STATE_ESTABLISHED;
2069 }
2070out:
2071 return rc;
2072}
2073
2074static void *established_get_next(struct seq_file *seq, void *cur)
2075{
2076 struct sock *sk = cur;
Arnaldo Carvalho de Melo8feaf0c02005-08-09 20:09:30 -07002077 struct inet_timewait_sock *tw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 struct hlist_node *node;
2079 struct tcp_iter_state* st = seq->private;
2080
2081 ++st->num;
2082
2083 if (st->state == TCP_SEQ_STATE_TIME_WAIT) {
2084 tw = cur;
2085 tw = tw_next(tw);
2086get_tw:
2087 while (tw && tw->tw_family != st->family) {
2088 tw = tw_next(tw);
2089 }
2090 if (tw) {
2091 cur = tw;
2092 goto out;
2093 }
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07002094 read_unlock(&tcp_hashinfo.ehash[st->bucket].lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 st->state = TCP_SEQ_STATE_ESTABLISHED;
2096
2097 /* We can reschedule between buckets: */
2098 cond_resched_softirq();
2099
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07002100 if (++st->bucket < tcp_hashinfo.ehash_size) {
2101 read_lock(&tcp_hashinfo.ehash[st->bucket].lock);
2102 sk = sk_head(&tcp_hashinfo.ehash[st->bucket].chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 } else {
2104 cur = NULL;
2105 goto out;
2106 }
2107 } else
2108 sk = sk_next(sk);
2109
2110 sk_for_each_from(sk, node) {
2111 if (sk->sk_family == st->family)
2112 goto found;
2113 }
2114
2115 st->state = TCP_SEQ_STATE_TIME_WAIT;
Eric Dumazetdbca9b2752007-02-08 14:16:46 -08002116 tw = tw_head(&tcp_hashinfo.ehash[st->bucket].twchain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 goto get_tw;
2118found:
2119 cur = sk;
2120out:
2121 return cur;
2122}
2123
2124static void *established_get_idx(struct seq_file *seq, loff_t pos)
2125{
2126 void *rc = established_get_first(seq);
2127
2128 while (rc && pos) {
2129 rc = established_get_next(seq, rc);
2130 --pos;
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02002131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 return rc;
2133}
2134
2135static void *tcp_get_idx(struct seq_file *seq, loff_t pos)
2136{
2137 void *rc;
2138 struct tcp_iter_state* st = seq->private;
2139
Arnaldo Carvalho de Melof3f05f72005-08-09 20:08:09 -07002140 inet_listen_lock(&tcp_hashinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 st->state = TCP_SEQ_STATE_LISTENING;
2142 rc = listening_get_idx(seq, &pos);
2143
2144 if (!rc) {
Arnaldo Carvalho de Melof3f05f72005-08-09 20:08:09 -07002145 inet_listen_unlock(&tcp_hashinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 local_bh_disable();
2147 st->state = TCP_SEQ_STATE_ESTABLISHED;
2148 rc = established_get_idx(seq, pos);
2149 }
2150
2151 return rc;
2152}
2153
2154static void *tcp_seq_start(struct seq_file *seq, loff_t *pos)
2155{
2156 struct tcp_iter_state* st = seq->private;
2157 st->state = TCP_SEQ_STATE_LISTENING;
2158 st->num = 0;
2159 return *pos ? tcp_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
2160}
2161
2162static void *tcp_seq_next(struct seq_file *seq, void *v, loff_t *pos)
2163{
2164 void *rc = NULL;
2165 struct tcp_iter_state* st;
2166
2167 if (v == SEQ_START_TOKEN) {
2168 rc = tcp_get_idx(seq, 0);
2169 goto out;
2170 }
2171 st = seq->private;
2172
2173 switch (st->state) {
2174 case TCP_SEQ_STATE_OPENREQ:
2175 case TCP_SEQ_STATE_LISTENING:
2176 rc = listening_get_next(seq, v);
2177 if (!rc) {
Arnaldo Carvalho de Melof3f05f72005-08-09 20:08:09 -07002178 inet_listen_unlock(&tcp_hashinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 local_bh_disable();
2180 st->state = TCP_SEQ_STATE_ESTABLISHED;
2181 rc = established_get_first(seq);
2182 }
2183 break;
2184 case TCP_SEQ_STATE_ESTABLISHED:
2185 case TCP_SEQ_STATE_TIME_WAIT:
2186 rc = established_get_next(seq, v);
2187 break;
2188 }
2189out:
2190 ++*pos;
2191 return rc;
2192}
2193
2194static void tcp_seq_stop(struct seq_file *seq, void *v)
2195{
2196 struct tcp_iter_state* st = seq->private;
2197
2198 switch (st->state) {
2199 case TCP_SEQ_STATE_OPENREQ:
2200 if (v) {
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002201 struct inet_connection_sock *icsk = inet_csk(st->syn_wait_sk);
2202 read_unlock_bh(&icsk->icsk_accept_queue.syn_wait_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 }
2204 case TCP_SEQ_STATE_LISTENING:
2205 if (v != SEQ_START_TOKEN)
Arnaldo Carvalho de Melof3f05f72005-08-09 20:08:09 -07002206 inet_listen_unlock(&tcp_hashinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 break;
2208 case TCP_SEQ_STATE_TIME_WAIT:
2209 case TCP_SEQ_STATE_ESTABLISHED:
2210 if (v)
Arnaldo Carvalho de Melo6e04e022005-08-09 20:07:35 -07002211 read_unlock(&tcp_hashinfo.ehash[st->bucket].lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 local_bh_enable();
2213 break;
2214 }
2215}
2216
2217static int tcp_seq_open(struct inode *inode, struct file *file)
2218{
2219 struct tcp_seq_afinfo *afinfo = PDE(inode)->data;
2220 struct seq_file *seq;
2221 struct tcp_iter_state *s;
2222 int rc;
2223
2224 if (unlikely(afinfo == NULL))
2225 return -EINVAL;
2226
Panagiotis Issaris0da974f2006-07-21 14:51:30 -07002227 s = kzalloc(sizeof(*s), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 if (!s)
2229 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 s->family = afinfo->family;
2231 s->seq_ops.start = tcp_seq_start;
2232 s->seq_ops.next = tcp_seq_next;
2233 s->seq_ops.show = afinfo->seq_show;
2234 s->seq_ops.stop = tcp_seq_stop;
2235
2236 rc = seq_open(file, &s->seq_ops);
2237 if (rc)
2238 goto out_kfree;
2239 seq = file->private_data;
2240 seq->private = s;
2241out:
2242 return rc;
2243out_kfree:
2244 kfree(s);
2245 goto out;
2246}
2247
2248int tcp_proc_register(struct tcp_seq_afinfo *afinfo)
2249{
2250 int rc = 0;
2251 struct proc_dir_entry *p;
2252
2253 if (!afinfo)
2254 return -EINVAL;
2255 afinfo->seq_fops->owner = afinfo->owner;
2256 afinfo->seq_fops->open = tcp_seq_open;
2257 afinfo->seq_fops->read = seq_read;
2258 afinfo->seq_fops->llseek = seq_lseek;
2259 afinfo->seq_fops->release = seq_release_private;
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02002260
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 p = proc_net_fops_create(afinfo->name, S_IRUGO, afinfo->seq_fops);
2262 if (p)
2263 p->data = afinfo;
2264 else
2265 rc = -ENOMEM;
2266 return rc;
2267}
2268
2269void tcp_proc_unregister(struct tcp_seq_afinfo *afinfo)
2270{
2271 if (!afinfo)
2272 return;
2273 proc_net_remove(afinfo->name);
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02002274 memset(afinfo->seq_fops, 0, sizeof(*afinfo->seq_fops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275}
2276
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -07002277static void get_openreq4(struct sock *sk, struct request_sock *req,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 char *tmpbuf, int i, int uid)
2279{
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07002280 const struct inet_request_sock *ireq = inet_rsk(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 int ttd = req->expires - jiffies;
2282
2283 sprintf(tmpbuf, "%4d: %08X:%04X %08X:%04X"
2284 " %02X %08X:%08X %02X:%08lX %08X %5d %8d %u %d %p",
2285 i,
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07002286 ireq->loc_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 ntohs(inet_sk(sk)->sport),
Arnaldo Carvalho de Melo2e6599c2005-06-18 22:46:52 -07002288 ireq->rmt_addr,
2289 ntohs(ireq->rmt_port),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 TCP_SYN_RECV,
2291 0, 0, /* could print option size, but that is af dependent. */
2292 1, /* timers active (only the expire timer) */
2293 jiffies_to_clock_t(ttd),
2294 req->retrans,
2295 uid,
2296 0, /* non standard timer */
2297 0, /* open_requests have no inode */
2298 atomic_read(&sk->sk_refcnt),
2299 req);
2300}
2301
Ilpo Järvinencf4c6bf2007-02-22 01:13:58 -08002302static void get_tcp4_sock(struct sock *sk, char *tmpbuf, int i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303{
2304 int timer_active;
2305 unsigned long timer_expires;
Ilpo Järvinencf4c6bf2007-02-22 01:13:58 -08002306 struct tcp_sock *tp = tcp_sk(sk);
2307 const struct inet_connection_sock *icsk = inet_csk(sk);
2308 struct inet_sock *inet = inet_sk(sk);
Al Viro714e85b2006-11-14 20:51:49 -08002309 __be32 dest = inet->daddr;
2310 __be32 src = inet->rcv_saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 __u16 destp = ntohs(inet->dport);
2312 __u16 srcp = ntohs(inet->sport);
2313
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002314 if (icsk->icsk_pending == ICSK_TIME_RETRANS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 timer_active = 1;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002316 timer_expires = icsk->icsk_timeout;
2317 } else if (icsk->icsk_pending == ICSK_TIME_PROBE0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 timer_active = 4;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002319 timer_expires = icsk->icsk_timeout;
Ilpo Järvinencf4c6bf2007-02-22 01:13:58 -08002320 } else if (timer_pending(&sk->sk_timer)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 timer_active = 2;
Ilpo Järvinencf4c6bf2007-02-22 01:13:58 -08002322 timer_expires = sk->sk_timer.expires;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 } else {
2324 timer_active = 0;
2325 timer_expires = jiffies;
2326 }
2327
2328 sprintf(tmpbuf, "%4d: %08X:%04X %08X:%04X %02X %08X:%08X %02X:%08lX "
2329 "%08X %5d %8d %lu %d %p %u %u %u %u %d",
Ilpo Järvinencf4c6bf2007-02-22 01:13:58 -08002330 i, src, srcp, dest, destp, sk->sk_state,
Sridhar Samudrala47da8ee2006-06-27 13:29:00 -07002331 tp->write_seq - tp->snd_una,
Ilpo Järvinencf4c6bf2007-02-22 01:13:58 -08002332 sk->sk_state == TCP_LISTEN ? sk->sk_ack_backlog :
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02002333 (tp->rcv_nxt - tp->copied_seq),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 timer_active,
2335 jiffies_to_clock_t(timer_expires - jiffies),
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002336 icsk->icsk_retransmits,
Ilpo Järvinencf4c6bf2007-02-22 01:13:58 -08002337 sock_i_uid(sk),
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002338 icsk->icsk_probes_out,
Ilpo Järvinencf4c6bf2007-02-22 01:13:58 -08002339 sock_i_ino(sk),
2340 atomic_read(&sk->sk_refcnt), sk,
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002341 icsk->icsk_rto,
2342 icsk->icsk_ack.ato,
2343 (icsk->icsk_ack.quick << 1) | icsk->icsk_ack.pingpong,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 tp->snd_cwnd,
2345 tp->snd_ssthresh >= 0xFFFF ? -1 : tp->snd_ssthresh);
2346}
2347
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02002348static void get_timewait4_sock(struct inet_timewait_sock *tw,
2349 char *tmpbuf, int i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350{
Al Viro23f33c22006-09-27 18:43:50 -07002351 __be32 dest, src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 __u16 destp, srcp;
2353 int ttd = tw->tw_ttd - jiffies;
2354
2355 if (ttd < 0)
2356 ttd = 0;
2357
2358 dest = tw->tw_daddr;
2359 src = tw->tw_rcv_saddr;
2360 destp = ntohs(tw->tw_dport);
2361 srcp = ntohs(tw->tw_sport);
2362
2363 sprintf(tmpbuf, "%4d: %08X:%04X %08X:%04X"
2364 " %02X %08X:%08X %02X:%08lX %08X %5d %8d %d %d %p",
2365 i, src, srcp, dest, destp, tw->tw_substate, 0, 0,
2366 3, jiffies_to_clock_t(ttd), 0, 0, 0, 0,
2367 atomic_read(&tw->tw_refcnt), tw);
2368}
2369
2370#define TMPSZ 150
2371
2372static int tcp4_seq_show(struct seq_file *seq, void *v)
2373{
2374 struct tcp_iter_state* st;
2375 char tmpbuf[TMPSZ + 1];
2376
2377 if (v == SEQ_START_TOKEN) {
2378 seq_printf(seq, "%-*s\n", TMPSZ - 1,
2379 " sl local_address rem_address st tx_queue "
2380 "rx_queue tr tm->when retrnsmt uid timeout "
2381 "inode");
2382 goto out;
2383 }
2384 st = seq->private;
2385
2386 switch (st->state) {
2387 case TCP_SEQ_STATE_LISTENING:
2388 case TCP_SEQ_STATE_ESTABLISHED:
2389 get_tcp4_sock(v, tmpbuf, st->num);
2390 break;
2391 case TCP_SEQ_STATE_OPENREQ:
2392 get_openreq4(st->syn_wait_sk, v, tmpbuf, st->num, st->uid);
2393 break;
2394 case TCP_SEQ_STATE_TIME_WAIT:
2395 get_timewait4_sock(v, tmpbuf, st->num);
2396 break;
2397 }
2398 seq_printf(seq, "%-*s\n", TMPSZ - 1, tmpbuf);
2399out:
2400 return 0;
2401}
2402
2403static struct file_operations tcp4_seq_fops;
2404static struct tcp_seq_afinfo tcp4_seq_afinfo = {
2405 .owner = THIS_MODULE,
2406 .name = "tcp",
2407 .family = AF_INET,
2408 .seq_show = tcp4_seq_show,
2409 .seq_fops = &tcp4_seq_fops,
2410};
2411
2412int __init tcp4_proc_init(void)
2413{
2414 return tcp_proc_register(&tcp4_seq_afinfo);
2415}
2416
2417void tcp4_proc_exit(void)
2418{
2419 tcp_proc_unregister(&tcp4_seq_afinfo);
2420}
2421#endif /* CONFIG_PROC_FS */
2422
2423struct proto tcp_prot = {
2424 .name = "TCP",
2425 .owner = THIS_MODULE,
2426 .close = tcp_close,
2427 .connect = tcp_v4_connect,
2428 .disconnect = tcp_disconnect,
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002429 .accept = inet_csk_accept,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 .ioctl = tcp_ioctl,
2431 .init = tcp_v4_init_sock,
2432 .destroy = tcp_v4_destroy_sock,
2433 .shutdown = tcp_shutdown,
2434 .setsockopt = tcp_setsockopt,
2435 .getsockopt = tcp_getsockopt,
2436 .sendmsg = tcp_sendmsg,
2437 .recvmsg = tcp_recvmsg,
2438 .backlog_rcv = tcp_v4_do_rcv,
2439 .hash = tcp_v4_hash,
2440 .unhash = tcp_unhash,
2441 .get_port = tcp_v4_get_port,
2442 .enter_memory_pressure = tcp_enter_memory_pressure,
2443 .sockets_allocated = &tcp_sockets_allocated,
Arnaldo Carvalho de Melo0a5578c2005-08-09 20:11:41 -07002444 .orphan_count = &tcp_orphan_count,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 .memory_allocated = &tcp_memory_allocated,
2446 .memory_pressure = &tcp_memory_pressure,
2447 .sysctl_mem = sysctl_tcp_mem,
2448 .sysctl_wmem = sysctl_tcp_wmem,
2449 .sysctl_rmem = sysctl_tcp_rmem,
2450 .max_header = MAX_TCP_HEADER,
2451 .obj_size = sizeof(struct tcp_sock),
Arnaldo Carvalho de Melo6d6ee432005-12-13 23:25:19 -08002452 .twsk_prot = &tcp_timewait_sock_ops,
Arnaldo Carvalho de Melo60236fd2005-06-18 22:47:21 -07002453 .rsk_prot = &tcp_request_sock_ops,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08002454#ifdef CONFIG_COMPAT
2455 .compat_setsockopt = compat_tcp_setsockopt,
2456 .compat_getsockopt = compat_tcp_getsockopt,
2457#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458};
2459
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460void __init tcp_v4_init(struct net_proto_family *ops)
2461{
Arnaldo Carvalho de Melo71742592006-11-17 10:57:30 -02002462 if (inet_csk_ctl_sock_create(&tcp_socket, PF_INET, SOCK_RAW,
2463 IPPROTO_TCP) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 panic("Failed to create the TCP control socket.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465}
2466
2467EXPORT_SYMBOL(ipv4_specific);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468EXPORT_SYMBOL(tcp_hashinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469EXPORT_SYMBOL(tcp_prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470EXPORT_SYMBOL(tcp_unhash);
2471EXPORT_SYMBOL(tcp_v4_conn_request);
2472EXPORT_SYMBOL(tcp_v4_connect);
2473EXPORT_SYMBOL(tcp_v4_do_rcv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474EXPORT_SYMBOL(tcp_v4_remember_stamp);
2475EXPORT_SYMBOL(tcp_v4_send_check);
2476EXPORT_SYMBOL(tcp_v4_syn_recv_sock);
2477
2478#ifdef CONFIG_PROC_FS
2479EXPORT_SYMBOL(tcp_proc_register);
2480EXPORT_SYMBOL(tcp_proc_unregister);
2481#endif
2482EXPORT_SYMBOL(sysctl_local_port_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483EXPORT_SYMBOL(sysctl_tcp_low_latency);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484