blob: 561e5d4049886e7d24dd7b7bdd4ef1a564d9375d [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_input.c,v 1.243 2002/02/01 22:01:04 davem Exp $
9 *
Jesper Juhl02c30a82005-05-05 16:16:16 -070010 * Authors: Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
12 * Mark Evans, <evansmp@uhura.aston.ac.uk>
13 * Corey Minyard <wf-rch!minyard@relay.EU.net>
14 * Florian La Roche, <flla@stud.uni-sb.de>
15 * Charles Hedrick, <hedrick@klinzhai.rutgers.edu>
16 * Linus Torvalds, <torvalds@cs.helsinki.fi>
17 * Alan Cox, <gw4pts@gw4pts.ampr.org>
18 * Matthew Dillon, <dillon@apollo.west.oic.com>
19 * Arnt Gulbrandsen, <agulbra@nvg.unit.no>
20 * Jorge Cwik, <jorge@laser.satlink.net>
21 */
22
23/*
24 * Changes:
25 * Pedro Roque : Fast Retransmit/Recovery.
26 * Two receive queues.
27 * Retransmit queue handled by TCP.
28 * Better retransmit timer handling.
29 * New congestion avoidance.
30 * Header prediction.
31 * Variable renaming.
32 *
33 * Eric : Fast Retransmit.
34 * Randy Scott : MSS option defines.
35 * Eric Schenk : Fixes to slow start algorithm.
36 * Eric Schenk : Yet another double ACK bug.
37 * Eric Schenk : Delayed ACK bug fixes.
38 * Eric Schenk : Floyd style fast retrans war avoidance.
39 * David S. Miller : Don't allow zero congestion window.
40 * Eric Schenk : Fix retransmitter so that it sends
41 * next packet on ack of previous packet.
42 * Andi Kleen : Moved open_request checking here
43 * and process RSTs for open_requests.
44 * Andi Kleen : Better prune_queue, and other fixes.
Stephen Hemmingercaa20d9a2005-11-10 17:13:47 -080045 * Andrey Savochkin: Fix RTT measurements in the presence of
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * timestamps.
47 * Andrey Savochkin: Check sequence numbers correctly when
48 * removing SACKs due to in sequence incoming
49 * data segments.
50 * Andi Kleen: Make sure we never ack data there is not
51 * enough room for. Also make this condition
52 * a fatal error if it might still happen.
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090053 * Andi Kleen: Add tcp_measure_rcv_mss to make
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 * connections with MSS<min(MTU,ann. MSS)
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +090055 * work without delayed acks.
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 * Andi Kleen: Process packets with PSH set in the
57 * fast path.
58 * J Hadi Salim: ECN support
59 * Andrei Gurtov,
60 * Pasi Sarolahti,
61 * Panu Kuhlberg: Experimental audit of TCP (re)transmission
62 * engine. Lots of bugs are found.
63 * Pasi Sarolahti: F-RTO for dealing with spurious RTOs
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 */
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#include <linux/mm.h>
67#include <linux/module.h>
68#include <linux/sysctl.h>
69#include <net/tcp.h>
70#include <net/inet_common.h>
71#include <linux/ipsec.h>
72#include <asm/unaligned.h>
Chris Leech1a2449a2006-05-23 18:05:53 -070073#include <net/netdma.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Brian Haleyab32ea52006-09-22 14:15:41 -070075int sysctl_tcp_timestamps __read_mostly = 1;
76int sysctl_tcp_window_scaling __read_mostly = 1;
77int sysctl_tcp_sack __read_mostly = 1;
78int sysctl_tcp_fack __read_mostly = 1;
79int sysctl_tcp_reordering __read_mostly = TCP_FASTRETRANS_THRESH;
80int sysctl_tcp_ecn __read_mostly;
81int sysctl_tcp_dsack __read_mostly = 1;
82int sysctl_tcp_app_win __read_mostly = 31;
83int sysctl_tcp_adv_win_scale __read_mostly = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Brian Haleyab32ea52006-09-22 14:15:41 -070085int sysctl_tcp_stdurg __read_mostly;
86int sysctl_tcp_rfc1337 __read_mostly;
87int sysctl_tcp_max_orphans __read_mostly = NR_FILE;
88int sysctl_tcp_frto __read_mostly;
89int sysctl_tcp_nometrics_save __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Brian Haleyab32ea52006-09-22 14:15:41 -070091int sysctl_tcp_moderate_rcvbuf __read_mostly = 1;
92int sysctl_tcp_abc __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#define FLAG_DATA 0x01 /* Incoming frame contained data. */
95#define FLAG_WIN_UPDATE 0x02 /* Incoming ACK was a window update. */
96#define FLAG_DATA_ACKED 0x04 /* This ACK acknowledged new data. */
97#define FLAG_RETRANS_DATA_ACKED 0x08 /* "" "" some of which was retransmitted. */
98#define FLAG_SYN_ACKED 0x10 /* This ACK acknowledged SYN. */
99#define FLAG_DATA_SACKED 0x20 /* New SACK. */
100#define FLAG_ECE 0x40 /* ECE in this ACK */
101#define FLAG_DATA_LOST 0x80 /* SACK detected data lossage. */
102#define FLAG_SLOWPATH 0x100 /* Do not skip RFC checks for window update.*/
103
104#define FLAG_ACKED (FLAG_DATA_ACKED|FLAG_SYN_ACKED)
105#define FLAG_NOT_DUP (FLAG_DATA|FLAG_WIN_UPDATE|FLAG_ACKED)
106#define FLAG_CA_ALERT (FLAG_DATA_SACKED|FLAG_ECE)
107#define FLAG_FORWARD_PROGRESS (FLAG_ACKED|FLAG_DATA_SACKED)
108
109#define IsReno(tp) ((tp)->rx_opt.sack_ok == 0)
110#define IsFack(tp) ((tp)->rx_opt.sack_ok & 2)
111#define IsDSack(tp) ((tp)->rx_opt.sack_ok & 4)
112
113#define TCP_REMNANT (TCP_FLAG_FIN|TCP_FLAG_URG|TCP_FLAG_SYN|TCP_FLAG_PSH)
114
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900115/* Adapt the MSS value used to make delayed ack decision to the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 * real world.
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900117 */
Stephen Hemminger40efc6f2006-01-03 16:03:49 -0800118static void tcp_measure_rcv_mss(struct sock *sk,
119 const struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700121 struct inet_connection_sock *icsk = inet_csk(sk);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900122 const unsigned int lss = icsk->icsk_ack.last_seg_size;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700123 unsigned int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900125 icsk->icsk_ack.last_seg_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127 /* skb->len may jitter because of SACKs, even if peer
128 * sends good full-sized frames.
129 */
Herbert Xuff9b5e02006-08-31 15:11:02 -0700130 len = skb_shinfo(skb)->gso_size ?: skb->len;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700131 if (len >= icsk->icsk_ack.rcv_mss) {
132 icsk->icsk_ack.rcv_mss = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 } else {
134 /* Otherwise, we make more careful check taking into account,
135 * that SACKs block is variable.
136 *
137 * "len" is invariant segment length, including TCP header.
138 */
139 len += skb->data - skb->h.raw;
140 if (len >= TCP_MIN_RCVMSS + sizeof(struct tcphdr) ||
141 /* If PSH is not set, packet should be
142 * full sized, provided peer TCP is not badly broken.
143 * This observation (if it is correct 8)) allows
144 * to handle super-low mtu links fairly.
145 */
146 (len >= TCP_MIN_MSS + sizeof(struct tcphdr) &&
147 !(tcp_flag_word(skb->h.th)&TCP_REMNANT))) {
148 /* Subtract also invariant (if peer is RFC compliant),
149 * tcp header plus fixed timestamp option length.
150 * Resulting "len" is MSS free of SACK jitter.
151 */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700152 len -= tcp_sk(sk)->tcp_header_len;
153 icsk->icsk_ack.last_seg_size = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 if (len == lss) {
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700155 icsk->icsk_ack.rcv_mss = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 return;
157 }
158 }
Alexey Kuznetsov1ef96962006-09-19 12:52:50 -0700159 if (icsk->icsk_ack.pending & ICSK_ACK_PUSHED)
160 icsk->icsk_ack.pending |= ICSK_ACK_PUSHED2;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700161 icsk->icsk_ack.pending |= ICSK_ACK_PUSHED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 }
163}
164
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700165static void tcp_incr_quickack(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700167 struct inet_connection_sock *icsk = inet_csk(sk);
168 unsigned quickacks = tcp_sk(sk)->rcv_wnd / (2 * icsk->icsk_ack.rcv_mss);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 if (quickacks==0)
171 quickacks=2;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700172 if (quickacks > icsk->icsk_ack.quick)
173 icsk->icsk_ack.quick = min(quickacks, TCP_MAX_QUICKACKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174}
175
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700176void tcp_enter_quickack_mode(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700178 struct inet_connection_sock *icsk = inet_csk(sk);
179 tcp_incr_quickack(sk);
180 icsk->icsk_ack.pingpong = 0;
181 icsk->icsk_ack.ato = TCP_ATO_MIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182}
183
184/* Send ACKs quickly, if "quick" count is not exhausted
185 * and the session is not interactive.
186 */
187
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700188static inline int tcp_in_quickack_mode(const struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700190 const struct inet_connection_sock *icsk = inet_csk(sk);
191 return icsk->icsk_ack.quick && !icsk->icsk_ack.pingpong;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192}
193
194/* Buffer size and advertised window tuning.
195 *
196 * 1. Tuning sk->sk_sndbuf, when connection enters established state.
197 */
198
199static void tcp_fixup_sndbuf(struct sock *sk)
200{
201 int sndmem = tcp_sk(sk)->rx_opt.mss_clamp + MAX_TCP_HEADER + 16 +
202 sizeof(struct sk_buff);
203
204 if (sk->sk_sndbuf < 3 * sndmem)
205 sk->sk_sndbuf = min(3 * sndmem, sysctl_tcp_wmem[2]);
206}
207
208/* 2. Tuning advertised window (window_clamp, rcv_ssthresh)
209 *
210 * All tcp_full_space() is split to two parts: "network" buffer, allocated
211 * forward and advertised in receiver window (tp->rcv_wnd) and
212 * "application buffer", required to isolate scheduling/application
213 * latencies from network.
214 * window_clamp is maximal advertised window. It can be less than
215 * tcp_full_space(), in this case tcp_full_space() - window_clamp
216 * is reserved for "application" buffer. The less window_clamp is
217 * the smoother our behaviour from viewpoint of network, but the lower
218 * throughput and the higher sensitivity of the connection to losses. 8)
219 *
220 * rcv_ssthresh is more strict window_clamp used at "slow start"
221 * phase to predict further behaviour of this connection.
222 * It is used for two goals:
223 * - to enforce header prediction at sender, even when application
224 * requires some significant "application buffer". It is check #1.
225 * - to prevent pruning of receive queue because of misprediction
226 * of receiver window. Check #2.
227 *
228 * The scheme does not work when sender sends good segments opening
Stephen Hemmingercaa20d9a2005-11-10 17:13:47 -0800229 * window and then starts to feed us spaghetti. But it should work
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 * in common situations. Otherwise, we have to rely on queue collapsing.
231 */
232
233/* Slow part of check#2. */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700234static int __tcp_grow_window(const struct sock *sk, struct tcp_sock *tp,
235 const struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236{
237 /* Optimize this! */
238 int truesize = tcp_win_from_space(skb->truesize)/2;
John Heffner326f36e2005-11-10 17:11:48 -0800239 int window = tcp_win_from_space(sysctl_tcp_rmem[2])/2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 while (tp->rcv_ssthresh <= window) {
242 if (truesize <= skb->len)
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700243 return 2 * inet_csk(sk)->icsk_ack.rcv_mss;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245 truesize >>= 1;
246 window >>= 1;
247 }
248 return 0;
249}
250
Stephen Hemminger40efc6f2006-01-03 16:03:49 -0800251static void tcp_grow_window(struct sock *sk, struct tcp_sock *tp,
252 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
254 /* Check #1 */
255 if (tp->rcv_ssthresh < tp->window_clamp &&
256 (int)tp->rcv_ssthresh < tcp_space(sk) &&
257 !tcp_memory_pressure) {
258 int incr;
259
260 /* Check #2. Increase window, if skb with such overhead
261 * will fit to rcvbuf in future.
262 */
263 if (tcp_win_from_space(skb->truesize) <= skb->len)
264 incr = 2*tp->advmss;
265 else
266 incr = __tcp_grow_window(sk, tp, skb);
267
268 if (incr) {
269 tp->rcv_ssthresh = min(tp->rcv_ssthresh + incr, tp->window_clamp);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700270 inet_csk(sk)->icsk_ack.quick |= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 }
272 }
273}
274
275/* 3. Tuning rcvbuf, when connection enters established state. */
276
277static void tcp_fixup_rcvbuf(struct sock *sk)
278{
279 struct tcp_sock *tp = tcp_sk(sk);
280 int rcvmem = tp->advmss + MAX_TCP_HEADER + 16 + sizeof(struct sk_buff);
281
282 /* Try to select rcvbuf so that 4 mss-sized segments
Stephen Hemmingercaa20d9a2005-11-10 17:13:47 -0800283 * will fit to window and corresponding skbs will fit to our rcvbuf.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 * (was 3; 4 is minimum to allow fast retransmit to work.)
285 */
286 while (tcp_win_from_space(rcvmem) < tp->advmss)
287 rcvmem += 128;
288 if (sk->sk_rcvbuf < 4 * rcvmem)
289 sk->sk_rcvbuf = min(4 * rcvmem, sysctl_tcp_rmem[2]);
290}
291
Stephen Hemmingercaa20d9a2005-11-10 17:13:47 -0800292/* 4. Try to fixup all. It is made immediately after connection enters
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 * established state.
294 */
295static void tcp_init_buffer_space(struct sock *sk)
296{
297 struct tcp_sock *tp = tcp_sk(sk);
298 int maxwin;
299
300 if (!(sk->sk_userlocks & SOCK_RCVBUF_LOCK))
301 tcp_fixup_rcvbuf(sk);
302 if (!(sk->sk_userlocks & SOCK_SNDBUF_LOCK))
303 tcp_fixup_sndbuf(sk);
304
305 tp->rcvq_space.space = tp->rcv_wnd;
306
307 maxwin = tcp_full_space(sk);
308
309 if (tp->window_clamp >= maxwin) {
310 tp->window_clamp = maxwin;
311
312 if (sysctl_tcp_app_win && maxwin > 4 * tp->advmss)
313 tp->window_clamp = max(maxwin -
314 (maxwin >> sysctl_tcp_app_win),
315 4 * tp->advmss);
316 }
317
318 /* Force reservation of one segment. */
319 if (sysctl_tcp_app_win &&
320 tp->window_clamp > 2 * tp->advmss &&
321 tp->window_clamp + tp->advmss > maxwin)
322 tp->window_clamp = max(2 * tp->advmss, maxwin - tp->advmss);
323
324 tp->rcv_ssthresh = min(tp->rcv_ssthresh, tp->window_clamp);
325 tp->snd_cwnd_stamp = tcp_time_stamp;
326}
327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328/* 5. Recalculate window clamp after socket hit its memory bounds. */
329static void tcp_clamp_window(struct sock *sk, struct tcp_sock *tp)
330{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300331 struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300333 icsk->icsk_ack.quick = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
John Heffner326f36e2005-11-10 17:11:48 -0800335 if (sk->sk_rcvbuf < sysctl_tcp_rmem[2] &&
336 !(sk->sk_userlocks & SOCK_RCVBUF_LOCK) &&
337 !tcp_memory_pressure &&
338 atomic_read(&tcp_memory_allocated) < sysctl_tcp_mem[0]) {
339 sk->sk_rcvbuf = min(atomic_read(&sk->sk_rmem_alloc),
340 sysctl_tcp_rmem[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 }
John Heffner326f36e2005-11-10 17:11:48 -0800342 if (atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 tp->rcv_ssthresh = min(tp->window_clamp, 2U*tp->advmss);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344}
345
Stephen Hemminger40efc6f2006-01-03 16:03:49 -0800346
347/* Initialize RCV_MSS value.
348 * RCV_MSS is an our guess about MSS used by the peer.
349 * We haven't any direct information about the MSS.
350 * It's better to underestimate the RCV_MSS rather than overestimate.
351 * Overestimations make us ACKing less frequently than needed.
352 * Underestimations are more easy to detect and fix by tcp_measure_rcv_mss().
353 */
354void tcp_initialize_rcv_mss(struct sock *sk)
355{
356 struct tcp_sock *tp = tcp_sk(sk);
357 unsigned int hint = min_t(unsigned int, tp->advmss, tp->mss_cache);
358
359 hint = min(hint, tp->rcv_wnd/2);
360 hint = min(hint, TCP_MIN_RCVMSS);
361 hint = max(hint, TCP_MIN_MSS);
362
363 inet_csk(sk)->icsk_ack.rcv_mss = hint;
364}
365
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366/* Receiver "autotuning" code.
367 *
368 * The algorithm for RTT estimation w/o timestamps is based on
369 * Dynamic Right-Sizing (DRS) by Wu Feng and Mike Fisk of LANL.
370 * <http://www.lanl.gov/radiant/website/pubs/drs/lacsi2001.ps>
371 *
372 * More detail on this code can be found at
373 * <http://www.psc.edu/~jheffner/senior_thesis.ps>,
374 * though this reference is out of date. A new paper
375 * is pending.
376 */
377static void tcp_rcv_rtt_update(struct tcp_sock *tp, u32 sample, int win_dep)
378{
379 u32 new_sample = tp->rcv_rtt_est.rtt;
380 long m = sample;
381
382 if (m == 0)
383 m = 1;
384
385 if (new_sample != 0) {
386 /* If we sample in larger samples in the non-timestamp
387 * case, we could grossly overestimate the RTT especially
388 * with chatty applications or bulk transfer apps which
389 * are stalled on filesystem I/O.
390 *
391 * Also, since we are only going for a minimum in the
Stephen Hemminger31f34262005-11-15 15:17:10 -0800392 * non-timestamp case, we do not smooth things out
Stephen Hemmingercaa20d9a2005-11-10 17:13:47 -0800393 * else with timestamps disabled convergence takes too
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 * long.
395 */
396 if (!win_dep) {
397 m -= (new_sample >> 3);
398 new_sample += m;
399 } else if (m < new_sample)
400 new_sample = m << 3;
401 } else {
Stephen Hemmingercaa20d9a2005-11-10 17:13:47 -0800402 /* No previous measure. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 new_sample = m << 3;
404 }
405
406 if (tp->rcv_rtt_est.rtt != new_sample)
407 tp->rcv_rtt_est.rtt = new_sample;
408}
409
410static inline void tcp_rcv_rtt_measure(struct tcp_sock *tp)
411{
412 if (tp->rcv_rtt_est.time == 0)
413 goto new_measure;
414 if (before(tp->rcv_nxt, tp->rcv_rtt_est.seq))
415 return;
416 tcp_rcv_rtt_update(tp,
417 jiffies - tp->rcv_rtt_est.time,
418 1);
419
420new_measure:
421 tp->rcv_rtt_est.seq = tp->rcv_nxt + tp->rcv_wnd;
422 tp->rcv_rtt_est.time = tcp_time_stamp;
423}
424
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700425static inline void tcp_rcv_rtt_measure_ts(struct sock *sk, const struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700427 struct tcp_sock *tp = tcp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (tp->rx_opt.rcv_tsecr &&
429 (TCP_SKB_CB(skb)->end_seq -
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700430 TCP_SKB_CB(skb)->seq >= inet_csk(sk)->icsk_ack.rcv_mss))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 tcp_rcv_rtt_update(tp, tcp_time_stamp - tp->rx_opt.rcv_tsecr, 0);
432}
433
434/*
435 * This function should be called every time data is copied to user space.
436 * It calculates the appropriate TCP receive buffer space.
437 */
438void tcp_rcv_space_adjust(struct sock *sk)
439{
440 struct tcp_sock *tp = tcp_sk(sk);
441 int time;
442 int space;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 if (tp->rcvq_space.time == 0)
445 goto new_measure;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 time = tcp_time_stamp - tp->rcvq_space.time;
448 if (time < (tp->rcv_rtt_est.rtt >> 3) ||
449 tp->rcv_rtt_est.rtt == 0)
450 return;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 space = 2 * (tp->copied_seq - tp->rcvq_space.seq);
453
454 space = max(tp->rcvq_space.space, space);
455
456 if (tp->rcvq_space.space != space) {
457 int rcvmem;
458
459 tp->rcvq_space.space = space;
460
John Heffner6fcf9412006-02-09 17:06:57 -0800461 if (sysctl_tcp_moderate_rcvbuf &&
462 !(sk->sk_userlocks & SOCK_RCVBUF_LOCK)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 int new_clamp = space;
464
465 /* Receive space grows, normalize in order to
466 * take into account packet headers and sk_buff
467 * structure overhead.
468 */
469 space /= tp->advmss;
470 if (!space)
471 space = 1;
472 rcvmem = (tp->advmss + MAX_TCP_HEADER +
473 16 + sizeof(struct sk_buff));
474 while (tcp_win_from_space(rcvmem) < tp->advmss)
475 rcvmem += 128;
476 space *= rcvmem;
477 space = min(space, sysctl_tcp_rmem[2]);
478 if (space > sk->sk_rcvbuf) {
479 sk->sk_rcvbuf = space;
480
481 /* Make the window clamp follow along. */
482 tp->window_clamp = new_clamp;
483 }
484 }
485 }
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487new_measure:
488 tp->rcvq_space.seq = tp->copied_seq;
489 tp->rcvq_space.time = tcp_time_stamp;
490}
491
492/* There is something which you must keep in mind when you analyze the
493 * behavior of the tp->ato delayed ack timeout interval. When a
494 * connection starts up, we want to ack as quickly as possible. The
495 * problem is that "good" TCP's do slow start at the beginning of data
496 * transmission. The means that until we send the first few ACK's the
497 * sender will sit on his end and only queue most of his data, because
498 * he can only send snd_cwnd unacked packets at any given time. For
499 * each ACK we send, he increments snd_cwnd and transmits more of his
500 * queue. -DaveM
501 */
502static void tcp_event_data_recv(struct sock *sk, struct tcp_sock *tp, struct sk_buff *skb)
503{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700504 struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 u32 now;
506
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700507 inet_csk_schedule_ack(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700509 tcp_measure_rcv_mss(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
511 tcp_rcv_rtt_measure(tp);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 now = tcp_time_stamp;
514
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700515 if (!icsk->icsk_ack.ato) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 /* The _first_ data packet received, initialize
517 * delayed ACK engine.
518 */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700519 tcp_incr_quickack(sk);
520 icsk->icsk_ack.ato = TCP_ATO_MIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 } else {
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700522 int m = now - icsk->icsk_ack.lrcvtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
524 if (m <= TCP_ATO_MIN/2) {
525 /* The fastest case is the first. */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700526 icsk->icsk_ack.ato = (icsk->icsk_ack.ato >> 1) + TCP_ATO_MIN / 2;
527 } else if (m < icsk->icsk_ack.ato) {
528 icsk->icsk_ack.ato = (icsk->icsk_ack.ato >> 1) + m;
529 if (icsk->icsk_ack.ato > icsk->icsk_rto)
530 icsk->icsk_ack.ato = icsk->icsk_rto;
531 } else if (m > icsk->icsk_rto) {
Stephen Hemmingercaa20d9a2005-11-10 17:13:47 -0800532 /* Too long gap. Apparently sender failed to
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 * restart window, so that we send ACKs quickly.
534 */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700535 tcp_incr_quickack(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 sk_stream_mem_reclaim(sk);
537 }
538 }
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700539 icsk->icsk_ack.lrcvtime = now;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
541 TCP_ECN_check_ce(tp, skb);
542
543 if (skb->len >= 128)
544 tcp_grow_window(sk, tp, skb);
545}
546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547/* Called to compute a smoothed rtt estimate. The data fed to this
548 * routine either comes from timestamps, or from segments that were
549 * known _not_ to have been retransmitted [see Karn/Partridge
550 * Proceedings SIGCOMM 87]. The algorithm is from the SIGCOMM 88
551 * piece by Van Jacobson.
552 * NOTE: the next three routines used to be one big routine.
553 * To save cycles in the RFC 1323 implementation it was better to break
554 * it up into three procedures. -- erics
555 */
Stephen Hemminger2d2abba2005-11-10 16:56:12 -0800556static void tcp_rtt_estimator(struct sock *sk, const __u32 mrtt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300558 struct tcp_sock *tp = tcp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 long m = mrtt; /* RTT */
560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 /* The following amusing code comes from Jacobson's
562 * article in SIGCOMM '88. Note that rtt and mdev
563 * are scaled versions of rtt and mean deviation.
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +0900564 * This is designed to be as fast as possible
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 * m stands for "measurement".
566 *
567 * On a 1990 paper the rto value is changed to:
568 * RTO = rtt + 4 * mdev
569 *
570 * Funny. This algorithm seems to be very broken.
571 * These formulae increase RTO, when it should be decreased, increase
Stephen Hemminger31f34262005-11-15 15:17:10 -0800572 * too slowly, when it should be increased quickly, decrease too quickly
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 * etc. I guess in BSD RTO takes ONE value, so that it is absolutely
574 * does not matter how to _calculate_ it. Seems, it was trap
575 * that VJ failed to avoid. 8)
576 */
577 if(m == 0)
578 m = 1;
579 if (tp->srtt != 0) {
580 m -= (tp->srtt >> 3); /* m is now error in rtt est */
581 tp->srtt += m; /* rtt = 7/8 rtt + 1/8 new */
582 if (m < 0) {
583 m = -m; /* m is now abs(error) */
584 m -= (tp->mdev >> 2); /* similar update on mdev */
585 /* This is similar to one of Eifel findings.
586 * Eifel blocks mdev updates when rtt decreases.
587 * This solution is a bit different: we use finer gain
588 * for mdev in this case (alpha*beta).
589 * Like Eifel it also prevents growth of rto,
590 * but also it limits too fast rto decreases,
591 * happening in pure Eifel.
592 */
593 if (m > 0)
594 m >>= 3;
595 } else {
596 m -= (tp->mdev >> 2); /* similar update on mdev */
597 }
598 tp->mdev += m; /* mdev = 3/4 mdev + 1/4 new */
599 if (tp->mdev > tp->mdev_max) {
600 tp->mdev_max = tp->mdev;
601 if (tp->mdev_max > tp->rttvar)
602 tp->rttvar = tp->mdev_max;
603 }
604 if (after(tp->snd_una, tp->rtt_seq)) {
605 if (tp->mdev_max < tp->rttvar)
606 tp->rttvar -= (tp->rttvar-tp->mdev_max)>>2;
607 tp->rtt_seq = tp->snd_nxt;
608 tp->mdev_max = TCP_RTO_MIN;
609 }
610 } else {
611 /* no previous measure. */
612 tp->srtt = m<<3; /* take the measured time to be rtt */
613 tp->mdev = m<<1; /* make sure rto = 3*rtt */
614 tp->mdev_max = tp->rttvar = max(tp->mdev, TCP_RTO_MIN);
615 tp->rtt_seq = tp->snd_nxt;
616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}
618
619/* Calculate rto without backoff. This is the second half of Van Jacobson's
620 * routine referred to above.
621 */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700622static inline void tcp_set_rto(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700624 const struct tcp_sock *tp = tcp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 /* Old crap is replaced with new one. 8)
626 *
627 * More seriously:
628 * 1. If rtt variance happened to be less 50msec, it is hallucination.
629 * It cannot be less due to utterly erratic ACK generation made
630 * at least by solaris and freebsd. "Erratic ACKs" has _nothing_
631 * to do with delayed acks, because at cwnd>2 true delack timeout
632 * is invisible. Actually, Linux-2.4 also generates erratic
Stephen Hemmingercaa20d9a2005-11-10 17:13:47 -0800633 * ACKs in some circumstances.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700635 inet_csk(sk)->icsk_rto = (tp->srtt >> 3) + tp->rttvar;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637 /* 2. Fixups made earlier cannot be right.
638 * If we do not estimate RTO correctly without them,
639 * all the algo is pure shit and should be replaced
Stephen Hemmingercaa20d9a2005-11-10 17:13:47 -0800640 * with correct one. It is exactly, which we pretend to do.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 */
642}
643
644/* NOTE: clamping at TCP_RTO_MIN is not required, current algo
645 * guarantees that rto is higher.
646 */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700647static inline void tcp_bound_rto(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700649 if (inet_csk(sk)->icsk_rto > TCP_RTO_MAX)
650 inet_csk(sk)->icsk_rto = TCP_RTO_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651}
652
653/* Save metrics learned by this TCP session.
654 This function is called only, when TCP finishes successfully
655 i.e. when it enters TIME-WAIT or goes from LAST-ACK to CLOSE.
656 */
657void tcp_update_metrics(struct sock *sk)
658{
659 struct tcp_sock *tp = tcp_sk(sk);
660 struct dst_entry *dst = __sk_dst_get(sk);
661
662 if (sysctl_tcp_nometrics_save)
663 return;
664
665 dst_confirm(dst);
666
667 if (dst && (dst->flags&DST_HOST)) {
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300668 const struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 int m;
670
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300671 if (icsk->icsk_backoff || !tp->srtt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 /* This session failed to estimate rtt. Why?
673 * Probably, no packets returned in time.
674 * Reset our results.
675 */
676 if (!(dst_metric_locked(dst, RTAX_RTT)))
677 dst->metrics[RTAX_RTT-1] = 0;
678 return;
679 }
680
681 m = dst_metric(dst, RTAX_RTT) - tp->srtt;
682
683 /* If newly calculated rtt larger than stored one,
684 * store new one. Otherwise, use EWMA. Remember,
685 * rtt overestimation is always better than underestimation.
686 */
687 if (!(dst_metric_locked(dst, RTAX_RTT))) {
688 if (m <= 0)
689 dst->metrics[RTAX_RTT-1] = tp->srtt;
690 else
691 dst->metrics[RTAX_RTT-1] -= (m>>3);
692 }
693
694 if (!(dst_metric_locked(dst, RTAX_RTTVAR))) {
695 if (m < 0)
696 m = -m;
697
698 /* Scale deviation to rttvar fixed point */
699 m >>= 1;
700 if (m < tp->mdev)
701 m = tp->mdev;
702
703 if (m >= dst_metric(dst, RTAX_RTTVAR))
704 dst->metrics[RTAX_RTTVAR-1] = m;
705 else
706 dst->metrics[RTAX_RTTVAR-1] -=
707 (dst->metrics[RTAX_RTTVAR-1] - m)>>2;
708 }
709
710 if (tp->snd_ssthresh >= 0xFFFF) {
711 /* Slow start still did not finish. */
712 if (dst_metric(dst, RTAX_SSTHRESH) &&
713 !dst_metric_locked(dst, RTAX_SSTHRESH) &&
714 (tp->snd_cwnd >> 1) > dst_metric(dst, RTAX_SSTHRESH))
715 dst->metrics[RTAX_SSTHRESH-1] = tp->snd_cwnd >> 1;
716 if (!dst_metric_locked(dst, RTAX_CWND) &&
717 tp->snd_cwnd > dst_metric(dst, RTAX_CWND))
718 dst->metrics[RTAX_CWND-1] = tp->snd_cwnd;
719 } else if (tp->snd_cwnd > tp->snd_ssthresh &&
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300720 icsk->icsk_ca_state == TCP_CA_Open) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 /* Cong. avoidance phase, cwnd is reliable. */
722 if (!dst_metric_locked(dst, RTAX_SSTHRESH))
723 dst->metrics[RTAX_SSTHRESH-1] =
724 max(tp->snd_cwnd >> 1, tp->snd_ssthresh);
725 if (!dst_metric_locked(dst, RTAX_CWND))
726 dst->metrics[RTAX_CWND-1] = (dst->metrics[RTAX_CWND-1] + tp->snd_cwnd) >> 1;
727 } else {
728 /* Else slow start did not finish, cwnd is non-sense,
729 ssthresh may be also invalid.
730 */
731 if (!dst_metric_locked(dst, RTAX_CWND))
732 dst->metrics[RTAX_CWND-1] = (dst->metrics[RTAX_CWND-1] + tp->snd_ssthresh) >> 1;
733 if (dst->metrics[RTAX_SSTHRESH-1] &&
734 !dst_metric_locked(dst, RTAX_SSTHRESH) &&
735 tp->snd_ssthresh > dst->metrics[RTAX_SSTHRESH-1])
736 dst->metrics[RTAX_SSTHRESH-1] = tp->snd_ssthresh;
737 }
738
739 if (!dst_metric_locked(dst, RTAX_REORDERING)) {
740 if (dst->metrics[RTAX_REORDERING-1] < tp->reordering &&
741 tp->reordering != sysctl_tcp_reordering)
742 dst->metrics[RTAX_REORDERING-1] = tp->reordering;
743 }
744 }
745}
746
747/* Numbers are taken from RFC2414. */
748__u32 tcp_init_cwnd(struct tcp_sock *tp, struct dst_entry *dst)
749{
750 __u32 cwnd = (dst ? dst_metric(dst, RTAX_INITCWND) : 0);
751
752 if (!cwnd) {
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700753 if (tp->mss_cache > 1460)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 cwnd = 2;
755 else
David S. Millerc1b4a7e2005-07-05 15:24:38 -0700756 cwnd = (tp->mss_cache > 1095) ? 3 : 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 }
758 return min_t(__u32, cwnd, tp->snd_cwnd_clamp);
759}
760
Stephen Hemminger40efc6f2006-01-03 16:03:49 -0800761/* Set slow start threshold and cwnd not falling to slow start */
762void tcp_enter_cwr(struct sock *sk)
763{
764 struct tcp_sock *tp = tcp_sk(sk);
765
766 tp->prior_ssthresh = 0;
767 tp->bytes_acked = 0;
768 if (inet_csk(sk)->icsk_ca_state < TCP_CA_CWR) {
769 tp->undo_marker = 0;
770 tp->snd_ssthresh = inet_csk(sk)->icsk_ca_ops->ssthresh(sk);
771 tp->snd_cwnd = min(tp->snd_cwnd,
772 tcp_packets_in_flight(tp) + 1U);
773 tp->snd_cwnd_cnt = 0;
774 tp->high_seq = tp->snd_nxt;
775 tp->snd_cwnd_stamp = tcp_time_stamp;
776 TCP_ECN_queue_cwr(tp);
777
778 tcp_set_ca_state(sk, TCP_CA_CWR);
779 }
780}
781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782/* Initialize metrics on socket. */
783
784static void tcp_init_metrics(struct sock *sk)
785{
786 struct tcp_sock *tp = tcp_sk(sk);
787 struct dst_entry *dst = __sk_dst_get(sk);
788
789 if (dst == NULL)
790 goto reset;
791
792 dst_confirm(dst);
793
794 if (dst_metric_locked(dst, RTAX_CWND))
795 tp->snd_cwnd_clamp = dst_metric(dst, RTAX_CWND);
796 if (dst_metric(dst, RTAX_SSTHRESH)) {
797 tp->snd_ssthresh = dst_metric(dst, RTAX_SSTHRESH);
798 if (tp->snd_ssthresh > tp->snd_cwnd_clamp)
799 tp->snd_ssthresh = tp->snd_cwnd_clamp;
800 }
801 if (dst_metric(dst, RTAX_REORDERING) &&
802 tp->reordering != dst_metric(dst, RTAX_REORDERING)) {
803 tp->rx_opt.sack_ok &= ~2;
804 tp->reordering = dst_metric(dst, RTAX_REORDERING);
805 }
806
807 if (dst_metric(dst, RTAX_RTT) == 0)
808 goto reset;
809
810 if (!tp->srtt && dst_metric(dst, RTAX_RTT) < (TCP_TIMEOUT_INIT << 3))
811 goto reset;
812
813 /* Initial rtt is determined from SYN,SYN-ACK.
814 * The segment is small and rtt may appear much
815 * less than real one. Use per-dst memory
816 * to make it more realistic.
817 *
818 * A bit of theory. RTT is time passed after "normal" sized packet
Stephen Hemmingercaa20d9a2005-11-10 17:13:47 -0800819 * is sent until it is ACKed. In normal circumstances sending small
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 * packets force peer to delay ACKs and calculation is correct too.
821 * The algorithm is adaptive and, provided we follow specs, it
822 * NEVER underestimate RTT. BUT! If peer tries to make some clever
823 * tricks sort of "quick acks" for time long enough to decrease RTT
824 * to low value, and then abruptly stops to do it and starts to delay
825 * ACKs, wait for troubles.
826 */
827 if (dst_metric(dst, RTAX_RTT) > tp->srtt) {
828 tp->srtt = dst_metric(dst, RTAX_RTT);
829 tp->rtt_seq = tp->snd_nxt;
830 }
831 if (dst_metric(dst, RTAX_RTTVAR) > tp->mdev) {
832 tp->mdev = dst_metric(dst, RTAX_RTTVAR);
833 tp->mdev_max = tp->rttvar = max(tp->mdev, TCP_RTO_MIN);
834 }
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700835 tcp_set_rto(sk);
836 tcp_bound_rto(sk);
837 if (inet_csk(sk)->icsk_rto < TCP_TIMEOUT_INIT && !tp->rx_opt.saw_tstamp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 goto reset;
839 tp->snd_cwnd = tcp_init_cwnd(tp, dst);
840 tp->snd_cwnd_stamp = tcp_time_stamp;
841 return;
842
843reset:
844 /* Play conservative. If timestamps are not
845 * supported, TCP will fail to recalculate correct
846 * rtt, if initial rto is too small. FORGET ALL AND RESET!
847 */
848 if (!tp->rx_opt.saw_tstamp && tp->srtt) {
849 tp->srtt = 0;
850 tp->mdev = tp->mdev_max = tp->rttvar = TCP_TIMEOUT_INIT;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -0700851 inet_csk(sk)->icsk_rto = TCP_TIMEOUT_INIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 }
853}
854
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300855static void tcp_update_reordering(struct sock *sk, const int metric,
856 const int ts)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300858 struct tcp_sock *tp = tcp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 if (metric > tp->reordering) {
860 tp->reordering = min(TCP_MAX_REORDERING, metric);
861
862 /* This exciting event is worth to be remembered. 8) */
863 if (ts)
864 NET_INC_STATS_BH(LINUX_MIB_TCPTSREORDER);
865 else if (IsReno(tp))
866 NET_INC_STATS_BH(LINUX_MIB_TCPRENOREORDER);
867 else if (IsFack(tp))
868 NET_INC_STATS_BH(LINUX_MIB_TCPFACKREORDER);
869 else
870 NET_INC_STATS_BH(LINUX_MIB_TCPSACKREORDER);
871#if FASTRETRANS_DEBUG > 1
872 printk(KERN_DEBUG "Disorder%d %d %u f%u s%u rr%d\n",
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300873 tp->rx_opt.sack_ok, inet_csk(sk)->icsk_ca_state,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 tp->reordering,
875 tp->fackets_out,
876 tp->sacked_out,
877 tp->undo_marker ? tp->undo_retrans : 0);
878#endif
879 /* Disable FACK yet. */
880 tp->rx_opt.sack_ok &= ~2;
881 }
882}
883
884/* This procedure tags the retransmission queue when SACKs arrive.
885 *
886 * We have three tag bits: SACKED(S), RETRANS(R) and LOST(L).
887 * Packets in queue with these bits set are counted in variables
888 * sacked_out, retrans_out and lost_out, correspondingly.
889 *
890 * Valid combinations are:
891 * Tag InFlight Description
892 * 0 1 - orig segment is in flight.
893 * S 0 - nothing flies, orig reached receiver.
894 * L 0 - nothing flies, orig lost by net.
895 * R 2 - both orig and retransmit are in flight.
896 * L|R 1 - orig is lost, retransmit is in flight.
897 * S|R 1 - orig reached receiver, retrans is still in flight.
898 * (L|S|R is logically valid, it could occur when L|R is sacked,
899 * but it is equivalent to plain S and code short-curcuits it to S.
900 * L|S is logically invalid, it would mean -1 packet in flight 8))
901 *
902 * These 6 states form finite state machine, controlled by the following events:
903 * 1. New ACK (+SACK) arrives. (tcp_sacktag_write_queue())
904 * 2. Retransmission. (tcp_retransmit_skb(), tcp_xmit_retransmit_queue())
905 * 3. Loss detection event of one of three flavors:
906 * A. Scoreboard estimator decided the packet is lost.
907 * A'. Reno "three dupacks" marks head of queue lost.
908 * A''. Its FACK modfication, head until snd.fack is lost.
909 * B. SACK arrives sacking data transmitted after never retransmitted
910 * hole was sent out.
911 * C. SACK arrives sacking SND.NXT at the moment, when the
912 * segment was retransmitted.
913 * 4. D-SACK added new rule: D-SACK changes any tag to S.
914 *
915 * It is pleasant to note, that state diagram turns out to be commutative,
916 * so that we are allowed not to be bothered by order of our actions,
917 * when multiple events arrive simultaneously. (see the function below).
918 *
919 * Reordering detection.
920 * --------------------
921 * Reordering metric is maximal distance, which a packet can be displaced
922 * in packet stream. With SACKs we can estimate it:
923 *
924 * 1. SACK fills old hole and the corresponding segment was not
925 * ever retransmitted -> reordering. Alas, we cannot use it
926 * when segment was retransmitted.
927 * 2. The last flaw is solved with D-SACK. D-SACK arrives
928 * for retransmitted and already SACKed segment -> reordering..
929 * Both of these heuristics are not used in Loss state, when we cannot
930 * account for retransmits accurately.
931 */
932static int
933tcp_sacktag_write_queue(struct sock *sk, struct sk_buff *ack_skb, u32 prior_snd_una)
934{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -0300935 const struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 struct tcp_sock *tp = tcp_sk(sk);
937 unsigned char *ptr = ack_skb->h.raw + TCP_SKB_CB(ack_skb)->sacked;
Al Viro269bd272006-09-27 18:32:28 -0700938 struct tcp_sack_block_wire *sp = (struct tcp_sack_block_wire *)(ptr+2);
Baruch Evenfda03fb2007-02-04 23:35:57 -0800939 struct sk_buff *cached_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 int num_sacks = (ptr[1] - TCPOLEN_SACK_BASE)>>3;
941 int reord = tp->packets_out;
942 int prior_fackets;
943 u32 lost_retrans = 0;
944 int flag = 0;
Stephen Hemminger6a438bb2005-11-10 17:14:59 -0800945 int dup_sack = 0;
Baruch Evenfda03fb2007-02-04 23:35:57 -0800946 int cached_fack_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 int i;
Baruch Evenfda03fb2007-02-04 23:35:57 -0800948 int first_sack_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 if (!tp->sacked_out)
951 tp->fackets_out = 0;
952 prior_fackets = tp->fackets_out;
953
Baruch Even6f746512007-02-04 23:36:42 -0800954 /* Check for D-SACK. */
955 if (before(ntohl(sp[0].start_seq), TCP_SKB_CB(ack_skb)->ack_seq)) {
956 dup_sack = 1;
957 tp->rx_opt.sack_ok |= 4;
958 NET_INC_STATS_BH(LINUX_MIB_TCPDSACKRECV);
959 } else if (num_sacks > 1 &&
960 !after(ntohl(sp[0].end_seq), ntohl(sp[1].end_seq)) &&
961 !before(ntohl(sp[0].start_seq), ntohl(sp[1].start_seq))) {
962 dup_sack = 1;
963 tp->rx_opt.sack_ok |= 4;
964 NET_INC_STATS_BH(LINUX_MIB_TCPDSACKOFORECV);
965 }
966
967 /* D-SACK for already forgotten data...
968 * Do dumb counting. */
969 if (dup_sack &&
970 !after(ntohl(sp[0].end_seq), prior_snd_una) &&
971 after(ntohl(sp[0].end_seq), tp->undo_marker))
972 tp->undo_retrans--;
973
974 /* Eliminate too old ACKs, but take into
975 * account more or less fresh ones, they can
976 * contain valid SACK info.
977 */
978 if (before(TCP_SKB_CB(ack_skb)->ack_seq, prior_snd_una - tp->max_window))
979 return 0;
980
Stephen Hemminger6a438bb2005-11-10 17:14:59 -0800981 /* SACK fastpath:
982 * if the only SACK change is the increase of the end_seq of
983 * the first block then only apply that SACK block
984 * and use retrans queue hinting otherwise slowpath */
985 flag = 1;
Baruch Even6f746512007-02-04 23:36:42 -0800986 for (i = 0; i < num_sacks; i++) {
987 __be32 start_seq = sp[i].start_seq;
988 __be32 end_seq = sp[i].end_seq;
Stephen Hemminger6a438bb2005-11-10 17:14:59 -0800989
Baruch Even6f746512007-02-04 23:36:42 -0800990 if (i == 0) {
Stephen Hemminger6a438bb2005-11-10 17:14:59 -0800991 if (tp->recv_sack_cache[i].start_seq != start_seq)
992 flag = 0;
993 } else {
994 if ((tp->recv_sack_cache[i].start_seq != start_seq) ||
995 (tp->recv_sack_cache[i].end_seq != end_seq))
996 flag = 0;
997 }
998 tp->recv_sack_cache[i].start_seq = start_seq;
999 tp->recv_sack_cache[i].end_seq = end_seq;
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001000 }
Baruch Even8a3c3a92007-02-04 23:37:41 -08001001 /* Clear the rest of the cache sack blocks so they won't match mistakenly. */
1002 for (; i < ARRAY_SIZE(tp->recv_sack_cache); i++) {
1003 tp->recv_sack_cache[i].start_seq = 0;
1004 tp->recv_sack_cache[i].end_seq = 0;
1005 }
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001006
Baruch Evenfda03fb2007-02-04 23:35:57 -08001007 first_sack_index = 0;
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001008 if (flag)
1009 num_sacks = 1;
1010 else {
1011 int j;
1012 tp->fastpath_skb_hint = NULL;
1013
1014 /* order SACK blocks to allow in order walk of the retrans queue */
1015 for (i = num_sacks-1; i > 0; i--) {
1016 for (j = 0; j < i; j++){
1017 if (after(ntohl(sp[j].start_seq),
1018 ntohl(sp[j+1].start_seq))){
Baruch Evendb3ccda2007-01-25 13:35:06 -08001019 struct tcp_sack_block_wire tmp;
1020
1021 tmp = sp[j];
1022 sp[j] = sp[j+1];
1023 sp[j+1] = tmp;
Baruch Evenfda03fb2007-02-04 23:35:57 -08001024
1025 /* Track where the first SACK block goes to */
1026 if (j == first_sack_index)
1027 first_sack_index = j+1;
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001028 }
1029
1030 }
1031 }
1032 }
1033
1034 /* clear flag as used for different purpose in following code */
1035 flag = 0;
1036
Baruch Evenfda03fb2007-02-04 23:35:57 -08001037 /* Use SACK fastpath hint if valid */
1038 cached_skb = tp->fastpath_skb_hint;
1039 cached_fack_count = tp->fastpath_cnt_hint;
1040 if (!cached_skb) {
1041 cached_skb = sk->sk_write_queue.next;
1042 cached_fack_count = 0;
1043 }
1044
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001045 for (i=0; i<num_sacks; i++, sp++) {
1046 struct sk_buff *skb;
1047 __u32 start_seq = ntohl(sp->start_seq);
1048 __u32 end_seq = ntohl(sp->end_seq);
1049 int fack_count;
1050
Baruch Evenfda03fb2007-02-04 23:35:57 -08001051 skb = cached_skb;
1052 fack_count = cached_fack_count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053
1054 /* Event "B" in the comment above. */
1055 if (after(end_seq, tp->high_seq))
1056 flag |= FLAG_DATA_LOST;
1057
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001058 sk_stream_for_retrans_queue_from(skb, sk) {
David S. Miller6475be12005-09-01 22:47:01 -07001059 int in_sack, pcount;
1060 u8 sacked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
Baruch Evenfda03fb2007-02-04 23:35:57 -08001062 cached_skb = skb;
1063 cached_fack_count = fack_count;
1064 if (i == first_sack_index) {
1065 tp->fastpath_skb_hint = skb;
1066 tp->fastpath_cnt_hint = fack_count;
1067 }
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001068
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 /* The retransmission queue is always in order, so
1070 * we can short-circuit the walk early.
1071 */
David S. Miller6475be12005-09-01 22:47:01 -07001072 if (!before(TCP_SKB_CB(skb)->seq, end_seq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 break;
1074
Herbert Xu3c05d922005-09-14 20:50:35 -07001075 in_sack = !after(start_seq, TCP_SKB_CB(skb)->seq) &&
1076 !before(end_seq, TCP_SKB_CB(skb)->end_seq);
1077
David S. Miller6475be12005-09-01 22:47:01 -07001078 pcount = tcp_skb_pcount(skb);
1079
Herbert Xu3c05d922005-09-14 20:50:35 -07001080 if (pcount > 1 && !in_sack &&
1081 after(TCP_SKB_CB(skb)->end_seq, start_seq)) {
David S. Miller6475be12005-09-01 22:47:01 -07001082 unsigned int pkt_len;
1083
Herbert Xu3c05d922005-09-14 20:50:35 -07001084 in_sack = !after(start_seq,
1085 TCP_SKB_CB(skb)->seq);
1086
1087 if (!in_sack)
David S. Miller6475be12005-09-01 22:47:01 -07001088 pkt_len = (start_seq -
1089 TCP_SKB_CB(skb)->seq);
1090 else
1091 pkt_len = (end_seq -
1092 TCP_SKB_CB(skb)->seq);
Herbert Xu79671682006-06-22 02:40:14 -07001093 if (tcp_fragment(sk, skb, pkt_len, skb_shinfo(skb)->gso_size))
David S. Miller6475be12005-09-01 22:47:01 -07001094 break;
1095 pcount = tcp_skb_pcount(skb);
1096 }
1097
1098 fack_count += pcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
David S. Miller6475be12005-09-01 22:47:01 -07001100 sacked = TCP_SKB_CB(skb)->sacked;
1101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 /* Account D-SACK for retransmitted packet. */
1103 if ((dup_sack && in_sack) &&
1104 (sacked & TCPCB_RETRANS) &&
1105 after(TCP_SKB_CB(skb)->end_seq, tp->undo_marker))
1106 tp->undo_retrans--;
1107
1108 /* The frame is ACKed. */
1109 if (!after(TCP_SKB_CB(skb)->end_seq, tp->snd_una)) {
1110 if (sacked&TCPCB_RETRANS) {
1111 if ((dup_sack && in_sack) &&
1112 (sacked&TCPCB_SACKED_ACKED))
1113 reord = min(fack_count, reord);
1114 } else {
1115 /* If it was in a hole, we detected reordering. */
1116 if (fack_count < prior_fackets &&
1117 !(sacked&TCPCB_SACKED_ACKED))
1118 reord = min(fack_count, reord);
1119 }
1120
1121 /* Nothing to do; acked frame is about to be dropped. */
1122 continue;
1123 }
1124
1125 if ((sacked&TCPCB_SACKED_RETRANS) &&
1126 after(end_seq, TCP_SKB_CB(skb)->ack_seq) &&
1127 (!lost_retrans || after(end_seq, lost_retrans)))
1128 lost_retrans = end_seq;
1129
1130 if (!in_sack)
1131 continue;
1132
1133 if (!(sacked&TCPCB_SACKED_ACKED)) {
1134 if (sacked & TCPCB_SACKED_RETRANS) {
1135 /* If the segment is not tagged as lost,
1136 * we do not clear RETRANS, believing
1137 * that retransmission is still in flight.
1138 */
1139 if (sacked & TCPCB_LOST) {
1140 TCP_SKB_CB(skb)->sacked &= ~(TCPCB_LOST|TCPCB_SACKED_RETRANS);
1141 tp->lost_out -= tcp_skb_pcount(skb);
1142 tp->retrans_out -= tcp_skb_pcount(skb);
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001143
1144 /* clear lost hint */
1145 tp->retransmit_skb_hint = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 }
1147 } else {
1148 /* New sack for not retransmitted frame,
1149 * which was in hole. It is reordering.
1150 */
1151 if (!(sacked & TCPCB_RETRANS) &&
1152 fack_count < prior_fackets)
1153 reord = min(fack_count, reord);
1154
1155 if (sacked & TCPCB_LOST) {
1156 TCP_SKB_CB(skb)->sacked &= ~TCPCB_LOST;
1157 tp->lost_out -= tcp_skb_pcount(skb);
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001158
1159 /* clear lost hint */
1160 tp->retransmit_skb_hint = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 }
1162 }
1163
1164 TCP_SKB_CB(skb)->sacked |= TCPCB_SACKED_ACKED;
1165 flag |= FLAG_DATA_SACKED;
1166 tp->sacked_out += tcp_skb_pcount(skb);
1167
1168 if (fack_count > tp->fackets_out)
1169 tp->fackets_out = fack_count;
1170 } else {
1171 if (dup_sack && (sacked&TCPCB_RETRANS))
1172 reord = min(fack_count, reord);
1173 }
1174
1175 /* D-SACK. We can detect redundant retransmission
1176 * in S|R and plain R frames and clear it.
1177 * undo_retrans is decreased above, L|R frames
1178 * are accounted above as well.
1179 */
1180 if (dup_sack &&
1181 (TCP_SKB_CB(skb)->sacked&TCPCB_SACKED_RETRANS)) {
1182 TCP_SKB_CB(skb)->sacked &= ~TCPCB_SACKED_RETRANS;
1183 tp->retrans_out -= tcp_skb_pcount(skb);
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001184 tp->retransmit_skb_hint = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 }
1186 }
1187 }
1188
1189 /* Check for lost retransmit. This superb idea is
1190 * borrowed from "ratehalving". Event "C".
1191 * Later note: FACK people cheated me again 8),
1192 * we have to account for reordering! Ugly,
1193 * but should help.
1194 */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001195 if (lost_retrans && icsk->icsk_ca_state == TCP_CA_Recovery) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 struct sk_buff *skb;
1197
1198 sk_stream_for_retrans_queue(skb, sk) {
1199 if (after(TCP_SKB_CB(skb)->seq, lost_retrans))
1200 break;
1201 if (!after(TCP_SKB_CB(skb)->end_seq, tp->snd_una))
1202 continue;
1203 if ((TCP_SKB_CB(skb)->sacked&TCPCB_SACKED_RETRANS) &&
1204 after(lost_retrans, TCP_SKB_CB(skb)->ack_seq) &&
1205 (IsFack(tp) ||
1206 !before(lost_retrans,
1207 TCP_SKB_CB(skb)->ack_seq + tp->reordering *
David S. Millerc1b4a7e2005-07-05 15:24:38 -07001208 tp->mss_cache))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 TCP_SKB_CB(skb)->sacked &= ~TCPCB_SACKED_RETRANS;
1210 tp->retrans_out -= tcp_skb_pcount(skb);
1211
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001212 /* clear lost hint */
1213 tp->retransmit_skb_hint = NULL;
1214
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 if (!(TCP_SKB_CB(skb)->sacked&(TCPCB_LOST|TCPCB_SACKED_ACKED))) {
1216 tp->lost_out += tcp_skb_pcount(skb);
1217 TCP_SKB_CB(skb)->sacked |= TCPCB_LOST;
1218 flag |= FLAG_DATA_SACKED;
1219 NET_INC_STATS_BH(LINUX_MIB_TCPLOSTRETRANSMIT);
1220 }
1221 }
1222 }
1223 }
1224
1225 tp->left_out = tp->sacked_out + tp->lost_out;
1226
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001227 if ((reord < tp->fackets_out) && icsk->icsk_ca_state != TCP_CA_Loss)
1228 tcp_update_reordering(sk, ((tp->fackets_out + 1) - reord), 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
1230#if FASTRETRANS_DEBUG > 0
1231 BUG_TRAP((int)tp->sacked_out >= 0);
1232 BUG_TRAP((int)tp->lost_out >= 0);
1233 BUG_TRAP((int)tp->retrans_out >= 0);
1234 BUG_TRAP((int)tcp_packets_in_flight(tp) >= 0);
1235#endif
1236 return flag;
1237}
1238
Ilpo Järvinen30935cf2007-02-21 23:01:36 -08001239/* F-RTO can only be used if these conditions are satisfied:
1240 * - there must be some unsent new data
1241 * - the advertised window should allow sending it
1242 */
Ilpo Järvinenbdaae172007-02-21 22:59:58 -08001243int tcp_use_frto(const struct sock *sk)
1244{
1245 const struct tcp_sock *tp = tcp_sk(sk);
1246
Ilpo Järvinenbdaae172007-02-21 22:59:58 -08001247 return (sysctl_tcp_frto && sk->sk_send_head &&
1248 !after(TCP_SKB_CB(sk->sk_send_head)->end_seq,
1249 tp->snd_una + tp->snd_wnd));
1250}
1251
Ilpo Järvinen30935cf2007-02-21 23:01:36 -08001252/* RTO occurred, but do not yet enter Loss state. Instead, defer RTO
1253 * recovery a bit and use heuristics in tcp_process_frto() to detect if
1254 * the RTO was spurious.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 */
1256void tcp_enter_frto(struct sock *sk)
1257{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001258 const struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 struct tcp_sock *tp = tcp_sk(sk);
1260 struct sk_buff *skb;
1261
1262 tp->frto_counter = 1;
1263
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001264 if (icsk->icsk_ca_state <= TCP_CA_Disorder ||
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001265 tp->snd_una == tp->high_seq ||
1266 (icsk->icsk_ca_state == TCP_CA_Loss && !icsk->icsk_retransmits)) {
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001267 tp->prior_ssthresh = tcp_current_ssthresh(sk);
1268 tp->snd_ssthresh = icsk->icsk_ca_ops->ssthresh(sk);
1269 tcp_ca_event(sk, CA_EVENT_FRTO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 }
1271
1272 /* Have to clear retransmission markers here to keep the bookkeeping
1273 * in shape, even though we are not yet in Loss state.
1274 * If something was really lost, it is eventually caught up
1275 * in tcp_enter_frto_loss.
1276 */
1277 tp->retrans_out = 0;
1278 tp->undo_marker = tp->snd_una;
1279 tp->undo_retrans = 0;
1280
1281 sk_stream_for_retrans_queue(skb, sk) {
Ilpo Järvinen522e7542007-02-21 22:54:52 -08001282 TCP_SKB_CB(skb)->sacked &= ~TCPCB_SACKED_RETRANS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 }
1284 tcp_sync_left_out(tp);
1285
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001286 tcp_set_ca_state(sk, TCP_CA_Open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 tp->frto_highmark = tp->snd_nxt;
1288}
1289
1290/* Enter Loss state after F-RTO was applied. Dupack arrived after RTO,
1291 * which indicates that we should follow the traditional RTO recovery,
1292 * i.e. mark everything lost and do go-back-N retransmission.
1293 */
1294static void tcp_enter_frto_loss(struct sock *sk)
1295{
1296 struct tcp_sock *tp = tcp_sk(sk);
1297 struct sk_buff *skb;
1298 int cnt = 0;
1299
1300 tp->sacked_out = 0;
1301 tp->lost_out = 0;
1302 tp->fackets_out = 0;
1303
1304 sk_stream_for_retrans_queue(skb, sk) {
1305 cnt += tcp_skb_pcount(skb);
1306 TCP_SKB_CB(skb)->sacked &= ~TCPCB_LOST;
1307 if (!(TCP_SKB_CB(skb)->sacked&TCPCB_SACKED_ACKED)) {
1308
1309 /* Do not mark those segments lost that were
1310 * forward transmitted after RTO
1311 */
1312 if (!after(TCP_SKB_CB(skb)->end_seq,
1313 tp->frto_highmark)) {
1314 TCP_SKB_CB(skb)->sacked |= TCPCB_LOST;
1315 tp->lost_out += tcp_skb_pcount(skb);
1316 }
1317 } else {
1318 tp->sacked_out += tcp_skb_pcount(skb);
1319 tp->fackets_out = cnt;
1320 }
1321 }
1322 tcp_sync_left_out(tp);
1323
1324 tp->snd_cwnd = tp->frto_counter + tcp_packets_in_flight(tp)+1;
1325 tp->snd_cwnd_cnt = 0;
1326 tp->snd_cwnd_stamp = tcp_time_stamp;
1327 tp->undo_marker = 0;
1328 tp->frto_counter = 0;
1329
1330 tp->reordering = min_t(unsigned int, tp->reordering,
1331 sysctl_tcp_reordering);
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001332 tcp_set_ca_state(sk, TCP_CA_Loss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 tp->high_seq = tp->frto_highmark;
1334 TCP_ECN_queue_cwr(tp);
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001335
1336 clear_all_retrans_hints(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337}
1338
1339void tcp_clear_retrans(struct tcp_sock *tp)
1340{
1341 tp->left_out = 0;
1342 tp->retrans_out = 0;
1343
1344 tp->fackets_out = 0;
1345 tp->sacked_out = 0;
1346 tp->lost_out = 0;
1347
1348 tp->undo_marker = 0;
1349 tp->undo_retrans = 0;
1350}
1351
1352/* Enter Loss state. If "how" is not zero, forget all SACK information
1353 * and reset tags completely, otherwise preserve SACKs. If receiver
1354 * dropped its ofo queue, we will know this due to reneging detection.
1355 */
1356void tcp_enter_loss(struct sock *sk, int how)
1357{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001358 const struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 struct tcp_sock *tp = tcp_sk(sk);
1360 struct sk_buff *skb;
1361 int cnt = 0;
1362
1363 /* Reduce ssthresh if it has not yet been made inside this window. */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001364 if (icsk->icsk_ca_state <= TCP_CA_Disorder || tp->snd_una == tp->high_seq ||
1365 (icsk->icsk_ca_state == TCP_CA_Loss && !icsk->icsk_retransmits)) {
1366 tp->prior_ssthresh = tcp_current_ssthresh(sk);
1367 tp->snd_ssthresh = icsk->icsk_ca_ops->ssthresh(sk);
1368 tcp_ca_event(sk, CA_EVENT_LOSS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 }
1370 tp->snd_cwnd = 1;
1371 tp->snd_cwnd_cnt = 0;
1372 tp->snd_cwnd_stamp = tcp_time_stamp;
1373
Stephen Hemminger9772efb2005-11-10 17:09:53 -08001374 tp->bytes_acked = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 tcp_clear_retrans(tp);
1376
1377 /* Push undo marker, if it was plain RTO and nothing
1378 * was retransmitted. */
1379 if (!how)
1380 tp->undo_marker = tp->snd_una;
1381
1382 sk_stream_for_retrans_queue(skb, sk) {
1383 cnt += tcp_skb_pcount(skb);
1384 if (TCP_SKB_CB(skb)->sacked&TCPCB_RETRANS)
1385 tp->undo_marker = 0;
1386 TCP_SKB_CB(skb)->sacked &= (~TCPCB_TAGBITS)|TCPCB_SACKED_ACKED;
1387 if (!(TCP_SKB_CB(skb)->sacked&TCPCB_SACKED_ACKED) || how) {
1388 TCP_SKB_CB(skb)->sacked &= ~TCPCB_SACKED_ACKED;
1389 TCP_SKB_CB(skb)->sacked |= TCPCB_LOST;
1390 tp->lost_out += tcp_skb_pcount(skb);
1391 } else {
1392 tp->sacked_out += tcp_skb_pcount(skb);
1393 tp->fackets_out = cnt;
1394 }
1395 }
1396 tcp_sync_left_out(tp);
1397
1398 tp->reordering = min_t(unsigned int, tp->reordering,
1399 sysctl_tcp_reordering);
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001400 tcp_set_ca_state(sk, TCP_CA_Loss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 tp->high_seq = tp->snd_nxt;
1402 TCP_ECN_queue_cwr(tp);
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001403
1404 clear_all_retrans_hints(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405}
1406
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001407static int tcp_check_sack_reneging(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408{
1409 struct sk_buff *skb;
1410
1411 /* If ACK arrived pointing to a remembered SACK,
1412 * it means that our remembered SACKs do not reflect
1413 * real state of receiver i.e.
1414 * receiver _host_ is heavily congested (or buggy).
1415 * Do processing similar to RTO timeout.
1416 */
1417 if ((skb = skb_peek(&sk->sk_write_queue)) != NULL &&
1418 (TCP_SKB_CB(skb)->sacked & TCPCB_SACKED_ACKED)) {
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001419 struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 NET_INC_STATS_BH(LINUX_MIB_TCPSACKRENEGING);
1421
1422 tcp_enter_loss(sk, 1);
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001423 icsk->icsk_retransmits++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 tcp_retransmit_skb(sk, skb_peek(&sk->sk_write_queue));
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001425 inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS,
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001426 icsk->icsk_rto, TCP_RTO_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 return 1;
1428 }
1429 return 0;
1430}
1431
1432static inline int tcp_fackets_out(struct tcp_sock *tp)
1433{
1434 return IsReno(tp) ? tp->sacked_out+1 : tp->fackets_out;
1435}
1436
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001437static inline int tcp_skb_timedout(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001439 return (tcp_time_stamp - TCP_SKB_CB(skb)->when > inet_csk(sk)->icsk_rto);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440}
1441
1442static inline int tcp_head_timedout(struct sock *sk, struct tcp_sock *tp)
1443{
1444 return tp->packets_out &&
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001445 tcp_skb_timedout(sk, skb_peek(&sk->sk_write_queue));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446}
1447
1448/* Linux NewReno/SACK/FACK/ECN state machine.
1449 * --------------------------------------
1450 *
1451 * "Open" Normal state, no dubious events, fast path.
1452 * "Disorder" In all the respects it is "Open",
1453 * but requires a bit more attention. It is entered when
1454 * we see some SACKs or dupacks. It is split of "Open"
1455 * mainly to move some processing from fast path to slow one.
1456 * "CWR" CWND was reduced due to some Congestion Notification event.
1457 * It can be ECN, ICMP source quench, local device congestion.
1458 * "Recovery" CWND was reduced, we are fast-retransmitting.
1459 * "Loss" CWND was reduced due to RTO timeout or SACK reneging.
1460 *
1461 * tcp_fastretrans_alert() is entered:
1462 * - each incoming ACK, if state is not "Open"
1463 * - when arrived ACK is unusual, namely:
1464 * * SACK
1465 * * Duplicate ACK.
1466 * * ECN ECE.
1467 *
1468 * Counting packets in flight is pretty simple.
1469 *
1470 * in_flight = packets_out - left_out + retrans_out
1471 *
1472 * packets_out is SND.NXT-SND.UNA counted in packets.
1473 *
1474 * retrans_out is number of retransmitted segments.
1475 *
1476 * left_out is number of segments left network, but not ACKed yet.
1477 *
1478 * left_out = sacked_out + lost_out
1479 *
1480 * sacked_out: Packets, which arrived to receiver out of order
1481 * and hence not ACKed. With SACKs this number is simply
1482 * amount of SACKed data. Even without SACKs
1483 * it is easy to give pretty reliable estimate of this number,
1484 * counting duplicate ACKs.
1485 *
1486 * lost_out: Packets lost by network. TCP has no explicit
1487 * "loss notification" feedback from network (for now).
1488 * It means that this number can be only _guessed_.
1489 * Actually, it is the heuristics to predict lossage that
1490 * distinguishes different algorithms.
1491 *
1492 * F.e. after RTO, when all the queue is considered as lost,
1493 * lost_out = packets_out and in_flight = retrans_out.
1494 *
1495 * Essentially, we have now two algorithms counting
1496 * lost packets.
1497 *
1498 * FACK: It is the simplest heuristics. As soon as we decided
1499 * that something is lost, we decide that _all_ not SACKed
1500 * packets until the most forward SACK are lost. I.e.
1501 * lost_out = fackets_out - sacked_out and left_out = fackets_out.
1502 * It is absolutely correct estimate, if network does not reorder
1503 * packets. And it loses any connection to reality when reordering
1504 * takes place. We use FACK by default until reordering
1505 * is suspected on the path to this destination.
1506 *
1507 * NewReno: when Recovery is entered, we assume that one segment
1508 * is lost (classic Reno). While we are in Recovery and
1509 * a partial ACK arrives, we assume that one more packet
1510 * is lost (NewReno). This heuristics are the same in NewReno
1511 * and SACK.
1512 *
1513 * Imagine, that's all! Forget about all this shamanism about CWND inflation
1514 * deflation etc. CWND is real congestion window, never inflated, changes
1515 * only according to classic VJ rules.
1516 *
1517 * Really tricky (and requiring careful tuning) part of algorithm
1518 * is hidden in functions tcp_time_to_recover() and tcp_xmit_retransmit_queue().
1519 * The first determines the moment _when_ we should reduce CWND and,
1520 * hence, slow down forward transmission. In fact, it determines the moment
1521 * when we decide that hole is caused by loss, rather than by a reorder.
1522 *
1523 * tcp_xmit_retransmit_queue() decides, _what_ we should retransmit to fill
1524 * holes, caused by lost packets.
1525 *
1526 * And the most logically complicated part of algorithm is undo
1527 * heuristics. We detect false retransmits due to both too early
1528 * fast retransmit (reordering) and underestimated RTO, analyzing
1529 * timestamps and D-SACKs. When we detect that some segments were
1530 * retransmitted by mistake and CWND reduction was wrong, we undo
1531 * window reduction and abort recovery phase. This logic is hidden
1532 * inside several functions named tcp_try_undo_<something>.
1533 */
1534
1535/* This function decides, when we should leave Disordered state
1536 * and enter Recovery phase, reducing congestion window.
1537 *
1538 * Main question: may we further continue forward transmission
1539 * with the same cwnd?
1540 */
1541static int tcp_time_to_recover(struct sock *sk, struct tcp_sock *tp)
1542{
1543 __u32 packets_out;
1544
1545 /* Trick#1: The loss is proven. */
1546 if (tp->lost_out)
1547 return 1;
1548
1549 /* Not-A-Trick#2 : Classic rule... */
1550 if (tcp_fackets_out(tp) > tp->reordering)
1551 return 1;
1552
1553 /* Trick#3 : when we use RFC2988 timer restart, fast
1554 * retransmit can be triggered by timeout of queue head.
1555 */
1556 if (tcp_head_timedout(sk, tp))
1557 return 1;
1558
1559 /* Trick#4: It is still not OK... But will it be useful to delay
1560 * recovery more?
1561 */
1562 packets_out = tp->packets_out;
1563 if (packets_out <= tp->reordering &&
1564 tp->sacked_out >= max_t(__u32, packets_out/2, sysctl_tcp_reordering) &&
1565 !tcp_may_send_now(sk, tp)) {
1566 /* We have nothing to send. This connection is limited
1567 * either by receiver window or by application.
1568 */
1569 return 1;
1570 }
1571
1572 return 0;
1573}
1574
1575/* If we receive more dupacks than we expected counting segments
1576 * in assumption of absent reordering, interpret this as reordering.
1577 * The only another reason could be bug in receiver TCP.
1578 */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001579static void tcp_check_reno_reordering(struct sock *sk, const int addend)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001581 struct tcp_sock *tp = tcp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 u32 holes;
1583
1584 holes = max(tp->lost_out, 1U);
1585 holes = min(holes, tp->packets_out);
1586
1587 if ((tp->sacked_out + holes) > tp->packets_out) {
1588 tp->sacked_out = tp->packets_out - holes;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001589 tcp_update_reordering(sk, tp->packets_out + addend, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 }
1591}
1592
1593/* Emulate SACKs for SACKless connection: account for a new dupack. */
1594
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001595static void tcp_add_reno_sack(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001597 struct tcp_sock *tp = tcp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 tp->sacked_out++;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001599 tcp_check_reno_reordering(sk, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 tcp_sync_left_out(tp);
1601}
1602
1603/* Account for ACK, ACKing some data in Reno Recovery phase. */
1604
1605static void tcp_remove_reno_sacks(struct sock *sk, struct tcp_sock *tp, int acked)
1606{
1607 if (acked > 0) {
1608 /* One ACK acked hole. The rest eat duplicate ACKs. */
1609 if (acked-1 >= tp->sacked_out)
1610 tp->sacked_out = 0;
1611 else
1612 tp->sacked_out -= acked-1;
1613 }
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001614 tcp_check_reno_reordering(sk, acked);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 tcp_sync_left_out(tp);
1616}
1617
1618static inline void tcp_reset_reno_sack(struct tcp_sock *tp)
1619{
1620 tp->sacked_out = 0;
1621 tp->left_out = tp->lost_out;
1622}
1623
1624/* Mark head of queue up as lost. */
1625static void tcp_mark_head_lost(struct sock *sk, struct tcp_sock *tp,
1626 int packets, u32 high_seq)
1627{
1628 struct sk_buff *skb;
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001629 int cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001631 BUG_TRAP(packets <= tp->packets_out);
1632 if (tp->lost_skb_hint) {
1633 skb = tp->lost_skb_hint;
1634 cnt = tp->lost_cnt_hint;
1635 } else {
1636 skb = sk->sk_write_queue.next;
1637 cnt = 0;
1638 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001640 sk_stream_for_retrans_queue_from(skb, sk) {
1641 /* TODO: do this better */
1642 /* this is not the most efficient way to do this... */
1643 tp->lost_skb_hint = skb;
1644 tp->lost_cnt_hint = cnt;
1645 cnt += tcp_skb_pcount(skb);
1646 if (cnt > packets || after(TCP_SKB_CB(skb)->end_seq, high_seq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 break;
1648 if (!(TCP_SKB_CB(skb)->sacked&TCPCB_TAGBITS)) {
1649 TCP_SKB_CB(skb)->sacked |= TCPCB_LOST;
1650 tp->lost_out += tcp_skb_pcount(skb);
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001651
1652 /* clear xmit_retransmit_queue hints
1653 * if this is beyond hint */
1654 if(tp->retransmit_skb_hint != NULL &&
1655 before(TCP_SKB_CB(skb)->seq,
1656 TCP_SKB_CB(tp->retransmit_skb_hint)->seq)) {
1657
1658 tp->retransmit_skb_hint = NULL;
1659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 }
1661 }
1662 tcp_sync_left_out(tp);
1663}
1664
1665/* Account newly detected lost packet(s) */
1666
1667static void tcp_update_scoreboard(struct sock *sk, struct tcp_sock *tp)
1668{
1669 if (IsFack(tp)) {
1670 int lost = tp->fackets_out - tp->reordering;
1671 if (lost <= 0)
1672 lost = 1;
1673 tcp_mark_head_lost(sk, tp, lost, tp->high_seq);
1674 } else {
1675 tcp_mark_head_lost(sk, tp, 1, tp->high_seq);
1676 }
1677
1678 /* New heuristics: it is possible only after we switched
1679 * to restart timer each time when something is ACKed.
1680 * Hence, we can detect timed out packets during fast
1681 * retransmit without falling to slow start.
1682 */
Aki M Nyrhinen79320d72006-06-11 21:18:56 -07001683 if (!IsReno(tp) && tcp_head_timedout(sk, tp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 struct sk_buff *skb;
1685
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001686 skb = tp->scoreboard_skb_hint ? tp->scoreboard_skb_hint
1687 : sk->sk_write_queue.next;
1688
1689 sk_stream_for_retrans_queue_from(skb, sk) {
1690 if (!tcp_skb_timedout(sk, skb))
1691 break;
1692
1693 if (!(TCP_SKB_CB(skb)->sacked&TCPCB_TAGBITS)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 TCP_SKB_CB(skb)->sacked |= TCPCB_LOST;
1695 tp->lost_out += tcp_skb_pcount(skb);
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001696
1697 /* clear xmit_retrans hint */
1698 if (tp->retransmit_skb_hint &&
1699 before(TCP_SKB_CB(skb)->seq,
1700 TCP_SKB_CB(tp->retransmit_skb_hint)->seq))
1701
1702 tp->retransmit_skb_hint = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 }
1704 }
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001705
1706 tp->scoreboard_skb_hint = skb;
1707
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 tcp_sync_left_out(tp);
1709 }
1710}
1711
1712/* CWND moderation, preventing bursts due to too big ACKs
1713 * in dubious situations.
1714 */
1715static inline void tcp_moderate_cwnd(struct tcp_sock *tp)
1716{
1717 tp->snd_cwnd = min(tp->snd_cwnd,
1718 tcp_packets_in_flight(tp)+tcp_max_burst(tp));
1719 tp->snd_cwnd_stamp = tcp_time_stamp;
1720}
1721
Stephen Hemminger72dc5b92006-06-05 17:30:08 -07001722/* Lower bound on congestion window is slow start threshold
1723 * unless congestion avoidance choice decides to overide it.
1724 */
1725static inline u32 tcp_cwnd_min(const struct sock *sk)
1726{
1727 const struct tcp_congestion_ops *ca_ops = inet_csk(sk)->icsk_ca_ops;
1728
1729 return ca_ops->min_cwnd ? ca_ops->min_cwnd(sk) : tcp_sk(sk)->snd_ssthresh;
1730}
1731
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732/* Decrease cwnd each second ack. */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001733static void tcp_cwnd_down(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001735 struct tcp_sock *tp = tcp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 int decr = tp->snd_cwnd_cnt + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
1738 tp->snd_cwnd_cnt = decr&1;
1739 decr >>= 1;
1740
Stephen Hemminger72dc5b92006-06-05 17:30:08 -07001741 if (decr && tp->snd_cwnd > tcp_cwnd_min(sk))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 tp->snd_cwnd -= decr;
1743
1744 tp->snd_cwnd = min(tp->snd_cwnd, tcp_packets_in_flight(tp)+1);
1745 tp->snd_cwnd_stamp = tcp_time_stamp;
1746}
1747
1748/* Nothing was retransmitted or returned timestamp is less
1749 * than timestamp of the first retransmission.
1750 */
1751static inline int tcp_packet_delayed(struct tcp_sock *tp)
1752{
1753 return !tp->retrans_stamp ||
1754 (tp->rx_opt.saw_tstamp && tp->rx_opt.rcv_tsecr &&
1755 (__s32)(tp->rx_opt.rcv_tsecr - tp->retrans_stamp) < 0);
1756}
1757
1758/* Undo procedures. */
1759
1760#if FASTRETRANS_DEBUG > 1
1761static void DBGUNDO(struct sock *sk, struct tcp_sock *tp, const char *msg)
1762{
1763 struct inet_sock *inet = inet_sk(sk);
1764 printk(KERN_DEBUG "Undo %s %u.%u.%u.%u/%u c%u l%u ss%u/%u p%u\n",
1765 msg,
1766 NIPQUAD(inet->daddr), ntohs(inet->dport),
1767 tp->snd_cwnd, tp->left_out,
1768 tp->snd_ssthresh, tp->prior_ssthresh,
1769 tp->packets_out);
1770}
1771#else
1772#define DBGUNDO(x...) do { } while (0)
1773#endif
1774
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001775static void tcp_undo_cwr(struct sock *sk, const int undo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001777 struct tcp_sock *tp = tcp_sk(sk);
1778
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 if (tp->prior_ssthresh) {
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001780 const struct inet_connection_sock *icsk = inet_csk(sk);
1781
1782 if (icsk->icsk_ca_ops->undo_cwnd)
1783 tp->snd_cwnd = icsk->icsk_ca_ops->undo_cwnd(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 else
1785 tp->snd_cwnd = max(tp->snd_cwnd, tp->snd_ssthresh<<1);
1786
1787 if (undo && tp->prior_ssthresh > tp->snd_ssthresh) {
1788 tp->snd_ssthresh = tp->prior_ssthresh;
1789 TCP_ECN_withdraw_cwr(tp);
1790 }
1791 } else {
1792 tp->snd_cwnd = max(tp->snd_cwnd, tp->snd_ssthresh);
1793 }
1794 tcp_moderate_cwnd(tp);
1795 tp->snd_cwnd_stamp = tcp_time_stamp;
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001796
1797 /* There is something screwy going on with the retrans hints after
1798 an undo */
1799 clear_all_retrans_hints(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800}
1801
1802static inline int tcp_may_undo(struct tcp_sock *tp)
1803{
1804 return tp->undo_marker &&
1805 (!tp->undo_retrans || tcp_packet_delayed(tp));
1806}
1807
1808/* People celebrate: "We love our President!" */
1809static int tcp_try_undo_recovery(struct sock *sk, struct tcp_sock *tp)
1810{
1811 if (tcp_may_undo(tp)) {
1812 /* Happy end! We did not retransmit anything
1813 * or our original transmission succeeded.
1814 */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001815 DBGUNDO(sk, tp, inet_csk(sk)->icsk_ca_state == TCP_CA_Loss ? "loss" : "retrans");
1816 tcp_undo_cwr(sk, 1);
1817 if (inet_csk(sk)->icsk_ca_state == TCP_CA_Loss)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 NET_INC_STATS_BH(LINUX_MIB_TCPLOSSUNDO);
1819 else
1820 NET_INC_STATS_BH(LINUX_MIB_TCPFULLUNDO);
1821 tp->undo_marker = 0;
1822 }
1823 if (tp->snd_una == tp->high_seq && IsReno(tp)) {
1824 /* Hold old state until something *above* high_seq
1825 * is ACKed. For Reno it is MUST to prevent false
1826 * fast retransmits (RFC2582). SACK TCP is safe. */
1827 tcp_moderate_cwnd(tp);
1828 return 1;
1829 }
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001830 tcp_set_ca_state(sk, TCP_CA_Open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 return 0;
1832}
1833
1834/* Try to undo cwnd reduction, because D-SACKs acked all retransmitted data */
1835static void tcp_try_undo_dsack(struct sock *sk, struct tcp_sock *tp)
1836{
1837 if (tp->undo_marker && !tp->undo_retrans) {
1838 DBGUNDO(sk, tp, "D-SACK");
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001839 tcp_undo_cwr(sk, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 tp->undo_marker = 0;
1841 NET_INC_STATS_BH(LINUX_MIB_TCPDSACKUNDO);
1842 }
1843}
1844
1845/* Undo during fast recovery after partial ACK. */
1846
1847static int tcp_try_undo_partial(struct sock *sk, struct tcp_sock *tp,
1848 int acked)
1849{
1850 /* Partial ACK arrived. Force Hoe's retransmit. */
1851 int failed = IsReno(tp) || tp->fackets_out>tp->reordering;
1852
1853 if (tcp_may_undo(tp)) {
1854 /* Plain luck! Hole if filled with delayed
1855 * packet, rather than with a retransmit.
1856 */
1857 if (tp->retrans_out == 0)
1858 tp->retrans_stamp = 0;
1859
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001860 tcp_update_reordering(sk, tcp_fackets_out(tp) + acked, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861
1862 DBGUNDO(sk, tp, "Hoe");
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001863 tcp_undo_cwr(sk, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 NET_INC_STATS_BH(LINUX_MIB_TCPPARTIALUNDO);
1865
1866 /* So... Do not make Hoe's retransmit yet.
1867 * If the first packet was delayed, the rest
1868 * ones are most probably delayed as well.
1869 */
1870 failed = 0;
1871 }
1872 return failed;
1873}
1874
1875/* Undo during loss recovery after partial ACK. */
1876static int tcp_try_undo_loss(struct sock *sk, struct tcp_sock *tp)
1877{
1878 if (tcp_may_undo(tp)) {
1879 struct sk_buff *skb;
1880 sk_stream_for_retrans_queue(skb, sk) {
1881 TCP_SKB_CB(skb)->sacked &= ~TCPCB_LOST;
1882 }
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08001883
1884 clear_all_retrans_hints(tp);
1885
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 DBGUNDO(sk, tp, "partial loss");
1887 tp->lost_out = 0;
1888 tp->left_out = tp->sacked_out;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001889 tcp_undo_cwr(sk, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 NET_INC_STATS_BH(LINUX_MIB_TCPLOSSUNDO);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001891 inet_csk(sk)->icsk_retransmits = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 tp->undo_marker = 0;
1893 if (!IsReno(tp))
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001894 tcp_set_ca_state(sk, TCP_CA_Open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 return 1;
1896 }
1897 return 0;
1898}
1899
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001900static inline void tcp_complete_cwr(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001902 struct tcp_sock *tp = tcp_sk(sk);
Stephen Hemminger317a76f2005-06-23 12:19:55 -07001903 tp->snd_cwnd = min(tp->snd_cwnd, tp->snd_ssthresh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 tp->snd_cwnd_stamp = tcp_time_stamp;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001905 tcp_ca_event(sk, CA_EVENT_COMPLETE_CWR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906}
1907
1908static void tcp_try_to_open(struct sock *sk, struct tcp_sock *tp, int flag)
1909{
1910 tp->left_out = tp->sacked_out;
1911
1912 if (tp->retrans_out == 0)
1913 tp->retrans_stamp = 0;
1914
1915 if (flag&FLAG_ECE)
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001916 tcp_enter_cwr(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001918 if (inet_csk(sk)->icsk_ca_state != TCP_CA_CWR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 int state = TCP_CA_Open;
1920
1921 if (tp->left_out || tp->retrans_out || tp->undo_marker)
1922 state = TCP_CA_Disorder;
1923
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001924 if (inet_csk(sk)->icsk_ca_state != state) {
1925 tcp_set_ca_state(sk, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 tp->high_seq = tp->snd_nxt;
1927 }
1928 tcp_moderate_cwnd(tp);
1929 } else {
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001930 tcp_cwnd_down(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 }
1932}
1933
John Heffner5d424d52006-03-20 17:53:41 -08001934static void tcp_mtup_probe_failed(struct sock *sk)
1935{
1936 struct inet_connection_sock *icsk = inet_csk(sk);
1937
1938 icsk->icsk_mtup.search_high = icsk->icsk_mtup.probe_size - 1;
1939 icsk->icsk_mtup.probe_size = 0;
1940}
1941
1942static void tcp_mtup_probe_success(struct sock *sk, struct sk_buff *skb)
1943{
1944 struct tcp_sock *tp = tcp_sk(sk);
1945 struct inet_connection_sock *icsk = inet_csk(sk);
1946
1947 /* FIXME: breaks with very large cwnd */
1948 tp->prior_ssthresh = tcp_current_ssthresh(sk);
1949 tp->snd_cwnd = tp->snd_cwnd *
1950 tcp_mss_to_mtu(sk, tp->mss_cache) /
1951 icsk->icsk_mtup.probe_size;
1952 tp->snd_cwnd_cnt = 0;
1953 tp->snd_cwnd_stamp = tcp_time_stamp;
1954 tp->rcv_ssthresh = tcp_current_ssthresh(sk);
1955
1956 icsk->icsk_mtup.search_low = icsk->icsk_mtup.probe_size;
1957 icsk->icsk_mtup.probe_size = 0;
1958 tcp_sync_mss(sk, icsk->icsk_pmtu_cookie);
1959}
1960
1961
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962/* Process an event, which can update packets-in-flight not trivially.
1963 * Main goal of this function is to calculate new estimate for left_out,
1964 * taking into account both packets sitting in receiver's buffer and
1965 * packets lost by network.
1966 *
1967 * Besides that it does CWND reduction, when packet loss is detected
1968 * and changes state of machine.
1969 *
1970 * It does _not_ decide what to send, it is made in function
1971 * tcp_xmit_retransmit_queue().
1972 */
1973static void
1974tcp_fastretrans_alert(struct sock *sk, u32 prior_snd_una,
1975 int prior_packets, int flag)
1976{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03001977 struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 struct tcp_sock *tp = tcp_sk(sk);
1979 int is_dupack = (tp->snd_una == prior_snd_una && !(flag&FLAG_NOT_DUP));
1980
1981 /* Some technical things:
1982 * 1. Reno does not count dupacks (sacked_out) automatically. */
1983 if (!tp->packets_out)
1984 tp->sacked_out = 0;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001985 /* 2. SACK counts snd_fack in packets inaccurately. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 if (tp->sacked_out == 0)
1987 tp->fackets_out = 0;
1988
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09001989 /* Now state machine starts.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 * A. ECE, hence prohibit cwnd undoing, the reduction is required. */
1991 if (flag&FLAG_ECE)
1992 tp->prior_ssthresh = 0;
1993
1994 /* B. In all the states check for reneging SACKs. */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07001995 if (tp->sacked_out && tcp_check_sack_reneging(sk))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 return;
1997
1998 /* C. Process data loss notification, provided it is valid. */
1999 if ((flag&FLAG_DATA_LOST) &&
2000 before(tp->snd_una, tp->high_seq) &&
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002001 icsk->icsk_ca_state != TCP_CA_Open &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 tp->fackets_out > tp->reordering) {
2003 tcp_mark_head_lost(sk, tp, tp->fackets_out-tp->reordering, tp->high_seq);
2004 NET_INC_STATS_BH(LINUX_MIB_TCPLOSS);
2005 }
2006
2007 /* D. Synchronize left_out to current state. */
2008 tcp_sync_left_out(tp);
2009
2010 /* E. Check state exit conditions. State can be terminated
2011 * when high_seq is ACKed. */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002012 if (icsk->icsk_ca_state == TCP_CA_Open) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 if (!sysctl_tcp_frto)
2014 BUG_TRAP(tp->retrans_out == 0);
2015 tp->retrans_stamp = 0;
2016 } else if (!before(tp->snd_una, tp->high_seq)) {
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002017 switch (icsk->icsk_ca_state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 case TCP_CA_Loss:
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002019 icsk->icsk_retransmits = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 if (tcp_try_undo_recovery(sk, tp))
2021 return;
2022 break;
2023
2024 case TCP_CA_CWR:
2025 /* CWR is to be held something *above* high_seq
2026 * is ACKed for CWR bit to reach receiver. */
2027 if (tp->snd_una != tp->high_seq) {
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002028 tcp_complete_cwr(sk);
2029 tcp_set_ca_state(sk, TCP_CA_Open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 }
2031 break;
2032
2033 case TCP_CA_Disorder:
2034 tcp_try_undo_dsack(sk, tp);
2035 if (!tp->undo_marker ||
2036 /* For SACK case do not Open to allow to undo
2037 * catching for all duplicate ACKs. */
2038 IsReno(tp) || tp->snd_una != tp->high_seq) {
2039 tp->undo_marker = 0;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002040 tcp_set_ca_state(sk, TCP_CA_Open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 }
2042 break;
2043
2044 case TCP_CA_Recovery:
2045 if (IsReno(tp))
2046 tcp_reset_reno_sack(tp);
2047 if (tcp_try_undo_recovery(sk, tp))
2048 return;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002049 tcp_complete_cwr(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 break;
2051 }
2052 }
2053
2054 /* F. Process state. */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002055 switch (icsk->icsk_ca_state) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 case TCP_CA_Recovery:
2057 if (prior_snd_una == tp->snd_una) {
2058 if (IsReno(tp) && is_dupack)
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002059 tcp_add_reno_sack(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 } else {
2061 int acked = prior_packets - tp->packets_out;
2062 if (IsReno(tp))
2063 tcp_remove_reno_sacks(sk, tp, acked);
2064 is_dupack = tcp_try_undo_partial(sk, tp, acked);
2065 }
2066 break;
2067 case TCP_CA_Loss:
2068 if (flag&FLAG_DATA_ACKED)
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002069 icsk->icsk_retransmits = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 if (!tcp_try_undo_loss(sk, tp)) {
2071 tcp_moderate_cwnd(tp);
2072 tcp_xmit_retransmit_queue(sk);
2073 return;
2074 }
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002075 if (icsk->icsk_ca_state != TCP_CA_Open)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 return;
2077 /* Loss is undone; fall through to processing in Open state. */
2078 default:
2079 if (IsReno(tp)) {
2080 if (tp->snd_una != prior_snd_una)
2081 tcp_reset_reno_sack(tp);
2082 if (is_dupack)
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002083 tcp_add_reno_sack(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 }
2085
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002086 if (icsk->icsk_ca_state == TCP_CA_Disorder)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 tcp_try_undo_dsack(sk, tp);
2088
2089 if (!tcp_time_to_recover(sk, tp)) {
2090 tcp_try_to_open(sk, tp, flag);
2091 return;
2092 }
2093
John Heffner5d424d52006-03-20 17:53:41 -08002094 /* MTU probe failure: don't reduce cwnd */
2095 if (icsk->icsk_ca_state < TCP_CA_CWR &&
2096 icsk->icsk_mtup.probe_size &&
John Heffner0e7b1362006-03-20 21:32:58 -08002097 tp->snd_una == tp->mtu_probe.probe_seq_start) {
John Heffner5d424d52006-03-20 17:53:41 -08002098 tcp_mtup_probe_failed(sk);
2099 /* Restores the reduction we did in tcp_mtup_probe() */
2100 tp->snd_cwnd++;
2101 tcp_simple_retransmit(sk);
2102 return;
2103 }
2104
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 /* Otherwise enter Recovery state */
2106
2107 if (IsReno(tp))
2108 NET_INC_STATS_BH(LINUX_MIB_TCPRENORECOVERY);
2109 else
2110 NET_INC_STATS_BH(LINUX_MIB_TCPSACKRECOVERY);
2111
2112 tp->high_seq = tp->snd_nxt;
2113 tp->prior_ssthresh = 0;
2114 tp->undo_marker = tp->snd_una;
2115 tp->undo_retrans = tp->retrans_out;
2116
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002117 if (icsk->icsk_ca_state < TCP_CA_CWR) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 if (!(flag&FLAG_ECE))
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002119 tp->prior_ssthresh = tcp_current_ssthresh(sk);
2120 tp->snd_ssthresh = icsk->icsk_ca_ops->ssthresh(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 TCP_ECN_queue_cwr(tp);
2122 }
2123
Stephen Hemminger9772efb2005-11-10 17:09:53 -08002124 tp->bytes_acked = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 tp->snd_cwnd_cnt = 0;
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002126 tcp_set_ca_state(sk, TCP_CA_Recovery);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 }
2128
2129 if (is_dupack || tcp_head_timedout(sk, tp))
2130 tcp_update_scoreboard(sk, tp);
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002131 tcp_cwnd_down(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 tcp_xmit_retransmit_queue(sk);
2133}
2134
2135/* Read draft-ietf-tcplw-high-performance before mucking
Stephen Hemmingercaa20d9a2005-11-10 17:13:47 -08002136 * with this code. (Supersedes RFC1323)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 */
Stephen Hemminger2d2abba2005-11-10 16:56:12 -08002138static void tcp_ack_saw_tstamp(struct sock *sk, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 /* RTTM Rule: A TSecr value received in a segment is used to
2141 * update the averaged RTT measurement only if the segment
2142 * acknowledges some new data, i.e., only if it advances the
2143 * left edge of the send window.
2144 *
2145 * See draft-ietf-tcplw-high-performance-00, section 3.3.
2146 * 1998/04/10 Andrey V. Savochkin <saw@msu.ru>
2147 *
2148 * Changed: reset backoff as soon as we see the first valid sample.
Stephen Hemmingercaa20d9a2005-11-10 17:13:47 -08002149 * If we do not, we get strongly overestimated rto. With timestamps
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 * samples are accepted even from very old segments: f.e., when rtt=1
2151 * increases to 8, we retransmit 5 times and after 8 seconds delayed
2152 * answer arrives rto becomes 120 seconds! If at least one of segments
2153 * in window is lost... Voila. --ANK (010210)
2154 */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002155 struct tcp_sock *tp = tcp_sk(sk);
2156 const __u32 seq_rtt = tcp_time_stamp - tp->rx_opt.rcv_tsecr;
Stephen Hemminger2d2abba2005-11-10 16:56:12 -08002157 tcp_rtt_estimator(sk, seq_rtt);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002158 tcp_set_rto(sk);
2159 inet_csk(sk)->icsk_backoff = 0;
2160 tcp_bound_rto(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161}
2162
Stephen Hemminger2d2abba2005-11-10 16:56:12 -08002163static void tcp_ack_no_tstamp(struct sock *sk, u32 seq_rtt, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164{
2165 /* We don't have a timestamp. Can only use
2166 * packets that are not retransmitted to determine
2167 * rtt estimates. Also, we must not reset the
2168 * backoff for rto until we get a non-retransmitted
2169 * packet. This allows us to deal with a situation
2170 * where the network delay has increased suddenly.
2171 * I.e. Karn's algorithm. (SIGCOMM '87, p5.)
2172 */
2173
2174 if (flag & FLAG_RETRANS_DATA_ACKED)
2175 return;
2176
Stephen Hemminger2d2abba2005-11-10 16:56:12 -08002177 tcp_rtt_estimator(sk, seq_rtt);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002178 tcp_set_rto(sk);
2179 inet_csk(sk)->icsk_backoff = 0;
2180 tcp_bound_rto(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181}
2182
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002183static inline void tcp_ack_update_rtt(struct sock *sk, const int flag,
Stephen Hemminger2d2abba2005-11-10 16:56:12 -08002184 const s32 seq_rtt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002186 const struct tcp_sock *tp = tcp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 /* Note that peer MAY send zero echo. In this case it is ignored. (rfc1323) */
2188 if (tp->rx_opt.saw_tstamp && tp->rx_opt.rcv_tsecr)
Stephen Hemminger2d2abba2005-11-10 16:56:12 -08002189 tcp_ack_saw_tstamp(sk, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 else if (seq_rtt >= 0)
Stephen Hemminger2d2abba2005-11-10 16:56:12 -08002191 tcp_ack_no_tstamp(sk, seq_rtt, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192}
2193
Stephen Hemminger40efc6f2006-01-03 16:03:49 -08002194static void tcp_cong_avoid(struct sock *sk, u32 ack, u32 rtt,
2195 u32 in_flight, int good)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002197 const struct inet_connection_sock *icsk = inet_csk(sk);
2198 icsk->icsk_ca_ops->cong_avoid(sk, ack, rtt, in_flight, good);
2199 tcp_sk(sk)->snd_cwnd_stamp = tcp_time_stamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200}
2201
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202/* Restart timer after forward progress on connection.
2203 * RFC2988 recommends to restart timer to now+rto.
2204 */
2205
Stephen Hemminger40efc6f2006-01-03 16:03:49 -08002206static void tcp_ack_packets_out(struct sock *sk, struct tcp_sock *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207{
2208 if (!tp->packets_out) {
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002209 inet_csk_clear_xmit_timer(sk, ICSK_TIME_RETRANS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 } else {
Arnaldo Carvalho de Melo3f421ba2005-08-09 20:11:08 -07002211 inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS, inet_csk(sk)->icsk_rto, TCP_RTO_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 }
2213}
2214
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215static int tcp_tso_acked(struct sock *sk, struct sk_buff *skb,
2216 __u32 now, __s32 *seq_rtt)
2217{
2218 struct tcp_sock *tp = tcp_sk(sk);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002219 struct tcp_skb_cb *scb = TCP_SKB_CB(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 __u32 seq = tp->snd_una;
2221 __u32 packets_acked;
2222 int acked = 0;
2223
2224 /* If we get here, the whole TSO packet has not been
2225 * acked.
2226 */
2227 BUG_ON(!after(scb->end_seq, seq));
2228
2229 packets_acked = tcp_skb_pcount(skb);
2230 if (tcp_trim_head(sk, skb, seq - scb->seq))
2231 return 0;
2232 packets_acked -= tcp_skb_pcount(skb);
2233
2234 if (packets_acked) {
2235 __u8 sacked = scb->sacked;
2236
2237 acked |= FLAG_DATA_ACKED;
2238 if (sacked) {
2239 if (sacked & TCPCB_RETRANS) {
2240 if (sacked & TCPCB_SACKED_RETRANS)
2241 tp->retrans_out -= packets_acked;
2242 acked |= FLAG_RETRANS_DATA_ACKED;
2243 *seq_rtt = -1;
2244 } else if (*seq_rtt < 0)
2245 *seq_rtt = now - scb->when;
2246 if (sacked & TCPCB_SACKED_ACKED)
2247 tp->sacked_out -= packets_acked;
2248 if (sacked & TCPCB_LOST)
2249 tp->lost_out -= packets_acked;
2250 if (sacked & TCPCB_URG) {
2251 if (tp->urg_mode &&
2252 !before(seq, tp->snd_up))
2253 tp->urg_mode = 0;
2254 }
2255 } else if (*seq_rtt < 0)
2256 *seq_rtt = now - scb->when;
2257
2258 if (tp->fackets_out) {
2259 __u32 dval = min(tp->fackets_out, packets_acked);
2260 tp->fackets_out -= dval;
2261 }
2262 tp->packets_out -= packets_acked;
2263
2264 BUG_ON(tcp_skb_pcount(skb) == 0);
2265 BUG_ON(!before(scb->seq, scb->end_seq));
2266 }
2267
2268 return acked;
2269}
2270
John Heffner8ea333e2006-09-28 14:47:38 -07002271static u32 tcp_usrtt(struct timeval *tv)
Stephen Hemminger2d2abba2005-11-10 16:56:12 -08002272{
John Heffner8ea333e2006-09-28 14:47:38 -07002273 struct timeval now;
Stephen Hemminger2d2abba2005-11-10 16:56:12 -08002274
2275 do_gettimeofday(&now);
John Heffner8ea333e2006-09-28 14:47:38 -07002276 return (now.tv_sec - tv->tv_sec) * 1000000 + (now.tv_usec - tv->tv_usec);
Stephen Hemminger2d2abba2005-11-10 16:56:12 -08002277}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278
2279/* Remove acknowledged frames from the retransmission queue. */
Stephen Hemminger2d2abba2005-11-10 16:56:12 -08002280static int tcp_clean_rtx_queue(struct sock *sk, __s32 *seq_rtt_p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281{
2282 struct tcp_sock *tp = tcp_sk(sk);
Stephen Hemminger2d2abba2005-11-10 16:56:12 -08002283 const struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 struct sk_buff *skb;
2285 __u32 now = tcp_time_stamp;
2286 int acked = 0;
2287 __s32 seq_rtt = -1;
Stephen Hemminger317a76f2005-06-23 12:19:55 -07002288 u32 pkts_acked = 0;
Stephen Hemminger2d2abba2005-11-10 16:56:12 -08002289 void (*rtt_sample)(struct sock *sk, u32 usrtt)
2290 = icsk->icsk_ca_ops->rtt_sample;
David S. Miller80246ab2006-10-03 16:49:53 -07002291 struct timeval tv = { .tv_sec = 0, .tv_usec = 0 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292
2293 while ((skb = skb_peek(&sk->sk_write_queue)) &&
2294 skb != sk->sk_send_head) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002295 struct tcp_skb_cb *scb = TCP_SKB_CB(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 __u8 sacked = scb->sacked;
2297
2298 /* If our packet is before the ack sequence we can
2299 * discard it as it's confirmed to have arrived at
2300 * the other end.
2301 */
2302 if (after(scb->end_seq, tp->snd_una)) {
David S. Millercb831992005-07-05 15:20:55 -07002303 if (tcp_skb_pcount(skb) > 1 &&
2304 after(tp->snd_una, scb->seq))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 acked |= tcp_tso_acked(sk, skb,
2306 now, &seq_rtt);
2307 break;
2308 }
2309
2310 /* Initial outgoing SYN's get put onto the write_queue
2311 * just like anything else we transmit. It is not
2312 * true data, and if we misinform our callers that
2313 * this ACK acks real data, we will erroneously exit
2314 * connection startup slow start one packet too
2315 * quickly. This is severely frowned upon behavior.
2316 */
2317 if (!(scb->flags & TCPCB_FLAG_SYN)) {
2318 acked |= FLAG_DATA_ACKED;
Stephen Hemminger317a76f2005-06-23 12:19:55 -07002319 ++pkts_acked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 } else {
2321 acked |= FLAG_SYN_ACKED;
2322 tp->retrans_stamp = 0;
2323 }
2324
John Heffner5d424d52006-03-20 17:53:41 -08002325 /* MTU probing checks */
2326 if (icsk->icsk_mtup.probe_size) {
John Heffner0e7b1362006-03-20 21:32:58 -08002327 if (!after(tp->mtu_probe.probe_seq_end, TCP_SKB_CB(skb)->end_seq)) {
John Heffner5d424d52006-03-20 17:53:41 -08002328 tcp_mtup_probe_success(sk, skb);
2329 }
2330 }
2331
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 if (sacked) {
2333 if (sacked & TCPCB_RETRANS) {
2334 if(sacked & TCPCB_SACKED_RETRANS)
2335 tp->retrans_out -= tcp_skb_pcount(skb);
2336 acked |= FLAG_RETRANS_DATA_ACKED;
2337 seq_rtt = -1;
Stephen Hemminger2d2abba2005-11-10 16:56:12 -08002338 } else if (seq_rtt < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 seq_rtt = now - scb->when;
John Heffner8ea333e2006-09-28 14:47:38 -07002340 skb_get_timestamp(skb, &tv);
Patrick McHardya61bbcf2005-08-14 17:24:31 -07002341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 if (sacked & TCPCB_SACKED_ACKED)
2343 tp->sacked_out -= tcp_skb_pcount(skb);
2344 if (sacked & TCPCB_LOST)
2345 tp->lost_out -= tcp_skb_pcount(skb);
2346 if (sacked & TCPCB_URG) {
2347 if (tp->urg_mode &&
2348 !before(scb->end_seq, tp->snd_up))
2349 tp->urg_mode = 0;
2350 }
Stephen Hemminger2d2abba2005-11-10 16:56:12 -08002351 } else if (seq_rtt < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 seq_rtt = now - scb->when;
John Heffner8ea333e2006-09-28 14:47:38 -07002353 skb_get_timestamp(skb, &tv);
Stephen Hemminger2d2abba2005-11-10 16:56:12 -08002354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 tcp_dec_pcount_approx(&tp->fackets_out, skb);
2356 tcp_packets_out_dec(tp, skb);
David S. Miller8728b832005-08-09 19:25:21 -07002357 __skb_unlink(skb, &sk->sk_write_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 sk_stream_free_skb(sk, skb);
Stephen Hemminger6a438bb2005-11-10 17:14:59 -08002359 clear_all_retrans_hints(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 }
2361
2362 if (acked&FLAG_ACKED) {
Stephen Hemminger2d2abba2005-11-10 16:56:12 -08002363 tcp_ack_update_rtt(sk, acked, seq_rtt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 tcp_ack_packets_out(sk, tp);
John Heffner8ea333e2006-09-28 14:47:38 -07002365 if (rtt_sample && !(acked & FLAG_RETRANS_DATA_ACKED))
2366 (*rtt_sample)(sk, tcp_usrtt(&tv));
Stephen Hemminger317a76f2005-06-23 12:19:55 -07002367
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002368 if (icsk->icsk_ca_ops->pkts_acked)
2369 icsk->icsk_ca_ops->pkts_acked(sk, pkts_acked);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 }
2371
2372#if FASTRETRANS_DEBUG > 0
2373 BUG_TRAP((int)tp->sacked_out >= 0);
2374 BUG_TRAP((int)tp->lost_out >= 0);
2375 BUG_TRAP((int)tp->retrans_out >= 0);
2376 if (!tp->packets_out && tp->rx_opt.sack_ok) {
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002377 const struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 if (tp->lost_out) {
2379 printk(KERN_DEBUG "Leak l=%u %d\n",
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002380 tp->lost_out, icsk->icsk_ca_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 tp->lost_out = 0;
2382 }
2383 if (tp->sacked_out) {
2384 printk(KERN_DEBUG "Leak s=%u %d\n",
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002385 tp->sacked_out, icsk->icsk_ca_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 tp->sacked_out = 0;
2387 }
2388 if (tp->retrans_out) {
2389 printk(KERN_DEBUG "Leak r=%u %d\n",
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002390 tp->retrans_out, icsk->icsk_ca_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 tp->retrans_out = 0;
2392 }
2393 }
2394#endif
2395 *seq_rtt_p = seq_rtt;
2396 return acked;
2397}
2398
2399static void tcp_ack_probe(struct sock *sk)
2400{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002401 const struct tcp_sock *tp = tcp_sk(sk);
2402 struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403
2404 /* Was it a usable window open? */
2405
2406 if (!after(TCP_SKB_CB(sk->sk_send_head)->end_seq,
2407 tp->snd_una + tp->snd_wnd)) {
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002408 icsk->icsk_backoff = 0;
2409 inet_csk_clear_xmit_timer(sk, ICSK_TIME_PROBE0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 /* Socket must be waked up by subsequent tcp_data_snd_check().
2411 * This function is not for random using!
2412 */
2413 } else {
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002414 inet_csk_reset_xmit_timer(sk, ICSK_TIME_PROBE0,
Arnaldo Carvalho de Melo3f421ba2005-08-09 20:11:08 -07002415 min(icsk->icsk_rto << icsk->icsk_backoff, TCP_RTO_MAX),
2416 TCP_RTO_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 }
2418}
2419
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002420static inline int tcp_ack_is_dubious(const struct sock *sk, const int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421{
2422 return (!(flag & FLAG_NOT_DUP) || (flag & FLAG_CA_ALERT) ||
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002423 inet_csk(sk)->icsk_ca_state != TCP_CA_Open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424}
2425
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002426static inline int tcp_may_raise_cwnd(const struct sock *sk, const int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002428 const struct tcp_sock *tp = tcp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 return (!(flag & FLAG_ECE) || tp->snd_cwnd < tp->snd_ssthresh) &&
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002430 !((1 << inet_csk(sk)->icsk_ca_state) & (TCPF_CA_Recovery | TCPF_CA_CWR));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431}
2432
2433/* Check that window update is acceptable.
2434 * The function assumes that snd_una<=ack<=snd_next.
2435 */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002436static inline int tcp_may_update_window(const struct tcp_sock *tp, const u32 ack,
2437 const u32 ack_seq, const u32 nwin)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438{
2439 return (after(ack, tp->snd_una) ||
2440 after(ack_seq, tp->snd_wl1) ||
2441 (ack_seq == tp->snd_wl1 && nwin > tp->snd_wnd));
2442}
2443
2444/* Update our send window.
2445 *
2446 * Window update algorithm, described in RFC793/RFC1122 (used in linux-2.2
2447 * and in FreeBSD. NetBSD's one is even worse.) is wrong.
2448 */
2449static int tcp_ack_update_window(struct sock *sk, struct tcp_sock *tp,
2450 struct sk_buff *skb, u32 ack, u32 ack_seq)
2451{
2452 int flag = 0;
2453 u32 nwin = ntohs(skb->h.th->window);
2454
2455 if (likely(!skb->h.th->syn))
2456 nwin <<= tp->rx_opt.snd_wscale;
2457
2458 if (tcp_may_update_window(tp, ack, ack_seq, nwin)) {
2459 flag |= FLAG_WIN_UPDATE;
2460 tcp_update_wl(tp, ack, ack_seq);
2461
2462 if (tp->snd_wnd != nwin) {
2463 tp->snd_wnd = nwin;
2464
2465 /* Note, it is the only place, where
2466 * fast path is recovered for sending TCP.
2467 */
Herbert Xu2ad41062005-10-27 18:47:46 +10002468 tp->pred_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 tcp_fast_path_check(sk, tp);
2470
2471 if (nwin > tp->max_window) {
2472 tp->max_window = nwin;
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -08002473 tcp_sync_mss(sk, inet_csk(sk)->icsk_pmtu_cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 }
2475 }
2476 }
2477
2478 tp->snd_una = ack;
2479
2480 return flag;
2481}
2482
Ilpo Järvinen9ead9a12007-02-21 22:56:19 -08002483/* A very conservative spurious RTO response algorithm: reduce cwnd and
2484 * continue in congestion avoidance.
2485 */
2486static void tcp_conservative_spur_to_response(struct tcp_sock *tp)
2487{
2488 tp->snd_cwnd = min(tp->snd_cwnd, tp->snd_ssthresh);
2489 tcp_moderate_cwnd(tp);
2490}
2491
Ilpo Järvinen30935cf2007-02-21 23:01:36 -08002492/* F-RTO spurious RTO detection algorithm (RFC4138)
2493 *
2494 * F-RTO affects during two new ACKs following RTO. State (ACK number) is kept
2495 * in frto_counter. When ACK advances window (but not to or beyond highest
2496 * sequence sent before RTO):
2497 * On First ACK, send two new segments out.
2498 * On Second ACK, RTO was likely spurious. Do spurious response (response
2499 * algorithm is not part of the F-RTO detection algorithm
2500 * given in RFC4138 but can be selected separately).
2501 * Otherwise (basically on duplicate ACK), RTO was (likely) caused by a loss
2502 * and TCP falls back to conventional RTO recovery.
2503 *
2504 * Rationale: if the RTO was spurious, new ACKs should arrive from the
2505 * original window even after we transmit two new data segments.
2506 *
2507 * F-RTO is implemented (mainly) in four functions:
2508 * - tcp_use_frto() is used to determine if TCP is can use F-RTO
2509 * - tcp_enter_frto() prepares TCP state on RTO if F-RTO is used, it is
2510 * called when tcp_use_frto() showed green light
2511 * - tcp_process_frto() handles incoming ACKs during F-RTO algorithm
2512 * - tcp_enter_frto_loss() is called if there is not enough evidence
2513 * to prove that the RTO is indeed spurious. It transfers the control
2514 * from F-RTO to the conventional RTO recovery
2515 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516static void tcp_process_frto(struct sock *sk, u32 prior_snd_una)
2517{
2518 struct tcp_sock *tp = tcp_sk(sk);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002519
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 tcp_sync_left_out(tp);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002521
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 if (tp->snd_una == prior_snd_una ||
2523 !before(tp->snd_una, tp->frto_highmark)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 tcp_enter_frto_loss(sk);
2525 return;
2526 }
2527
2528 if (tp->frto_counter == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 tp->snd_cwnd = tcp_packets_in_flight(tp) + 2;
Ilpo Järvinen30935cf2007-02-21 23:01:36 -08002530 } else /* frto_counter == 2 */ {
Ilpo Järvinen9ead9a12007-02-21 22:56:19 -08002531 tcp_conservative_spur_to_response(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 }
2533
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 tp->frto_counter = (tp->frto_counter + 1) % 3;
2535}
2536
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537/* This routine deals with incoming acks, but not outgoing ones. */
2538static int tcp_ack(struct sock *sk, struct sk_buff *skb, int flag)
2539{
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002540 struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 struct tcp_sock *tp = tcp_sk(sk);
2542 u32 prior_snd_una = tp->snd_una;
2543 u32 ack_seq = TCP_SKB_CB(skb)->seq;
2544 u32 ack = TCP_SKB_CB(skb)->ack_seq;
2545 u32 prior_in_flight;
2546 s32 seq_rtt;
2547 int prior_packets;
2548
2549 /* If the ack is newer than sent or older than previous acks
2550 * then we can probably ignore it.
2551 */
2552 if (after(ack, tp->snd_nxt))
2553 goto uninteresting_ack;
2554
2555 if (before(ack, prior_snd_una))
2556 goto old_ack;
2557
Daikichi Osuga3fdf3f02006-08-29 02:01:44 -07002558 if (sysctl_tcp_abc) {
2559 if (icsk->icsk_ca_state < TCP_CA_CWR)
2560 tp->bytes_acked += ack - prior_snd_una;
2561 else if (icsk->icsk_ca_state == TCP_CA_Loss)
2562 /* we assume just one segment left network */
2563 tp->bytes_acked += min(ack - prior_snd_una, tp->mss_cache);
2564 }
Stephen Hemminger9772efb2005-11-10 17:09:53 -08002565
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 if (!(flag&FLAG_SLOWPATH) && after(ack, prior_snd_una)) {
2567 /* Window is constant, pure forward advance.
2568 * No more checks are required.
2569 * Note, we use the fact that SND.UNA>=SND.WL2.
2570 */
2571 tcp_update_wl(tp, ack, ack_seq);
2572 tp->snd_una = ack;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 flag |= FLAG_WIN_UPDATE;
2574
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002575 tcp_ca_event(sk, CA_EVENT_FAST_ACK);
Stephen Hemminger317a76f2005-06-23 12:19:55 -07002576
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 NET_INC_STATS_BH(LINUX_MIB_TCPHPACKS);
2578 } else {
2579 if (ack_seq != TCP_SKB_CB(skb)->end_seq)
2580 flag |= FLAG_DATA;
2581 else
2582 NET_INC_STATS_BH(LINUX_MIB_TCPPUREACKS);
2583
2584 flag |= tcp_ack_update_window(sk, tp, skb, ack, ack_seq);
2585
2586 if (TCP_SKB_CB(skb)->sacked)
2587 flag |= tcp_sacktag_write_queue(sk, skb, prior_snd_una);
2588
2589 if (TCP_ECN_rcv_ecn_echo(tp, skb->h.th))
2590 flag |= FLAG_ECE;
2591
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002592 tcp_ca_event(sk, CA_EVENT_SLOW_ACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 }
2594
2595 /* We passed data and got it acked, remove any soft error
2596 * log. Something worked...
2597 */
2598 sk->sk_err_soft = 0;
2599 tp->rcv_tstamp = tcp_time_stamp;
2600 prior_packets = tp->packets_out;
2601 if (!prior_packets)
2602 goto no_queue;
2603
2604 prior_in_flight = tcp_packets_in_flight(tp);
2605
2606 /* See if we can take anything off of the retransmit queue. */
Stephen Hemminger2d2abba2005-11-10 16:56:12 -08002607 flag |= tcp_clean_rtx_queue(sk, &seq_rtt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608
2609 if (tp->frto_counter)
2610 tcp_process_frto(sk, prior_snd_una);
2611
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002612 if (tcp_ack_is_dubious(sk, flag)) {
Stephen Hemmingercaa20d9a2005-11-10 17:13:47 -08002613 /* Advance CWND, if state allows this. */
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002614 if ((flag & FLAG_DATA_ACKED) && tcp_may_raise_cwnd(sk, flag))
2615 tcp_cong_avoid(sk, ack, seq_rtt, prior_in_flight, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 tcp_fastretrans_alert(sk, prior_snd_una, prior_packets, flag);
2617 } else {
Stephen Hemminger317a76f2005-06-23 12:19:55 -07002618 if ((flag & FLAG_DATA_ACKED))
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002619 tcp_cong_avoid(sk, ack, seq_rtt, prior_in_flight, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 }
2621
2622 if ((flag & FLAG_FORWARD_PROGRESS) || !(flag&FLAG_NOT_DUP))
2623 dst_confirm(sk->sk_dst_cache);
2624
2625 return 1;
2626
2627no_queue:
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03002628 icsk->icsk_probes_out = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629
2630 /* If this ack opens up a zero window, clear backoff. It was
2631 * being used to time the probes, and is probably far higher than
2632 * it needs to be for normal retransmission.
2633 */
2634 if (sk->sk_send_head)
2635 tcp_ack_probe(sk);
2636 return 1;
2637
2638old_ack:
2639 if (TCP_SKB_CB(skb)->sacked)
2640 tcp_sacktag_write_queue(sk, skb, prior_snd_una);
2641
2642uninteresting_ack:
2643 SOCK_DEBUG(sk, "Ack %u out of %u:%u\n", ack, tp->snd_una, tp->snd_nxt);
2644 return 0;
2645}
2646
2647
2648/* Look for tcp options. Normally only called on SYN and SYNACK packets.
2649 * But, this can also be called on packets in the established flow when
2650 * the fast version below fails.
2651 */
2652void tcp_parse_options(struct sk_buff *skb, struct tcp_options_received *opt_rx, int estab)
2653{
2654 unsigned char *ptr;
2655 struct tcphdr *th = skb->h.th;
2656 int length=(th->doff*4)-sizeof(struct tcphdr);
2657
2658 ptr = (unsigned char *)(th + 1);
2659 opt_rx->saw_tstamp = 0;
2660
2661 while(length>0) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002662 int opcode=*ptr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 int opsize;
2664
2665 switch (opcode) {
2666 case TCPOPT_EOL:
2667 return;
2668 case TCPOPT_NOP: /* Ref: RFC 793 section 3.1 */
2669 length--;
2670 continue;
2671 default:
2672 opsize=*ptr++;
2673 if (opsize < 2) /* "silly options" */
2674 return;
2675 if (opsize > length)
2676 return; /* don't parse partial options */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002677 switch(opcode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 case TCPOPT_MSS:
2679 if(opsize==TCPOLEN_MSS && th->syn && !estab) {
Al Viro4f3608b2006-09-27 18:35:09 -07002680 u16 in_mss = ntohs(get_unaligned((__be16 *)ptr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 if (in_mss) {
2682 if (opt_rx->user_mss && opt_rx->user_mss < in_mss)
2683 in_mss = opt_rx->user_mss;
2684 opt_rx->mss_clamp = in_mss;
2685 }
2686 }
2687 break;
2688 case TCPOPT_WINDOW:
2689 if(opsize==TCPOLEN_WINDOW && th->syn && !estab)
2690 if (sysctl_tcp_window_scaling) {
2691 __u8 snd_wscale = *(__u8 *) ptr;
2692 opt_rx->wscale_ok = 1;
2693 if (snd_wscale > 14) {
2694 if(net_ratelimit())
2695 printk(KERN_INFO "tcp_parse_options: Illegal window "
2696 "scaling value %d >14 received.\n",
2697 snd_wscale);
2698 snd_wscale = 14;
2699 }
2700 opt_rx->snd_wscale = snd_wscale;
2701 }
2702 break;
2703 case TCPOPT_TIMESTAMP:
2704 if(opsize==TCPOLEN_TIMESTAMP) {
2705 if ((estab && opt_rx->tstamp_ok) ||
2706 (!estab && sysctl_tcp_timestamps)) {
2707 opt_rx->saw_tstamp = 1;
Al Viro4f3608b2006-09-27 18:35:09 -07002708 opt_rx->rcv_tsval = ntohl(get_unaligned((__be32 *)ptr));
2709 opt_rx->rcv_tsecr = ntohl(get_unaligned((__be32 *)(ptr+4)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 }
2711 }
2712 break;
2713 case TCPOPT_SACK_PERM:
2714 if(opsize==TCPOLEN_SACK_PERM && th->syn && !estab) {
2715 if (sysctl_tcp_sack) {
2716 opt_rx->sack_ok = 1;
2717 tcp_sack_reset(opt_rx);
2718 }
2719 }
2720 break;
2721
2722 case TCPOPT_SACK:
2723 if((opsize >= (TCPOLEN_SACK_BASE + TCPOLEN_SACK_PERBLOCK)) &&
2724 !((opsize - TCPOLEN_SACK_BASE) % TCPOLEN_SACK_PERBLOCK) &&
2725 opt_rx->sack_ok) {
2726 TCP_SKB_CB(skb)->sacked = (ptr - 2) - (unsigned char *)th;
2727 }
YOSHIFUJI Hideakicfb6eeb2006-11-14 19:07:45 -08002728#ifdef CONFIG_TCP_MD5SIG
2729 case TCPOPT_MD5SIG:
2730 /*
2731 * The MD5 Hash has already been
2732 * checked (see tcp_v{4,6}_do_rcv()).
2733 */
2734 break;
2735#endif
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09002736 };
2737 ptr+=opsize-2;
2738 length-=opsize;
2739 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 }
2741}
2742
2743/* Fast parse options. This hopes to only see timestamps.
2744 * If it is wrong it falls back on tcp_parse_options().
2745 */
Stephen Hemminger40efc6f2006-01-03 16:03:49 -08002746static int tcp_fast_parse_options(struct sk_buff *skb, struct tcphdr *th,
2747 struct tcp_sock *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748{
2749 if (th->doff == sizeof(struct tcphdr)>>2) {
2750 tp->rx_opt.saw_tstamp = 0;
2751 return 0;
2752 } else if (tp->rx_opt.tstamp_ok &&
2753 th->doff == (sizeof(struct tcphdr)>>2)+(TCPOLEN_TSTAMP_ALIGNED>>2)) {
Al Viro4f3608b2006-09-27 18:35:09 -07002754 __be32 *ptr = (__be32 *)(th + 1);
2755 if (*ptr == htonl((TCPOPT_NOP << 24) | (TCPOPT_NOP << 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 | (TCPOPT_TIMESTAMP << 8) | TCPOLEN_TIMESTAMP)) {
2757 tp->rx_opt.saw_tstamp = 1;
2758 ++ptr;
2759 tp->rx_opt.rcv_tsval = ntohl(*ptr);
2760 ++ptr;
2761 tp->rx_opt.rcv_tsecr = ntohl(*ptr);
2762 return 1;
2763 }
2764 }
2765 tcp_parse_options(skb, &tp->rx_opt, 1);
2766 return 1;
2767}
2768
2769static inline void tcp_store_ts_recent(struct tcp_sock *tp)
2770{
2771 tp->rx_opt.ts_recent = tp->rx_opt.rcv_tsval;
2772 tp->rx_opt.ts_recent_stamp = xtime.tv_sec;
2773}
2774
2775static inline void tcp_replace_ts_recent(struct tcp_sock *tp, u32 seq)
2776{
2777 if (tp->rx_opt.saw_tstamp && !after(seq, tp->rcv_wup)) {
2778 /* PAWS bug workaround wrt. ACK frames, the PAWS discard
2779 * extra check below makes sure this can only happen
2780 * for pure ACK frames. -DaveM
2781 *
2782 * Not only, also it occurs for expired timestamps.
2783 */
2784
2785 if((s32)(tp->rx_opt.rcv_tsval - tp->rx_opt.ts_recent) >= 0 ||
2786 xtime.tv_sec >= tp->rx_opt.ts_recent_stamp + TCP_PAWS_24DAYS)
2787 tcp_store_ts_recent(tp);
2788 }
2789}
2790
2791/* Sorry, PAWS as specified is broken wrt. pure-ACKs -DaveM
2792 *
2793 * It is not fatal. If this ACK does _not_ change critical state (seqs, window)
2794 * it can pass through stack. So, the following predicate verifies that
2795 * this segment is not used for anything but congestion avoidance or
2796 * fast retransmit. Moreover, we even are able to eliminate most of such
2797 * second order effects, if we apply some small "replay" window (~RTO)
2798 * to timestamp space.
2799 *
2800 * All these measures still do not guarantee that we reject wrapped ACKs
2801 * on networks with high bandwidth, when sequence space is recycled fastly,
2802 * but it guarantees that such events will be very rare and do not affect
2803 * connection seriously. This doesn't look nice, but alas, PAWS is really
2804 * buggy extension.
2805 *
2806 * [ Later note. Even worse! It is buggy for segments _with_ data. RFC
2807 * states that events when retransmit arrives after original data are rare.
2808 * It is a blatant lie. VJ forgot about fast retransmit! 8)8) It is
2809 * the biggest problem on large power networks even with minor reordering.
2810 * OK, let's give it small replay window. If peer clock is even 1hz, it is safe
2811 * up to bandwidth of 18Gigabit/sec. 8) ]
2812 */
2813
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002814static int tcp_disordered_ack(const struct sock *sk, const struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002816 struct tcp_sock *tp = tcp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 struct tcphdr *th = skb->h.th;
2818 u32 seq = TCP_SKB_CB(skb)->seq;
2819 u32 ack = TCP_SKB_CB(skb)->ack_seq;
2820
2821 return (/* 1. Pure ACK with correct sequence number. */
2822 (th->ack && seq == TCP_SKB_CB(skb)->end_seq && seq == tp->rcv_nxt) &&
2823
2824 /* 2. ... and duplicate ACK. */
2825 ack == tp->snd_una &&
2826
2827 /* 3. ... and does not update window. */
2828 !tcp_may_update_window(tp, ack, seq, ntohs(th->window) << tp->rx_opt.snd_wscale) &&
2829
2830 /* 4. ... and sits in replay window. */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002831 (s32)(tp->rx_opt.ts_recent - tp->rx_opt.rcv_tsval) <= (inet_csk(sk)->icsk_rto * 1024) / HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832}
2833
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002834static inline int tcp_paws_discard(const struct sock *sk, const struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002836 const struct tcp_sock *tp = tcp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 return ((s32)(tp->rx_opt.ts_recent - tp->rx_opt.rcv_tsval) > TCP_PAWS_WINDOW &&
2838 xtime.tv_sec < tp->rx_opt.ts_recent_stamp + TCP_PAWS_24DAYS &&
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002839 !tcp_disordered_ack(sk, skb));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840}
2841
2842/* Check segment sequence number for validity.
2843 *
2844 * Segment controls are considered valid, if the segment
2845 * fits to the window after truncation to the window. Acceptability
2846 * of data (and SYN, FIN, of course) is checked separately.
2847 * See tcp_data_queue(), for example.
2848 *
2849 * Also, controls (RST is main one) are accepted using RCV.WUP instead
2850 * of RCV.NXT. Peer still did not advance his SND.UNA when we
2851 * delayed ACK, so that hisSND.UNA<=ourRCV.WUP.
2852 * (borrowed from freebsd)
2853 */
2854
2855static inline int tcp_sequence(struct tcp_sock *tp, u32 seq, u32 end_seq)
2856{
2857 return !before(end_seq, tp->rcv_wup) &&
2858 !after(seq, tp->rcv_nxt + tcp_receive_window(tp));
2859}
2860
2861/* When we get a reset we do this. */
2862static void tcp_reset(struct sock *sk)
2863{
2864 /* We want the right error as BSD sees it (and indeed as we do). */
2865 switch (sk->sk_state) {
2866 case TCP_SYN_SENT:
2867 sk->sk_err = ECONNREFUSED;
2868 break;
2869 case TCP_CLOSE_WAIT:
2870 sk->sk_err = EPIPE;
2871 break;
2872 case TCP_CLOSE:
2873 return;
2874 default:
2875 sk->sk_err = ECONNRESET;
2876 }
2877
2878 if (!sock_flag(sk, SOCK_DEAD))
2879 sk->sk_error_report(sk);
2880
2881 tcp_done(sk);
2882}
2883
2884/*
2885 * Process the FIN bit. This now behaves as it is supposed to work
2886 * and the FIN takes effect when it is validly part of sequence
2887 * space. Not before when we get holes.
2888 *
2889 * If we are ESTABLISHED, a received fin moves us to CLOSE-WAIT
2890 * (and thence onto LAST-ACK and finally, CLOSE, we never enter
2891 * TIME-WAIT)
2892 *
2893 * If we are in FINWAIT-1, a received FIN indicates simultaneous
2894 * close and we go into CLOSING (and later onto TIME-WAIT)
2895 *
2896 * If we are in FINWAIT-2, a received FIN moves us to TIME-WAIT.
2897 */
2898static void tcp_fin(struct sk_buff *skb, struct sock *sk, struct tcphdr *th)
2899{
2900 struct tcp_sock *tp = tcp_sk(sk);
2901
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002902 inet_csk_schedule_ack(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903
2904 sk->sk_shutdown |= RCV_SHUTDOWN;
2905 sock_set_flag(sk, SOCK_DONE);
2906
2907 switch (sk->sk_state) {
2908 case TCP_SYN_RECV:
2909 case TCP_ESTABLISHED:
2910 /* Move to CLOSE_WAIT */
2911 tcp_set_state(sk, TCP_CLOSE_WAIT);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07002912 inet_csk(sk)->icsk_ack.pingpong = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 break;
2914
2915 case TCP_CLOSE_WAIT:
2916 case TCP_CLOSING:
2917 /* Received a retransmission of the FIN, do
2918 * nothing.
2919 */
2920 break;
2921 case TCP_LAST_ACK:
2922 /* RFC793: Remain in the LAST-ACK state. */
2923 break;
2924
2925 case TCP_FIN_WAIT1:
2926 /* This case occurs when a simultaneous close
2927 * happens, we must ack the received FIN and
2928 * enter the CLOSING state.
2929 */
2930 tcp_send_ack(sk);
2931 tcp_set_state(sk, TCP_CLOSING);
2932 break;
2933 case TCP_FIN_WAIT2:
2934 /* Received a FIN -- send ACK and enter TIME_WAIT. */
2935 tcp_send_ack(sk);
2936 tcp_time_wait(sk, TCP_TIME_WAIT, 0);
2937 break;
2938 default:
2939 /* Only TCP_LISTEN and TCP_CLOSE are left, in these
2940 * cases we should never reach this piece of code.
2941 */
2942 printk(KERN_ERR "%s: Impossible, sk->sk_state=%d\n",
2943 __FUNCTION__, sk->sk_state);
2944 break;
2945 };
2946
2947 /* It _is_ possible, that we have something out-of-order _after_ FIN.
2948 * Probably, we should reset in this case. For now drop them.
2949 */
2950 __skb_queue_purge(&tp->out_of_order_queue);
2951 if (tp->rx_opt.sack_ok)
2952 tcp_sack_reset(&tp->rx_opt);
2953 sk_stream_mem_reclaim(sk);
2954
2955 if (!sock_flag(sk, SOCK_DEAD)) {
2956 sk->sk_state_change(sk);
2957
2958 /* Do not send POLL_HUP for half duplex close. */
2959 if (sk->sk_shutdown == SHUTDOWN_MASK ||
2960 sk->sk_state == TCP_CLOSE)
2961 sk_wake_async(sk, 1, POLL_HUP);
2962 else
2963 sk_wake_async(sk, 1, POLL_IN);
2964 }
2965}
2966
Stephen Hemminger40efc6f2006-01-03 16:03:49 -08002967static inline int tcp_sack_extend(struct tcp_sack_block *sp, u32 seq, u32 end_seq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968{
2969 if (!after(seq, sp->end_seq) && !after(sp->start_seq, end_seq)) {
2970 if (before(seq, sp->start_seq))
2971 sp->start_seq = seq;
2972 if (after(end_seq, sp->end_seq))
2973 sp->end_seq = end_seq;
2974 return 1;
2975 }
2976 return 0;
2977}
2978
Stephen Hemminger40efc6f2006-01-03 16:03:49 -08002979static void tcp_dsack_set(struct tcp_sock *tp, u32 seq, u32 end_seq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980{
2981 if (tp->rx_opt.sack_ok && sysctl_tcp_dsack) {
2982 if (before(seq, tp->rcv_nxt))
2983 NET_INC_STATS_BH(LINUX_MIB_TCPDSACKOLDSENT);
2984 else
2985 NET_INC_STATS_BH(LINUX_MIB_TCPDSACKOFOSENT);
2986
2987 tp->rx_opt.dsack = 1;
2988 tp->duplicate_sack[0].start_seq = seq;
2989 tp->duplicate_sack[0].end_seq = end_seq;
2990 tp->rx_opt.eff_sacks = min(tp->rx_opt.num_sacks + 1, 4 - tp->rx_opt.tstamp_ok);
2991 }
2992}
2993
Stephen Hemminger40efc6f2006-01-03 16:03:49 -08002994static void tcp_dsack_extend(struct tcp_sock *tp, u32 seq, u32 end_seq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995{
2996 if (!tp->rx_opt.dsack)
2997 tcp_dsack_set(tp, seq, end_seq);
2998 else
2999 tcp_sack_extend(tp->duplicate_sack, seq, end_seq);
3000}
3001
3002static void tcp_send_dupack(struct sock *sk, struct sk_buff *skb)
3003{
3004 struct tcp_sock *tp = tcp_sk(sk);
3005
3006 if (TCP_SKB_CB(skb)->end_seq != TCP_SKB_CB(skb)->seq &&
3007 before(TCP_SKB_CB(skb)->seq, tp->rcv_nxt)) {
3008 NET_INC_STATS_BH(LINUX_MIB_DELAYEDACKLOST);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07003009 tcp_enter_quickack_mode(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010
3011 if (tp->rx_opt.sack_ok && sysctl_tcp_dsack) {
3012 u32 end_seq = TCP_SKB_CB(skb)->end_seq;
3013
3014 if (after(TCP_SKB_CB(skb)->end_seq, tp->rcv_nxt))
3015 end_seq = tp->rcv_nxt;
3016 tcp_dsack_set(tp, TCP_SKB_CB(skb)->seq, end_seq);
3017 }
3018 }
3019
3020 tcp_send_ack(sk);
3021}
3022
3023/* These routines update the SACK block as out-of-order packets arrive or
3024 * in-order packets close up the sequence space.
3025 */
3026static void tcp_sack_maybe_coalesce(struct tcp_sock *tp)
3027{
3028 int this_sack;
3029 struct tcp_sack_block *sp = &tp->selective_acks[0];
3030 struct tcp_sack_block *swalk = sp+1;
3031
3032 /* See if the recent change to the first SACK eats into
3033 * or hits the sequence space of other SACK blocks, if so coalesce.
3034 */
3035 for (this_sack = 1; this_sack < tp->rx_opt.num_sacks; ) {
3036 if (tcp_sack_extend(sp, swalk->start_seq, swalk->end_seq)) {
3037 int i;
3038
3039 /* Zap SWALK, by moving every further SACK up by one slot.
3040 * Decrease num_sacks.
3041 */
3042 tp->rx_opt.num_sacks--;
3043 tp->rx_opt.eff_sacks = min(tp->rx_opt.num_sacks + tp->rx_opt.dsack, 4 - tp->rx_opt.tstamp_ok);
3044 for(i=this_sack; i < tp->rx_opt.num_sacks; i++)
3045 sp[i] = sp[i+1];
3046 continue;
3047 }
3048 this_sack++, swalk++;
3049 }
3050}
3051
Stephen Hemminger40efc6f2006-01-03 16:03:49 -08003052static inline void tcp_sack_swap(struct tcp_sack_block *sack1, struct tcp_sack_block *sack2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053{
3054 __u32 tmp;
3055
3056 tmp = sack1->start_seq;
3057 sack1->start_seq = sack2->start_seq;
3058 sack2->start_seq = tmp;
3059
3060 tmp = sack1->end_seq;
3061 sack1->end_seq = sack2->end_seq;
3062 sack2->end_seq = tmp;
3063}
3064
3065static void tcp_sack_new_ofo_skb(struct sock *sk, u32 seq, u32 end_seq)
3066{
3067 struct tcp_sock *tp = tcp_sk(sk);
3068 struct tcp_sack_block *sp = &tp->selective_acks[0];
3069 int cur_sacks = tp->rx_opt.num_sacks;
3070 int this_sack;
3071
3072 if (!cur_sacks)
3073 goto new_sack;
3074
3075 for (this_sack=0; this_sack<cur_sacks; this_sack++, sp++) {
3076 if (tcp_sack_extend(sp, seq, end_seq)) {
3077 /* Rotate this_sack to the first one. */
3078 for (; this_sack>0; this_sack--, sp--)
3079 tcp_sack_swap(sp, sp-1);
3080 if (cur_sacks > 1)
3081 tcp_sack_maybe_coalesce(tp);
3082 return;
3083 }
3084 }
3085
3086 /* Could not find an adjacent existing SACK, build a new one,
3087 * put it at the front, and shift everyone else down. We
3088 * always know there is at least one SACK present already here.
3089 *
3090 * If the sack array is full, forget about the last one.
3091 */
3092 if (this_sack >= 4) {
3093 this_sack--;
3094 tp->rx_opt.num_sacks--;
3095 sp--;
3096 }
3097 for(; this_sack > 0; this_sack--, sp--)
3098 *sp = *(sp-1);
3099
3100new_sack:
3101 /* Build the new head SACK, and we're done. */
3102 sp->start_seq = seq;
3103 sp->end_seq = end_seq;
3104 tp->rx_opt.num_sacks++;
3105 tp->rx_opt.eff_sacks = min(tp->rx_opt.num_sacks + tp->rx_opt.dsack, 4 - tp->rx_opt.tstamp_ok);
3106}
3107
3108/* RCV.NXT advances, some SACKs should be eaten. */
3109
3110static void tcp_sack_remove(struct tcp_sock *tp)
3111{
3112 struct tcp_sack_block *sp = &tp->selective_acks[0];
3113 int num_sacks = tp->rx_opt.num_sacks;
3114 int this_sack;
3115
3116 /* Empty ofo queue, hence, all the SACKs are eaten. Clear. */
David S. Millerb03efcf2005-07-08 14:57:23 -07003117 if (skb_queue_empty(&tp->out_of_order_queue)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 tp->rx_opt.num_sacks = 0;
3119 tp->rx_opt.eff_sacks = tp->rx_opt.dsack;
3120 return;
3121 }
3122
3123 for(this_sack = 0; this_sack < num_sacks; ) {
3124 /* Check if the start of the sack is covered by RCV.NXT. */
3125 if (!before(tp->rcv_nxt, sp->start_seq)) {
3126 int i;
3127
3128 /* RCV.NXT must cover all the block! */
3129 BUG_TRAP(!before(tp->rcv_nxt, sp->end_seq));
3130
3131 /* Zap this SACK, by moving forward any other SACKS. */
3132 for (i=this_sack+1; i < num_sacks; i++)
3133 tp->selective_acks[i-1] = tp->selective_acks[i];
3134 num_sacks--;
3135 continue;
3136 }
3137 this_sack++;
3138 sp++;
3139 }
3140 if (num_sacks != tp->rx_opt.num_sacks) {
3141 tp->rx_opt.num_sacks = num_sacks;
3142 tp->rx_opt.eff_sacks = min(tp->rx_opt.num_sacks + tp->rx_opt.dsack, 4 - tp->rx_opt.tstamp_ok);
3143 }
3144}
3145
3146/* This one checks to see if we can put data from the
3147 * out_of_order queue into the receive_queue.
3148 */
3149static void tcp_ofo_queue(struct sock *sk)
3150{
3151 struct tcp_sock *tp = tcp_sk(sk);
3152 __u32 dsack_high = tp->rcv_nxt;
3153 struct sk_buff *skb;
3154
3155 while ((skb = skb_peek(&tp->out_of_order_queue)) != NULL) {
3156 if (after(TCP_SKB_CB(skb)->seq, tp->rcv_nxt))
3157 break;
3158
3159 if (before(TCP_SKB_CB(skb)->seq, dsack_high)) {
3160 __u32 dsack = dsack_high;
3161 if (before(TCP_SKB_CB(skb)->end_seq, dsack_high))
3162 dsack_high = TCP_SKB_CB(skb)->end_seq;
3163 tcp_dsack_extend(tp, TCP_SKB_CB(skb)->seq, dsack);
3164 }
3165
3166 if (!after(TCP_SKB_CB(skb)->end_seq, tp->rcv_nxt)) {
3167 SOCK_DEBUG(sk, "ofo packet was already received \n");
David S. Miller8728b832005-08-09 19:25:21 -07003168 __skb_unlink(skb, &tp->out_of_order_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 __kfree_skb(skb);
3170 continue;
3171 }
3172 SOCK_DEBUG(sk, "ofo requeuing : rcv_next %X seq %X - %X\n",
3173 tp->rcv_nxt, TCP_SKB_CB(skb)->seq,
3174 TCP_SKB_CB(skb)->end_seq);
3175
David S. Miller8728b832005-08-09 19:25:21 -07003176 __skb_unlink(skb, &tp->out_of_order_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177 __skb_queue_tail(&sk->sk_receive_queue, skb);
3178 tp->rcv_nxt = TCP_SKB_CB(skb)->end_seq;
3179 if(skb->h.th->fin)
3180 tcp_fin(skb, sk, skb->h.th);
3181 }
3182}
3183
3184static int tcp_prune_queue(struct sock *sk);
3185
3186static void tcp_data_queue(struct sock *sk, struct sk_buff *skb)
3187{
3188 struct tcphdr *th = skb->h.th;
3189 struct tcp_sock *tp = tcp_sk(sk);
3190 int eaten = -1;
3191
3192 if (TCP_SKB_CB(skb)->seq == TCP_SKB_CB(skb)->end_seq)
3193 goto drop;
3194
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195 __skb_pull(skb, th->doff*4);
3196
3197 TCP_ECN_accept_cwr(tp, skb);
3198
3199 if (tp->rx_opt.dsack) {
3200 tp->rx_opt.dsack = 0;
3201 tp->rx_opt.eff_sacks = min_t(unsigned int, tp->rx_opt.num_sacks,
3202 4 - tp->rx_opt.tstamp_ok);
3203 }
3204
3205 /* Queue data for delivery to the user.
3206 * Packets in sequence go to the receive queue.
3207 * Out of sequence packets to the out_of_order_queue.
3208 */
3209 if (TCP_SKB_CB(skb)->seq == tp->rcv_nxt) {
3210 if (tcp_receive_window(tp) == 0)
3211 goto out_of_window;
3212
3213 /* Ok. In sequence. In window. */
3214 if (tp->ucopy.task == current &&
3215 tp->copied_seq == tp->rcv_nxt && tp->ucopy.len &&
3216 sock_owned_by_user(sk) && !tp->urg_data) {
3217 int chunk = min_t(unsigned int, skb->len,
3218 tp->ucopy.len);
3219
3220 __set_current_state(TASK_RUNNING);
3221
3222 local_bh_enable();
3223 if (!skb_copy_datagram_iovec(skb, 0, tp->ucopy.iov, chunk)) {
3224 tp->ucopy.len -= chunk;
3225 tp->copied_seq += chunk;
3226 eaten = (chunk == skb->len && !th->fin);
3227 tcp_rcv_space_adjust(sk);
3228 }
3229 local_bh_disable();
3230 }
3231
3232 if (eaten <= 0) {
3233queue_and_out:
3234 if (eaten < 0 &&
3235 (atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
3236 !sk_stream_rmem_schedule(sk, skb))) {
3237 if (tcp_prune_queue(sk) < 0 ||
3238 !sk_stream_rmem_schedule(sk, skb))
3239 goto drop;
3240 }
3241 sk_stream_set_owner_r(skb, sk);
3242 __skb_queue_tail(&sk->sk_receive_queue, skb);
3243 }
3244 tp->rcv_nxt = TCP_SKB_CB(skb)->end_seq;
3245 if(skb->len)
3246 tcp_event_data_recv(sk, tp, skb);
3247 if(th->fin)
3248 tcp_fin(skb, sk, th);
3249
David S. Millerb03efcf2005-07-08 14:57:23 -07003250 if (!skb_queue_empty(&tp->out_of_order_queue)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251 tcp_ofo_queue(sk);
3252
3253 /* RFC2581. 4.2. SHOULD send immediate ACK, when
3254 * gap in queue is filled.
3255 */
David S. Millerb03efcf2005-07-08 14:57:23 -07003256 if (skb_queue_empty(&tp->out_of_order_queue))
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07003257 inet_csk(sk)->icsk_ack.pingpong = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 }
3259
3260 if (tp->rx_opt.num_sacks)
3261 tcp_sack_remove(tp);
3262
3263 tcp_fast_path_check(sk, tp);
3264
3265 if (eaten > 0)
3266 __kfree_skb(skb);
3267 else if (!sock_flag(sk, SOCK_DEAD))
3268 sk->sk_data_ready(sk, 0);
3269 return;
3270 }
3271
3272 if (!after(TCP_SKB_CB(skb)->end_seq, tp->rcv_nxt)) {
3273 /* A retransmit, 2nd most common case. Force an immediate ack. */
3274 NET_INC_STATS_BH(LINUX_MIB_DELAYEDACKLOST);
3275 tcp_dsack_set(tp, TCP_SKB_CB(skb)->seq, TCP_SKB_CB(skb)->end_seq);
3276
3277out_of_window:
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07003278 tcp_enter_quickack_mode(sk);
3279 inet_csk_schedule_ack(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280drop:
3281 __kfree_skb(skb);
3282 return;
3283 }
3284
3285 /* Out of window. F.e. zero window probe. */
3286 if (!before(TCP_SKB_CB(skb)->seq, tp->rcv_nxt + tcp_receive_window(tp)))
3287 goto out_of_window;
3288
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07003289 tcp_enter_quickack_mode(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290
3291 if (before(TCP_SKB_CB(skb)->seq, tp->rcv_nxt)) {
3292 /* Partial packet, seq < rcv_next < end_seq */
3293 SOCK_DEBUG(sk, "partial packet: rcv_next %X seq %X - %X\n",
3294 tp->rcv_nxt, TCP_SKB_CB(skb)->seq,
3295 TCP_SKB_CB(skb)->end_seq);
3296
3297 tcp_dsack_set(tp, TCP_SKB_CB(skb)->seq, tp->rcv_nxt);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09003298
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 /* If window is closed, drop tail of packet. But after
3300 * remembering D-SACK for its head made in previous line.
3301 */
3302 if (!tcp_receive_window(tp))
3303 goto out_of_window;
3304 goto queue_and_out;
3305 }
3306
3307 TCP_ECN_check_ce(tp, skb);
3308
3309 if (atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
3310 !sk_stream_rmem_schedule(sk, skb)) {
3311 if (tcp_prune_queue(sk) < 0 ||
3312 !sk_stream_rmem_schedule(sk, skb))
3313 goto drop;
3314 }
3315
3316 /* Disable header prediction. */
3317 tp->pred_flags = 0;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07003318 inet_csk_schedule_ack(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319
3320 SOCK_DEBUG(sk, "out of order segment: rcv_next %X seq %X - %X\n",
3321 tp->rcv_nxt, TCP_SKB_CB(skb)->seq, TCP_SKB_CB(skb)->end_seq);
3322
3323 sk_stream_set_owner_r(skb, sk);
3324
3325 if (!skb_peek(&tp->out_of_order_queue)) {
3326 /* Initial out of order segment, build 1 SACK. */
3327 if (tp->rx_opt.sack_ok) {
3328 tp->rx_opt.num_sacks = 1;
3329 tp->rx_opt.dsack = 0;
3330 tp->rx_opt.eff_sacks = 1;
3331 tp->selective_acks[0].start_seq = TCP_SKB_CB(skb)->seq;
3332 tp->selective_acks[0].end_seq =
3333 TCP_SKB_CB(skb)->end_seq;
3334 }
3335 __skb_queue_head(&tp->out_of_order_queue,skb);
3336 } else {
3337 struct sk_buff *skb1 = tp->out_of_order_queue.prev;
3338 u32 seq = TCP_SKB_CB(skb)->seq;
3339 u32 end_seq = TCP_SKB_CB(skb)->end_seq;
3340
3341 if (seq == TCP_SKB_CB(skb1)->end_seq) {
David S. Miller8728b832005-08-09 19:25:21 -07003342 __skb_append(skb1, skb, &tp->out_of_order_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343
3344 if (!tp->rx_opt.num_sacks ||
3345 tp->selective_acks[0].end_seq != seq)
3346 goto add_sack;
3347
3348 /* Common case: data arrive in order after hole. */
3349 tp->selective_acks[0].end_seq = end_seq;
3350 return;
3351 }
3352
3353 /* Find place to insert this segment. */
3354 do {
3355 if (!after(TCP_SKB_CB(skb1)->seq, seq))
3356 break;
3357 } while ((skb1 = skb1->prev) !=
3358 (struct sk_buff*)&tp->out_of_order_queue);
3359
3360 /* Do skb overlap to previous one? */
3361 if (skb1 != (struct sk_buff*)&tp->out_of_order_queue &&
3362 before(seq, TCP_SKB_CB(skb1)->end_seq)) {
3363 if (!after(end_seq, TCP_SKB_CB(skb1)->end_seq)) {
3364 /* All the bits are present. Drop. */
3365 __kfree_skb(skb);
3366 tcp_dsack_set(tp, seq, end_seq);
3367 goto add_sack;
3368 }
3369 if (after(seq, TCP_SKB_CB(skb1)->seq)) {
3370 /* Partial overlap. */
3371 tcp_dsack_set(tp, seq, TCP_SKB_CB(skb1)->end_seq);
3372 } else {
3373 skb1 = skb1->prev;
3374 }
3375 }
3376 __skb_insert(skb, skb1, skb1->next, &tp->out_of_order_queue);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09003377
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 /* And clean segments covered by new one as whole. */
3379 while ((skb1 = skb->next) !=
3380 (struct sk_buff*)&tp->out_of_order_queue &&
3381 after(end_seq, TCP_SKB_CB(skb1)->seq)) {
3382 if (before(end_seq, TCP_SKB_CB(skb1)->end_seq)) {
3383 tcp_dsack_extend(tp, TCP_SKB_CB(skb1)->seq, end_seq);
3384 break;
3385 }
David S. Miller8728b832005-08-09 19:25:21 -07003386 __skb_unlink(skb1, &tp->out_of_order_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 tcp_dsack_extend(tp, TCP_SKB_CB(skb1)->seq, TCP_SKB_CB(skb1)->end_seq);
3388 __kfree_skb(skb1);
3389 }
3390
3391add_sack:
3392 if (tp->rx_opt.sack_ok)
3393 tcp_sack_new_ofo_skb(sk, seq, end_seq);
3394 }
3395}
3396
3397/* Collapse contiguous sequence of skbs head..tail with
3398 * sequence numbers start..end.
3399 * Segments with FIN/SYN are not collapsed (only because this
3400 * simplifies code)
3401 */
3402static void
David S. Miller8728b832005-08-09 19:25:21 -07003403tcp_collapse(struct sock *sk, struct sk_buff_head *list,
3404 struct sk_buff *head, struct sk_buff *tail,
3405 u32 start, u32 end)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406{
3407 struct sk_buff *skb;
3408
Stephen Hemmingercaa20d9a2005-11-10 17:13:47 -08003409 /* First, check that queue is collapsible and find
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410 * the point where collapsing can be useful. */
3411 for (skb = head; skb != tail; ) {
3412 /* No new bits? It is possible on ofo queue. */
3413 if (!before(start, TCP_SKB_CB(skb)->end_seq)) {
3414 struct sk_buff *next = skb->next;
David S. Miller8728b832005-08-09 19:25:21 -07003415 __skb_unlink(skb, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416 __kfree_skb(skb);
3417 NET_INC_STATS_BH(LINUX_MIB_TCPRCVCOLLAPSED);
3418 skb = next;
3419 continue;
3420 }
3421
3422 /* The first skb to collapse is:
3423 * - not SYN/FIN and
3424 * - bloated or contains data before "start" or
3425 * overlaps to the next one.
3426 */
3427 if (!skb->h.th->syn && !skb->h.th->fin &&
3428 (tcp_win_from_space(skb->truesize) > skb->len ||
3429 before(TCP_SKB_CB(skb)->seq, start) ||
3430 (skb->next != tail &&
3431 TCP_SKB_CB(skb)->end_seq != TCP_SKB_CB(skb->next)->seq)))
3432 break;
3433
3434 /* Decided to skip this, advance start seq. */
3435 start = TCP_SKB_CB(skb)->end_seq;
3436 skb = skb->next;
3437 }
3438 if (skb == tail || skb->h.th->syn || skb->h.th->fin)
3439 return;
3440
3441 while (before(start, end)) {
3442 struct sk_buff *nskb;
3443 int header = skb_headroom(skb);
3444 int copy = SKB_MAX_ORDER(header, 0);
3445
3446 /* Too big header? This can happen with IPv6. */
3447 if (copy < 0)
3448 return;
3449 if (end-start < copy)
3450 copy = end-start;
3451 nskb = alloc_skb(copy+header, GFP_ATOMIC);
3452 if (!nskb)
3453 return;
3454 skb_reserve(nskb, header);
3455 memcpy(nskb->head, skb->head, header);
3456 nskb->nh.raw = nskb->head + (skb->nh.raw-skb->head);
3457 nskb->h.raw = nskb->head + (skb->h.raw-skb->head);
3458 nskb->mac.raw = nskb->head + (skb->mac.raw-skb->head);
3459 memcpy(nskb->cb, skb->cb, sizeof(skb->cb));
3460 TCP_SKB_CB(nskb)->seq = TCP_SKB_CB(nskb)->end_seq = start;
David S. Miller8728b832005-08-09 19:25:21 -07003461 __skb_insert(nskb, skb->prev, skb, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 sk_stream_set_owner_r(nskb, sk);
3463
3464 /* Copy data, releasing collapsed skbs. */
3465 while (copy > 0) {
3466 int offset = start - TCP_SKB_CB(skb)->seq;
3467 int size = TCP_SKB_CB(skb)->end_seq - start;
3468
Kris Katterjohn09a62662006-01-08 22:24:28 -08003469 BUG_ON(offset < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470 if (size > 0) {
3471 size = min(copy, size);
3472 if (skb_copy_bits(skb, offset, skb_put(nskb, size), size))
3473 BUG();
3474 TCP_SKB_CB(nskb)->end_seq += size;
3475 copy -= size;
3476 start += size;
3477 }
3478 if (!before(start, TCP_SKB_CB(skb)->end_seq)) {
3479 struct sk_buff *next = skb->next;
David S. Miller8728b832005-08-09 19:25:21 -07003480 __skb_unlink(skb, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481 __kfree_skb(skb);
3482 NET_INC_STATS_BH(LINUX_MIB_TCPRCVCOLLAPSED);
3483 skb = next;
3484 if (skb == tail || skb->h.th->syn || skb->h.th->fin)
3485 return;
3486 }
3487 }
3488 }
3489}
3490
3491/* Collapse ofo queue. Algorithm: select contiguous sequence of skbs
3492 * and tcp_collapse() them until all the queue is collapsed.
3493 */
3494static void tcp_collapse_ofo_queue(struct sock *sk)
3495{
3496 struct tcp_sock *tp = tcp_sk(sk);
3497 struct sk_buff *skb = skb_peek(&tp->out_of_order_queue);
3498 struct sk_buff *head;
3499 u32 start, end;
3500
3501 if (skb == NULL)
3502 return;
3503
3504 start = TCP_SKB_CB(skb)->seq;
3505 end = TCP_SKB_CB(skb)->end_seq;
3506 head = skb;
3507
3508 for (;;) {
3509 skb = skb->next;
3510
3511 /* Segment is terminated when we see gap or when
3512 * we are at the end of all the queue. */
3513 if (skb == (struct sk_buff *)&tp->out_of_order_queue ||
3514 after(TCP_SKB_CB(skb)->seq, end) ||
3515 before(TCP_SKB_CB(skb)->end_seq, start)) {
David S. Miller8728b832005-08-09 19:25:21 -07003516 tcp_collapse(sk, &tp->out_of_order_queue,
3517 head, skb, start, end);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518 head = skb;
3519 if (skb == (struct sk_buff *)&tp->out_of_order_queue)
3520 break;
3521 /* Start new segment */
3522 start = TCP_SKB_CB(skb)->seq;
3523 end = TCP_SKB_CB(skb)->end_seq;
3524 } else {
3525 if (before(TCP_SKB_CB(skb)->seq, start))
3526 start = TCP_SKB_CB(skb)->seq;
3527 if (after(TCP_SKB_CB(skb)->end_seq, end))
3528 end = TCP_SKB_CB(skb)->end_seq;
3529 }
3530 }
3531}
3532
3533/* Reduce allocated memory if we can, trying to get
3534 * the socket within its memory limits again.
3535 *
3536 * Return less than zero if we should start dropping frames
3537 * until the socket owning process reads some of the data
3538 * to stabilize the situation.
3539 */
3540static int tcp_prune_queue(struct sock *sk)
3541{
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09003542 struct tcp_sock *tp = tcp_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543
3544 SOCK_DEBUG(sk, "prune_queue: c=%x\n", tp->copied_seq);
3545
3546 NET_INC_STATS_BH(LINUX_MIB_PRUNECALLED);
3547
3548 if (atomic_read(&sk->sk_rmem_alloc) >= sk->sk_rcvbuf)
3549 tcp_clamp_window(sk, tp);
3550 else if (tcp_memory_pressure)
3551 tp->rcv_ssthresh = min(tp->rcv_ssthresh, 4U * tp->advmss);
3552
3553 tcp_collapse_ofo_queue(sk);
David S. Miller8728b832005-08-09 19:25:21 -07003554 tcp_collapse(sk, &sk->sk_receive_queue,
3555 sk->sk_receive_queue.next,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556 (struct sk_buff*)&sk->sk_receive_queue,
3557 tp->copied_seq, tp->rcv_nxt);
3558 sk_stream_mem_reclaim(sk);
3559
3560 if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf)
3561 return 0;
3562
3563 /* Collapsing did not help, destructive actions follow.
3564 * This must not ever occur. */
3565
3566 /* First, purge the out_of_order queue. */
David S. Millerb03efcf2005-07-08 14:57:23 -07003567 if (!skb_queue_empty(&tp->out_of_order_queue)) {
3568 NET_INC_STATS_BH(LINUX_MIB_OFOPRUNED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569 __skb_queue_purge(&tp->out_of_order_queue);
3570
3571 /* Reset SACK state. A conforming SACK implementation will
3572 * do the same at a timeout based retransmit. When a connection
3573 * is in a sad state like this, we care only about integrity
3574 * of the connection not performance.
3575 */
3576 if (tp->rx_opt.sack_ok)
3577 tcp_sack_reset(&tp->rx_opt);
3578 sk_stream_mem_reclaim(sk);
3579 }
3580
3581 if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf)
3582 return 0;
3583
3584 /* If we are really being abused, tell the caller to silently
3585 * drop receive data on the floor. It will get retransmitted
3586 * and hopefully then we'll have sufficient space.
3587 */
3588 NET_INC_STATS_BH(LINUX_MIB_RCVPRUNED);
3589
3590 /* Massive buffer overcommit. */
3591 tp->pred_flags = 0;
3592 return -1;
3593}
3594
3595
3596/* RFC2861, slow part. Adjust cwnd, after it was not full during one rto.
3597 * As additional protections, we do not touch cwnd in retransmission phases,
3598 * and if application hit its sndbuf limit recently.
3599 */
3600void tcp_cwnd_application_limited(struct sock *sk)
3601{
3602 struct tcp_sock *tp = tcp_sk(sk);
3603
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03003604 if (inet_csk(sk)->icsk_ca_state == TCP_CA_Open &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605 sk->sk_socket && !test_bit(SOCK_NOSPACE, &sk->sk_socket->flags)) {
3606 /* Limited by application or receiver window. */
Ilpo Järvinend254bcd2006-08-04 16:57:42 -07003607 u32 init_win = tcp_init_cwnd(tp, __sk_dst_get(sk));
3608 u32 win_used = max(tp->snd_cwnd_used, init_win);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609 if (win_used < tp->snd_cwnd) {
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03003610 tp->snd_ssthresh = tcp_current_ssthresh(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611 tp->snd_cwnd = (tp->snd_cwnd + win_used) >> 1;
3612 }
3613 tp->snd_cwnd_used = 0;
3614 }
3615 tp->snd_cwnd_stamp = tcp_time_stamp;
3616}
3617
Stephen Hemminger40efc6f2006-01-03 16:03:49 -08003618static int tcp_should_expand_sndbuf(struct sock *sk, struct tcp_sock *tp)
David S. Miller0d9901d2005-07-05 15:21:10 -07003619{
3620 /* If the user specified a specific send buffer setting, do
3621 * not modify it.
3622 */
3623 if (sk->sk_userlocks & SOCK_SNDBUF_LOCK)
3624 return 0;
3625
3626 /* If we are under global TCP memory pressure, do not expand. */
3627 if (tcp_memory_pressure)
3628 return 0;
3629
3630 /* If we are under soft global TCP memory pressure, do not expand. */
3631 if (atomic_read(&tcp_memory_allocated) >= sysctl_tcp_mem[0])
3632 return 0;
3633
3634 /* If we filled the congestion window, do not expand. */
3635 if (tp->packets_out >= tp->snd_cwnd)
3636 return 0;
3637
3638 return 1;
3639}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640
3641/* When incoming ACK allowed to free some skb from write_queue,
3642 * we remember this event in flag SOCK_QUEUE_SHRUNK and wake up socket
3643 * on the exit from tcp input handler.
3644 *
3645 * PROBLEM: sndbuf expansion does not work well with largesend.
3646 */
3647static void tcp_new_space(struct sock *sk)
3648{
3649 struct tcp_sock *tp = tcp_sk(sk);
3650
David S. Miller0d9901d2005-07-05 15:21:10 -07003651 if (tcp_should_expand_sndbuf(sk, tp)) {
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09003652 int sndmem = max_t(u32, tp->rx_opt.mss_clamp, tp->mss_cache) +
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653 MAX_TCP_HEADER + 16 + sizeof(struct sk_buff),
3654 demanded = max_t(unsigned int, tp->snd_cwnd,
3655 tp->reordering + 1);
3656 sndmem *= 2*demanded;
3657 if (sndmem > sk->sk_sndbuf)
3658 sk->sk_sndbuf = min(sndmem, sysctl_tcp_wmem[2]);
3659 tp->snd_cwnd_stamp = tcp_time_stamp;
3660 }
3661
3662 sk->sk_write_space(sk);
3663}
3664
Stephen Hemminger40efc6f2006-01-03 16:03:49 -08003665static void tcp_check_space(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666{
3667 if (sock_flag(sk, SOCK_QUEUE_SHRUNK)) {
3668 sock_reset_flag(sk, SOCK_QUEUE_SHRUNK);
3669 if (sk->sk_socket &&
3670 test_bit(SOCK_NOSPACE, &sk->sk_socket->flags))
3671 tcp_new_space(sk);
3672 }
3673}
3674
Stephen Hemminger40efc6f2006-01-03 16:03:49 -08003675static inline void tcp_data_snd_check(struct sock *sk, struct tcp_sock *tp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676{
David S. Miller55c97f32005-07-05 15:19:38 -07003677 tcp_push_pending_frames(sk, tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678 tcp_check_space(sk);
3679}
3680
3681/*
3682 * Check if sending an ack is needed.
3683 */
3684static void __tcp_ack_snd_check(struct sock *sk, int ofo_possible)
3685{
3686 struct tcp_sock *tp = tcp_sk(sk);
3687
3688 /* More than one full frame received... */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07003689 if (((tp->rcv_nxt - tp->rcv_wup) > inet_csk(sk)->icsk_ack.rcv_mss
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690 /* ... and right edge of window advances far enough.
3691 * (tcp_recvmsg() will send ACK otherwise). Or...
3692 */
3693 && __tcp_select_window(sk) >= tp->rcv_wnd) ||
3694 /* We ACK each frame or... */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07003695 tcp_in_quickack_mode(sk) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696 /* We have out of order data. */
3697 (ofo_possible &&
3698 skb_peek(&tp->out_of_order_queue))) {
3699 /* Then ack it now */
3700 tcp_send_ack(sk);
3701 } else {
3702 /* Else, send delayed ack. */
3703 tcp_send_delayed_ack(sk);
3704 }
3705}
3706
Stephen Hemminger40efc6f2006-01-03 16:03:49 -08003707static inline void tcp_ack_snd_check(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708{
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07003709 if (!inet_csk_ack_scheduled(sk)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710 /* We sent a data segment already. */
3711 return;
3712 }
3713 __tcp_ack_snd_check(sk, 1);
3714}
3715
3716/*
3717 * This routine is only called when we have urgent data
Stephen Hemmingercaa20d9a2005-11-10 17:13:47 -08003718 * signaled. Its the 'slow' part of tcp_urg. It could be
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719 * moved inline now as tcp_urg is only called from one
3720 * place. We handle URGent data wrong. We have to - as
3721 * BSD still doesn't use the correction from RFC961.
3722 * For 1003.1g we should support a new option TCP_STDURG to permit
3723 * either form (or just set the sysctl tcp_stdurg).
3724 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09003725
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726static void tcp_check_urg(struct sock * sk, struct tcphdr * th)
3727{
3728 struct tcp_sock *tp = tcp_sk(sk);
3729 u32 ptr = ntohs(th->urg_ptr);
3730
3731 if (ptr && !sysctl_tcp_stdurg)
3732 ptr--;
3733 ptr += ntohl(th->seq);
3734
3735 /* Ignore urgent data that we've already seen and read. */
3736 if (after(tp->copied_seq, ptr))
3737 return;
3738
3739 /* Do not replay urg ptr.
3740 *
3741 * NOTE: interesting situation not covered by specs.
3742 * Misbehaving sender may send urg ptr, pointing to segment,
3743 * which we already have in ofo queue. We are not able to fetch
3744 * such data and will stay in TCP_URG_NOTYET until will be eaten
3745 * by recvmsg(). Seems, we are not obliged to handle such wicked
3746 * situations. But it is worth to think about possibility of some
3747 * DoSes using some hypothetical application level deadlock.
3748 */
3749 if (before(ptr, tp->rcv_nxt))
3750 return;
3751
3752 /* Do we already have a newer (or duplicate) urgent pointer? */
3753 if (tp->urg_data && !after(ptr, tp->urg_seq))
3754 return;
3755
3756 /* Tell the world about our new urgent pointer. */
3757 sk_send_sigurg(sk);
3758
3759 /* We may be adding urgent data when the last byte read was
3760 * urgent. To do this requires some care. We cannot just ignore
3761 * tp->copied_seq since we would read the last urgent byte again
3762 * as data, nor can we alter copied_seq until this data arrives
Stephen Hemmingercaa20d9a2005-11-10 17:13:47 -08003763 * or we break the semantics of SIOCATMARK (and thus sockatmark())
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764 *
3765 * NOTE. Double Dutch. Rendering to plain English: author of comment
3766 * above did something sort of send("A", MSG_OOB); send("B", MSG_OOB);
3767 * and expect that both A and B disappear from stream. This is _wrong_.
3768 * Though this happens in BSD with high probability, this is occasional.
3769 * Any application relying on this is buggy. Note also, that fix "works"
3770 * only in this artificial test. Insert some normal data between A and B and we will
3771 * decline of BSD again. Verdict: it is better to remove to trap
3772 * buggy users.
3773 */
3774 if (tp->urg_seq == tp->copied_seq && tp->urg_data &&
3775 !sock_flag(sk, SOCK_URGINLINE) &&
3776 tp->copied_seq != tp->rcv_nxt) {
3777 struct sk_buff *skb = skb_peek(&sk->sk_receive_queue);
3778 tp->copied_seq++;
3779 if (skb && !before(tp->copied_seq, TCP_SKB_CB(skb)->end_seq)) {
David S. Miller8728b832005-08-09 19:25:21 -07003780 __skb_unlink(skb, &sk->sk_receive_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781 __kfree_skb(skb);
3782 }
3783 }
3784
3785 tp->urg_data = TCP_URG_NOTYET;
3786 tp->urg_seq = ptr;
3787
3788 /* Disable header prediction. */
3789 tp->pred_flags = 0;
3790}
3791
3792/* This is the 'fast' part of urgent handling. */
3793static void tcp_urg(struct sock *sk, struct sk_buff *skb, struct tcphdr *th)
3794{
3795 struct tcp_sock *tp = tcp_sk(sk);
3796
3797 /* Check if we get a new urgent pointer - normally not. */
3798 if (th->urg)
3799 tcp_check_urg(sk,th);
3800
3801 /* Do we wait for any urgent data? - normally not... */
3802 if (tp->urg_data == TCP_URG_NOTYET) {
3803 u32 ptr = tp->urg_seq - ntohl(th->seq) + (th->doff * 4) -
3804 th->syn;
3805
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09003806 /* Is the urgent pointer pointing into this packet? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807 if (ptr < skb->len) {
3808 u8 tmp;
3809 if (skb_copy_bits(skb, ptr, &tmp, 1))
3810 BUG();
3811 tp->urg_data = TCP_URG_VALID | tmp;
3812 if (!sock_flag(sk, SOCK_DEAD))
3813 sk->sk_data_ready(sk, 0);
3814 }
3815 }
3816}
3817
3818static int tcp_copy_to_iovec(struct sock *sk, struct sk_buff *skb, int hlen)
3819{
3820 struct tcp_sock *tp = tcp_sk(sk);
3821 int chunk = skb->len - hlen;
3822 int err;
3823
3824 local_bh_enable();
3825 if (skb->ip_summed==CHECKSUM_UNNECESSARY)
3826 err = skb_copy_datagram_iovec(skb, hlen, tp->ucopy.iov, chunk);
3827 else
3828 err = skb_copy_and_csum_datagram_iovec(skb, hlen,
3829 tp->ucopy.iov);
3830
3831 if (!err) {
3832 tp->ucopy.len -= chunk;
3833 tp->copied_seq += chunk;
3834 tcp_rcv_space_adjust(sk);
3835 }
3836
3837 local_bh_disable();
3838 return err;
3839}
3840
Al Virob51655b2006-11-14 21:40:42 -08003841static __sum16 __tcp_checksum_complete_user(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842{
Al Virob51655b2006-11-14 21:40:42 -08003843 __sum16 result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844
3845 if (sock_owned_by_user(sk)) {
3846 local_bh_enable();
3847 result = __tcp_checksum_complete(skb);
3848 local_bh_disable();
3849 } else {
3850 result = __tcp_checksum_complete(skb);
3851 }
3852 return result;
3853}
3854
Stephen Hemminger40efc6f2006-01-03 16:03:49 -08003855static inline int tcp_checksum_complete_user(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856{
3857 return skb->ip_summed != CHECKSUM_UNNECESSARY &&
3858 __tcp_checksum_complete_user(sk, skb);
3859}
3860
Chris Leech1a2449a2006-05-23 18:05:53 -07003861#ifdef CONFIG_NET_DMA
3862static int tcp_dma_try_early_copy(struct sock *sk, struct sk_buff *skb, int hlen)
3863{
3864 struct tcp_sock *tp = tcp_sk(sk);
3865 int chunk = skb->len - hlen;
3866 int dma_cookie;
3867 int copied_early = 0;
3868
3869 if (tp->ucopy.wakeup)
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09003870 return 0;
Chris Leech1a2449a2006-05-23 18:05:53 -07003871
3872 if (!tp->ucopy.dma_chan && tp->ucopy.pinned_list)
3873 tp->ucopy.dma_chan = get_softnet_dma();
3874
3875 if (tp->ucopy.dma_chan && skb->ip_summed == CHECKSUM_UNNECESSARY) {
3876
3877 dma_cookie = dma_skb_copy_datagram_iovec(tp->ucopy.dma_chan,
3878 skb, hlen, tp->ucopy.iov, chunk, tp->ucopy.pinned_list);
3879
3880 if (dma_cookie < 0)
3881 goto out;
3882
3883 tp->ucopy.dma_cookie = dma_cookie;
3884 copied_early = 1;
3885
3886 tp->ucopy.len -= chunk;
3887 tp->copied_seq += chunk;
3888 tcp_rcv_space_adjust(sk);
3889
3890 if ((tp->ucopy.len == 0) ||
3891 (tcp_flag_word(skb->h.th) & TCP_FLAG_PSH) ||
3892 (atomic_read(&sk->sk_rmem_alloc) > (sk->sk_rcvbuf >> 1))) {
3893 tp->ucopy.wakeup = 1;
3894 sk->sk_data_ready(sk, 0);
3895 }
3896 } else if (chunk > 0) {
3897 tp->ucopy.wakeup = 1;
3898 sk->sk_data_ready(sk, 0);
3899 }
3900out:
3901 return copied_early;
3902}
3903#endif /* CONFIG_NET_DMA */
3904
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905/*
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09003906 * TCP receive function for the ESTABLISHED state.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907 *
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09003908 * It is split into a fast path and a slow path. The fast path is
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 * disabled when:
3910 * - A zero window was announced from us - zero window probing
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09003911 * is only handled properly in the slow path.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912 * - Out of order segments arrived.
3913 * - Urgent data is expected.
3914 * - There is no buffer space left
3915 * - Unexpected TCP flags/window values/header lengths are received
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09003916 * (detected by checking the TCP header against pred_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917 * - Data is sent in both directions. Fast path only supports pure senders
3918 * or pure receivers (this means either the sequence number or the ack
3919 * value must stay constant)
3920 * - Unexpected TCP option.
3921 *
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09003922 * When these conditions are not satisfied it drops into a standard
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 * receive procedure patterned after RFC793 to handle all cases.
3924 * The first three cases are guaranteed by proper pred_flags setting,
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09003925 * the rest is checked inline. Fast processing is turned on in
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926 * tcp_data_queue when everything is OK.
3927 */
3928int tcp_rcv_established(struct sock *sk, struct sk_buff *skb,
3929 struct tcphdr *th, unsigned len)
3930{
3931 struct tcp_sock *tp = tcp_sk(sk);
3932
3933 /*
3934 * Header prediction.
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09003935 * The code loosely follows the one in the famous
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936 * "30 instruction TCP receive" Van Jacobson mail.
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09003937 *
3938 * Van's trick is to deposit buffers into socket queue
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939 * on a device interrupt, to call tcp_recv function
3940 * on the receive process context and checksum and copy
3941 * the buffer to user space. smart...
3942 *
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09003943 * Our current scheme is not silly either but we take the
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944 * extra cost of the net_bh soft interrupt processing...
3945 * We do checksum and copy also but from device to kernel.
3946 */
3947
3948 tp->rx_opt.saw_tstamp = 0;
3949
3950 /* pred_flags is 0xS?10 << 16 + snd_wnd
Stephen Hemmingercaa20d9a2005-11-10 17:13:47 -08003951 * if header_prediction is to be made
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952 * 'S' will always be tp->tcp_header_len >> 2
3953 * '?' will be 0 for the fast path, otherwise pred_flags is 0 to
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09003954 * turn it off (when there are holes in the receive
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955 * space for instance)
3956 * PSH flag is ignored.
3957 */
3958
3959 if ((tcp_flag_word(th) & TCP_HP_BITS) == tp->pred_flags &&
3960 TCP_SKB_CB(skb)->seq == tp->rcv_nxt) {
3961 int tcp_header_len = tp->tcp_header_len;
3962
3963 /* Timestamp header prediction: tcp_header_len
3964 * is automatically equal to th->doff*4 due to pred_flags
3965 * match.
3966 */
3967
3968 /* Check timestamp */
3969 if (tcp_header_len == sizeof(struct tcphdr) + TCPOLEN_TSTAMP_ALIGNED) {
Al Viro4f3608b2006-09-27 18:35:09 -07003970 __be32 *ptr = (__be32 *)(th + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971
3972 /* No? Slow path! */
Al Viro4f3608b2006-09-27 18:35:09 -07003973 if (*ptr != htonl((TCPOPT_NOP << 24) | (TCPOPT_NOP << 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974 | (TCPOPT_TIMESTAMP << 8) | TCPOLEN_TIMESTAMP))
3975 goto slow_path;
3976
3977 tp->rx_opt.saw_tstamp = 1;
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09003978 ++ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979 tp->rx_opt.rcv_tsval = ntohl(*ptr);
3980 ++ptr;
3981 tp->rx_opt.rcv_tsecr = ntohl(*ptr);
3982
3983 /* If PAWS failed, check it more carefully in slow path */
3984 if ((s32)(tp->rx_opt.rcv_tsval - tp->rx_opt.ts_recent) < 0)
3985 goto slow_path;
3986
3987 /* DO NOT update ts_recent here, if checksum fails
3988 * and timestamp was corrupted part, it will result
3989 * in a hung connection since we will drop all
3990 * future packets due to the PAWS test.
3991 */
3992 }
3993
3994 if (len <= tcp_header_len) {
3995 /* Bulk data transfer: sender */
3996 if (len == tcp_header_len) {
3997 /* Predicted packet is in window by definition.
3998 * seq == rcv_nxt and rcv_wup <= rcv_nxt.
3999 * Hence, check seq<=rcv_wup reduces to:
4000 */
4001 if (tcp_header_len ==
4002 (sizeof(struct tcphdr) + TCPOLEN_TSTAMP_ALIGNED) &&
4003 tp->rcv_nxt == tp->rcv_wup)
4004 tcp_store_ts_recent(tp);
4005
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006 /* We know that such packets are checksummed
4007 * on entry.
4008 */
4009 tcp_ack(sk, skb, 0);
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09004010 __kfree_skb(skb);
David S. Miller55c97f32005-07-05 15:19:38 -07004011 tcp_data_snd_check(sk, tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012 return 0;
4013 } else { /* Header too small */
4014 TCP_INC_STATS_BH(TCP_MIB_INERRS);
4015 goto discard;
4016 }
4017 } else {
4018 int eaten = 0;
Chris Leech1a2449a2006-05-23 18:05:53 -07004019 int copied_early = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020
Chris Leech1a2449a2006-05-23 18:05:53 -07004021 if (tp->copied_seq == tp->rcv_nxt &&
4022 len - tcp_header_len <= tp->ucopy.len) {
4023#ifdef CONFIG_NET_DMA
4024 if (tcp_dma_try_early_copy(sk, skb, tcp_header_len)) {
4025 copied_early = 1;
4026 eaten = 1;
4027 }
4028#endif
4029 if (tp->ucopy.task == current && sock_owned_by_user(sk) && !copied_early) {
4030 __set_current_state(TASK_RUNNING);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031
Chris Leech1a2449a2006-05-23 18:05:53 -07004032 if (!tcp_copy_to_iovec(sk, skb, tcp_header_len))
4033 eaten = 1;
4034 }
4035 if (eaten) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036 /* Predicted packet is in window by definition.
4037 * seq == rcv_nxt and rcv_wup <= rcv_nxt.
4038 * Hence, check seq<=rcv_wup reduces to:
4039 */
4040 if (tcp_header_len ==
4041 (sizeof(struct tcphdr) +
4042 TCPOLEN_TSTAMP_ALIGNED) &&
4043 tp->rcv_nxt == tp->rcv_wup)
4044 tcp_store_ts_recent(tp);
4045
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07004046 tcp_rcv_rtt_measure_ts(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047
4048 __skb_pull(skb, tcp_header_len);
4049 tp->rcv_nxt = TCP_SKB_CB(skb)->end_seq;
4050 NET_INC_STATS_BH(LINUX_MIB_TCPHPHITSTOUSER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051 }
Chris Leech1a2449a2006-05-23 18:05:53 -07004052 if (copied_early)
4053 tcp_cleanup_rbuf(sk, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054 }
4055 if (!eaten) {
4056 if (tcp_checksum_complete_user(sk, skb))
4057 goto csum_error;
4058
4059 /* Predicted packet is in window by definition.
4060 * seq == rcv_nxt and rcv_wup <= rcv_nxt.
4061 * Hence, check seq<=rcv_wup reduces to:
4062 */
4063 if (tcp_header_len ==
4064 (sizeof(struct tcphdr) + TCPOLEN_TSTAMP_ALIGNED) &&
4065 tp->rcv_nxt == tp->rcv_wup)
4066 tcp_store_ts_recent(tp);
4067
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07004068 tcp_rcv_rtt_measure_ts(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069
4070 if ((int)skb->truesize > sk->sk_forward_alloc)
4071 goto step5;
4072
4073 NET_INC_STATS_BH(LINUX_MIB_TCPHPHITS);
4074
4075 /* Bulk data transfer: receiver */
4076 __skb_pull(skb,tcp_header_len);
4077 __skb_queue_tail(&sk->sk_receive_queue, skb);
4078 sk_stream_set_owner_r(skb, sk);
4079 tp->rcv_nxt = TCP_SKB_CB(skb)->end_seq;
4080 }
4081
4082 tcp_event_data_recv(sk, tp, skb);
4083
4084 if (TCP_SKB_CB(skb)->ack_seq != tp->snd_una) {
4085 /* Well, only one small jumplet in fast path... */
4086 tcp_ack(sk, skb, FLAG_DATA);
David S. Miller55c97f32005-07-05 15:19:38 -07004087 tcp_data_snd_check(sk, tp);
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07004088 if (!inet_csk_ack_scheduled(sk))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089 goto no_ack;
4090 }
4091
David S. Miller31432412005-05-23 12:03:06 -07004092 __tcp_ack_snd_check(sk, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093no_ack:
Chris Leech1a2449a2006-05-23 18:05:53 -07004094#ifdef CONFIG_NET_DMA
4095 if (copied_early)
4096 __skb_queue_tail(&sk->sk_async_wait_queue, skb);
4097 else
4098#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099 if (eaten)
4100 __kfree_skb(skb);
4101 else
4102 sk->sk_data_ready(sk, 0);
4103 return 0;
4104 }
4105 }
4106
4107slow_path:
4108 if (len < (th->doff<<2) || tcp_checksum_complete_user(sk, skb))
4109 goto csum_error;
4110
4111 /*
4112 * RFC1323: H1. Apply PAWS check first.
4113 */
4114 if (tcp_fast_parse_options(skb, th, tp) && tp->rx_opt.saw_tstamp &&
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07004115 tcp_paws_discard(sk, skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116 if (!th->rst) {
4117 NET_INC_STATS_BH(LINUX_MIB_PAWSESTABREJECTED);
4118 tcp_send_dupack(sk, skb);
4119 goto discard;
4120 }
4121 /* Resets are accepted even if PAWS failed.
4122
4123 ts_recent update must be made after we are sure
4124 that the packet is in window.
4125 */
4126 }
4127
4128 /*
4129 * Standard slow path.
4130 */
4131
4132 if (!tcp_sequence(tp, TCP_SKB_CB(skb)->seq, TCP_SKB_CB(skb)->end_seq)) {
4133 /* RFC793, page 37: "In all states except SYN-SENT, all reset
4134 * (RST) segments are validated by checking their SEQ-fields."
4135 * And page 69: "If an incoming segment is not acceptable,
4136 * an acknowledgment should be sent in reply (unless the RST bit
4137 * is set, if so drop the segment and return)".
4138 */
4139 if (!th->rst)
4140 tcp_send_dupack(sk, skb);
4141 goto discard;
4142 }
4143
4144 if(th->rst) {
4145 tcp_reset(sk);
4146 goto discard;
4147 }
4148
4149 tcp_replace_ts_recent(tp, TCP_SKB_CB(skb)->seq);
4150
4151 if (th->syn && !before(TCP_SKB_CB(skb)->seq, tp->rcv_nxt)) {
4152 TCP_INC_STATS_BH(TCP_MIB_INERRS);
4153 NET_INC_STATS_BH(LINUX_MIB_TCPABORTONSYN);
4154 tcp_reset(sk);
4155 return 1;
4156 }
4157
4158step5:
4159 if(th->ack)
4160 tcp_ack(sk, skb, FLAG_SLOWPATH);
4161
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07004162 tcp_rcv_rtt_measure_ts(sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004163
4164 /* Process urgent data. */
4165 tcp_urg(sk, skb, th);
4166
4167 /* step 7: process the segment text */
4168 tcp_data_queue(sk, skb);
4169
David S. Miller55c97f32005-07-05 15:19:38 -07004170 tcp_data_snd_check(sk, tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171 tcp_ack_snd_check(sk);
4172 return 0;
4173
4174csum_error:
4175 TCP_INC_STATS_BH(TCP_MIB_INERRS);
4176
4177discard:
4178 __kfree_skb(skb);
4179 return 0;
4180}
4181
4182static int tcp_rcv_synsent_state_process(struct sock *sk, struct sk_buff *skb,
4183 struct tcphdr *th, unsigned len)
4184{
4185 struct tcp_sock *tp = tcp_sk(sk);
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -08004186 struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187 int saved_clamp = tp->rx_opt.mss_clamp;
4188
4189 tcp_parse_options(skb, &tp->rx_opt, 0);
4190
4191 if (th->ack) {
4192 /* rfc793:
4193 * "If the state is SYN-SENT then
4194 * first check the ACK bit
4195 * If the ACK bit is set
4196 * If SEG.ACK =< ISS, or SEG.ACK > SND.NXT, send
4197 * a reset (unless the RST bit is set, if so drop
4198 * the segment and return)"
4199 *
4200 * We do not send data with SYN, so that RFC-correct
4201 * test reduces to:
4202 */
4203 if (TCP_SKB_CB(skb)->ack_seq != tp->snd_nxt)
4204 goto reset_and_undo;
4205
4206 if (tp->rx_opt.saw_tstamp && tp->rx_opt.rcv_tsecr &&
4207 !between(tp->rx_opt.rcv_tsecr, tp->retrans_stamp,
4208 tcp_time_stamp)) {
4209 NET_INC_STATS_BH(LINUX_MIB_PAWSACTIVEREJECTED);
4210 goto reset_and_undo;
4211 }
4212
4213 /* Now ACK is acceptable.
4214 *
4215 * "If the RST bit is set
4216 * If the ACK was acceptable then signal the user "error:
4217 * connection reset", drop the segment, enter CLOSED state,
4218 * delete TCB, and return."
4219 */
4220
4221 if (th->rst) {
4222 tcp_reset(sk);
4223 goto discard;
4224 }
4225
4226 /* rfc793:
4227 * "fifth, if neither of the SYN or RST bits is set then
4228 * drop the segment and return."
4229 *
4230 * See note below!
4231 * --ANK(990513)
4232 */
4233 if (!th->syn)
4234 goto discard_and_undo;
4235
4236 /* rfc793:
4237 * "If the SYN bit is on ...
4238 * are acceptable then ...
4239 * (our SYN has been ACKed), change the connection
4240 * state to ESTABLISHED..."
4241 */
4242
4243 TCP_ECN_rcv_synack(tp, th);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244
4245 tp->snd_wl1 = TCP_SKB_CB(skb)->seq;
4246 tcp_ack(sk, skb, FLAG_SLOWPATH);
4247
4248 /* Ok.. it's good. Set up sequence numbers and
4249 * move to established.
4250 */
4251 tp->rcv_nxt = TCP_SKB_CB(skb)->seq + 1;
4252 tp->rcv_wup = TCP_SKB_CB(skb)->seq + 1;
4253
4254 /* RFC1323: The window in SYN & SYN/ACK segments is
4255 * never scaled.
4256 */
4257 tp->snd_wnd = ntohs(th->window);
4258 tcp_init_wl(tp, TCP_SKB_CB(skb)->ack_seq, TCP_SKB_CB(skb)->seq);
4259
4260 if (!tp->rx_opt.wscale_ok) {
4261 tp->rx_opt.snd_wscale = tp->rx_opt.rcv_wscale = 0;
4262 tp->window_clamp = min(tp->window_clamp, 65535U);
4263 }
4264
4265 if (tp->rx_opt.saw_tstamp) {
4266 tp->rx_opt.tstamp_ok = 1;
4267 tp->tcp_header_len =
4268 sizeof(struct tcphdr) + TCPOLEN_TSTAMP_ALIGNED;
4269 tp->advmss -= TCPOLEN_TSTAMP_ALIGNED;
4270 tcp_store_ts_recent(tp);
4271 } else {
4272 tp->tcp_header_len = sizeof(struct tcphdr);
4273 }
4274
4275 if (tp->rx_opt.sack_ok && sysctl_tcp_fack)
4276 tp->rx_opt.sack_ok |= 2;
4277
John Heffner5d424d52006-03-20 17:53:41 -08004278 tcp_mtup_init(sk);
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -08004279 tcp_sync_mss(sk, icsk->icsk_pmtu_cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280 tcp_initialize_rcv_mss(sk);
4281
4282 /* Remember, tcp_poll() does not lock socket!
4283 * Change state from SYN-SENT only after copied_seq
4284 * is initialized. */
4285 tp->copied_seq = tp->rcv_nxt;
Ralf Baechlee16aa202006-12-07 00:11:33 -08004286 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004287 tcp_set_state(sk, TCP_ESTABLISHED);
4288
Venkat Yekkirala6b877692006-11-08 17:04:09 -06004289 security_inet_conn_established(sk, skb);
4290
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291 /* Make sure socket is routed, for correct metrics. */
Arnaldo Carvalho de Melo8292a172005-12-13 23:15:52 -08004292 icsk->icsk_af_ops->rebuild_header(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004293
4294 tcp_init_metrics(sk);
4295
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03004296 tcp_init_congestion_control(sk);
Stephen Hemminger317a76f2005-06-23 12:19:55 -07004297
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298 /* Prevent spurious tcp_cwnd_restart() on first data
4299 * packet.
4300 */
4301 tp->lsndtime = tcp_time_stamp;
4302
4303 tcp_init_buffer_space(sk);
4304
4305 if (sock_flag(sk, SOCK_KEEPOPEN))
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07004306 inet_csk_reset_keepalive_timer(sk, keepalive_time_when(tp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307
4308 if (!tp->rx_opt.snd_wscale)
4309 __tcp_fast_path_on(tp, tp->snd_wnd);
4310 else
4311 tp->pred_flags = 0;
4312
4313 if (!sock_flag(sk, SOCK_DEAD)) {
4314 sk->sk_state_change(sk);
4315 sk_wake_async(sk, 0, POLL_OUT);
4316 }
4317
Arnaldo Carvalho de Melo295f7322005-08-09 20:11:56 -07004318 if (sk->sk_write_pending ||
4319 icsk->icsk_accept_queue.rskq_defer_accept ||
4320 icsk->icsk_ack.pingpong) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321 /* Save one ACK. Data will be ready after
4322 * several ticks, if write_pending is set.
4323 *
4324 * It may be deleted, but with this feature tcpdumps
4325 * look so _wonderfully_ clever, that I was not able
4326 * to stand against the temptation 8) --ANK
4327 */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07004328 inet_csk_schedule_ack(sk);
Arnaldo Carvalho de Melo295f7322005-08-09 20:11:56 -07004329 icsk->icsk_ack.lrcvtime = tcp_time_stamp;
4330 icsk->icsk_ack.ato = TCP_ATO_MIN;
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07004331 tcp_incr_quickack(sk);
4332 tcp_enter_quickack_mode(sk);
Arnaldo Carvalho de Melo3f421ba2005-08-09 20:11:08 -07004333 inet_csk_reset_xmit_timer(sk, ICSK_TIME_DACK,
4334 TCP_DELACK_MAX, TCP_RTO_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335
4336discard:
4337 __kfree_skb(skb);
4338 return 0;
4339 } else {
4340 tcp_send_ack(sk);
4341 }
4342 return -1;
4343 }
4344
4345 /* No ACK in the segment */
4346
4347 if (th->rst) {
4348 /* rfc793:
4349 * "If the RST bit is set
4350 *
4351 * Otherwise (no ACK) drop the segment and return."
4352 */
4353
4354 goto discard_and_undo;
4355 }
4356
4357 /* PAWS check. */
4358 if (tp->rx_opt.ts_recent_stamp && tp->rx_opt.saw_tstamp && tcp_paws_check(&tp->rx_opt, 0))
4359 goto discard_and_undo;
4360
4361 if (th->syn) {
4362 /* We see SYN without ACK. It is attempt of
4363 * simultaneous connect with crossed SYNs.
4364 * Particularly, it can be connect to self.
4365 */
4366 tcp_set_state(sk, TCP_SYN_RECV);
4367
4368 if (tp->rx_opt.saw_tstamp) {
4369 tp->rx_opt.tstamp_ok = 1;
4370 tcp_store_ts_recent(tp);
4371 tp->tcp_header_len =
4372 sizeof(struct tcphdr) + TCPOLEN_TSTAMP_ALIGNED;
4373 } else {
4374 tp->tcp_header_len = sizeof(struct tcphdr);
4375 }
4376
4377 tp->rcv_nxt = TCP_SKB_CB(skb)->seq + 1;
4378 tp->rcv_wup = TCP_SKB_CB(skb)->seq + 1;
4379
4380 /* RFC1323: The window in SYN & SYN/ACK segments is
4381 * never scaled.
4382 */
4383 tp->snd_wnd = ntohs(th->window);
4384 tp->snd_wl1 = TCP_SKB_CB(skb)->seq;
4385 tp->max_window = tp->snd_wnd;
4386
4387 TCP_ECN_rcv_syn(tp, th);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004388
John Heffner5d424d52006-03-20 17:53:41 -08004389 tcp_mtup_init(sk);
Arnaldo Carvalho de Melod83d8462005-12-13 23:26:10 -08004390 tcp_sync_mss(sk, icsk->icsk_pmtu_cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391 tcp_initialize_rcv_mss(sk);
4392
4393
4394 tcp_send_synack(sk);
4395#if 0
4396 /* Note, we could accept data and URG from this segment.
4397 * There are no obstacles to make this.
4398 *
4399 * However, if we ignore data in ACKless segments sometimes,
4400 * we have no reasons to accept it sometimes.
4401 * Also, seems the code doing it in step6 of tcp_rcv_state_process
4402 * is not flawless. So, discard packet for sanity.
4403 * Uncomment this return to process the data.
4404 */
4405 return -1;
4406#else
4407 goto discard;
4408#endif
4409 }
4410 /* "fifth, if neither of the SYN or RST bits is set then
4411 * drop the segment and return."
4412 */
4413
4414discard_and_undo:
4415 tcp_clear_options(&tp->rx_opt);
4416 tp->rx_opt.mss_clamp = saved_clamp;
4417 goto discard;
4418
4419reset_and_undo:
4420 tcp_clear_options(&tp->rx_opt);
4421 tp->rx_opt.mss_clamp = saved_clamp;
4422 return 1;
4423}
4424
4425
4426/*
4427 * This function implements the receiving procedure of RFC 793 for
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09004428 * all states except ESTABLISHED and TIME_WAIT.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429 * It's called from both tcp_v4_rcv and tcp_v6_rcv and should be
4430 * address independent.
4431 */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09004432
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433int tcp_rcv_state_process(struct sock *sk, struct sk_buff *skb,
4434 struct tcphdr *th, unsigned len)
4435{
4436 struct tcp_sock *tp = tcp_sk(sk);
Arnaldo Carvalho de Melo8292a172005-12-13 23:15:52 -08004437 struct inet_connection_sock *icsk = inet_csk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004438 int queued = 0;
4439
4440 tp->rx_opt.saw_tstamp = 0;
4441
4442 switch (sk->sk_state) {
4443 case TCP_CLOSE:
4444 goto discard;
4445
4446 case TCP_LISTEN:
4447 if(th->ack)
4448 return 1;
4449
4450 if(th->rst)
4451 goto discard;
4452
4453 if(th->syn) {
Arnaldo Carvalho de Melo8292a172005-12-13 23:15:52 -08004454 if (icsk->icsk_af_ops->conn_request(sk, skb) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455 return 1;
4456
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09004457 /* Now we have several options: In theory there is
4458 * nothing else in the frame. KA9Q has an option to
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459 * send data with the syn, BSD accepts data with the
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09004460 * syn up to the [to be] advertised window and
4461 * Solaris 2.1 gives you a protocol error. For now
4462 * we just ignore it, that fits the spec precisely
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463 * and avoids incompatibilities. It would be nice in
4464 * future to drop through and process the data.
4465 *
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09004466 * Now that TTCP is starting to be used we ought to
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467 * queue this data.
4468 * But, this leaves one open to an easy denial of
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09004469 * service attack, and SYN cookies can't defend
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470 * against this problem. So, we drop the data
Masayuki Nakagawafb7e2392007-01-23 20:15:06 -08004471 * in the interest of security over speed unless
4472 * it's still in use.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473 */
Masayuki Nakagawafb7e2392007-01-23 20:15:06 -08004474 kfree_skb(skb);
4475 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476 }
4477 goto discard;
4478
4479 case TCP_SYN_SENT:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004480 queued = tcp_rcv_synsent_state_process(sk, skb, th, len);
4481 if (queued >= 0)
4482 return queued;
4483
4484 /* Do step6 onward by hand. */
4485 tcp_urg(sk, skb, th);
4486 __kfree_skb(skb);
David S. Miller55c97f32005-07-05 15:19:38 -07004487 tcp_data_snd_check(sk, tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488 return 0;
4489 }
4490
4491 if (tcp_fast_parse_options(skb, th, tp) && tp->rx_opt.saw_tstamp &&
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07004492 tcp_paws_discard(sk, skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004493 if (!th->rst) {
4494 NET_INC_STATS_BH(LINUX_MIB_PAWSESTABREJECTED);
4495 tcp_send_dupack(sk, skb);
4496 goto discard;
4497 }
4498 /* Reset is accepted even if it did not pass PAWS. */
4499 }
4500
4501 /* step 1: check sequence number */
4502 if (!tcp_sequence(tp, TCP_SKB_CB(skb)->seq, TCP_SKB_CB(skb)->end_seq)) {
4503 if (!th->rst)
4504 tcp_send_dupack(sk, skb);
4505 goto discard;
4506 }
4507
4508 /* step 2: check RST bit */
4509 if(th->rst) {
4510 tcp_reset(sk);
4511 goto discard;
4512 }
4513
4514 tcp_replace_ts_recent(tp, TCP_SKB_CB(skb)->seq);
4515
4516 /* step 3: check security and precedence [ignored] */
4517
4518 /* step 4:
4519 *
4520 * Check for a SYN in window.
4521 */
4522 if (th->syn && !before(TCP_SKB_CB(skb)->seq, tp->rcv_nxt)) {
4523 NET_INC_STATS_BH(LINUX_MIB_TCPABORTONSYN);
4524 tcp_reset(sk);
4525 return 1;
4526 }
4527
4528 /* step 5: check the ACK field */
4529 if (th->ack) {
4530 int acceptable = tcp_ack(sk, skb, FLAG_SLOWPATH);
4531
4532 switch(sk->sk_state) {
4533 case TCP_SYN_RECV:
4534 if (acceptable) {
4535 tp->copied_seq = tp->rcv_nxt;
Ralf Baechlee16aa202006-12-07 00:11:33 -08004536 smp_mb();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537 tcp_set_state(sk, TCP_ESTABLISHED);
4538 sk->sk_state_change(sk);
4539
4540 /* Note, that this wakeup is only for marginal
4541 * crossed SYN case. Passively open sockets
4542 * are not waked up, because sk->sk_sleep ==
4543 * NULL and sk->sk_socket == NULL.
4544 */
4545 if (sk->sk_socket) {
4546 sk_wake_async(sk,0,POLL_OUT);
4547 }
4548
4549 tp->snd_una = TCP_SKB_CB(skb)->ack_seq;
4550 tp->snd_wnd = ntohs(th->window) <<
4551 tp->rx_opt.snd_wscale;
4552 tcp_init_wl(tp, TCP_SKB_CB(skb)->ack_seq,
4553 TCP_SKB_CB(skb)->seq);
4554
4555 /* tcp_ack considers this ACK as duplicate
4556 * and does not calculate rtt.
4557 * Fix it at least with timestamps.
4558 */
4559 if (tp->rx_opt.saw_tstamp && tp->rx_opt.rcv_tsecr &&
4560 !tp->srtt)
Stephen Hemminger2d2abba2005-11-10 16:56:12 -08004561 tcp_ack_saw_tstamp(sk, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562
4563 if (tp->rx_opt.tstamp_ok)
4564 tp->advmss -= TCPOLEN_TSTAMP_ALIGNED;
4565
4566 /* Make sure socket is routed, for
4567 * correct metrics.
4568 */
Arnaldo Carvalho de Melo8292a172005-12-13 23:15:52 -08004569 icsk->icsk_af_ops->rebuild_header(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570
4571 tcp_init_metrics(sk);
4572
Arnaldo Carvalho de Melo6687e982005-08-10 04:03:31 -03004573 tcp_init_congestion_control(sk);
Stephen Hemminger317a76f2005-06-23 12:19:55 -07004574
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575 /* Prevent spurious tcp_cwnd_restart() on
4576 * first data packet.
4577 */
4578 tp->lsndtime = tcp_time_stamp;
4579
John Heffner5d424d52006-03-20 17:53:41 -08004580 tcp_mtup_init(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581 tcp_initialize_rcv_mss(sk);
4582 tcp_init_buffer_space(sk);
4583 tcp_fast_path_on(tp);
4584 } else {
4585 return 1;
4586 }
4587 break;
4588
4589 case TCP_FIN_WAIT1:
4590 if (tp->snd_una == tp->write_seq) {
4591 tcp_set_state(sk, TCP_FIN_WAIT2);
4592 sk->sk_shutdown |= SEND_SHUTDOWN;
4593 dst_confirm(sk->sk_dst_cache);
4594
4595 if (!sock_flag(sk, SOCK_DEAD))
4596 /* Wake up lingering close() */
4597 sk->sk_state_change(sk);
4598 else {
4599 int tmo;
4600
4601 if (tp->linger2 < 0 ||
4602 (TCP_SKB_CB(skb)->end_seq != TCP_SKB_CB(skb)->seq &&
4603 after(TCP_SKB_CB(skb)->end_seq - th->fin, tp->rcv_nxt))) {
4604 tcp_done(sk);
4605 NET_INC_STATS_BH(LINUX_MIB_TCPABORTONDATA);
4606 return 1;
4607 }
4608
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07004609 tmo = tcp_fin_time(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004610 if (tmo > TCP_TIMEWAIT_LEN) {
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07004611 inet_csk_reset_keepalive_timer(sk, tmo - TCP_TIMEWAIT_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004612 } else if (th->fin || sock_owned_by_user(sk)) {
4613 /* Bad case. We could lose such FIN otherwise.
4614 * It is not a big problem, but it looks confusing
4615 * and not so rare event. We still can lose it now,
4616 * if it spins in bh_lock_sock(), but it is really
4617 * marginal case.
4618 */
Arnaldo Carvalho de Melo463c84b2005-08-09 20:10:42 -07004619 inet_csk_reset_keepalive_timer(sk, tmo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004620 } else {
4621 tcp_time_wait(sk, TCP_FIN_WAIT2, tmo);
4622 goto discard;
4623 }
4624 }
4625 }
4626 break;
4627
4628 case TCP_CLOSING:
4629 if (tp->snd_una == tp->write_seq) {
4630 tcp_time_wait(sk, TCP_TIME_WAIT, 0);
4631 goto discard;
4632 }
4633 break;
4634
4635 case TCP_LAST_ACK:
4636 if (tp->snd_una == tp->write_seq) {
4637 tcp_update_metrics(sk);
4638 tcp_done(sk);
4639 goto discard;
4640 }
4641 break;
4642 }
4643 } else
4644 goto discard;
4645
4646 /* step 6: check the URG bit */
4647 tcp_urg(sk, skb, th);
4648
4649 /* step 7: process the segment text */
4650 switch (sk->sk_state) {
4651 case TCP_CLOSE_WAIT:
4652 case TCP_CLOSING:
4653 case TCP_LAST_ACK:
4654 if (!before(TCP_SKB_CB(skb)->seq, tp->rcv_nxt))
4655 break;
4656 case TCP_FIN_WAIT1:
4657 case TCP_FIN_WAIT2:
4658 /* RFC 793 says to queue data in these states,
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09004659 * RFC 1122 says we MUST send a reset.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660 * BSD 4.4 also does reset.
4661 */
4662 if (sk->sk_shutdown & RCV_SHUTDOWN) {
4663 if (TCP_SKB_CB(skb)->end_seq != TCP_SKB_CB(skb)->seq &&
4664 after(TCP_SKB_CB(skb)->end_seq - th->fin, tp->rcv_nxt)) {
4665 NET_INC_STATS_BH(LINUX_MIB_TCPABORTONDATA);
4666 tcp_reset(sk);
4667 return 1;
4668 }
4669 }
4670 /* Fall through */
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09004671 case TCP_ESTABLISHED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004672 tcp_data_queue(sk, skb);
4673 queued = 1;
4674 break;
4675 }
4676
4677 /* tcp_data could move socket to TIME-WAIT */
4678 if (sk->sk_state != TCP_CLOSE) {
David S. Miller55c97f32005-07-05 15:19:38 -07004679 tcp_data_snd_check(sk, tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004680 tcp_ack_snd_check(sk);
4681 }
4682
YOSHIFUJI Hideakie905a9e2007-02-09 23:24:47 +09004683 if (!queued) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004684discard:
4685 __kfree_skb(skb);
4686 }
4687 return 0;
4688}
4689
4690EXPORT_SYMBOL(sysctl_tcp_ecn);
4691EXPORT_SYMBOL(sysctl_tcp_reordering);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004692EXPORT_SYMBOL(tcp_parse_options);
4693EXPORT_SYMBOL(tcp_rcv_established);
4694EXPORT_SYMBOL(tcp_rcv_state_process);
Stephen Hemminger40efc6f2006-01-03 16:03:49 -08004695EXPORT_SYMBOL(tcp_initialize_rcv_mss);