Merge branch 'acpi-lpss'
[deliverable/linux.git] / net / ipv4 / tcp_input.c
CommitLineData
1da177e4
LT
1/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * Implementation of the Transmission Control Protocol(TCP).
7 *
02c30a84 8 * Authors: Ross Biro
1da177e4
LT
9 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
10 * Mark Evans, <evansmp@uhura.aston.ac.uk>
11 * Corey Minyard <wf-rch!minyard@relay.EU.net>
12 * Florian La Roche, <flla@stud.uni-sb.de>
13 * Charles Hedrick, <hedrick@klinzhai.rutgers.edu>
14 * Linus Torvalds, <torvalds@cs.helsinki.fi>
15 * Alan Cox, <gw4pts@gw4pts.ampr.org>
16 * Matthew Dillon, <dillon@apollo.west.oic.com>
17 * Arnt Gulbrandsen, <agulbra@nvg.unit.no>
18 * Jorge Cwik, <jorge@laser.satlink.net>
19 */
20
21/*
22 * Changes:
23 * Pedro Roque : Fast Retransmit/Recovery.
24 * Two receive queues.
25 * Retransmit queue handled by TCP.
26 * Better retransmit timer handling.
27 * New congestion avoidance.
28 * Header prediction.
29 * Variable renaming.
30 *
31 * Eric : Fast Retransmit.
32 * Randy Scott : MSS option defines.
33 * Eric Schenk : Fixes to slow start algorithm.
34 * Eric Schenk : Yet another double ACK bug.
35 * Eric Schenk : Delayed ACK bug fixes.
36 * Eric Schenk : Floyd style fast retrans war avoidance.
37 * David S. Miller : Don't allow zero congestion window.
38 * Eric Schenk : Fix retransmitter so that it sends
39 * next packet on ack of previous packet.
40 * Andi Kleen : Moved open_request checking here
41 * and process RSTs for open_requests.
42 * Andi Kleen : Better prune_queue, and other fixes.
caa20d9a 43 * Andrey Savochkin: Fix RTT measurements in the presence of
1da177e4
LT
44 * timestamps.
45 * Andrey Savochkin: Check sequence numbers correctly when
46 * removing SACKs due to in sequence incoming
47 * data segments.
48 * Andi Kleen: Make sure we never ack data there is not
49 * enough room for. Also make this condition
50 * a fatal error if it might still happen.
e905a9ed 51 * Andi Kleen: Add tcp_measure_rcv_mss to make
1da177e4 52 * connections with MSS<min(MTU,ann. MSS)
e905a9ed 53 * work without delayed acks.
1da177e4
LT
54 * Andi Kleen: Process packets with PSH set in the
55 * fast path.
56 * J Hadi Salim: ECN support
57 * Andrei Gurtov,
58 * Pasi Sarolahti,
59 * Panu Kuhlberg: Experimental audit of TCP (re)transmission
60 * engine. Lots of bugs are found.
61 * Pasi Sarolahti: F-RTO for dealing with spurious RTOs
1da177e4
LT
62 */
63
afd46503
JP
64#define pr_fmt(fmt) "TCP: " fmt
65
1da177e4 66#include <linux/mm.h>
5a0e3ad6 67#include <linux/slab.h>
1da177e4
LT
68#include <linux/module.h>
69#include <linux/sysctl.h>
a0bffffc 70#include <linux/kernel.h>
5ffc02a1 71#include <net/dst.h>
1da177e4
LT
72#include <net/tcp.h>
73#include <net/inet_common.h>
74#include <linux/ipsec.h>
75#include <asm/unaligned.h>
1a2449a8 76#include <net/netdma.h>
1da177e4 77
ab32ea5d
BH
78int sysctl_tcp_timestamps __read_mostly = 1;
79int sysctl_tcp_window_scaling __read_mostly = 1;
80int sysctl_tcp_sack __read_mostly = 1;
81int sysctl_tcp_fack __read_mostly = 1;
82int sysctl_tcp_reordering __read_mostly = TCP_FASTRETRANS_THRESH;
4bc2f18b 83EXPORT_SYMBOL(sysctl_tcp_reordering);
ab32ea5d
BH
84int sysctl_tcp_dsack __read_mostly = 1;
85int sysctl_tcp_app_win __read_mostly = 31;
b49960a0 86int sysctl_tcp_adv_win_scale __read_mostly = 1;
4bc2f18b 87EXPORT_SYMBOL(sysctl_tcp_adv_win_scale);
1da177e4 88
282f23c6
ED
89/* rfc5961 challenge ack rate limiting */
90int sysctl_tcp_challenge_ack_limit = 100;
91
ab32ea5d
BH
92int sysctl_tcp_stdurg __read_mostly;
93int sysctl_tcp_rfc1337 __read_mostly;
94int sysctl_tcp_max_orphans __read_mostly = NR_FILE;
c96fd3d4 95int sysctl_tcp_frto __read_mostly = 2;
3cfe3baa 96int sysctl_tcp_frto_response __read_mostly;
1da177e4 97
7e380175
AP
98int sysctl_tcp_thin_dupack __read_mostly;
99
ab32ea5d 100int sysctl_tcp_moderate_rcvbuf __read_mostly = 1;
eed530b6 101int sysctl_tcp_early_retrans __read_mostly = 2;
1da177e4 102
1da177e4
LT
103#define FLAG_DATA 0x01 /* Incoming frame contained data. */
104#define FLAG_WIN_UPDATE 0x02 /* Incoming ACK was a window update. */
105#define FLAG_DATA_ACKED 0x04 /* This ACK acknowledged new data. */
106#define FLAG_RETRANS_DATA_ACKED 0x08 /* "" "" some of which was retransmitted. */
107#define FLAG_SYN_ACKED 0x10 /* This ACK acknowledged SYN. */
108#define FLAG_DATA_SACKED 0x20 /* New SACK. */
109#define FLAG_ECE 0x40 /* ECE in this ACK */
1da177e4 110#define FLAG_SLOWPATH 0x100 /* Do not skip RFC checks for window update.*/
4dc2665e 111#define FLAG_ONLY_ORIG_SACKED 0x200 /* SACKs only non-rexmit sent before RTO */
2e605294 112#define FLAG_SND_UNA_ADVANCED 0x400 /* Snd_una was changed (!= FLAG_DATA_ACKED) */
564262c1 113#define FLAG_DSACKING_ACK 0x800 /* SACK blocks contained D-SACK info */
009a2e3e 114#define FLAG_NONHEAD_RETRANS_ACKED 0x1000 /* Non-head rexmitted data was ACKed */
cadbd031 115#define FLAG_SACK_RENEGING 0x2000 /* snd_una advanced to a sacked seq */
12fb3dd9 116#define FLAG_UPDATE_TS_RECENT 0x4000 /* tcp_replace_ts_recent() */
1da177e4
LT
117
118#define FLAG_ACKED (FLAG_DATA_ACKED|FLAG_SYN_ACKED)
119#define FLAG_NOT_DUP (FLAG_DATA|FLAG_WIN_UPDATE|FLAG_ACKED)
120#define FLAG_CA_ALERT (FLAG_DATA_SACKED|FLAG_ECE)
121#define FLAG_FORWARD_PROGRESS (FLAG_ACKED|FLAG_DATA_SACKED)
2e605294 122#define FLAG_ANY_PROGRESS (FLAG_FORWARD_PROGRESS|FLAG_SND_UNA_ADVANCED)
1da177e4 123
1da177e4 124#define TCP_REMNANT (TCP_FLAG_FIN|TCP_FLAG_URG|TCP_FLAG_SYN|TCP_FLAG_PSH)
bdf1ee5d 125#define TCP_HP_BITS (~(TCP_RESERVED_BITS|TCP_FLAG_PSH))
1da177e4 126
e905a9ed 127/* Adapt the MSS value used to make delayed ack decision to the
1da177e4 128 * real world.
e905a9ed 129 */
056834d9 130static void tcp_measure_rcv_mss(struct sock *sk, const struct sk_buff *skb)
1da177e4 131{
463c84b9 132 struct inet_connection_sock *icsk = inet_csk(sk);
e905a9ed 133 const unsigned int lss = icsk->icsk_ack.last_seg_size;
463c84b9 134 unsigned int len;
1da177e4 135
e905a9ed 136 icsk->icsk_ack.last_seg_size = 0;
1da177e4
LT
137
138 /* skb->len may jitter because of SACKs, even if peer
139 * sends good full-sized frames.
140 */
056834d9 141 len = skb_shinfo(skb)->gso_size ? : skb->len;
463c84b9
ACM
142 if (len >= icsk->icsk_ack.rcv_mss) {
143 icsk->icsk_ack.rcv_mss = len;
1da177e4
LT
144 } else {
145 /* Otherwise, we make more careful check taking into account,
146 * that SACKs block is variable.
147 *
148 * "len" is invariant segment length, including TCP header.
149 */
9c70220b 150 len += skb->data - skb_transport_header(skb);
bee7ca9e 151 if (len >= TCP_MSS_DEFAULT + sizeof(struct tcphdr) ||
1da177e4
LT
152 /* If PSH is not set, packet should be
153 * full sized, provided peer TCP is not badly broken.
154 * This observation (if it is correct 8)) allows
155 * to handle super-low mtu links fairly.
156 */
157 (len >= TCP_MIN_MSS + sizeof(struct tcphdr) &&
aa8223c7 158 !(tcp_flag_word(tcp_hdr(skb)) & TCP_REMNANT))) {
1da177e4
LT
159 /* Subtract also invariant (if peer is RFC compliant),
160 * tcp header plus fixed timestamp option length.
161 * Resulting "len" is MSS free of SACK jitter.
162 */
463c84b9
ACM
163 len -= tcp_sk(sk)->tcp_header_len;
164 icsk->icsk_ack.last_seg_size = len;
1da177e4 165 if (len == lss) {
463c84b9 166 icsk->icsk_ack.rcv_mss = len;
1da177e4
LT
167 return;
168 }
169 }
1ef9696c
AK
170 if (icsk->icsk_ack.pending & ICSK_ACK_PUSHED)
171 icsk->icsk_ack.pending |= ICSK_ACK_PUSHED2;
463c84b9 172 icsk->icsk_ack.pending |= ICSK_ACK_PUSHED;
1da177e4
LT
173 }
174}
175
463c84b9 176static void tcp_incr_quickack(struct sock *sk)
1da177e4 177{
463c84b9 178 struct inet_connection_sock *icsk = inet_csk(sk);
95c96174 179 unsigned int quickacks = tcp_sk(sk)->rcv_wnd / (2 * icsk->icsk_ack.rcv_mss);
1da177e4 180
056834d9
IJ
181 if (quickacks == 0)
182 quickacks = 2;
463c84b9
ACM
183 if (quickacks > icsk->icsk_ack.quick)
184 icsk->icsk_ack.quick = min(quickacks, TCP_MAX_QUICKACKS);
1da177e4
LT
185}
186
1b9f4092 187static void tcp_enter_quickack_mode(struct sock *sk)
1da177e4 188{
463c84b9
ACM
189 struct inet_connection_sock *icsk = inet_csk(sk);
190 tcp_incr_quickack(sk);
191 icsk->icsk_ack.pingpong = 0;
192 icsk->icsk_ack.ato = TCP_ATO_MIN;
1da177e4
LT
193}
194
195/* Send ACKs quickly, if "quick" count is not exhausted
196 * and the session is not interactive.
197 */
198
a2a385d6 199static inline bool tcp_in_quickack_mode(const struct sock *sk)
1da177e4 200{
463c84b9 201 const struct inet_connection_sock *icsk = inet_csk(sk);
a2a385d6 202
463c84b9 203 return icsk->icsk_ack.quick && !icsk->icsk_ack.pingpong;
1da177e4
LT
204}
205
bdf1ee5d
IJ
206static inline void TCP_ECN_queue_cwr(struct tcp_sock *tp)
207{
056834d9 208 if (tp->ecn_flags & TCP_ECN_OK)
bdf1ee5d
IJ
209 tp->ecn_flags |= TCP_ECN_QUEUE_CWR;
210}
211
cf533ea5 212static inline void TCP_ECN_accept_cwr(struct tcp_sock *tp, const struct sk_buff *skb)
bdf1ee5d
IJ
213{
214 if (tcp_hdr(skb)->cwr)
215 tp->ecn_flags &= ~TCP_ECN_DEMAND_CWR;
216}
217
218static inline void TCP_ECN_withdraw_cwr(struct tcp_sock *tp)
219{
220 tp->ecn_flags &= ~TCP_ECN_DEMAND_CWR;
221}
222
7a269ffa 223static inline void TCP_ECN_check_ce(struct tcp_sock *tp, const struct sk_buff *skb)
bdf1ee5d 224{
7a269ffa
ED
225 if (!(tp->ecn_flags & TCP_ECN_OK))
226 return;
227
b82d1bb4 228 switch (TCP_SKB_CB(skb)->ip_dsfield & INET_ECN_MASK) {
7a269ffa 229 case INET_ECN_NOT_ECT:
bdf1ee5d 230 /* Funny extension: if ECT is not set on a segment,
7a269ffa
ED
231 * and we already seen ECT on a previous segment,
232 * it is probably a retransmit.
233 */
234 if (tp->ecn_flags & TCP_ECN_SEEN)
bdf1ee5d 235 tcp_enter_quickack_mode((struct sock *)tp);
7a269ffa
ED
236 break;
237 case INET_ECN_CE:
aae06bf5
ED
238 if (!(tp->ecn_flags & TCP_ECN_DEMAND_CWR)) {
239 /* Better not delay acks, sender can have a very low cwnd */
240 tcp_enter_quickack_mode((struct sock *)tp);
241 tp->ecn_flags |= TCP_ECN_DEMAND_CWR;
242 }
7a269ffa
ED
243 /* fallinto */
244 default:
245 tp->ecn_flags |= TCP_ECN_SEEN;
bdf1ee5d
IJ
246 }
247}
248
cf533ea5 249static inline void TCP_ECN_rcv_synack(struct tcp_sock *tp, const struct tcphdr *th)
bdf1ee5d 250{
056834d9 251 if ((tp->ecn_flags & TCP_ECN_OK) && (!th->ece || th->cwr))
bdf1ee5d
IJ
252 tp->ecn_flags &= ~TCP_ECN_OK;
253}
254
cf533ea5 255static inline void TCP_ECN_rcv_syn(struct tcp_sock *tp, const struct tcphdr *th)
bdf1ee5d 256{
056834d9 257 if ((tp->ecn_flags & TCP_ECN_OK) && (!th->ece || !th->cwr))
bdf1ee5d
IJ
258 tp->ecn_flags &= ~TCP_ECN_OK;
259}
260
a2a385d6 261static bool TCP_ECN_rcv_ecn_echo(const struct tcp_sock *tp, const struct tcphdr *th)
bdf1ee5d 262{
056834d9 263 if (th->ece && !th->syn && (tp->ecn_flags & TCP_ECN_OK))
a2a385d6
ED
264 return true;
265 return false;
bdf1ee5d
IJ
266}
267
1da177e4
LT
268/* Buffer size and advertised window tuning.
269 *
270 * 1. Tuning sk->sk_sndbuf, when connection enters established state.
271 */
272
273static void tcp_fixup_sndbuf(struct sock *sk)
274{
87fb4b7b 275 int sndmem = SKB_TRUESIZE(tcp_sk(sk)->rx_opt.mss_clamp + MAX_TCP_HEADER);
1da177e4 276
06a59ecb
ED
277 sndmem *= TCP_INIT_CWND;
278 if (sk->sk_sndbuf < sndmem)
279 sk->sk_sndbuf = min(sndmem, sysctl_tcp_wmem[2]);
1da177e4
LT
280}
281
282/* 2. Tuning advertised window (window_clamp, rcv_ssthresh)
283 *
284 * All tcp_full_space() is split to two parts: "network" buffer, allocated
285 * forward and advertised in receiver window (tp->rcv_wnd) and
286 * "application buffer", required to isolate scheduling/application
287 * latencies from network.
288 * window_clamp is maximal advertised window. It can be less than
289 * tcp_full_space(), in this case tcp_full_space() - window_clamp
290 * is reserved for "application" buffer. The less window_clamp is
291 * the smoother our behaviour from viewpoint of network, but the lower
292 * throughput and the higher sensitivity of the connection to losses. 8)
293 *
294 * rcv_ssthresh is more strict window_clamp used at "slow start"
295 * phase to predict further behaviour of this connection.
296 * It is used for two goals:
297 * - to enforce header prediction at sender, even when application
298 * requires some significant "application buffer". It is check #1.
299 * - to prevent pruning of receive queue because of misprediction
300 * of receiver window. Check #2.
301 *
302 * The scheme does not work when sender sends good segments opening
caa20d9a 303 * window and then starts to feed us spaghetti. But it should work
1da177e4
LT
304 * in common situations. Otherwise, we have to rely on queue collapsing.
305 */
306
307/* Slow part of check#2. */
9e412ba7 308static int __tcp_grow_window(const struct sock *sk, const struct sk_buff *skb)
1da177e4 309{
9e412ba7 310 struct tcp_sock *tp = tcp_sk(sk);
1da177e4 311 /* Optimize this! */
dfd4f0ae
ED
312 int truesize = tcp_win_from_space(skb->truesize) >> 1;
313 int window = tcp_win_from_space(sysctl_tcp_rmem[2]) >> 1;
1da177e4
LT
314
315 while (tp->rcv_ssthresh <= window) {
316 if (truesize <= skb->len)
463c84b9 317 return 2 * inet_csk(sk)->icsk_ack.rcv_mss;
1da177e4
LT
318
319 truesize >>= 1;
320 window >>= 1;
321 }
322 return 0;
323}
324
cf533ea5 325static void tcp_grow_window(struct sock *sk, const struct sk_buff *skb)
1da177e4 326{
9e412ba7
IJ
327 struct tcp_sock *tp = tcp_sk(sk);
328
1da177e4
LT
329 /* Check #1 */
330 if (tp->rcv_ssthresh < tp->window_clamp &&
331 (int)tp->rcv_ssthresh < tcp_space(sk) &&
180d8cd9 332 !sk_under_memory_pressure(sk)) {
1da177e4
LT
333 int incr;
334
335 /* Check #2. Increase window, if skb with such overhead
336 * will fit to rcvbuf in future.
337 */
338 if (tcp_win_from_space(skb->truesize) <= skb->len)
056834d9 339 incr = 2 * tp->advmss;
1da177e4 340 else
9e412ba7 341 incr = __tcp_grow_window(sk, skb);
1da177e4
LT
342
343 if (incr) {
4d846f02 344 incr = max_t(int, incr, 2 * skb->len);
056834d9
IJ
345 tp->rcv_ssthresh = min(tp->rcv_ssthresh + incr,
346 tp->window_clamp);
463c84b9 347 inet_csk(sk)->icsk_ack.quick |= 1;
1da177e4
LT
348 }
349 }
350}
351
352/* 3. Tuning rcvbuf, when connection enters established state. */
353
354static void tcp_fixup_rcvbuf(struct sock *sk)
355{
e9266a02
ED
356 u32 mss = tcp_sk(sk)->advmss;
357 u32 icwnd = TCP_DEFAULT_INIT_RCVWND;
358 int rcvmem;
1da177e4 359
e9266a02
ED
360 /* Limit to 10 segments if mss <= 1460,
361 * or 14600/mss segments, with a minimum of two segments.
1da177e4 362 */
e9266a02
ED
363 if (mss > 1460)
364 icwnd = max_t(u32, (1460 * TCP_DEFAULT_INIT_RCVWND) / mss, 2);
365
366 rcvmem = SKB_TRUESIZE(mss + MAX_TCP_HEADER);
367 while (tcp_win_from_space(rcvmem) < mss)
1da177e4 368 rcvmem += 128;
e9266a02
ED
369
370 rcvmem *= icwnd;
371
372 if (sk->sk_rcvbuf < rcvmem)
373 sk->sk_rcvbuf = min(rcvmem, sysctl_tcp_rmem[2]);
1da177e4
LT
374}
375
caa20d9a 376/* 4. Try to fixup all. It is made immediately after connection enters
1da177e4
LT
377 * established state.
378 */
10467163 379void tcp_init_buffer_space(struct sock *sk)
1da177e4
LT
380{
381 struct tcp_sock *tp = tcp_sk(sk);
382 int maxwin;
383
384 if (!(sk->sk_userlocks & SOCK_RCVBUF_LOCK))
385 tcp_fixup_rcvbuf(sk);
386 if (!(sk->sk_userlocks & SOCK_SNDBUF_LOCK))
387 tcp_fixup_sndbuf(sk);
388
389 tp->rcvq_space.space = tp->rcv_wnd;
390
391 maxwin = tcp_full_space(sk);
392
393 if (tp->window_clamp >= maxwin) {
394 tp->window_clamp = maxwin;
395
396 if (sysctl_tcp_app_win && maxwin > 4 * tp->advmss)
397 tp->window_clamp = max(maxwin -
398 (maxwin >> sysctl_tcp_app_win),
399 4 * tp->advmss);
400 }
401
402 /* Force reservation of one segment. */
403 if (sysctl_tcp_app_win &&
404 tp->window_clamp > 2 * tp->advmss &&
405 tp->window_clamp + tp->advmss > maxwin)
406 tp->window_clamp = max(2 * tp->advmss, maxwin - tp->advmss);
407
408 tp->rcv_ssthresh = min(tp->rcv_ssthresh, tp->window_clamp);
409 tp->snd_cwnd_stamp = tcp_time_stamp;
410}
411
1da177e4 412/* 5. Recalculate window clamp after socket hit its memory bounds. */
9e412ba7 413static void tcp_clamp_window(struct sock *sk)
1da177e4 414{
9e412ba7 415 struct tcp_sock *tp = tcp_sk(sk);
6687e988 416 struct inet_connection_sock *icsk = inet_csk(sk);
1da177e4 417
6687e988 418 icsk->icsk_ack.quick = 0;
1da177e4 419
326f36e9
JH
420 if (sk->sk_rcvbuf < sysctl_tcp_rmem[2] &&
421 !(sk->sk_userlocks & SOCK_RCVBUF_LOCK) &&
180d8cd9
GC
422 !sk_under_memory_pressure(sk) &&
423 sk_memory_allocated(sk) < sk_prot_mem_limits(sk, 0)) {
326f36e9
JH
424 sk->sk_rcvbuf = min(atomic_read(&sk->sk_rmem_alloc),
425 sysctl_tcp_rmem[2]);
1da177e4 426 }
326f36e9 427 if (atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf)
056834d9 428 tp->rcv_ssthresh = min(tp->window_clamp, 2U * tp->advmss);
1da177e4
LT
429}
430
40efc6fa
SH
431/* Initialize RCV_MSS value.
432 * RCV_MSS is an our guess about MSS used by the peer.
433 * We haven't any direct information about the MSS.
434 * It's better to underestimate the RCV_MSS rather than overestimate.
435 * Overestimations make us ACKing less frequently than needed.
436 * Underestimations are more easy to detect and fix by tcp_measure_rcv_mss().
437 */
438void tcp_initialize_rcv_mss(struct sock *sk)
439{
cf533ea5 440 const struct tcp_sock *tp = tcp_sk(sk);
40efc6fa
SH
441 unsigned int hint = min_t(unsigned int, tp->advmss, tp->mss_cache);
442
056834d9 443 hint = min(hint, tp->rcv_wnd / 2);
bee7ca9e 444 hint = min(hint, TCP_MSS_DEFAULT);
40efc6fa
SH
445 hint = max(hint, TCP_MIN_MSS);
446
447 inet_csk(sk)->icsk_ack.rcv_mss = hint;
448}
4bc2f18b 449EXPORT_SYMBOL(tcp_initialize_rcv_mss);
40efc6fa 450
1da177e4
LT
451/* Receiver "autotuning" code.
452 *
453 * The algorithm for RTT estimation w/o timestamps is based on
454 * Dynamic Right-Sizing (DRS) by Wu Feng and Mike Fisk of LANL.
631dd1a8 455 * <http://public.lanl.gov/radiant/pubs.html#DRS>
1da177e4
LT
456 *
457 * More detail on this code can be found at
631dd1a8 458 * <http://staff.psc.edu/jheffner/>,
1da177e4
LT
459 * though this reference is out of date. A new paper
460 * is pending.
461 */
462static void tcp_rcv_rtt_update(struct tcp_sock *tp, u32 sample, int win_dep)
463{
464 u32 new_sample = tp->rcv_rtt_est.rtt;
465 long m = sample;
466
467 if (m == 0)
468 m = 1;
469
470 if (new_sample != 0) {
471 /* If we sample in larger samples in the non-timestamp
472 * case, we could grossly overestimate the RTT especially
473 * with chatty applications or bulk transfer apps which
474 * are stalled on filesystem I/O.
475 *
476 * Also, since we are only going for a minimum in the
31f34269 477 * non-timestamp case, we do not smooth things out
caa20d9a 478 * else with timestamps disabled convergence takes too
1da177e4
LT
479 * long.
480 */
481 if (!win_dep) {
482 m -= (new_sample >> 3);
483 new_sample += m;
18a223e0
NC
484 } else {
485 m <<= 3;
486 if (m < new_sample)
487 new_sample = m;
488 }
1da177e4 489 } else {
caa20d9a 490 /* No previous measure. */
1da177e4
LT
491 new_sample = m << 3;
492 }
493
494 if (tp->rcv_rtt_est.rtt != new_sample)
495 tp->rcv_rtt_est.rtt = new_sample;
496}
497
498static inline void tcp_rcv_rtt_measure(struct tcp_sock *tp)
499{
500 if (tp->rcv_rtt_est.time == 0)
501 goto new_measure;
502 if (before(tp->rcv_nxt, tp->rcv_rtt_est.seq))
503 return;
651913ce 504 tcp_rcv_rtt_update(tp, tcp_time_stamp - tp->rcv_rtt_est.time, 1);
1da177e4
LT
505
506new_measure:
507 tp->rcv_rtt_est.seq = tp->rcv_nxt + tp->rcv_wnd;
508 tp->rcv_rtt_est.time = tcp_time_stamp;
509}
510
056834d9
IJ
511static inline void tcp_rcv_rtt_measure_ts(struct sock *sk,
512 const struct sk_buff *skb)
1da177e4 513{
463c84b9 514 struct tcp_sock *tp = tcp_sk(sk);
1da177e4
LT
515 if (tp->rx_opt.rcv_tsecr &&
516 (TCP_SKB_CB(skb)->end_seq -
463c84b9 517 TCP_SKB_CB(skb)->seq >= inet_csk(sk)->icsk_ack.rcv_mss))
1da177e4
LT
518 tcp_rcv_rtt_update(tp, tcp_time_stamp - tp->rx_opt.rcv_tsecr, 0);
519}
520
521/*
522 * This function should be called every time data is copied to user space.
523 * It calculates the appropriate TCP receive buffer space.
524 */
525void tcp_rcv_space_adjust(struct sock *sk)
526{
527 struct tcp_sock *tp = tcp_sk(sk);
528 int time;
529 int space;
e905a9ed 530
1da177e4
LT
531 if (tp->rcvq_space.time == 0)
532 goto new_measure;
e905a9ed 533
1da177e4 534 time = tcp_time_stamp - tp->rcvq_space.time;
056834d9 535 if (time < (tp->rcv_rtt_est.rtt >> 3) || tp->rcv_rtt_est.rtt == 0)
1da177e4 536 return;
e905a9ed 537
1da177e4
LT
538 space = 2 * (tp->copied_seq - tp->rcvq_space.seq);
539
540 space = max(tp->rcvq_space.space, space);
541
542 if (tp->rcvq_space.space != space) {
543 int rcvmem;
544
545 tp->rcvq_space.space = space;
546
6fcf9412
JH
547 if (sysctl_tcp_moderate_rcvbuf &&
548 !(sk->sk_userlocks & SOCK_RCVBUF_LOCK)) {
1da177e4
LT
549 int new_clamp = space;
550
551 /* Receive space grows, normalize in order to
552 * take into account packet headers and sk_buff
553 * structure overhead.
554 */
555 space /= tp->advmss;
556 if (!space)
557 space = 1;
87fb4b7b 558 rcvmem = SKB_TRUESIZE(tp->advmss + MAX_TCP_HEADER);
1da177e4
LT
559 while (tcp_win_from_space(rcvmem) < tp->advmss)
560 rcvmem += 128;
561 space *= rcvmem;
562 space = min(space, sysctl_tcp_rmem[2]);
563 if (space > sk->sk_rcvbuf) {
564 sk->sk_rcvbuf = space;
565
566 /* Make the window clamp follow along. */
567 tp->window_clamp = new_clamp;
568 }
569 }
570 }
e905a9ed 571
1da177e4
LT
572new_measure:
573 tp->rcvq_space.seq = tp->copied_seq;
574 tp->rcvq_space.time = tcp_time_stamp;
575}
576
577/* There is something which you must keep in mind when you analyze the
578 * behavior of the tp->ato delayed ack timeout interval. When a
579 * connection starts up, we want to ack as quickly as possible. The
580 * problem is that "good" TCP's do slow start at the beginning of data
581 * transmission. The means that until we send the first few ACK's the
582 * sender will sit on his end and only queue most of his data, because
583 * he can only send snd_cwnd unacked packets at any given time. For
584 * each ACK we send, he increments snd_cwnd and transmits more of his
585 * queue. -DaveM
586 */
9e412ba7 587static void tcp_event_data_recv(struct sock *sk, struct sk_buff *skb)
1da177e4 588{
9e412ba7 589 struct tcp_sock *tp = tcp_sk(sk);
463c84b9 590 struct inet_connection_sock *icsk = inet_csk(sk);
1da177e4
LT
591 u32 now;
592
463c84b9 593 inet_csk_schedule_ack(sk);
1da177e4 594
463c84b9 595 tcp_measure_rcv_mss(sk, skb);
1da177e4
LT
596
597 tcp_rcv_rtt_measure(tp);
e905a9ed 598
1da177e4
LT
599 now = tcp_time_stamp;
600
463c84b9 601 if (!icsk->icsk_ack.ato) {
1da177e4
LT
602 /* The _first_ data packet received, initialize
603 * delayed ACK engine.
604 */
463c84b9
ACM
605 tcp_incr_quickack(sk);
606 icsk->icsk_ack.ato = TCP_ATO_MIN;
1da177e4 607 } else {
463c84b9 608 int m = now - icsk->icsk_ack.lrcvtime;
1da177e4 609
056834d9 610 if (m <= TCP_ATO_MIN / 2) {
1da177e4 611 /* The fastest case is the first. */
463c84b9
ACM
612 icsk->icsk_ack.ato = (icsk->icsk_ack.ato >> 1) + TCP_ATO_MIN / 2;
613 } else if (m < icsk->icsk_ack.ato) {
614 icsk->icsk_ack.ato = (icsk->icsk_ack.ato >> 1) + m;
615 if (icsk->icsk_ack.ato > icsk->icsk_rto)
616 icsk->icsk_ack.ato = icsk->icsk_rto;
617 } else if (m > icsk->icsk_rto) {
caa20d9a 618 /* Too long gap. Apparently sender failed to
1da177e4
LT
619 * restart window, so that we send ACKs quickly.
620 */
463c84b9 621 tcp_incr_quickack(sk);
3ab224be 622 sk_mem_reclaim(sk);
1da177e4
LT
623 }
624 }
463c84b9 625 icsk->icsk_ack.lrcvtime = now;
1da177e4
LT
626
627 TCP_ECN_check_ce(tp, skb);
628
629 if (skb->len >= 128)
9e412ba7 630 tcp_grow_window(sk, skb);
1da177e4
LT
631}
632
1da177e4
LT
633/* Called to compute a smoothed rtt estimate. The data fed to this
634 * routine either comes from timestamps, or from segments that were
635 * known _not_ to have been retransmitted [see Karn/Partridge
636 * Proceedings SIGCOMM 87]. The algorithm is from the SIGCOMM 88
637 * piece by Van Jacobson.
638 * NOTE: the next three routines used to be one big routine.
639 * To save cycles in the RFC 1323 implementation it was better to break
640 * it up into three procedures. -- erics
641 */
2d2abbab 642static void tcp_rtt_estimator(struct sock *sk, const __u32 mrtt)
1da177e4 643{
6687e988 644 struct tcp_sock *tp = tcp_sk(sk);
1da177e4
LT
645 long m = mrtt; /* RTT */
646
1da177e4
LT
647 /* The following amusing code comes from Jacobson's
648 * article in SIGCOMM '88. Note that rtt and mdev
649 * are scaled versions of rtt and mean deviation.
e905a9ed 650 * This is designed to be as fast as possible
1da177e4
LT
651 * m stands for "measurement".
652 *
653 * On a 1990 paper the rto value is changed to:
654 * RTO = rtt + 4 * mdev
655 *
656 * Funny. This algorithm seems to be very broken.
657 * These formulae increase RTO, when it should be decreased, increase
31f34269 658 * too slowly, when it should be increased quickly, decrease too quickly
1da177e4
LT
659 * etc. I guess in BSD RTO takes ONE value, so that it is absolutely
660 * does not matter how to _calculate_ it. Seems, it was trap
661 * that VJ failed to avoid. 8)
662 */
2de979bd 663 if (m == 0)
1da177e4
LT
664 m = 1;
665 if (tp->srtt != 0) {
666 m -= (tp->srtt >> 3); /* m is now error in rtt est */
667 tp->srtt += m; /* rtt = 7/8 rtt + 1/8 new */
668 if (m < 0) {
669 m = -m; /* m is now abs(error) */
670 m -= (tp->mdev >> 2); /* similar update on mdev */
671 /* This is similar to one of Eifel findings.
672 * Eifel blocks mdev updates when rtt decreases.
673 * This solution is a bit different: we use finer gain
674 * for mdev in this case (alpha*beta).
675 * Like Eifel it also prevents growth of rto,
676 * but also it limits too fast rto decreases,
677 * happening in pure Eifel.
678 */
679 if (m > 0)
680 m >>= 3;
681 } else {
682 m -= (tp->mdev >> 2); /* similar update on mdev */
683 }
684 tp->mdev += m; /* mdev = 3/4 mdev + 1/4 new */
685 if (tp->mdev > tp->mdev_max) {
686 tp->mdev_max = tp->mdev;
687 if (tp->mdev_max > tp->rttvar)
688 tp->rttvar = tp->mdev_max;
689 }
690 if (after(tp->snd_una, tp->rtt_seq)) {
691 if (tp->mdev_max < tp->rttvar)
056834d9 692 tp->rttvar -= (tp->rttvar - tp->mdev_max) >> 2;
1da177e4 693 tp->rtt_seq = tp->snd_nxt;
05bb1fad 694 tp->mdev_max = tcp_rto_min(sk);
1da177e4
LT
695 }
696 } else {
697 /* no previous measure. */
056834d9
IJ
698 tp->srtt = m << 3; /* take the measured time to be rtt */
699 tp->mdev = m << 1; /* make sure rto = 3*rtt */
05bb1fad 700 tp->mdev_max = tp->rttvar = max(tp->mdev, tcp_rto_min(sk));
1da177e4
LT
701 tp->rtt_seq = tp->snd_nxt;
702 }
1da177e4
LT
703}
704
705/* Calculate rto without backoff. This is the second half of Van Jacobson's
706 * routine referred to above.
707 */
4aabd8ef 708void tcp_set_rto(struct sock *sk)
1da177e4 709{
463c84b9 710 const struct tcp_sock *tp = tcp_sk(sk);
1da177e4
LT
711 /* Old crap is replaced with new one. 8)
712 *
713 * More seriously:
714 * 1. If rtt variance happened to be less 50msec, it is hallucination.
715 * It cannot be less due to utterly erratic ACK generation made
716 * at least by solaris and freebsd. "Erratic ACKs" has _nothing_
717 * to do with delayed acks, because at cwnd>2 true delack timeout
718 * is invisible. Actually, Linux-2.4 also generates erratic
caa20d9a 719 * ACKs in some circumstances.
1da177e4 720 */
f1ecd5d9 721 inet_csk(sk)->icsk_rto = __tcp_set_rto(tp);
1da177e4
LT
722
723 /* 2. Fixups made earlier cannot be right.
724 * If we do not estimate RTO correctly without them,
725 * all the algo is pure shit and should be replaced
caa20d9a 726 * with correct one. It is exactly, which we pretend to do.
1da177e4 727 */
1da177e4 728
ee6aac59
IJ
729 /* NOTE: clamping at TCP_RTO_MIN is not required, current algo
730 * guarantees that rto is higher.
731 */
f1ecd5d9 732 tcp_bound_rto(sk);
1da177e4
LT
733}
734
cf533ea5 735__u32 tcp_init_cwnd(const struct tcp_sock *tp, const struct dst_entry *dst)
1da177e4
LT
736{
737 __u32 cwnd = (dst ? dst_metric(dst, RTAX_INITCWND) : 0);
738
22b71c8f 739 if (!cwnd)
442b9635 740 cwnd = TCP_INIT_CWND;
1da177e4
LT
741 return min_t(__u32, cwnd, tp->snd_cwnd_clamp);
742}
743
e60402d0
IJ
744/*
745 * Packet counting of FACK is based on in-order assumptions, therefore TCP
746 * disables it when reordering is detected
747 */
4aabd8ef 748void tcp_disable_fack(struct tcp_sock *tp)
e60402d0 749{
85cc391c
IJ
750 /* RFC3517 uses different metric in lost marker => reset on change */
751 if (tcp_is_fack(tp))
752 tp->lost_skb_hint = NULL;
ab56222a 753 tp->rx_opt.sack_ok &= ~TCP_FACK_ENABLED;
e60402d0
IJ
754}
755
564262c1 756/* Take a notice that peer is sending D-SACKs */
e60402d0
IJ
757static void tcp_dsack_seen(struct tcp_sock *tp)
758{
ab56222a 759 tp->rx_opt.sack_ok |= TCP_DSACK_SEEN;
e60402d0
IJ
760}
761
6687e988
ACM
762static void tcp_update_reordering(struct sock *sk, const int metric,
763 const int ts)
1da177e4 764{
6687e988 765 struct tcp_sock *tp = tcp_sk(sk);
1da177e4 766 if (metric > tp->reordering) {
40b215e5
PE
767 int mib_idx;
768
1da177e4
LT
769 tp->reordering = min(TCP_MAX_REORDERING, metric);
770
771 /* This exciting event is worth to be remembered. 8) */
772 if (ts)
40b215e5 773 mib_idx = LINUX_MIB_TCPTSREORDER;
e60402d0 774 else if (tcp_is_reno(tp))
40b215e5 775 mib_idx = LINUX_MIB_TCPRENOREORDER;
e60402d0 776 else if (tcp_is_fack(tp))
40b215e5 777 mib_idx = LINUX_MIB_TCPFACKREORDER;
1da177e4 778 else
40b215e5
PE
779 mib_idx = LINUX_MIB_TCPSACKREORDER;
780
de0744af 781 NET_INC_STATS_BH(sock_net(sk), mib_idx);
1da177e4 782#if FASTRETRANS_DEBUG > 1
91df42be
JP
783 pr_debug("Disorder%d %d %u f%u s%u rr%d\n",
784 tp->rx_opt.sack_ok, inet_csk(sk)->icsk_ca_state,
785 tp->reordering,
786 tp->fackets_out,
787 tp->sacked_out,
788 tp->undo_marker ? tp->undo_retrans : 0);
1da177e4 789#endif
e60402d0 790 tcp_disable_fack(tp);
1da177e4 791 }
eed530b6
YC
792
793 if (metric > 0)
794 tcp_disable_early_retrans(tp);
1da177e4
LT
795}
796
006f582c 797/* This must be called before lost_out is incremented */
c8c213f2
IJ
798static void tcp_verify_retransmit_hint(struct tcp_sock *tp, struct sk_buff *skb)
799{
006f582c 800 if ((tp->retransmit_skb_hint == NULL) ||
c8c213f2
IJ
801 before(TCP_SKB_CB(skb)->seq,
802 TCP_SKB_CB(tp->retransmit_skb_hint)->seq))
006f582c
IJ
803 tp->retransmit_skb_hint = skb;
804
805 if (!tp->lost_out ||
806 after(TCP_SKB_CB(skb)->end_seq, tp->retransmit_high))
807 tp->retransmit_high = TCP_SKB_CB(skb)->end_seq;
c8c213f2
IJ
808}
809
41ea36e3
IJ
810static void tcp_skb_mark_lost(struct tcp_sock *tp, struct sk_buff *skb)
811{
812 if (!(TCP_SKB_CB(skb)->sacked & (TCPCB_LOST|TCPCB_SACKED_ACKED))) {
813 tcp_verify_retransmit_hint(tp, skb);
814
815 tp->lost_out += tcp_skb_pcount(skb);
816 TCP_SKB_CB(skb)->sacked |= TCPCB_LOST;
817 }
818}
819
e1aa680f
IJ
820static void tcp_skb_mark_lost_uncond_verify(struct tcp_sock *tp,
821 struct sk_buff *skb)
006f582c
IJ
822{
823 tcp_verify_retransmit_hint(tp, skb);
824
825 if (!(TCP_SKB_CB(skb)->sacked & (TCPCB_LOST|TCPCB_SACKED_ACKED))) {
826 tp->lost_out += tcp_skb_pcount(skb);
827 TCP_SKB_CB(skb)->sacked |= TCPCB_LOST;
828 }
829}
830
1da177e4
LT
831/* This procedure tags the retransmission queue when SACKs arrive.
832 *
833 * We have three tag bits: SACKED(S), RETRANS(R) and LOST(L).
834 * Packets in queue with these bits set are counted in variables
835 * sacked_out, retrans_out and lost_out, correspondingly.
836 *
837 * Valid combinations are:
838 * Tag InFlight Description
839 * 0 1 - orig segment is in flight.
840 * S 0 - nothing flies, orig reached receiver.
841 * L 0 - nothing flies, orig lost by net.
842 * R 2 - both orig and retransmit are in flight.
843 * L|R 1 - orig is lost, retransmit is in flight.
844 * S|R 1 - orig reached receiver, retrans is still in flight.
845 * (L|S|R is logically valid, it could occur when L|R is sacked,
846 * but it is equivalent to plain S and code short-curcuits it to S.
847 * L|S is logically invalid, it would mean -1 packet in flight 8))
848 *
849 * These 6 states form finite state machine, controlled by the following events:
850 * 1. New ACK (+SACK) arrives. (tcp_sacktag_write_queue())
851 * 2. Retransmission. (tcp_retransmit_skb(), tcp_xmit_retransmit_queue())
974c1236 852 * 3. Loss detection event of two flavors:
1da177e4
LT
853 * A. Scoreboard estimator decided the packet is lost.
854 * A'. Reno "three dupacks" marks head of queue lost.
974c1236
YC
855 * A''. Its FACK modification, head until snd.fack is lost.
856 * B. SACK arrives sacking SND.NXT at the moment, when the
1da177e4
LT
857 * segment was retransmitted.
858 * 4. D-SACK added new rule: D-SACK changes any tag to S.
859 *
860 * It is pleasant to note, that state diagram turns out to be commutative,
861 * so that we are allowed not to be bothered by order of our actions,
862 * when multiple events arrive simultaneously. (see the function below).
863 *
864 * Reordering detection.
865 * --------------------
866 * Reordering metric is maximal distance, which a packet can be displaced
867 * in packet stream. With SACKs we can estimate it:
868 *
869 * 1. SACK fills old hole and the corresponding segment was not
870 * ever retransmitted -> reordering. Alas, we cannot use it
871 * when segment was retransmitted.
872 * 2. The last flaw is solved with D-SACK. D-SACK arrives
873 * for retransmitted and already SACKed segment -> reordering..
874 * Both of these heuristics are not used in Loss state, when we cannot
875 * account for retransmits accurately.
5b3c9882
IJ
876 *
877 * SACK block validation.
878 * ----------------------
879 *
880 * SACK block range validation checks that the received SACK block fits to
881 * the expected sequence limits, i.e., it is between SND.UNA and SND.NXT.
882 * Note that SND.UNA is not included to the range though being valid because
0e835331
IJ
883 * it means that the receiver is rather inconsistent with itself reporting
884 * SACK reneging when it should advance SND.UNA. Such SACK block this is
885 * perfectly valid, however, in light of RFC2018 which explicitly states
886 * that "SACK block MUST reflect the newest segment. Even if the newest
887 * segment is going to be discarded ...", not that it looks very clever
888 * in case of head skb. Due to potentional receiver driven attacks, we
889 * choose to avoid immediate execution of a walk in write queue due to
890 * reneging and defer head skb's loss recovery to standard loss recovery
891 * procedure that will eventually trigger (nothing forbids us doing this).
5b3c9882
IJ
892 *
893 * Implements also blockage to start_seq wrap-around. Problem lies in the
894 * fact that though start_seq (s) is before end_seq (i.e., not reversed),
895 * there's no guarantee that it will be before snd_nxt (n). The problem
896 * happens when start_seq resides between end_seq wrap (e_w) and snd_nxt
897 * wrap (s_w):
898 *
899 * <- outs wnd -> <- wrapzone ->
900 * u e n u_w e_w s n_w
901 * | | | | | | |
902 * |<------------+------+----- TCP seqno space --------------+---------->|
903 * ...-- <2^31 ->| |<--------...
904 * ...---- >2^31 ------>| |<--------...
905 *
906 * Current code wouldn't be vulnerable but it's better still to discard such
907 * crazy SACK blocks. Doing this check for start_seq alone closes somewhat
908 * similar case (end_seq after snd_nxt wrap) as earlier reversed check in
909 * snd_nxt wrap -> snd_una region will then become "well defined", i.e.,
910 * equal to the ideal case (infinite seqno space without wrap caused issues).
911 *
912 * With D-SACK the lower bound is extended to cover sequence space below
913 * SND.UNA down to undo_marker, which is the last point of interest. Yet
564262c1 914 * again, D-SACK block must not to go across snd_una (for the same reason as
5b3c9882
IJ
915 * for the normal SACK blocks, explained above). But there all simplicity
916 * ends, TCP might receive valid D-SACKs below that. As long as they reside
917 * fully below undo_marker they do not affect behavior in anyway and can
918 * therefore be safely ignored. In rare cases (which are more or less
919 * theoretical ones), the D-SACK will nicely cross that boundary due to skb
920 * fragmentation and packet reordering past skb's retransmission. To consider
921 * them correctly, the acceptable range must be extended even more though
922 * the exact amount is rather hard to quantify. However, tp->max_window can
923 * be used as an exaggerated estimate.
1da177e4 924 */
a2a385d6
ED
925static bool tcp_is_sackblock_valid(struct tcp_sock *tp, bool is_dsack,
926 u32 start_seq, u32 end_seq)
5b3c9882
IJ
927{
928 /* Too far in future, or reversed (interpretation is ambiguous) */
929 if (after(end_seq, tp->snd_nxt) || !before(start_seq, end_seq))
a2a385d6 930 return false;
5b3c9882
IJ
931
932 /* Nasty start_seq wrap-around check (see comments above) */
933 if (!before(start_seq, tp->snd_nxt))
a2a385d6 934 return false;
5b3c9882 935
564262c1 936 /* In outstanding window? ...This is valid exit for D-SACKs too.
5b3c9882
IJ
937 * start_seq == snd_una is non-sensical (see comments above)
938 */
939 if (after(start_seq, tp->snd_una))
a2a385d6 940 return true;
5b3c9882
IJ
941
942 if (!is_dsack || !tp->undo_marker)
a2a385d6 943 return false;
5b3c9882
IJ
944
945 /* ...Then it's D-SACK, and must reside below snd_una completely */
f779b2d6 946 if (after(end_seq, tp->snd_una))
a2a385d6 947 return false;
5b3c9882
IJ
948
949 if (!before(start_seq, tp->undo_marker))
a2a385d6 950 return true;
5b3c9882
IJ
951
952 /* Too old */
953 if (!after(end_seq, tp->undo_marker))
a2a385d6 954 return false;
5b3c9882
IJ
955
956 /* Undo_marker boundary crossing (overestimates a lot). Known already:
957 * start_seq < undo_marker and end_seq >= undo_marker.
958 */
959 return !before(start_seq, end_seq - tp->max_window);
960}
961
1c1e87ed 962/* Check for lost retransmit. This superb idea is borrowed from "ratehalving".
974c1236 963 * Event "B". Later note: FACK people cheated me again 8), we have to account
1c1e87ed 964 * for reordering! Ugly, but should help.
f785a8e2
IJ
965 *
966 * Search retransmitted skbs from write_queue that were sent when snd_nxt was
967 * less than what is now known to be received by the other end (derived from
9f58f3b7
IJ
968 * highest SACK block). Also calculate the lowest snd_nxt among the remaining
969 * retransmitted skbs to avoid some costly processing per ACKs.
1c1e87ed 970 */
407ef1de 971static void tcp_mark_lost_retrans(struct sock *sk)
1c1e87ed 972{
9f58f3b7 973 const struct inet_connection_sock *icsk = inet_csk(sk);
1c1e87ed
IJ
974 struct tcp_sock *tp = tcp_sk(sk);
975 struct sk_buff *skb;
f785a8e2 976 int cnt = 0;
df2e014b 977 u32 new_low_seq = tp->snd_nxt;
6859d494 978 u32 received_upto = tcp_highest_sack_seq(tp);
9f58f3b7
IJ
979
980 if (!tcp_is_fack(tp) || !tp->retrans_out ||
981 !after(received_upto, tp->lost_retrans_low) ||
982 icsk->icsk_ca_state != TCP_CA_Recovery)
407ef1de 983 return;
1c1e87ed
IJ
984
985 tcp_for_write_queue(skb, sk) {
986 u32 ack_seq = TCP_SKB_CB(skb)->ack_seq;
987
988 if (skb == tcp_send_head(sk))
989 break;
f785a8e2 990 if (cnt == tp->retrans_out)
1c1e87ed
IJ
991 break;
992 if (!after(TCP_SKB_CB(skb)->end_seq, tp->snd_una))
993 continue;
994
f785a8e2
IJ
995 if (!(TCP_SKB_CB(skb)->sacked & TCPCB_SACKED_RETRANS))
996 continue;
997
d0af4160
IJ
998 /* TODO: We would like to get rid of tcp_is_fack(tp) only
999 * constraint here (see above) but figuring out that at
1000 * least tp->reordering SACK blocks reside between ack_seq
1001 * and received_upto is not easy task to do cheaply with
1002 * the available datastructures.
1003 *
1004 * Whether FACK should check here for tp->reordering segs
1005 * in-between one could argue for either way (it would be
1006 * rather simple to implement as we could count fack_count
1007 * during the walk and do tp->fackets_out - fack_count).
1008 */
1009 if (after(received_upto, ack_seq)) {
1c1e87ed
IJ
1010 TCP_SKB_CB(skb)->sacked &= ~TCPCB_SACKED_RETRANS;
1011 tp->retrans_out -= tcp_skb_pcount(skb);
1012
006f582c 1013 tcp_skb_mark_lost_uncond_verify(tp, skb);
de0744af 1014 NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_TCPLOSTRETRANSMIT);
f785a8e2 1015 } else {
df2e014b 1016 if (before(ack_seq, new_low_seq))
b08d6cb2 1017 new_low_seq = ack_seq;
f785a8e2 1018 cnt += tcp_skb_pcount(skb);
1c1e87ed
IJ
1019 }
1020 }
b08d6cb2
IJ
1021
1022 if (tp->retrans_out)
1023 tp->lost_retrans_low = new_low_seq;
1c1e87ed 1024}
5b3c9882 1025
a2a385d6
ED
1026static bool tcp_check_dsack(struct sock *sk, const struct sk_buff *ack_skb,
1027 struct tcp_sack_block_wire *sp, int num_sacks,
1028 u32 prior_snd_una)
d06e021d 1029{
1ed83465 1030 struct tcp_sock *tp = tcp_sk(sk);
d3e2ce3b
HH
1031 u32 start_seq_0 = get_unaligned_be32(&sp[0].start_seq);
1032 u32 end_seq_0 = get_unaligned_be32(&sp[0].end_seq);
a2a385d6 1033 bool dup_sack = false;
d06e021d
DM
1034
1035 if (before(start_seq_0, TCP_SKB_CB(ack_skb)->ack_seq)) {
a2a385d6 1036 dup_sack = true;
e60402d0 1037 tcp_dsack_seen(tp);
de0744af 1038 NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_TCPDSACKRECV);
d06e021d 1039 } else if (num_sacks > 1) {
d3e2ce3b
HH
1040 u32 end_seq_1 = get_unaligned_be32(&sp[1].end_seq);
1041 u32 start_seq_1 = get_unaligned_be32(&sp[1].start_seq);
d06e021d
DM
1042
1043 if (!after(end_seq_0, end_seq_1) &&
1044 !before(start_seq_0, start_seq_1)) {
a2a385d6 1045 dup_sack = true;
e60402d0 1046 tcp_dsack_seen(tp);
de0744af
PE
1047 NET_INC_STATS_BH(sock_net(sk),
1048 LINUX_MIB_TCPDSACKOFORECV);
d06e021d
DM
1049 }
1050 }
1051
1052 /* D-SACK for already forgotten data... Do dumb counting. */
c24f691b 1053 if (dup_sack && tp->undo_marker && tp->undo_retrans &&
d06e021d
DM
1054 !after(end_seq_0, prior_snd_una) &&
1055 after(end_seq_0, tp->undo_marker))
1056 tp->undo_retrans--;
1057
1058 return dup_sack;
1059}
1060
a1197f5a
IJ
1061struct tcp_sacktag_state {
1062 int reord;
1063 int fack_count;
1064 int flag;
1065};
1066
d1935942
IJ
1067/* Check if skb is fully within the SACK block. In presence of GSO skbs,
1068 * the incoming SACK may not exactly match but we can find smaller MSS
1069 * aligned portion of it that matches. Therefore we might need to fragment
1070 * which may fail and creates some hassle (caller must handle error case
1071 * returns).
832d11c5
IJ
1072 *
1073 * FIXME: this could be merged to shift decision code
d1935942 1074 */
0f79efdc 1075static int tcp_match_skb_to_sack(struct sock *sk, struct sk_buff *skb,
a2a385d6 1076 u32 start_seq, u32 end_seq)
d1935942 1077{
a2a385d6
ED
1078 int err;
1079 bool in_sack;
d1935942 1080 unsigned int pkt_len;
adb92db8 1081 unsigned int mss;
d1935942
IJ
1082
1083 in_sack = !after(start_seq, TCP_SKB_CB(skb)->seq) &&
1084 !before(end_seq, TCP_SKB_CB(skb)->end_seq);
1085
1086 if (tcp_skb_pcount(skb) > 1 && !in_sack &&
1087 after(TCP_SKB_CB(skb)->end_seq, start_seq)) {
adb92db8 1088 mss = tcp_skb_mss(skb);
d1935942
IJ
1089 in_sack = !after(start_seq, TCP_SKB_CB(skb)->seq);
1090
adb92db8 1091 if (!in_sack) {
d1935942 1092 pkt_len = start_seq - TCP_SKB_CB(skb)->seq;
adb92db8
IJ
1093 if (pkt_len < mss)
1094 pkt_len = mss;
1095 } else {
d1935942 1096 pkt_len = end_seq - TCP_SKB_CB(skb)->seq;
adb92db8
IJ
1097 if (pkt_len < mss)
1098 return -EINVAL;
1099 }
1100
1101 /* Round if necessary so that SACKs cover only full MSSes
1102 * and/or the remaining small portion (if present)
1103 */
1104 if (pkt_len > mss) {
1105 unsigned int new_len = (pkt_len / mss) * mss;
1106 if (!in_sack && new_len < pkt_len) {
1107 new_len += mss;
1108 if (new_len > skb->len)
1109 return 0;
1110 }
1111 pkt_len = new_len;
1112 }
1113 err = tcp_fragment(sk, skb, pkt_len, mss);
d1935942
IJ
1114 if (err < 0)
1115 return err;
1116 }
1117
1118 return in_sack;
1119}
1120
cc9a672e
NC
1121/* Mark the given newly-SACKed range as such, adjusting counters and hints. */
1122static u8 tcp_sacktag_one(struct sock *sk,
1123 struct tcp_sacktag_state *state, u8 sacked,
1124 u32 start_seq, u32 end_seq,
a2a385d6 1125 bool dup_sack, int pcount)
9e10c47c 1126{
6859d494 1127 struct tcp_sock *tp = tcp_sk(sk);
a1197f5a 1128 int fack_count = state->fack_count;
9e10c47c
IJ
1129
1130 /* Account D-SACK for retransmitted packet. */
1131 if (dup_sack && (sacked & TCPCB_RETRANS)) {
c24f691b 1132 if (tp->undo_marker && tp->undo_retrans &&
cc9a672e 1133 after(end_seq, tp->undo_marker))
9e10c47c 1134 tp->undo_retrans--;
ede9f3b1 1135 if (sacked & TCPCB_SACKED_ACKED)
a1197f5a 1136 state->reord = min(fack_count, state->reord);
9e10c47c
IJ
1137 }
1138
1139 /* Nothing to do; acked frame is about to be dropped (was ACKed). */
cc9a672e 1140 if (!after(end_seq, tp->snd_una))
a1197f5a 1141 return sacked;
9e10c47c
IJ
1142
1143 if (!(sacked & TCPCB_SACKED_ACKED)) {
1144 if (sacked & TCPCB_SACKED_RETRANS) {
1145 /* If the segment is not tagged as lost,
1146 * we do not clear RETRANS, believing
1147 * that retransmission is still in flight.
1148 */
1149 if (sacked & TCPCB_LOST) {
a1197f5a 1150 sacked &= ~(TCPCB_LOST|TCPCB_SACKED_RETRANS);
f58b22fd
IJ
1151 tp->lost_out -= pcount;
1152 tp->retrans_out -= pcount;
9e10c47c
IJ
1153 }
1154 } else {
1155 if (!(sacked & TCPCB_RETRANS)) {
1156 /* New sack for not retransmitted frame,
1157 * which was in hole. It is reordering.
1158 */
cc9a672e 1159 if (before(start_seq,
9e10c47c 1160 tcp_highest_sack_seq(tp)))
a1197f5a
IJ
1161 state->reord = min(fack_count,
1162 state->reord);
9e10c47c
IJ
1163
1164 /* SACK enhanced F-RTO (RFC4138; Appendix B) */
cc9a672e 1165 if (!after(end_seq, tp->frto_highmark))
a1197f5a 1166 state->flag |= FLAG_ONLY_ORIG_SACKED;
9e10c47c
IJ
1167 }
1168
1169 if (sacked & TCPCB_LOST) {
a1197f5a 1170 sacked &= ~TCPCB_LOST;
f58b22fd 1171 tp->lost_out -= pcount;
9e10c47c
IJ
1172 }
1173 }
1174
a1197f5a
IJ
1175 sacked |= TCPCB_SACKED_ACKED;
1176 state->flag |= FLAG_DATA_SACKED;
f58b22fd 1177 tp->sacked_out += pcount;
9e10c47c 1178
f58b22fd 1179 fack_count += pcount;
9e10c47c
IJ
1180
1181 /* Lost marker hint past SACKed? Tweak RFC3517 cnt */
1182 if (!tcp_is_fack(tp) && (tp->lost_skb_hint != NULL) &&
cc9a672e 1183 before(start_seq, TCP_SKB_CB(tp->lost_skb_hint)->seq))
f58b22fd 1184 tp->lost_cnt_hint += pcount;
9e10c47c
IJ
1185
1186 if (fack_count > tp->fackets_out)
1187 tp->fackets_out = fack_count;
9e10c47c
IJ
1188 }
1189
1190 /* D-SACK. We can detect redundant retransmission in S|R and plain R
1191 * frames and clear it. undo_retrans is decreased above, L|R frames
1192 * are accounted above as well.
1193 */
a1197f5a
IJ
1194 if (dup_sack && (sacked & TCPCB_SACKED_RETRANS)) {
1195 sacked &= ~TCPCB_SACKED_RETRANS;
f58b22fd 1196 tp->retrans_out -= pcount;
9e10c47c
IJ
1197 }
1198
a1197f5a 1199 return sacked;
9e10c47c
IJ
1200}
1201
daef52ba
NC
1202/* Shift newly-SACKed bytes from this skb to the immediately previous
1203 * already-SACKed sk_buff. Mark the newly-SACKed bytes as such.
1204 */
a2a385d6
ED
1205static bool tcp_shifted_skb(struct sock *sk, struct sk_buff *skb,
1206 struct tcp_sacktag_state *state,
1207 unsigned int pcount, int shifted, int mss,
1208 bool dup_sack)
832d11c5
IJ
1209{
1210 struct tcp_sock *tp = tcp_sk(sk);
50133161 1211 struct sk_buff *prev = tcp_write_queue_prev(sk, skb);
daef52ba
NC
1212 u32 start_seq = TCP_SKB_CB(skb)->seq; /* start of newly-SACKed */
1213 u32 end_seq = start_seq + shifted; /* end of newly-SACKed */
832d11c5
IJ
1214
1215 BUG_ON(!pcount);
1216
4c90d3b3
NC
1217 /* Adjust counters and hints for the newly sacked sequence
1218 * range but discard the return value since prev is already
1219 * marked. We must tag the range first because the seq
1220 * advancement below implicitly advances
1221 * tcp_highest_sack_seq() when skb is highest_sack.
1222 */
1223 tcp_sacktag_one(sk, state, TCP_SKB_CB(skb)->sacked,
1224 start_seq, end_seq, dup_sack, pcount);
1225
1226 if (skb == tp->lost_skb_hint)
0af2a0d0
NC
1227 tp->lost_cnt_hint += pcount;
1228
832d11c5
IJ
1229 TCP_SKB_CB(prev)->end_seq += shifted;
1230 TCP_SKB_CB(skb)->seq += shifted;
1231
1232 skb_shinfo(prev)->gso_segs += pcount;
1233 BUG_ON(skb_shinfo(skb)->gso_segs < pcount);
1234 skb_shinfo(skb)->gso_segs -= pcount;
1235
1236 /* When we're adding to gso_segs == 1, gso_size will be zero,
1237 * in theory this shouldn't be necessary but as long as DSACK
1238 * code can come after this skb later on it's better to keep
1239 * setting gso_size to something.
1240 */
1241 if (!skb_shinfo(prev)->gso_size) {
1242 skb_shinfo(prev)->gso_size = mss;
c9af6db4 1243 skb_shinfo(prev)->gso_type = sk->sk_gso_type;
832d11c5
IJ
1244 }
1245
1246 /* CHECKME: To clear or not to clear? Mimics normal skb currently */
1247 if (skb_shinfo(skb)->gso_segs <= 1) {
1248 skb_shinfo(skb)->gso_size = 0;
c9af6db4 1249 skb_shinfo(skb)->gso_type = 0;
832d11c5
IJ
1250 }
1251
832d11c5
IJ
1252 /* Difference in this won't matter, both ACKed by the same cumul. ACK */
1253 TCP_SKB_CB(prev)->sacked |= (TCP_SKB_CB(skb)->sacked & TCPCB_EVER_RETRANS);
1254
832d11c5
IJ
1255 if (skb->len > 0) {
1256 BUG_ON(!tcp_skb_pcount(skb));
111cc8b9 1257 NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_SACKSHIFTED);
a2a385d6 1258 return false;
832d11c5
IJ
1259 }
1260
1261 /* Whole SKB was eaten :-) */
1262
92ee76b6
IJ
1263 if (skb == tp->retransmit_skb_hint)
1264 tp->retransmit_skb_hint = prev;
1265 if (skb == tp->scoreboard_skb_hint)
1266 tp->scoreboard_skb_hint = prev;
1267 if (skb == tp->lost_skb_hint) {
1268 tp->lost_skb_hint = prev;
1269 tp->lost_cnt_hint -= tcp_skb_pcount(prev);
1270 }
1271
4de075e0 1272 TCP_SKB_CB(skb)->tcp_flags |= TCP_SKB_CB(prev)->tcp_flags;
832d11c5
IJ
1273 if (skb == tcp_highest_sack(sk))
1274 tcp_advance_highest_sack(sk, skb);
1275
1276 tcp_unlink_write_queue(skb, sk);
1277 sk_wmem_free_skb(sk, skb);
1278
111cc8b9
IJ
1279 NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_SACKMERGED);
1280
a2a385d6 1281 return true;
832d11c5
IJ
1282}
1283
1284/* I wish gso_size would have a bit more sane initialization than
1285 * something-or-zero which complicates things
1286 */
cf533ea5 1287static int tcp_skb_seglen(const struct sk_buff *skb)
832d11c5 1288{
775ffabf 1289 return tcp_skb_pcount(skb) == 1 ? skb->len : tcp_skb_mss(skb);
832d11c5
IJ
1290}
1291
1292/* Shifting pages past head area doesn't work */
cf533ea5 1293static int skb_can_shift(const struct sk_buff *skb)
832d11c5
IJ
1294{
1295 return !skb_headlen(skb) && skb_is_nonlinear(skb);
1296}
1297
1298/* Try collapsing SACK blocks spanning across multiple skbs to a single
1299 * skb.
1300 */
1301static struct sk_buff *tcp_shift_skb_data(struct sock *sk, struct sk_buff *skb,
a1197f5a 1302 struct tcp_sacktag_state *state,
832d11c5 1303 u32 start_seq, u32 end_seq,
a2a385d6 1304 bool dup_sack)
832d11c5
IJ
1305{
1306 struct tcp_sock *tp = tcp_sk(sk);
1307 struct sk_buff *prev;
1308 int mss;
1309 int pcount = 0;
1310 int len;
1311 int in_sack;
1312
1313 if (!sk_can_gso(sk))
1314 goto fallback;
1315
1316 /* Normally R but no L won't result in plain S */
1317 if (!dup_sack &&
9969ca5f 1318 (TCP_SKB_CB(skb)->sacked & (TCPCB_LOST|TCPCB_SACKED_RETRANS)) == TCPCB_SACKED_RETRANS)
832d11c5
IJ
1319 goto fallback;
1320 if (!skb_can_shift(skb))
1321 goto fallback;
1322 /* This frame is about to be dropped (was ACKed). */
1323 if (!after(TCP_SKB_CB(skb)->end_seq, tp->snd_una))
1324 goto fallback;
1325
1326 /* Can only happen with delayed DSACK + discard craziness */
1327 if (unlikely(skb == tcp_write_queue_head(sk)))
1328 goto fallback;
1329 prev = tcp_write_queue_prev(sk, skb);
1330
1331 if ((TCP_SKB_CB(prev)->sacked & TCPCB_TAGBITS) != TCPCB_SACKED_ACKED)
1332 goto fallback;
1333
1334 in_sack = !after(start_seq, TCP_SKB_CB(skb)->seq) &&
1335 !before(end_seq, TCP_SKB_CB(skb)->end_seq);
1336
1337 if (in_sack) {
1338 len = skb->len;
1339 pcount = tcp_skb_pcount(skb);
775ffabf 1340 mss = tcp_skb_seglen(skb);
832d11c5
IJ
1341
1342 /* TODO: Fix DSACKs to not fragment already SACKed and we can
1343 * drop this restriction as unnecessary
1344 */
775ffabf 1345 if (mss != tcp_skb_seglen(prev))
832d11c5
IJ
1346 goto fallback;
1347 } else {
1348 if (!after(TCP_SKB_CB(skb)->end_seq, start_seq))
1349 goto noop;
1350 /* CHECKME: This is non-MSS split case only?, this will
1351 * cause skipped skbs due to advancing loop btw, original
1352 * has that feature too
1353 */
1354 if (tcp_skb_pcount(skb) <= 1)
1355 goto noop;
1356
1357 in_sack = !after(start_seq, TCP_SKB_CB(skb)->seq);
1358 if (!in_sack) {
1359 /* TODO: head merge to next could be attempted here
1360 * if (!after(TCP_SKB_CB(skb)->end_seq, end_seq)),
1361 * though it might not be worth of the additional hassle
1362 *
1363 * ...we can probably just fallback to what was done
1364 * previously. We could try merging non-SACKed ones
1365 * as well but it probably isn't going to buy off
1366 * because later SACKs might again split them, and
1367 * it would make skb timestamp tracking considerably
1368 * harder problem.
1369 */
1370 goto fallback;
1371 }
1372
1373 len = end_seq - TCP_SKB_CB(skb)->seq;
1374 BUG_ON(len < 0);
1375 BUG_ON(len > skb->len);
1376
1377 /* MSS boundaries should be honoured or else pcount will
1378 * severely break even though it makes things bit trickier.
1379 * Optimize common case to avoid most of the divides
1380 */
1381 mss = tcp_skb_mss(skb);
1382
1383 /* TODO: Fix DSACKs to not fragment already SACKed and we can
1384 * drop this restriction as unnecessary
1385 */
775ffabf 1386 if (mss != tcp_skb_seglen(prev))
832d11c5
IJ
1387 goto fallback;
1388
1389 if (len == mss) {
1390 pcount = 1;
1391 } else if (len < mss) {
1392 goto noop;
1393 } else {
1394 pcount = len / mss;
1395 len = pcount * mss;
1396 }
1397 }
1398
4648dc97
NC
1399 /* tcp_sacktag_one() won't SACK-tag ranges below snd_una */
1400 if (!after(TCP_SKB_CB(skb)->seq + len, tp->snd_una))
1401 goto fallback;
1402
832d11c5
IJ
1403 if (!skb_shift(prev, skb, len))
1404 goto fallback;
9ec06ff5 1405 if (!tcp_shifted_skb(sk, skb, state, pcount, len, mss, dup_sack))
832d11c5
IJ
1406 goto out;
1407
1408 /* Hole filled allows collapsing with the next as well, this is very
1409 * useful when hole on every nth skb pattern happens
1410 */
1411 if (prev == tcp_write_queue_tail(sk))
1412 goto out;
1413 skb = tcp_write_queue_next(sk, prev);
1414
f0bc52f3
IJ
1415 if (!skb_can_shift(skb) ||
1416 (skb == tcp_send_head(sk)) ||
1417 ((TCP_SKB_CB(skb)->sacked & TCPCB_TAGBITS) != TCPCB_SACKED_ACKED) ||
775ffabf 1418 (mss != tcp_skb_seglen(skb)))
832d11c5
IJ
1419 goto out;
1420
1421 len = skb->len;
1422 if (skb_shift(prev, skb, len)) {
1423 pcount += tcp_skb_pcount(skb);
9ec06ff5 1424 tcp_shifted_skb(sk, skb, state, tcp_skb_pcount(skb), len, mss, 0);
832d11c5
IJ
1425 }
1426
1427out:
a1197f5a 1428 state->fack_count += pcount;
832d11c5
IJ
1429 return prev;
1430
1431noop:
1432 return skb;
1433
1434fallback:
111cc8b9 1435 NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_SACKSHIFTFALLBACK);
832d11c5
IJ
1436 return NULL;
1437}
1438
68f8353b
IJ
1439static struct sk_buff *tcp_sacktag_walk(struct sk_buff *skb, struct sock *sk,
1440 struct tcp_sack_block *next_dup,
a1197f5a 1441 struct tcp_sacktag_state *state,
68f8353b 1442 u32 start_seq, u32 end_seq,
a2a385d6 1443 bool dup_sack_in)
68f8353b 1444{
832d11c5
IJ
1445 struct tcp_sock *tp = tcp_sk(sk);
1446 struct sk_buff *tmp;
1447
68f8353b
IJ
1448 tcp_for_write_queue_from(skb, sk) {
1449 int in_sack = 0;
a2a385d6 1450 bool dup_sack = dup_sack_in;
68f8353b
IJ
1451
1452 if (skb == tcp_send_head(sk))
1453 break;
1454
1455 /* queue is in-order => we can short-circuit the walk early */
1456 if (!before(TCP_SKB_CB(skb)->seq, end_seq))
1457 break;
1458
1459 if ((next_dup != NULL) &&
1460 before(TCP_SKB_CB(skb)->seq, next_dup->end_seq)) {
1461 in_sack = tcp_match_skb_to_sack(sk, skb,
1462 next_dup->start_seq,
1463 next_dup->end_seq);
1464 if (in_sack > 0)
a2a385d6 1465 dup_sack = true;
68f8353b
IJ
1466 }
1467
832d11c5
IJ
1468 /* skb reference here is a bit tricky to get right, since
1469 * shifting can eat and free both this skb and the next,
1470 * so not even _safe variant of the loop is enough.
1471 */
1472 if (in_sack <= 0) {
a1197f5a
IJ
1473 tmp = tcp_shift_skb_data(sk, skb, state,
1474 start_seq, end_seq, dup_sack);
832d11c5
IJ
1475 if (tmp != NULL) {
1476 if (tmp != skb) {
1477 skb = tmp;
1478 continue;
1479 }
1480
1481 in_sack = 0;
1482 } else {
1483 in_sack = tcp_match_skb_to_sack(sk, skb,
1484 start_seq,
1485 end_seq);
1486 }
1487 }
1488
68f8353b
IJ
1489 if (unlikely(in_sack < 0))
1490 break;
1491
832d11c5 1492 if (in_sack) {
cc9a672e
NC
1493 TCP_SKB_CB(skb)->sacked =
1494 tcp_sacktag_one(sk,
1495 state,
1496 TCP_SKB_CB(skb)->sacked,
1497 TCP_SKB_CB(skb)->seq,
1498 TCP_SKB_CB(skb)->end_seq,
1499 dup_sack,
1500 tcp_skb_pcount(skb));
68f8353b 1501
832d11c5
IJ
1502 if (!before(TCP_SKB_CB(skb)->seq,
1503 tcp_highest_sack_seq(tp)))
1504 tcp_advance_highest_sack(sk, skb);
1505 }
1506
a1197f5a 1507 state->fack_count += tcp_skb_pcount(skb);
68f8353b
IJ
1508 }
1509 return skb;
1510}
1511
1512/* Avoid all extra work that is being done by sacktag while walking in
1513 * a normal way
1514 */
1515static struct sk_buff *tcp_sacktag_skip(struct sk_buff *skb, struct sock *sk,
a1197f5a
IJ
1516 struct tcp_sacktag_state *state,
1517 u32 skip_to_seq)
68f8353b
IJ
1518{
1519 tcp_for_write_queue_from(skb, sk) {
1520 if (skb == tcp_send_head(sk))
1521 break;
1522
e8bae275 1523 if (after(TCP_SKB_CB(skb)->end_seq, skip_to_seq))
68f8353b 1524 break;
d152a7d8 1525
a1197f5a 1526 state->fack_count += tcp_skb_pcount(skb);
68f8353b
IJ
1527 }
1528 return skb;
1529}
1530
1531static struct sk_buff *tcp_maybe_skipping_dsack(struct sk_buff *skb,
1532 struct sock *sk,
1533 struct tcp_sack_block *next_dup,
a1197f5a
IJ
1534 struct tcp_sacktag_state *state,
1535 u32 skip_to_seq)
68f8353b
IJ
1536{
1537 if (next_dup == NULL)
1538 return skb;
1539
1540 if (before(next_dup->start_seq, skip_to_seq)) {
a1197f5a
IJ
1541 skb = tcp_sacktag_skip(skb, sk, state, next_dup->start_seq);
1542 skb = tcp_sacktag_walk(skb, sk, NULL, state,
1543 next_dup->start_seq, next_dup->end_seq,
1544 1);
68f8353b
IJ
1545 }
1546
1547 return skb;
1548}
1549
cf533ea5 1550static int tcp_sack_cache_ok(const struct tcp_sock *tp, const struct tcp_sack_block *cache)
68f8353b
IJ
1551{
1552 return cache < tp->recv_sack_cache + ARRAY_SIZE(tp->recv_sack_cache);
1553}
1554
1da177e4 1555static int
cf533ea5 1556tcp_sacktag_write_queue(struct sock *sk, const struct sk_buff *ack_skb,
056834d9 1557 u32 prior_snd_una)
1da177e4 1558{
6687e988 1559 const struct inet_connection_sock *icsk = inet_csk(sk);
1da177e4 1560 struct tcp_sock *tp = tcp_sk(sk);
cf533ea5
ED
1561 const unsigned char *ptr = (skb_transport_header(ack_skb) +
1562 TCP_SKB_CB(ack_skb)->sacked);
fd6dad61 1563 struct tcp_sack_block_wire *sp_wire = (struct tcp_sack_block_wire *)(ptr+2);
4389dded 1564 struct tcp_sack_block sp[TCP_NUM_SACKS];
68f8353b 1565 struct tcp_sack_block *cache;
a1197f5a 1566 struct tcp_sacktag_state state;
68f8353b 1567 struct sk_buff *skb;
4389dded 1568 int num_sacks = min(TCP_NUM_SACKS, (ptr[1] - TCPOLEN_SACK_BASE) >> 3);
fd6dad61 1569 int used_sacks;
a2a385d6 1570 bool found_dup_sack = false;
68f8353b 1571 int i, j;
fda03fbb 1572 int first_sack_index;
1da177e4 1573
a1197f5a
IJ
1574 state.flag = 0;
1575 state.reord = tp->packets_out;
1576
d738cd8f 1577 if (!tp->sacked_out) {
de83c058
IJ
1578 if (WARN_ON(tp->fackets_out))
1579 tp->fackets_out = 0;
6859d494 1580 tcp_highest_sack_reset(sk);
d738cd8f 1581 }
1da177e4 1582
1ed83465 1583 found_dup_sack = tcp_check_dsack(sk, ack_skb, sp_wire,
d06e021d
DM
1584 num_sacks, prior_snd_una);
1585 if (found_dup_sack)
a1197f5a 1586 state.flag |= FLAG_DSACKING_ACK;
6f74651a
BE
1587
1588 /* Eliminate too old ACKs, but take into
1589 * account more or less fresh ones, they can
1590 * contain valid SACK info.
1591 */
1592 if (before(TCP_SKB_CB(ack_skb)->ack_seq, prior_snd_una - tp->max_window))
1593 return 0;
1594