GNU Linux-libre 4.9.309-gnu1
[releases.git] / net / ipv4 / tcp_input.c
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  *
8  * Authors:     Ross Biro
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.
43  *              Andrey Savochkin:       Fix RTT measurements in the presence of
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.
51  *              Andi Kleen:             Add tcp_measure_rcv_mss to make
52  *                                      connections with MSS<min(MTU,ann. MSS)
53  *                                      work without delayed acks.
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
62  */
63
64 #define pr_fmt(fmt) "TCP: " fmt
65
66 #include <linux/mm.h>
67 #include <linux/slab.h>
68 #include <linux/module.h>
69 #include <linux/sysctl.h>
70 #include <linux/kernel.h>
71 #include <linux/prefetch.h>
72 #include <net/dst.h>
73 #include <net/tcp.h>
74 #include <net/inet_common.h>
75 #include <linux/ipsec.h>
76 #include <asm/unaligned.h>
77 #include <linux/errqueue.h>
78
79 int sysctl_tcp_timestamps __read_mostly = 1;
80 int sysctl_tcp_window_scaling __read_mostly = 1;
81 int sysctl_tcp_sack __read_mostly = 1;
82 int sysctl_tcp_fack __read_mostly = 1;
83 int sysctl_tcp_max_reordering __read_mostly = 300;
84 int sysctl_tcp_dsack __read_mostly = 1;
85 int sysctl_tcp_app_win __read_mostly = 31;
86 int sysctl_tcp_adv_win_scale __read_mostly = 1;
87 EXPORT_SYMBOL(sysctl_tcp_adv_win_scale);
88
89 /* rfc5961 challenge ack rate limiting */
90 int sysctl_tcp_challenge_ack_limit = 1000;
91
92 int sysctl_tcp_stdurg __read_mostly;
93 int sysctl_tcp_rfc1337 __read_mostly;
94 int sysctl_tcp_max_orphans __read_mostly = NR_FILE;
95 int sysctl_tcp_frto __read_mostly = 2;
96 int sysctl_tcp_min_rtt_wlen __read_mostly = 300;
97
98 int sysctl_tcp_thin_dupack __read_mostly;
99
100 int sysctl_tcp_moderate_rcvbuf __read_mostly = 1;
101 int sysctl_tcp_early_retrans __read_mostly = 3;
102 int sysctl_tcp_invalid_ratelimit __read_mostly = HZ/2;
103
104 #define FLAG_DATA               0x01 /* Incoming frame contained data.          */
105 #define FLAG_WIN_UPDATE         0x02 /* Incoming ACK was a window update.       */
106 #define FLAG_DATA_ACKED         0x04 /* This ACK acknowledged new data.         */
107 #define FLAG_RETRANS_DATA_ACKED 0x08 /* "" "" some of which was retransmitted.  */
108 #define FLAG_SYN_ACKED          0x10 /* This ACK acknowledged SYN.              */
109 #define FLAG_DATA_SACKED        0x20 /* New SACK.                               */
110 #define FLAG_ECE                0x40 /* ECE in this ACK                         */
111 #define FLAG_LOST_RETRANS       0x80 /* This ACK marks some retransmission lost */
112 #define FLAG_SLOWPATH           0x100 /* Do not skip RFC checks for window update.*/
113 #define FLAG_ORIG_SACK_ACKED    0x200 /* Never retransmitted data are (s)acked  */
114 #define FLAG_SND_UNA_ADVANCED   0x400 /* Snd_una was changed (!= FLAG_DATA_ACKED) */
115 #define FLAG_DSACKING_ACK       0x800 /* SACK blocks contained D-SACK info */
116 #define FLAG_SACK_RENEGING      0x2000 /* snd_una advanced to a sacked seq */
117 #define FLAG_UPDATE_TS_RECENT   0x4000 /* tcp_replace_ts_recent() */
118 #define FLAG_NO_CHALLENGE_ACK   0x8000 /* do not call tcp_send_challenge_ack()  */
119
120 #define FLAG_ACKED              (FLAG_DATA_ACKED|FLAG_SYN_ACKED)
121 #define FLAG_NOT_DUP            (FLAG_DATA|FLAG_WIN_UPDATE|FLAG_ACKED)
122 #define FLAG_CA_ALERT           (FLAG_DATA_SACKED|FLAG_ECE)
123 #define FLAG_FORWARD_PROGRESS   (FLAG_ACKED|FLAG_DATA_SACKED)
124
125 #define TCP_REMNANT (TCP_FLAG_FIN|TCP_FLAG_URG|TCP_FLAG_SYN|TCP_FLAG_PSH)
126 #define TCP_HP_BITS (~(TCP_RESERVED_BITS|TCP_FLAG_PSH))
127
128 #define REXMIT_NONE     0 /* no loss recovery to do */
129 #define REXMIT_LOST     1 /* retransmit packets marked lost */
130 #define REXMIT_NEW      2 /* FRTO-style transmit of unsent/new packets */
131
132 static void tcp_gro_dev_warn(struct sock *sk, const struct sk_buff *skb,
133                              unsigned int len)
134 {
135         static bool __once __read_mostly;
136
137         if (!__once) {
138                 struct net_device *dev;
139
140                 __once = true;
141
142                 rcu_read_lock();
143                 dev = dev_get_by_index_rcu(sock_net(sk), skb->skb_iif);
144                 if (!dev || len >= dev->mtu)
145                         pr_warn("%s: Driver has suspect GRO implementation, TCP performance may be compromised.\n",
146                                 dev ? dev->name : "Unknown driver");
147                 rcu_read_unlock();
148         }
149 }
150
151 /* Adapt the MSS value used to make delayed ack decision to the
152  * real world.
153  */
154 static void tcp_measure_rcv_mss(struct sock *sk, const struct sk_buff *skb)
155 {
156         struct inet_connection_sock *icsk = inet_csk(sk);
157         const unsigned int lss = icsk->icsk_ack.last_seg_size;
158         unsigned int len;
159
160         icsk->icsk_ack.last_seg_size = 0;
161
162         /* skb->len may jitter because of SACKs, even if peer
163          * sends good full-sized frames.
164          */
165         len = skb_shinfo(skb)->gso_size ? : skb->len;
166         if (len >= icsk->icsk_ack.rcv_mss) {
167                 icsk->icsk_ack.rcv_mss = min_t(unsigned int, len,
168                                                tcp_sk(sk)->advmss);
169                 /* Account for possibly-removed options */
170                 if (unlikely(len > icsk->icsk_ack.rcv_mss +
171                                    MAX_TCP_OPTION_SPACE))
172                         tcp_gro_dev_warn(sk, skb, len);
173         } else {
174                 /* Otherwise, we make more careful check taking into account,
175                  * that SACKs block is variable.
176                  *
177                  * "len" is invariant segment length, including TCP header.
178                  */
179                 len += skb->data - skb_transport_header(skb);
180                 if (len >= TCP_MSS_DEFAULT + sizeof(struct tcphdr) ||
181                     /* If PSH is not set, packet should be
182                      * full sized, provided peer TCP is not badly broken.
183                      * This observation (if it is correct 8)) allows
184                      * to handle super-low mtu links fairly.
185                      */
186                     (len >= TCP_MIN_MSS + sizeof(struct tcphdr) &&
187                      !(tcp_flag_word(tcp_hdr(skb)) & TCP_REMNANT))) {
188                         /* Subtract also invariant (if peer is RFC compliant),
189                          * tcp header plus fixed timestamp option length.
190                          * Resulting "len" is MSS free of SACK jitter.
191                          */
192                         len -= tcp_sk(sk)->tcp_header_len;
193                         icsk->icsk_ack.last_seg_size = len;
194                         if (len == lss) {
195                                 icsk->icsk_ack.rcv_mss = len;
196                                 return;
197                         }
198                 }
199                 if (icsk->icsk_ack.pending & ICSK_ACK_PUSHED)
200                         icsk->icsk_ack.pending |= ICSK_ACK_PUSHED2;
201                 icsk->icsk_ack.pending |= ICSK_ACK_PUSHED;
202         }
203 }
204
205 static void tcp_incr_quickack(struct sock *sk, unsigned int max_quickacks)
206 {
207         struct inet_connection_sock *icsk = inet_csk(sk);
208         unsigned int quickacks = tcp_sk(sk)->rcv_wnd / (2 * icsk->icsk_ack.rcv_mss);
209
210         if (quickacks == 0)
211                 quickacks = 2;
212         quickacks = min(quickacks, max_quickacks);
213         if (quickacks > icsk->icsk_ack.quick)
214                 icsk->icsk_ack.quick = quickacks;
215 }
216
217 void tcp_enter_quickack_mode(struct sock *sk, unsigned int max_quickacks)
218 {
219         struct inet_connection_sock *icsk = inet_csk(sk);
220
221         tcp_incr_quickack(sk, max_quickacks);
222         icsk->icsk_ack.pingpong = 0;
223         icsk->icsk_ack.ato = TCP_ATO_MIN;
224 }
225 EXPORT_SYMBOL(tcp_enter_quickack_mode);
226
227 /* Send ACKs quickly, if "quick" count is not exhausted
228  * and the session is not interactive.
229  */
230
231 static bool tcp_in_quickack_mode(struct sock *sk)
232 {
233         const struct inet_connection_sock *icsk = inet_csk(sk);
234         const struct dst_entry *dst = __sk_dst_get(sk);
235
236         return (dst && dst_metric(dst, RTAX_QUICKACK)) ||
237                 (icsk->icsk_ack.quick && !icsk->icsk_ack.pingpong);
238 }
239
240 static void tcp_ecn_queue_cwr(struct tcp_sock *tp)
241 {
242         if (tp->ecn_flags & TCP_ECN_OK)
243                 tp->ecn_flags |= TCP_ECN_QUEUE_CWR;
244 }
245
246 static void tcp_ecn_accept_cwr(struct tcp_sock *tp, const struct sk_buff *skb)
247 {
248         if (tcp_hdr(skb)->cwr)
249                 tp->ecn_flags &= ~TCP_ECN_DEMAND_CWR;
250 }
251
252 static void tcp_ecn_withdraw_cwr(struct tcp_sock *tp)
253 {
254         tp->ecn_flags &= ~TCP_ECN_QUEUE_CWR;
255 }
256
257 static void __tcp_ecn_check_ce(struct sock *sk, const struct sk_buff *skb)
258 {
259         struct tcp_sock *tp = tcp_sk(sk);
260
261         switch (TCP_SKB_CB(skb)->ip_dsfield & INET_ECN_MASK) {
262         case INET_ECN_NOT_ECT:
263                 /* Funny extension: if ECT is not set on a segment,
264                  * and we already seen ECT on a previous segment,
265                  * it is probably a retransmit.
266                  */
267                 if (tp->ecn_flags & TCP_ECN_SEEN)
268                         tcp_enter_quickack_mode(sk, 2);
269                 break;
270         case INET_ECN_CE:
271                 if (tcp_ca_needs_ecn(sk))
272                         tcp_ca_event(sk, CA_EVENT_ECN_IS_CE);
273
274                 if (!(tp->ecn_flags & TCP_ECN_DEMAND_CWR)) {
275                         /* Better not delay acks, sender can have a very low cwnd */
276                         tcp_enter_quickack_mode(sk, 2);
277                         tp->ecn_flags |= TCP_ECN_DEMAND_CWR;
278                 }
279                 tp->ecn_flags |= TCP_ECN_SEEN;
280                 break;
281         default:
282                 if (tcp_ca_needs_ecn(sk))
283                         tcp_ca_event(sk, CA_EVENT_ECN_NO_CE);
284                 tp->ecn_flags |= TCP_ECN_SEEN;
285                 break;
286         }
287 }
288
289 static void tcp_ecn_check_ce(struct sock *sk, const struct sk_buff *skb)
290 {
291         if (tcp_sk(sk)->ecn_flags & TCP_ECN_OK)
292                 __tcp_ecn_check_ce(sk, skb);
293 }
294
295 static void tcp_ecn_rcv_synack(struct tcp_sock *tp, const struct tcphdr *th)
296 {
297         if ((tp->ecn_flags & TCP_ECN_OK) && (!th->ece || th->cwr))
298                 tp->ecn_flags &= ~TCP_ECN_OK;
299 }
300
301 static void tcp_ecn_rcv_syn(struct tcp_sock *tp, const struct tcphdr *th)
302 {
303         if ((tp->ecn_flags & TCP_ECN_OK) && (!th->ece || !th->cwr))
304                 tp->ecn_flags &= ~TCP_ECN_OK;
305 }
306
307 static bool tcp_ecn_rcv_ecn_echo(const struct tcp_sock *tp, const struct tcphdr *th)
308 {
309         if (th->ece && !th->syn && (tp->ecn_flags & TCP_ECN_OK))
310                 return true;
311         return false;
312 }
313
314 /* Buffer size and advertised window tuning.
315  *
316  * 1. Tuning sk->sk_sndbuf, when connection enters established state.
317  */
318
319 static void tcp_sndbuf_expand(struct sock *sk)
320 {
321         const struct tcp_sock *tp = tcp_sk(sk);
322         const struct tcp_congestion_ops *ca_ops = inet_csk(sk)->icsk_ca_ops;
323         int sndmem, per_mss;
324         u32 nr_segs;
325
326         /* Worst case is non GSO/TSO : each frame consumes one skb
327          * and skb->head is kmalloced using power of two area of memory
328          */
329         per_mss = max_t(u32, tp->rx_opt.mss_clamp, tp->mss_cache) +
330                   MAX_TCP_HEADER +
331                   SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
332
333         per_mss = roundup_pow_of_two(per_mss) +
334                   SKB_DATA_ALIGN(sizeof(struct sk_buff));
335
336         nr_segs = max_t(u32, TCP_INIT_CWND, tp->snd_cwnd);
337         nr_segs = max_t(u32, nr_segs, tp->reordering + 1);
338
339         /* Fast Recovery (RFC 5681 3.2) :
340          * Cubic needs 1.7 factor, rounded to 2 to include
341          * extra cushion (application might react slowly to POLLOUT)
342          */
343         sndmem = ca_ops->sndbuf_expand ? ca_ops->sndbuf_expand(sk) : 2;
344         sndmem *= nr_segs * per_mss;
345
346         if (sk->sk_sndbuf < sndmem)
347                 sk->sk_sndbuf = min(sndmem, sysctl_tcp_wmem[2]);
348 }
349
350 /* 2. Tuning advertised window (window_clamp, rcv_ssthresh)
351  *
352  * All tcp_full_space() is split to two parts: "network" buffer, allocated
353  * forward and advertised in receiver window (tp->rcv_wnd) and
354  * "application buffer", required to isolate scheduling/application
355  * latencies from network.
356  * window_clamp is maximal advertised window. It can be less than
357  * tcp_full_space(), in this case tcp_full_space() - window_clamp
358  * is reserved for "application" buffer. The less window_clamp is
359  * the smoother our behaviour from viewpoint of network, but the lower
360  * throughput and the higher sensitivity of the connection to losses. 8)
361  *
362  * rcv_ssthresh is more strict window_clamp used at "slow start"
363  * phase to predict further behaviour of this connection.
364  * It is used for two goals:
365  * - to enforce header prediction at sender, even when application
366  *   requires some significant "application buffer". It is check #1.
367  * - to prevent pruning of receive queue because of misprediction
368  *   of receiver window. Check #2.
369  *
370  * The scheme does not work when sender sends good segments opening
371  * window and then starts to feed us spaghetti. But it should work
372  * in common situations. Otherwise, we have to rely on queue collapsing.
373  */
374
375 /* Slow part of check#2. */
376 static int __tcp_grow_window(const struct sock *sk, const struct sk_buff *skb)
377 {
378         struct tcp_sock *tp = tcp_sk(sk);
379         /* Optimize this! */
380         int truesize = tcp_win_from_space(skb->truesize) >> 1;
381         int window = tcp_win_from_space(sysctl_tcp_rmem[2]) >> 1;
382
383         while (tp->rcv_ssthresh <= window) {
384                 if (truesize <= skb->len)
385                         return 2 * inet_csk(sk)->icsk_ack.rcv_mss;
386
387                 truesize >>= 1;
388                 window >>= 1;
389         }
390         return 0;
391 }
392
393 static void tcp_grow_window(struct sock *sk, const struct sk_buff *skb)
394 {
395         struct tcp_sock *tp = tcp_sk(sk);
396         int room;
397
398         room = min_t(int, tp->window_clamp, tcp_space(sk)) - tp->rcv_ssthresh;
399
400         /* Check #1 */
401         if (room > 0 && !tcp_under_memory_pressure(sk)) {
402                 int incr;
403
404                 /* Check #2. Increase window, if skb with such overhead
405                  * will fit to rcvbuf in future.
406                  */
407                 if (tcp_win_from_space(skb->truesize) <= skb->len)
408                         incr = 2 * tp->advmss;
409                 else
410                         incr = __tcp_grow_window(sk, skb);
411
412                 if (incr) {
413                         incr = max_t(int, incr, 2 * skb->len);
414                         tp->rcv_ssthresh += min(room, incr);
415                         inet_csk(sk)->icsk_ack.quick |= 1;
416                 }
417         }
418 }
419
420 /* 3. Tuning rcvbuf, when connection enters established state. */
421 static void tcp_fixup_rcvbuf(struct sock *sk)
422 {
423         u32 mss = tcp_sk(sk)->advmss;
424         int rcvmem;
425
426         rcvmem = 2 * SKB_TRUESIZE(mss + MAX_TCP_HEADER) *
427                  tcp_default_init_rwnd(mss);
428
429         /* Dynamic Right Sizing (DRS) has 2 to 3 RTT latency
430          * Allow enough cushion so that sender is not limited by our window
431          */
432         if (sysctl_tcp_moderate_rcvbuf)
433                 rcvmem <<= 2;
434
435         if (sk->sk_rcvbuf < rcvmem)
436                 sk->sk_rcvbuf = min(rcvmem, sysctl_tcp_rmem[2]);
437 }
438
439 /* 4. Try to fixup all. It is made immediately after connection enters
440  *    established state.
441  */
442 void tcp_init_buffer_space(struct sock *sk)
443 {
444         struct tcp_sock *tp = tcp_sk(sk);
445         int maxwin;
446
447         if (!(sk->sk_userlocks & SOCK_RCVBUF_LOCK))
448                 tcp_fixup_rcvbuf(sk);
449         if (!(sk->sk_userlocks & SOCK_SNDBUF_LOCK))
450                 tcp_sndbuf_expand(sk);
451
452         tp->rcvq_space.space = tp->rcv_wnd;
453         tp->rcvq_space.time = tcp_time_stamp;
454         tp->rcvq_space.seq = tp->copied_seq;
455
456         maxwin = tcp_full_space(sk);
457
458         if (tp->window_clamp >= maxwin) {
459                 tp->window_clamp = maxwin;
460
461                 if (sysctl_tcp_app_win && maxwin > 4 * tp->advmss)
462                         tp->window_clamp = max(maxwin -
463                                                (maxwin >> sysctl_tcp_app_win),
464                                                4 * tp->advmss);
465         }
466
467         /* Force reservation of one segment. */
468         if (sysctl_tcp_app_win &&
469             tp->window_clamp > 2 * tp->advmss &&
470             tp->window_clamp + tp->advmss > maxwin)
471                 tp->window_clamp = max(2 * tp->advmss, maxwin - tp->advmss);
472
473         tp->rcv_ssthresh = min(tp->rcv_ssthresh, tp->window_clamp);
474         tp->snd_cwnd_stamp = tcp_time_stamp;
475 }
476
477 /* 5. Recalculate window clamp after socket hit its memory bounds. */
478 static void tcp_clamp_window(struct sock *sk)
479 {
480         struct tcp_sock *tp = tcp_sk(sk);
481         struct inet_connection_sock *icsk = inet_csk(sk);
482
483         icsk->icsk_ack.quick = 0;
484
485         if (sk->sk_rcvbuf < sysctl_tcp_rmem[2] &&
486             !(sk->sk_userlocks & SOCK_RCVBUF_LOCK) &&
487             !tcp_under_memory_pressure(sk) &&
488             sk_memory_allocated(sk) < sk_prot_mem_limits(sk, 0)) {
489                 sk->sk_rcvbuf = min(atomic_read(&sk->sk_rmem_alloc),
490                                     sysctl_tcp_rmem[2]);
491         }
492         if (atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf)
493                 tp->rcv_ssthresh = min(tp->window_clamp, 2U * tp->advmss);
494 }
495
496 /* Initialize RCV_MSS value.
497  * RCV_MSS is an our guess about MSS used by the peer.
498  * We haven't any direct information about the MSS.
499  * It's better to underestimate the RCV_MSS rather than overestimate.
500  * Overestimations make us ACKing less frequently than needed.
501  * Underestimations are more easy to detect and fix by tcp_measure_rcv_mss().
502  */
503 void tcp_initialize_rcv_mss(struct sock *sk)
504 {
505         const struct tcp_sock *tp = tcp_sk(sk);
506         unsigned int hint = min_t(unsigned int, tp->advmss, tp->mss_cache);
507
508         hint = min(hint, tp->rcv_wnd / 2);
509         hint = min(hint, TCP_MSS_DEFAULT);
510         hint = max(hint, TCP_MIN_MSS);
511
512         inet_csk(sk)->icsk_ack.rcv_mss = hint;
513 }
514 EXPORT_SYMBOL(tcp_initialize_rcv_mss);
515
516 /* Receiver "autotuning" code.
517  *
518  * The algorithm for RTT estimation w/o timestamps is based on
519  * Dynamic Right-Sizing (DRS) by Wu Feng and Mike Fisk of LANL.
520  * <http://public.lanl.gov/radiant/pubs.html#DRS>
521  *
522  * More detail on this code can be found at
523  * <http://staff.psc.edu/jheffner/>,
524  * though this reference is out of date.  A new paper
525  * is pending.
526  */
527 static void tcp_rcv_rtt_update(struct tcp_sock *tp, u32 sample, int win_dep)
528 {
529         u32 new_sample = tp->rcv_rtt_est.rtt;
530         long m = sample;
531
532         if (m == 0)
533                 m = 1;
534
535         if (new_sample != 0) {
536                 /* If we sample in larger samples in the non-timestamp
537                  * case, we could grossly overestimate the RTT especially
538                  * with chatty applications or bulk transfer apps which
539                  * are stalled on filesystem I/O.
540                  *
541                  * Also, since we are only going for a minimum in the
542                  * non-timestamp case, we do not smooth things out
543                  * else with timestamps disabled convergence takes too
544                  * long.
545                  */
546                 if (!win_dep) {
547                         m -= (new_sample >> 3);
548                         new_sample += m;
549                 } else {
550                         m <<= 3;
551                         if (m < new_sample)
552                                 new_sample = m;
553                 }
554         } else {
555                 /* No previous measure. */
556                 new_sample = m << 3;
557         }
558
559         if (tp->rcv_rtt_est.rtt != new_sample)
560                 tp->rcv_rtt_est.rtt = new_sample;
561 }
562
563 static inline void tcp_rcv_rtt_measure(struct tcp_sock *tp)
564 {
565         if (tp->rcv_rtt_est.time == 0)
566                 goto new_measure;
567         if (before(tp->rcv_nxt, tp->rcv_rtt_est.seq))
568                 return;
569         tcp_rcv_rtt_update(tp, tcp_time_stamp - tp->rcv_rtt_est.time, 1);
570
571 new_measure:
572         tp->rcv_rtt_est.seq = tp->rcv_nxt + tp->rcv_wnd;
573         tp->rcv_rtt_est.time = tcp_time_stamp;
574 }
575
576 static inline void tcp_rcv_rtt_measure_ts(struct sock *sk,
577                                           const struct sk_buff *skb)
578 {
579         struct tcp_sock *tp = tcp_sk(sk);
580         if (tp->rx_opt.rcv_tsecr &&
581             (TCP_SKB_CB(skb)->end_seq -
582              TCP_SKB_CB(skb)->seq >= inet_csk(sk)->icsk_ack.rcv_mss))
583                 tcp_rcv_rtt_update(tp, tcp_time_stamp - tp->rx_opt.rcv_tsecr, 0);
584 }
585
586 /*
587  * This function should be called every time data is copied to user space.
588  * It calculates the appropriate TCP receive buffer space.
589  */
590 void tcp_rcv_space_adjust(struct sock *sk)
591 {
592         struct tcp_sock *tp = tcp_sk(sk);
593         u32 copied;
594         int time;
595
596         time = tcp_time_stamp - tp->rcvq_space.time;
597         if (time < (tp->rcv_rtt_est.rtt >> 3) || tp->rcv_rtt_est.rtt == 0)
598                 return;
599
600         /* Number of bytes copied to user in last RTT */
601         copied = tp->copied_seq - tp->rcvq_space.seq;
602         if (copied <= tp->rcvq_space.space)
603                 goto new_measure;
604
605         /* A bit of theory :
606          * copied = bytes received in previous RTT, our base window
607          * To cope with packet losses, we need a 2x factor
608          * To cope with slow start, and sender growing its cwin by 100 %
609          * every RTT, we need a 4x factor, because the ACK we are sending
610          * now is for the next RTT, not the current one :
611          * <prev RTT . ><current RTT .. ><next RTT .... >
612          */
613
614         if (sysctl_tcp_moderate_rcvbuf &&
615             !(sk->sk_userlocks & SOCK_RCVBUF_LOCK)) {
616                 int rcvmem, rcvbuf;
617                 u64 rcvwin;
618
619                 /* minimal window to cope with packet losses, assuming
620                  * steady state. Add some cushion because of small variations.
621                  */
622                 rcvwin = ((u64)copied << 1) + 16 * tp->advmss;
623
624                 /* If rate increased by 25%,
625                  *      assume slow start, rcvwin = 3 * copied
626                  * If rate increased by 50%,
627                  *      assume sender can use 2x growth, rcvwin = 4 * copied
628                  */
629                 if (copied >=
630                     tp->rcvq_space.space + (tp->rcvq_space.space >> 2)) {
631                         if (copied >=
632                             tp->rcvq_space.space + (tp->rcvq_space.space >> 1))
633                                 rcvwin <<= 1;
634                         else
635                                 rcvwin += (rcvwin >> 1);
636                 }
637
638                 rcvmem = SKB_TRUESIZE(tp->advmss + MAX_TCP_HEADER);
639                 while (tcp_win_from_space(rcvmem) < tp->advmss)
640                         rcvmem += 128;
641
642                 do_div(rcvwin, tp->advmss);
643                 rcvbuf = min_t(u64, rcvwin * rcvmem, sysctl_tcp_rmem[2]);
644                 if (rcvbuf > sk->sk_rcvbuf) {
645                         sk->sk_rcvbuf = rcvbuf;
646
647                         /* Make the window clamp follow along.  */
648                         tp->window_clamp = tcp_win_from_space(rcvbuf);
649                 }
650         }
651         tp->rcvq_space.space = copied;
652
653 new_measure:
654         tp->rcvq_space.seq = tp->copied_seq;
655         tp->rcvq_space.time = tcp_time_stamp;
656 }
657
658 /* There is something which you must keep in mind when you analyze the
659  * behavior of the tp->ato delayed ack timeout interval.  When a
660  * connection starts up, we want to ack as quickly as possible.  The
661  * problem is that "good" TCP's do slow start at the beginning of data
662  * transmission.  The means that until we send the first few ACK's the
663  * sender will sit on his end and only queue most of his data, because
664  * he can only send snd_cwnd unacked packets at any given time.  For
665  * each ACK we send, he increments snd_cwnd and transmits more of his
666  * queue.  -DaveM
667  */
668 static void tcp_event_data_recv(struct sock *sk, struct sk_buff *skb)
669 {
670         struct tcp_sock *tp = tcp_sk(sk);
671         struct inet_connection_sock *icsk = inet_csk(sk);
672         u32 now;
673
674         inet_csk_schedule_ack(sk);
675
676         tcp_measure_rcv_mss(sk, skb);
677
678         tcp_rcv_rtt_measure(tp);
679
680         now = tcp_time_stamp;
681
682         if (!icsk->icsk_ack.ato) {
683                 /* The _first_ data packet received, initialize
684                  * delayed ACK engine.
685                  */
686                 tcp_incr_quickack(sk, TCP_MAX_QUICKACKS);
687                 icsk->icsk_ack.ato = TCP_ATO_MIN;
688         } else {
689                 int m = now - icsk->icsk_ack.lrcvtime;
690
691                 if (m <= TCP_ATO_MIN / 2) {
692                         /* The fastest case is the first. */
693                         icsk->icsk_ack.ato = (icsk->icsk_ack.ato >> 1) + TCP_ATO_MIN / 2;
694                 } else if (m < icsk->icsk_ack.ato) {
695                         icsk->icsk_ack.ato = (icsk->icsk_ack.ato >> 1) + m;
696                         if (icsk->icsk_ack.ato > icsk->icsk_rto)
697                                 icsk->icsk_ack.ato = icsk->icsk_rto;
698                 } else if (m > icsk->icsk_rto) {
699                         /* Too long gap. Apparently sender failed to
700                          * restart window, so that we send ACKs quickly.
701                          */
702                         tcp_incr_quickack(sk, TCP_MAX_QUICKACKS);
703                         sk_mem_reclaim(sk);
704                 }
705         }
706         icsk->icsk_ack.lrcvtime = now;
707
708         tcp_ecn_check_ce(sk, skb);
709
710         if (skb->len >= 128)
711                 tcp_grow_window(sk, skb);
712 }
713
714 /* Called to compute a smoothed rtt estimate. The data fed to this
715  * routine either comes from timestamps, or from segments that were
716  * known _not_ to have been retransmitted [see Karn/Partridge
717  * Proceedings SIGCOMM 87]. The algorithm is from the SIGCOMM 88
718  * piece by Van Jacobson.
719  * NOTE: the next three routines used to be one big routine.
720  * To save cycles in the RFC 1323 implementation it was better to break
721  * it up into three procedures. -- erics
722  */
723 static void tcp_rtt_estimator(struct sock *sk, long mrtt_us)
724 {
725         struct tcp_sock *tp = tcp_sk(sk);
726         long m = mrtt_us; /* RTT */
727         u32 srtt = tp->srtt_us;
728
729         /*      The following amusing code comes from Jacobson's
730          *      article in SIGCOMM '88.  Note that rtt and mdev
731          *      are scaled versions of rtt and mean deviation.
732          *      This is designed to be as fast as possible
733          *      m stands for "measurement".
734          *
735          *      On a 1990 paper the rto value is changed to:
736          *      RTO = rtt + 4 * mdev
737          *
738          * Funny. This algorithm seems to be very broken.
739          * These formulae increase RTO, when it should be decreased, increase
740          * too slowly, when it should be increased quickly, decrease too quickly
741          * etc. I guess in BSD RTO takes ONE value, so that it is absolutely
742          * does not matter how to _calculate_ it. Seems, it was trap
743          * that VJ failed to avoid. 8)
744          */
745         if (srtt != 0) {
746                 m -= (srtt >> 3);       /* m is now error in rtt est */
747                 srtt += m;              /* rtt = 7/8 rtt + 1/8 new */
748                 if (m < 0) {
749                         m = -m;         /* m is now abs(error) */
750                         m -= (tp->mdev_us >> 2);   /* similar update on mdev */
751                         /* This is similar to one of Eifel findings.
752                          * Eifel blocks mdev updates when rtt decreases.
753                          * This solution is a bit different: we use finer gain
754                          * for mdev in this case (alpha*beta).
755                          * Like Eifel it also prevents growth of rto,
756                          * but also it limits too fast rto decreases,
757                          * happening in pure Eifel.
758                          */
759                         if (m > 0)
760                                 m >>= 3;
761                 } else {
762                         m -= (tp->mdev_us >> 2);   /* similar update on mdev */
763                 }
764                 tp->mdev_us += m;               /* mdev = 3/4 mdev + 1/4 new */
765                 if (tp->mdev_us > tp->mdev_max_us) {
766                         tp->mdev_max_us = tp->mdev_us;
767                         if (tp->mdev_max_us > tp->rttvar_us)
768                                 tp->rttvar_us = tp->mdev_max_us;
769                 }
770                 if (after(tp->snd_una, tp->rtt_seq)) {
771                         if (tp->mdev_max_us < tp->rttvar_us)
772                                 tp->rttvar_us -= (tp->rttvar_us - tp->mdev_max_us) >> 2;
773                         tp->rtt_seq = tp->snd_nxt;
774                         tp->mdev_max_us = tcp_rto_min_us(sk);
775                 }
776         } else {
777                 /* no previous measure. */
778                 srtt = m << 3;          /* take the measured time to be rtt */
779                 tp->mdev_us = m << 1;   /* make sure rto = 3*rtt */
780                 tp->rttvar_us = max(tp->mdev_us, tcp_rto_min_us(sk));
781                 tp->mdev_max_us = tp->rttvar_us;
782                 tp->rtt_seq = tp->snd_nxt;
783         }
784         tp->srtt_us = max(1U, srtt);
785 }
786
787 /* Set the sk_pacing_rate to allow proper sizing of TSO packets.
788  * Note: TCP stack does not yet implement pacing.
789  * FQ packet scheduler can be used to implement cheap but effective
790  * TCP pacing, to smooth the burst on large writes when packets
791  * in flight is significantly lower than cwnd (or rwin)
792  */
793 int sysctl_tcp_pacing_ss_ratio __read_mostly = 200;
794 int sysctl_tcp_pacing_ca_ratio __read_mostly = 120;
795
796 static void tcp_update_pacing_rate(struct sock *sk)
797 {
798         const struct tcp_sock *tp = tcp_sk(sk);
799         u64 rate;
800
801         /* set sk_pacing_rate to 200 % of current rate (mss * cwnd / srtt) */
802         rate = (u64)tp->mss_cache * ((USEC_PER_SEC / 100) << 3);
803
804         /* current rate is (cwnd * mss) / srtt
805          * In Slow Start [1], set sk_pacing_rate to 200 % the current rate.
806          * In Congestion Avoidance phase, set it to 120 % the current rate.
807          *
808          * [1] : Normal Slow Start condition is (tp->snd_cwnd < tp->snd_ssthresh)
809          *       If snd_cwnd >= (tp->snd_ssthresh / 2), we are approaching
810          *       end of slow start and should slow down.
811          */
812         if (tp->snd_cwnd < tp->snd_ssthresh / 2)
813                 rate *= sysctl_tcp_pacing_ss_ratio;
814         else
815                 rate *= sysctl_tcp_pacing_ca_ratio;
816
817         rate *= max(tp->snd_cwnd, tp->packets_out);
818
819         if (likely(tp->srtt_us))
820                 do_div(rate, tp->srtt_us);
821
822         /* ACCESS_ONCE() is needed because sch_fq fetches sk_pacing_rate
823          * without any lock. We want to make sure compiler wont store
824          * intermediate values in this location.
825          */
826         ACCESS_ONCE(sk->sk_pacing_rate) = min_t(u64, rate,
827                                                 sk->sk_max_pacing_rate);
828 }
829
830 /* Calculate rto without backoff.  This is the second half of Van Jacobson's
831  * routine referred to above.
832  */
833 static void tcp_set_rto(struct sock *sk)
834 {
835         const struct tcp_sock *tp = tcp_sk(sk);
836         /* Old crap is replaced with new one. 8)
837          *
838          * More seriously:
839          * 1. If rtt variance happened to be less 50msec, it is hallucination.
840          *    It cannot be less due to utterly erratic ACK generation made
841          *    at least by solaris and freebsd. "Erratic ACKs" has _nothing_
842          *    to do with delayed acks, because at cwnd>2 true delack timeout
843          *    is invisible. Actually, Linux-2.4 also generates erratic
844          *    ACKs in some circumstances.
845          */
846         inet_csk(sk)->icsk_rto = __tcp_set_rto(tp);
847
848         /* 2. Fixups made earlier cannot be right.
849          *    If we do not estimate RTO correctly without them,
850          *    all the algo is pure shit and should be replaced
851          *    with correct one. It is exactly, which we pretend to do.
852          */
853
854         /* NOTE: clamping at TCP_RTO_MIN is not required, current algo
855          * guarantees that rto is higher.
856          */
857         tcp_bound_rto(sk);
858 }
859
860 __u32 tcp_init_cwnd(const struct tcp_sock *tp, const struct dst_entry *dst)
861 {
862         __u32 cwnd = (dst ? dst_metric(dst, RTAX_INITCWND) : 0);
863
864         if (!cwnd)
865                 cwnd = TCP_INIT_CWND;
866         return min_t(__u32, cwnd, tp->snd_cwnd_clamp);
867 }
868
869 /*
870  * Packet counting of FACK is based on in-order assumptions, therefore TCP
871  * disables it when reordering is detected
872  */
873 void tcp_disable_fack(struct tcp_sock *tp)
874 {
875         /* RFC3517 uses different metric in lost marker => reset on change */
876         if (tcp_is_fack(tp))
877                 tp->lost_skb_hint = NULL;
878         tp->rx_opt.sack_ok &= ~TCP_FACK_ENABLED;
879 }
880
881 /* Take a notice that peer is sending D-SACKs */
882 static void tcp_dsack_seen(struct tcp_sock *tp)
883 {
884         tp->rx_opt.sack_ok |= TCP_DSACK_SEEN;
885 }
886
887 static void tcp_update_reordering(struct sock *sk, const int metric,
888                                   const int ts)
889 {
890         struct tcp_sock *tp = tcp_sk(sk);
891         if (metric > tp->reordering) {
892                 int mib_idx;
893
894                 tp->reordering = min(sysctl_tcp_max_reordering, metric);
895
896                 /* This exciting event is worth to be remembered. 8) */
897                 if (ts)
898                         mib_idx = LINUX_MIB_TCPTSREORDER;
899                 else if (tcp_is_reno(tp))
900                         mib_idx = LINUX_MIB_TCPRENOREORDER;
901                 else if (tcp_is_fack(tp))
902                         mib_idx = LINUX_MIB_TCPFACKREORDER;
903                 else
904                         mib_idx = LINUX_MIB_TCPSACKREORDER;
905
906                 NET_INC_STATS(sock_net(sk), mib_idx);
907 #if FASTRETRANS_DEBUG > 1
908                 pr_debug("Disorder%d %d %u f%u s%u rr%d\n",
909                          tp->rx_opt.sack_ok, inet_csk(sk)->icsk_ca_state,
910                          tp->reordering,
911                          tp->fackets_out,
912                          tp->sacked_out,
913                          tp->undo_marker ? tp->undo_retrans : 0);
914 #endif
915                 tcp_disable_fack(tp);
916         }
917
918         if (metric > 0)
919                 tcp_disable_early_retrans(tp);
920         tp->rack.reord = 1;
921 }
922
923 /* This must be called before lost_out is incremented */
924 static void tcp_verify_retransmit_hint(struct tcp_sock *tp, struct sk_buff *skb)
925 {
926         if ((!tp->retransmit_skb_hint && tp->retrans_out >= tp->lost_out) ||
927             (tp->retransmit_skb_hint &&
928              before(TCP_SKB_CB(skb)->seq,
929                     TCP_SKB_CB(tp->retransmit_skb_hint)->seq)))
930                 tp->retransmit_skb_hint = skb;
931
932         if (!tp->lost_out ||
933             after(TCP_SKB_CB(skb)->end_seq, tp->retransmit_high))
934                 tp->retransmit_high = TCP_SKB_CB(skb)->end_seq;
935 }
936
937 /* Sum the number of packets on the wire we have marked as lost.
938  * There are two cases we care about here:
939  * a) Packet hasn't been marked lost (nor retransmitted),
940  *    and this is the first loss.
941  * b) Packet has been marked both lost and retransmitted,
942  *    and this means we think it was lost again.
943  */
944 static void tcp_sum_lost(struct tcp_sock *tp, struct sk_buff *skb)
945 {
946         __u8 sacked = TCP_SKB_CB(skb)->sacked;
947
948         if (!(sacked & TCPCB_LOST) ||
949             ((sacked & TCPCB_LOST) && (sacked & TCPCB_SACKED_RETRANS)))
950                 tp->lost += tcp_skb_pcount(skb);
951 }
952
953 static void tcp_skb_mark_lost(struct tcp_sock *tp, struct sk_buff *skb)
954 {
955         if (!(TCP_SKB_CB(skb)->sacked & (TCPCB_LOST|TCPCB_SACKED_ACKED))) {
956                 tcp_verify_retransmit_hint(tp, skb);
957
958                 tp->lost_out += tcp_skb_pcount(skb);
959                 tcp_sum_lost(tp, skb);
960                 TCP_SKB_CB(skb)->sacked |= TCPCB_LOST;
961         }
962 }
963
964 void tcp_skb_mark_lost_uncond_verify(struct tcp_sock *tp, struct sk_buff *skb)
965 {
966         tcp_verify_retransmit_hint(tp, skb);
967
968         tcp_sum_lost(tp, skb);
969         if (!(TCP_SKB_CB(skb)->sacked & (TCPCB_LOST|TCPCB_SACKED_ACKED))) {
970                 tp->lost_out += tcp_skb_pcount(skb);
971                 TCP_SKB_CB(skb)->sacked |= TCPCB_LOST;
972         }
973 }
974
975 /* This procedure tags the retransmission queue when SACKs arrive.
976  *
977  * We have three tag bits: SACKED(S), RETRANS(R) and LOST(L).
978  * Packets in queue with these bits set are counted in variables
979  * sacked_out, retrans_out and lost_out, correspondingly.
980  *
981  * Valid combinations are:
982  * Tag  InFlight        Description
983  * 0    1               - orig segment is in flight.
984  * S    0               - nothing flies, orig reached receiver.
985  * L    0               - nothing flies, orig lost by net.
986  * R    2               - both orig and retransmit are in flight.
987  * L|R  1               - orig is lost, retransmit is in flight.
988  * S|R  1               - orig reached receiver, retrans is still in flight.
989  * (L|S|R is logically valid, it could occur when L|R is sacked,
990  *  but it is equivalent to plain S and code short-curcuits it to S.
991  *  L|S is logically invalid, it would mean -1 packet in flight 8))
992  *
993  * These 6 states form finite state machine, controlled by the following events:
994  * 1. New ACK (+SACK) arrives. (tcp_sacktag_write_queue())
995  * 2. Retransmission. (tcp_retransmit_skb(), tcp_xmit_retransmit_queue())
996  * 3. Loss detection event of two flavors:
997  *      A. Scoreboard estimator decided the packet is lost.
998  *         A'. Reno "three dupacks" marks head of queue lost.
999  *         A''. Its FACK modification, head until snd.fack is lost.
1000  *      B. SACK arrives sacking SND.NXT at the moment, when the
1001  *         segment was retransmitted.
1002  * 4. D-SACK added new rule: D-SACK changes any tag to S.
1003  *
1004  * It is pleasant to note, that state diagram turns out to be commutative,
1005  * so that we are allowed not to be bothered by order of our actions,
1006  * when multiple events arrive simultaneously. (see the function below).
1007  *
1008  * Reordering detection.
1009  * --------------------
1010  * Reordering metric is maximal distance, which a packet can be displaced
1011  * in packet stream. With SACKs we can estimate it:
1012  *
1013  * 1. SACK fills old hole and the corresponding segment was not
1014  *    ever retransmitted -> reordering. Alas, we cannot use it
1015  *    when segment was retransmitted.
1016  * 2. The last flaw is solved with D-SACK. D-SACK arrives
1017  *    for retransmitted and already SACKed segment -> reordering..
1018  * Both of these heuristics are not used in Loss state, when we cannot
1019  * account for retransmits accurately.
1020  *
1021  * SACK block validation.
1022  * ----------------------
1023  *
1024  * SACK block range validation checks that the received SACK block fits to
1025  * the expected sequence limits, i.e., it is between SND.UNA and SND.NXT.
1026  * Note that SND.UNA is not included to the range though being valid because
1027  * it means that the receiver is rather inconsistent with itself reporting
1028  * SACK reneging when it should advance SND.UNA. Such SACK block this is
1029  * perfectly valid, however, in light of RFC2018 which explicitly states
1030  * that "SACK block MUST reflect the newest segment.  Even if the newest
1031  * segment is going to be discarded ...", not that it looks very clever
1032  * in case of head skb. Due to potentional receiver driven attacks, we
1033  * choose to avoid immediate execution of a walk in write queue due to
1034  * reneging and defer head skb's loss recovery to standard loss recovery
1035  * procedure that will eventually trigger (nothing forbids us doing this).
1036  *
1037  * Implements also blockage to start_seq wrap-around. Problem lies in the
1038  * fact that though start_seq (s) is before end_seq (i.e., not reversed),
1039  * there's no guarantee that it will be before snd_nxt (n). The problem
1040  * happens when start_seq resides between end_seq wrap (e_w) and snd_nxt
1041  * wrap (s_w):
1042  *
1043  *         <- outs wnd ->                          <- wrapzone ->
1044  *         u     e      n                         u_w   e_w  s n_w
1045  *         |     |      |                          |     |   |  |
1046  * |<------------+------+----- TCP seqno space --------------+---------->|
1047  * ...-- <2^31 ->|                                           |<--------...
1048  * ...---- >2^31 ------>|                                    |<--------...
1049  *
1050  * Current code wouldn't be vulnerable but it's better still to discard such
1051  * crazy SACK blocks. Doing this check for start_seq alone closes somewhat
1052  * similar case (end_seq after snd_nxt wrap) as earlier reversed check in
1053  * snd_nxt wrap -> snd_una region will then become "well defined", i.e.,
1054  * equal to the ideal case (infinite seqno space without wrap caused issues).
1055  *
1056  * With D-SACK the lower bound is extended to cover sequence space below
1057  * SND.UNA down to undo_marker, which is the last point of interest. Yet
1058  * again, D-SACK block must not to go across snd_una (for the same reason as
1059  * for the normal SACK blocks, explained above). But there all simplicity
1060  * ends, TCP might receive valid D-SACKs below that. As long as they reside
1061  * fully below undo_marker they do not affect behavior in anyway and can
1062  * therefore be safely ignored. In rare cases (which are more or less
1063  * theoretical ones), the D-SACK will nicely cross that boundary due to skb
1064  * fragmentation and packet reordering past skb's retransmission. To consider
1065  * them correctly, the acceptable range must be extended even more though
1066  * the exact amount is rather hard to quantify. However, tp->max_window can
1067  * be used as an exaggerated estimate.
1068  */
1069 static bool tcp_is_sackblock_valid(struct tcp_sock *tp, bool is_dsack,
1070                                    u32 start_seq, u32 end_seq)
1071 {
1072         /* Too far in future, or reversed (interpretation is ambiguous) */
1073         if (after(end_seq, tp->snd_nxt) || !before(start_seq, end_seq))
1074                 return false;
1075
1076         /* Nasty start_seq wrap-around check (see comments above) */
1077         if (!before(start_seq, tp->snd_nxt))
1078                 return false;
1079
1080         /* In outstanding window? ...This is valid exit for D-SACKs too.
1081          * start_seq == snd_una is non-sensical (see comments above)
1082          */
1083         if (after(start_seq, tp->snd_una))
1084                 return true;
1085
1086         if (!is_dsack || !tp->undo_marker)
1087                 return false;
1088
1089         /* ...Then it's D-SACK, and must reside below snd_una completely */
1090         if (after(end_seq, tp->snd_una))
1091                 return false;
1092
1093         if (!before(start_seq, tp->undo_marker))
1094                 return true;
1095
1096         /* Too old */
1097         if (!after(end_seq, tp->undo_marker))
1098                 return false;
1099
1100         /* Undo_marker boundary crossing (overestimates a lot). Known already:
1101          *   start_seq < undo_marker and end_seq >= undo_marker.
1102          */
1103         return !before(start_seq, end_seq - tp->max_window);
1104 }
1105
1106 static bool tcp_check_dsack(struct sock *sk, const struct sk_buff *ack_skb,
1107                             struct tcp_sack_block_wire *sp, int num_sacks,
1108                             u32 prior_snd_una)
1109 {
1110         struct tcp_sock *tp = tcp_sk(sk);
1111         u32 start_seq_0 = get_unaligned_be32(&sp[0].start_seq);
1112         u32 end_seq_0 = get_unaligned_be32(&sp[0].end_seq);
1113         bool dup_sack = false;
1114
1115         if (before(start_seq_0, TCP_SKB_CB(ack_skb)->ack_seq)) {
1116                 dup_sack = true;
1117                 tcp_dsack_seen(tp);
1118                 NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPDSACKRECV);
1119         } else if (num_sacks > 1) {
1120                 u32 end_seq_1 = get_unaligned_be32(&sp[1].end_seq);
1121                 u32 start_seq_1 = get_unaligned_be32(&sp[1].start_seq);
1122
1123                 if (!after(end_seq_0, end_seq_1) &&
1124                     !before(start_seq_0, start_seq_1)) {
1125                         dup_sack = true;
1126                         tcp_dsack_seen(tp);
1127                         NET_INC_STATS(sock_net(sk),
1128                                         LINUX_MIB_TCPDSACKOFORECV);
1129                 }
1130         }
1131
1132         /* D-SACK for already forgotten data... Do dumb counting. */
1133         if (dup_sack && tp->undo_marker && tp->undo_retrans > 0 &&
1134             !after(end_seq_0, prior_snd_una) &&
1135             after(end_seq_0, tp->undo_marker))
1136                 tp->undo_retrans--;
1137
1138         return dup_sack;
1139 }
1140
1141 struct tcp_sacktag_state {
1142         int     reord;
1143         int     fack_count;
1144         /* Timestamps for earliest and latest never-retransmitted segment
1145          * that was SACKed. RTO needs the earliest RTT to stay conservative,
1146          * but congestion control should still get an accurate delay signal.
1147          */
1148         struct skb_mstamp first_sackt;
1149         struct skb_mstamp last_sackt;
1150         struct rate_sample *rate;
1151         int     flag;
1152 };
1153
1154 /* Check if skb is fully within the SACK block. In presence of GSO skbs,
1155  * the incoming SACK may not exactly match but we can find smaller MSS
1156  * aligned portion of it that matches. Therefore we might need to fragment
1157  * which may fail and creates some hassle (caller must handle error case
1158  * returns).
1159  *
1160  * FIXME: this could be merged to shift decision code
1161  */
1162 static int tcp_match_skb_to_sack(struct sock *sk, struct sk_buff *skb,
1163                                   u32 start_seq, u32 end_seq)
1164 {
1165         int err;
1166         bool in_sack;
1167         unsigned int pkt_len;
1168         unsigned int mss;
1169
1170         in_sack = !after(start_seq, TCP_SKB_CB(skb)->seq) &&
1171                   !before(end_seq, TCP_SKB_CB(skb)->end_seq);
1172
1173         if (tcp_skb_pcount(skb) > 1 && !in_sack &&
1174             after(TCP_SKB_CB(skb)->end_seq, start_seq)) {
1175                 mss = tcp_skb_mss(skb);
1176                 in_sack = !after(start_seq, TCP_SKB_CB(skb)->seq);
1177
1178                 if (!in_sack) {
1179                         pkt_len = start_seq - TCP_SKB_CB(skb)->seq;
1180                         if (pkt_len < mss)
1181                                 pkt_len = mss;
1182                 } else {
1183                         pkt_len = end_seq - TCP_SKB_CB(skb)->seq;
1184                         if (pkt_len < mss)
1185                                 return -EINVAL;
1186                 }
1187
1188                 /* Round if necessary so that SACKs cover only full MSSes
1189                  * and/or the remaining small portion (if present)
1190                  */
1191                 if (pkt_len > mss) {
1192                         unsigned int new_len = (pkt_len / mss) * mss;
1193                         if (!in_sack && new_len < pkt_len)
1194                                 new_len += mss;
1195                         pkt_len = new_len;
1196                 }
1197
1198                 if (pkt_len >= skb->len && !in_sack)
1199                         return 0;
1200
1201                 err = tcp_fragment(sk, skb, pkt_len, mss, GFP_ATOMIC);
1202                 if (err < 0)
1203                         return err;
1204         }
1205
1206         return in_sack;
1207 }
1208
1209 /* Mark the given newly-SACKed range as such, adjusting counters and hints. */
1210 static u8 tcp_sacktag_one(struct sock *sk,
1211                           struct tcp_sacktag_state *state, u8 sacked,
1212                           u32 start_seq, u32 end_seq,
1213                           int dup_sack, int pcount,
1214                           const struct skb_mstamp *xmit_time)
1215 {
1216         struct tcp_sock *tp = tcp_sk(sk);
1217         int fack_count = state->fack_count;
1218
1219         /* Account D-SACK for retransmitted packet. */
1220         if (dup_sack && (sacked & TCPCB_RETRANS)) {
1221                 if (tp->undo_marker && tp->undo_retrans > 0 &&
1222                     after(end_seq, tp->undo_marker))
1223                         tp->undo_retrans = max_t(int, 0, tp->undo_retrans - pcount);
1224                 if (sacked & TCPCB_SACKED_ACKED)
1225                         state->reord = min(fack_count, state->reord);
1226         }
1227
1228         /* Nothing to do; acked frame is about to be dropped (was ACKed). */
1229         if (!after(end_seq, tp->snd_una))
1230                 return sacked;
1231
1232         if (!(sacked & TCPCB_SACKED_ACKED)) {
1233                 tcp_rack_advance(tp, xmit_time, sacked);
1234
1235                 if (sacked & TCPCB_SACKED_RETRANS) {
1236                         /* If the segment is not tagged as lost,
1237                          * we do not clear RETRANS, believing
1238                          * that retransmission is still in flight.
1239                          */
1240                         if (sacked & TCPCB_LOST) {
1241                                 sacked &= ~(TCPCB_LOST|TCPCB_SACKED_RETRANS);
1242                                 tp->lost_out -= pcount;
1243                                 tp->retrans_out -= pcount;
1244                         }
1245                 } else {
1246                         if (!(sacked & TCPCB_RETRANS)) {
1247                                 /* New sack for not retransmitted frame,
1248                                  * which was in hole. It is reordering.
1249                                  */
1250                                 if (before(start_seq,
1251                                            tcp_highest_sack_seq(tp)))
1252                                         state->reord = min(fack_count,
1253                                                            state->reord);
1254                                 if (!after(end_seq, tp->high_seq))
1255                                         state->flag |= FLAG_ORIG_SACK_ACKED;
1256                                 if (state->first_sackt.v64 == 0)
1257                                         state->first_sackt = *xmit_time;
1258                                 state->last_sackt = *xmit_time;
1259                         }
1260
1261                         if (sacked & TCPCB_LOST) {
1262                                 sacked &= ~TCPCB_LOST;
1263                                 tp->lost_out -= pcount;
1264                         }
1265                 }
1266
1267                 sacked |= TCPCB_SACKED_ACKED;
1268                 state->flag |= FLAG_DATA_SACKED;
1269                 tp->sacked_out += pcount;
1270                 tp->delivered += pcount;  /* Out-of-order packets delivered */
1271
1272                 fack_count += pcount;
1273
1274                 /* Lost marker hint past SACKed? Tweak RFC3517 cnt */
1275                 if (!tcp_is_fack(tp) && tp->lost_skb_hint &&
1276                     before(start_seq, TCP_SKB_CB(tp->lost_skb_hint)->seq))
1277                         tp->lost_cnt_hint += pcount;
1278
1279                 if (fack_count > tp->fackets_out)
1280                         tp->fackets_out = fack_count;
1281         }
1282
1283         /* D-SACK. We can detect redundant retransmission in S|R and plain R
1284          * frames and clear it. undo_retrans is decreased above, L|R frames
1285          * are accounted above as well.
1286          */
1287         if (dup_sack && (sacked & TCPCB_SACKED_RETRANS)) {
1288                 sacked &= ~TCPCB_SACKED_RETRANS;
1289                 tp->retrans_out -= pcount;
1290         }
1291
1292         return sacked;
1293 }
1294
1295 /* Shift newly-SACKed bytes from this skb to the immediately previous
1296  * already-SACKed sk_buff. Mark the newly-SACKed bytes as such.
1297  */
1298 static bool tcp_shifted_skb(struct sock *sk, struct sk_buff *skb,
1299                             struct tcp_sacktag_state *state,
1300                             unsigned int pcount, int shifted, int mss,
1301                             bool dup_sack)
1302 {
1303         struct tcp_sock *tp = tcp_sk(sk);
1304         struct sk_buff *prev = tcp_write_queue_prev(sk, skb);
1305         u32 start_seq = TCP_SKB_CB(skb)->seq;   /* start of newly-SACKed */
1306         u32 end_seq = start_seq + shifted;      /* end of newly-SACKed */
1307
1308         BUG_ON(!pcount);
1309
1310         /* Adjust counters and hints for the newly sacked sequence
1311          * range but discard the return value since prev is already
1312          * marked. We must tag the range first because the seq
1313          * advancement below implicitly advances
1314          * tcp_highest_sack_seq() when skb is highest_sack.
1315          */
1316         tcp_sacktag_one(sk, state, TCP_SKB_CB(skb)->sacked,
1317                         start_seq, end_seq, dup_sack, pcount,
1318                         &skb->skb_mstamp);
1319         tcp_rate_skb_delivered(sk, skb, state->rate);
1320
1321         if (skb == tp->lost_skb_hint)
1322                 tp->lost_cnt_hint += pcount;
1323
1324         TCP_SKB_CB(prev)->end_seq += shifted;
1325         TCP_SKB_CB(skb)->seq += shifted;
1326
1327         tcp_skb_pcount_add(prev, pcount);
1328         WARN_ON_ONCE(tcp_skb_pcount(skb) < pcount);
1329         tcp_skb_pcount_add(skb, -pcount);
1330
1331         /* When we're adding to gso_segs == 1, gso_size will be zero,
1332          * in theory this shouldn't be necessary but as long as DSACK
1333          * code can come after this skb later on it's better to keep
1334          * setting gso_size to something.
1335          */
1336         if (!TCP_SKB_CB(prev)->tcp_gso_size)
1337                 TCP_SKB_CB(prev)->tcp_gso_size = mss;
1338
1339         /* CHECKME: To clear or not to clear? Mimics normal skb currently */
1340         if (tcp_skb_pcount(skb) <= 1)
1341                 TCP_SKB_CB(skb)->tcp_gso_size = 0;
1342
1343         /* Difference in this won't matter, both ACKed by the same cumul. ACK */
1344         TCP_SKB_CB(prev)->sacked |= (TCP_SKB_CB(skb)->sacked & TCPCB_EVER_RETRANS);
1345
1346         if (skb->len > 0) {
1347                 BUG_ON(!tcp_skb_pcount(skb));
1348                 NET_INC_STATS(sock_net(sk), LINUX_MIB_SACKSHIFTED);
1349                 return false;
1350         }
1351
1352         /* Whole SKB was eaten :-) */
1353
1354         if (skb == tp->retransmit_skb_hint)
1355                 tp->retransmit_skb_hint = prev;
1356         if (skb == tp->lost_skb_hint) {
1357                 tp->lost_skb_hint = prev;
1358                 tp->lost_cnt_hint -= tcp_skb_pcount(prev);
1359         }
1360
1361         TCP_SKB_CB(prev)->tcp_flags |= TCP_SKB_CB(skb)->tcp_flags;
1362         TCP_SKB_CB(prev)->eor = TCP_SKB_CB(skb)->eor;
1363         if (TCP_SKB_CB(skb)->tcp_flags & TCPHDR_FIN)
1364                 TCP_SKB_CB(prev)->end_seq++;
1365
1366         if (skb == tcp_highest_sack(sk))
1367                 tcp_advance_highest_sack(sk, skb);
1368
1369         tcp_skb_collapse_tstamp(prev, skb);
1370         if (unlikely(TCP_SKB_CB(prev)->tx.delivered_mstamp.v64))
1371                 TCP_SKB_CB(prev)->tx.delivered_mstamp.v64 = 0;
1372
1373         tcp_unlink_write_queue(skb, sk);
1374         sk_wmem_free_skb(sk, skb);
1375
1376         NET_INC_STATS(sock_net(sk), LINUX_MIB_SACKMERGED);
1377
1378         return true;
1379 }
1380
1381 /* I wish gso_size would have a bit more sane initialization than
1382  * something-or-zero which complicates things
1383  */
1384 static int tcp_skb_seglen(const struct sk_buff *skb)
1385 {
1386         return tcp_skb_pcount(skb) == 1 ? skb->len : tcp_skb_mss(skb);
1387 }
1388
1389 /* Shifting pages past head area doesn't work */
1390 static int skb_can_shift(const struct sk_buff *skb)
1391 {
1392         return !skb_headlen(skb) && skb_is_nonlinear(skb);
1393 }
1394
1395 int tcp_skb_shift(struct sk_buff *to, struct sk_buff *from,
1396                   int pcount, int shiftlen)
1397 {
1398         /* TCP min gso_size is 8 bytes (TCP_MIN_GSO_SIZE)
1399          * Since TCP_SKB_CB(skb)->tcp_gso_segs is 16 bits, we need
1400          * to make sure not storing more than 65535 * 8 bytes per skb,
1401          * even if current MSS is bigger.
1402          */
1403         if (unlikely(to->len + shiftlen >= 65535 * TCP_MIN_GSO_SIZE))
1404                 return 0;
1405         if (unlikely(tcp_skb_pcount(to) + pcount > 65535))
1406                 return 0;
1407         return skb_shift(to, from, shiftlen);
1408 }
1409
1410 /* Try collapsing SACK blocks spanning across multiple skbs to a single
1411  * skb.
1412  */
1413 static struct sk_buff *tcp_shift_skb_data(struct sock *sk, struct sk_buff *skb,
1414                                           struct tcp_sacktag_state *state,
1415                                           u32 start_seq, u32 end_seq,
1416                                           bool dup_sack)
1417 {
1418         struct tcp_sock *tp = tcp_sk(sk);
1419         struct sk_buff *prev;
1420         int mss;
1421         int next_pcount;
1422         int pcount = 0;
1423         int len;
1424         int in_sack;
1425
1426         if (!sk_can_gso(sk))
1427                 goto fallback;
1428
1429         /* Normally R but no L won't result in plain S */
1430         if (!dup_sack &&
1431             (TCP_SKB_CB(skb)->sacked & (TCPCB_LOST|TCPCB_SACKED_RETRANS)) == TCPCB_SACKED_RETRANS)
1432                 goto fallback;
1433         if (!skb_can_shift(skb))
1434                 goto fallback;
1435         /* This frame is about to be dropped (was ACKed). */
1436         if (!after(TCP_SKB_CB(skb)->end_seq, tp->snd_una))
1437                 goto fallback;
1438
1439         /* Can only happen with delayed DSACK + discard craziness */
1440         if (unlikely(skb == tcp_write_queue_head(sk)))
1441                 goto fallback;
1442         prev = tcp_write_queue_prev(sk, skb);
1443
1444         if ((TCP_SKB_CB(prev)->sacked & TCPCB_TAGBITS) != TCPCB_SACKED_ACKED)
1445                 goto fallback;
1446
1447         if (!tcp_skb_can_collapse_to(prev))
1448                 goto fallback;
1449
1450         in_sack = !after(start_seq, TCP_SKB_CB(skb)->seq) &&
1451                   !before(end_seq, TCP_SKB_CB(skb)->end_seq);
1452
1453         if (in_sack) {
1454                 len = skb->len;
1455                 pcount = tcp_skb_pcount(skb);
1456                 mss = tcp_skb_seglen(skb);
1457
1458                 /* TODO: Fix DSACKs to not fragment already SACKed and we can
1459                  * drop this restriction as unnecessary
1460                  */
1461                 if (mss != tcp_skb_seglen(prev))
1462                         goto fallback;
1463         } else {
1464                 if (!after(TCP_SKB_CB(skb)->end_seq, start_seq))
1465                         goto noop;
1466                 /* CHECKME: This is non-MSS split case only?, this will
1467                  * cause skipped skbs due to advancing loop btw, original
1468                  * has that feature too
1469                  */
1470                 if (tcp_skb_pcount(skb) <= 1)
1471                         goto noop;
1472
1473                 in_sack = !after(start_seq, TCP_SKB_CB(skb)->seq);
1474                 if (!in_sack) {
1475                         /* TODO: head merge to next could be attempted here
1476                          * if (!after(TCP_SKB_CB(skb)->end_seq, end_seq)),
1477                          * though it might not be worth of the additional hassle
1478                          *
1479                          * ...we can probably just fallback to what was done
1480                          * previously. We could try merging non-SACKed ones
1481                          * as well but it probably isn't going to buy off
1482                          * because later SACKs might again split them, and
1483                          * it would make skb timestamp tracking considerably
1484                          * harder problem.
1485                          */
1486                         goto fallback;
1487                 }
1488
1489                 len = end_seq - TCP_SKB_CB(skb)->seq;
1490                 BUG_ON(len < 0);
1491                 BUG_ON(len > skb->len);
1492
1493                 /* MSS boundaries should be honoured or else pcount will
1494                  * severely break even though it makes things bit trickier.
1495                  * Optimize common case to avoid most of the divides
1496                  */
1497                 mss = tcp_skb_mss(skb);
1498
1499                 /* TODO: Fix DSACKs to not fragment already SACKed and we can
1500                  * drop this restriction as unnecessary
1501                  */
1502                 if (mss != tcp_skb_seglen(prev))
1503                         goto fallback;
1504
1505                 if (len == mss) {
1506                         pcount = 1;
1507                 } else if (len < mss) {
1508                         goto noop;
1509                 } else {
1510                         pcount = len / mss;
1511                         len = pcount * mss;
1512                 }
1513         }
1514
1515         /* tcp_sacktag_one() won't SACK-tag ranges below snd_una */
1516         if (!after(TCP_SKB_CB(skb)->seq + len, tp->snd_una))
1517                 goto fallback;
1518
1519         if (!tcp_skb_shift(prev, skb, pcount, len))
1520                 goto fallback;
1521         if (!tcp_shifted_skb(sk, skb, state, pcount, len, mss, dup_sack))
1522                 goto out;
1523
1524         /* Hole filled allows collapsing with the next as well, this is very
1525          * useful when hole on every nth skb pattern happens
1526          */
1527         if (prev == tcp_write_queue_tail(sk))
1528                 goto out;
1529         skb = tcp_write_queue_next(sk, prev);
1530
1531         if (!skb_can_shift(skb) ||
1532             (skb == tcp_send_head(sk)) ||
1533             ((TCP_SKB_CB(skb)->sacked & TCPCB_TAGBITS) != TCPCB_SACKED_ACKED) ||
1534             (mss != tcp_skb_seglen(skb)))
1535                 goto out;
1536
1537         len = skb->len;
1538         next_pcount = tcp_skb_pcount(skb);
1539         if (tcp_skb_shift(prev, skb, next_pcount, len)) {
1540                 pcount += next_pcount;
1541                 tcp_shifted_skb(sk, skb, state, next_pcount, len, mss, 0);
1542         }
1543 out:
1544         state->fack_count += pcount;
1545         return prev;
1546
1547 noop:
1548         return skb;
1549
1550 fallback:
1551         NET_INC_STATS(sock_net(sk), LINUX_MIB_SACKSHIFTFALLBACK);
1552         return NULL;
1553 }
1554
1555 static struct sk_buff *tcp_sacktag_walk(struct sk_buff *skb, struct sock *sk,
1556                                         struct tcp_sack_block *next_dup,
1557                                         struct tcp_sacktag_state *state,
1558                                         u32 start_seq, u32 end_seq,
1559                                         bool dup_sack_in)
1560 {
1561         struct tcp_sock *tp = tcp_sk(sk);
1562         struct sk_buff *tmp;
1563
1564         tcp_for_write_queue_from(skb, sk) {
1565                 int in_sack = 0;
1566                 bool dup_sack = dup_sack_in;
1567
1568                 if (skb == tcp_send_head(sk))
1569                         break;
1570
1571                 /* queue is in-order => we can short-circuit the walk early */
1572                 if (!before(TCP_SKB_CB(skb)->seq, end_seq))
1573                         break;
1574
1575                 if (next_dup  &&
1576                     before(TCP_SKB_CB(skb)->seq, next_dup->end_seq)) {
1577                         in_sack = tcp_match_skb_to_sack(sk, skb,
1578                                                         next_dup->start_seq,
1579                                                         next_dup->end_seq);
1580                         if (in_sack > 0)
1581                                 dup_sack = true;
1582                 }
1583
1584                 /* skb reference here is a bit tricky to get right, since
1585                  * shifting can eat and free both this skb and the next,
1586                  * so not even _safe variant of the loop is enough.
1587                  */
1588                 if (in_sack <= 0) {
1589                         tmp = tcp_shift_skb_data(sk, skb, state,
1590                                                  start_seq, end_seq, dup_sack);
1591                         if (tmp) {
1592                                 if (tmp != skb) {
1593                                         skb = tmp;
1594                                         continue;
1595                                 }
1596
1597                                 in_sack = 0;
1598                         } else {
1599                                 in_sack = tcp_match_skb_to_sack(sk, skb,
1600                                                                 start_seq,
1601                                                                 end_seq);
1602                         }
1603                 }
1604
1605                 if (unlikely(in_sack < 0))
1606                         break;
1607
1608                 if (in_sack) {
1609                         TCP_SKB_CB(skb)->sacked =
1610                                 tcp_sacktag_one(sk,
1611                                                 state,
1612                                                 TCP_SKB_CB(skb)->sacked,
1613                                                 TCP_SKB_CB(skb)->seq,
1614                                                 TCP_SKB_CB(skb)->end_seq,
1615                                                 dup_sack,
1616                                                 tcp_skb_pcount(skb),
1617                                                 &skb->skb_mstamp);
1618                         tcp_rate_skb_delivered(sk, skb, state->rate);
1619
1620                         if (!before(TCP_SKB_CB(skb)->seq,
1621                                     tcp_highest_sack_seq(tp)))
1622                                 tcp_advance_highest_sack(sk, skb);
1623                 }
1624
1625                 state->fack_count += tcp_skb_pcount(skb);
1626         }
1627         return skb;
1628 }
1629
1630 /* Avoid all extra work that is being done by sacktag while walking in
1631  * a normal way
1632  */
1633 static struct sk_buff *tcp_sacktag_skip(struct sk_buff *skb, struct sock *sk,
1634                                         struct tcp_sacktag_state *state,
1635                                         u32 skip_to_seq)
1636 {
1637         tcp_for_write_queue_from(skb, sk) {
1638                 if (skb == tcp_send_head(sk))
1639                         break;
1640
1641                 if (after(TCP_SKB_CB(skb)->end_seq, skip_to_seq))
1642                         break;
1643
1644                 state->fack_count += tcp_skb_pcount(skb);
1645         }
1646         return skb;
1647 }
1648
1649 static struct sk_buff *tcp_maybe_skipping_dsack(struct sk_buff *skb,
1650                                                 struct sock *sk,
1651                                                 struct tcp_sack_block *next_dup,
1652                                                 struct tcp_sacktag_state *state,
1653                                                 u32 skip_to_seq)
1654 {
1655         if (!next_dup)
1656                 return skb;
1657
1658         if (before(next_dup->start_seq, skip_to_seq)) {
1659                 skb = tcp_sacktag_skip(skb, sk, state, next_dup->start_seq);
1660                 skb = tcp_sacktag_walk(skb, sk, NULL, state,
1661                                        next_dup->start_seq, next_dup->end_seq,
1662                                        1);
1663         }
1664
1665         return skb;
1666 }
1667
1668 static int tcp_sack_cache_ok(const struct tcp_sock *tp, const struct tcp_sack_block *cache)
1669 {
1670         return cache < tp->recv_sack_cache + ARRAY_SIZE(tp->recv_sack_cache);
1671 }
1672
1673 static int
1674 tcp_sacktag_write_queue(struct sock *sk, const struct sk_buff *ack_skb,
1675                         u32 prior_snd_una, struct tcp_sacktag_state *state)
1676 {
1677         struct tcp_sock *tp = tcp_sk(sk);
1678         const unsigned char *ptr = (skb_transport_header(ack_skb) +
1679                                     TCP_SKB_CB(ack_skb)->sacked);
1680         struct tcp_sack_block_wire *sp_wire = (struct tcp_sack_block_wire *)(ptr+2);
1681         struct tcp_sack_block sp[TCP_NUM_SACKS];
1682         struct tcp_sack_block *cache;
1683         struct sk_buff *skb;
1684         int num_sacks = min(TCP_NUM_SACKS, (ptr[1] - TCPOLEN_SACK_BASE) >> 3);
1685         int used_sacks;
1686         bool found_dup_sack = false;
1687         int i, j;
1688         int first_sack_index;
1689
1690         state->flag = 0;
1691         state->reord = tp->packets_out;
1692
1693         if (!tp->sacked_out) {
1694                 if (WARN_ON(tp->fackets_out))
1695                         tp->fackets_out = 0;
1696                 tcp_highest_sack_reset(sk);
1697         }
1698
1699         found_dup_sack = tcp_check_dsack(sk, ack_skb, sp_wire,
1700                                          num_sacks, prior_snd_una);
1701         if (found_dup_sack) {
1702                 state->flag |= FLAG_DSACKING_ACK;
1703                 tp->delivered++; /* A spurious retransmission is delivered */
1704         }
1705
1706         /* Eliminate too old ACKs, but take into
1707          * account more or less fresh ones, they can
1708          * contain valid SACK info.
1709          */
1710         if (before(TCP_SKB_CB(ack_skb)->ack_seq, prior_snd_una - tp->max_window))
1711                 return 0;
1712
1713         if (!tp->packets_out)
1714                 goto out;
1715
1716         used_sacks = 0;
1717         first_sack_index = 0;
1718         for (i = 0; i < num_sacks; i++) {
1719                 bool dup_sack = !i && found_dup_sack;
1720
1721                 sp[used_sacks].start_seq = get_unaligned_be32(&sp_wire[i].start_seq);
1722                 sp[used_sacks].end_seq = get_unaligned_be32(&sp_wire[i].end_seq);
1723
1724                 if (!tcp_is_sackblock_valid(tp, dup_sack,
1725                                             sp[used_sacks].start_seq,
1726                                             sp[used_sacks].end_seq)) {
1727                         int mib_idx;
1728
1729                         if (dup_sack) {
1730                                 if (!tp->undo_marker)
1731                                         mib_idx = LINUX_MIB_TCPDSACKIGNOREDNOUNDO;
1732                                 else
1733                                         mib_idx = LINUX_MIB_TCPDSACKIGNOREDOLD;
1734                         } else {
1735                                 /* Don't count olds caused by ACK reordering */
1736                                 if ((TCP_SKB_CB(ack_skb)->ack_seq != tp->snd_una) &&
1737                                     !after(sp[used_sacks].end_seq, tp->snd_una))
1738                                         continue;
1739                                 mib_idx = LINUX_MIB_TCPSACKDISCARD;
1740                         }
1741
1742                         NET_INC_STATS(sock_net(sk), mib_idx);
1743                         if (i == 0)
1744                                 first_sack_index = -1;
1745                         continue;
1746                 }
1747
1748                 /* Ignore very old stuff early */
1749                 if (!after(sp[used_sacks].end_seq, prior_snd_una)) {
1750                         if (i == 0)
1751                                 first_sack_index = -1;
1752                         continue;
1753                 }
1754
1755                 used_sacks++;
1756         }
1757
1758         /* order SACK blocks to allow in order walk of the retrans queue */
1759         for (i = used_sacks - 1; i > 0; i--) {
1760                 for (j = 0; j < i; j++) {
1761                         if (after(sp[j].start_seq, sp[j + 1].start_seq)) {
1762                                 swap(sp[j], sp[j + 1]);
1763
1764                                 /* Track where the first SACK block goes to */
1765                                 if (j == first_sack_index)
1766                                         first_sack_index = j + 1;
1767                         }
1768                 }
1769         }
1770
1771         skb = tcp_write_queue_head(sk);
1772         state->fack_count = 0;
1773         i = 0;
1774
1775         if (!tp->sacked_out) {
1776                 /* It's already past, so skip checking against it */
1777                 cache = tp->recv_sack_cache + ARRAY_SIZE(tp->recv_sack_cache);
1778         } else {
1779                 cache = tp->recv_sack_cache;
1780                 /* Skip empty blocks in at head of the cache */
1781                 while (tcp_sack_cache_ok(tp, cache) && !cache->start_seq &&
1782                        !cache->end_seq)
1783                         cache++;
1784         }
1785
1786         while (i < used_sacks) {
1787                 u32 start_seq = sp[i].start_seq;
1788                 u32 end_seq = sp[i].end_seq;
1789                 bool dup_sack = (found_dup_sack && (i == first_sack_index));
1790                 struct tcp_sack_block *next_dup = NULL;
1791
1792                 if (found_dup_sack && ((i + 1) == first_sack_index))
1793                         next_dup = &sp[i + 1];
1794
1795                 /* Skip too early cached blocks */
1796                 while (tcp_sack_cache_ok(tp, cache) &&
1797                        !before(start_seq, cache->end_seq))
1798                         cache++;
1799
1800                 /* Can skip some work by looking recv_sack_cache? */
1801                 if (tcp_sack_cache_ok(tp, cache) && !dup_sack &&
1802                     after(end_seq, cache->start_seq)) {
1803
1804                         /* Head todo? */
1805                         if (before(start_seq, cache->start_seq)) {
1806                                 skb = tcp_sacktag_skip(skb, sk, state,
1807                                                        start_seq);
1808                                 skb = tcp_sacktag_walk(skb, sk, next_dup,
1809                                                        state,
1810                                                        start_seq,
1811                                                        cache->start_seq,
1812                                                        dup_sack);
1813                         }
1814
1815                         /* Rest of the block already fully processed? */
1816                         if (!after(end_seq, cache->end_seq))
1817                                 goto advance_sp;
1818
1819                         skb = tcp_maybe_skipping_dsack(skb, sk, next_dup,
1820                                                        state,
1821                                                        cache->end_seq);
1822
1823                         /* ...tail remains todo... */
1824                         if (tcp_highest_sack_seq(tp) == cache->end_seq) {
1825                                 /* ...but better entrypoint exists! */
1826                                 skb = tcp_highest_sack(sk);
1827                                 if (!skb)
1828                                         break;
1829                                 state->fack_count = tp->fackets_out;
1830                                 cache++;
1831                                 goto walk;
1832                         }
1833
1834                         skb = tcp_sacktag_skip(skb, sk, state, cache->end_seq);
1835                         /* Check overlap against next cached too (past this one already) */
1836                         cache++;
1837                         continue;
1838                 }
1839
1840                 if (!before(start_seq, tcp_highest_sack_seq(tp))) {
1841                         skb = tcp_highest_sack(sk);
1842                         if (!skb)
1843                                 break;
1844                         state->fack_count = tp->fackets_out;
1845                 }
1846                 skb = tcp_sacktag_skip(skb, sk, state, start_seq);
1847
1848 walk:
1849                 skb = tcp_sacktag_walk(skb, sk, next_dup, state,
1850                                        start_seq, end_seq, dup_sack);
1851
1852 advance_sp:
1853                 i++;
1854         }
1855
1856         /* Clear the head of the cache sack blocks so we can skip it next time */
1857         for (i = 0; i < ARRAY_SIZE(tp->recv_sack_cache) - used_sacks; i++) {
1858                 tp->recv_sack_cache[i].start_seq = 0;
1859                 tp->recv_sack_cache[i].end_seq = 0;
1860         }
1861         for (j = 0; j < used_sacks; j++)
1862                 tp->recv_sack_cache[i++] = sp[j];
1863
1864         if ((state->reord < tp->fackets_out) &&
1865             ((inet_csk(sk)->icsk_ca_state != TCP_CA_Loss) || tp->undo_marker))
1866                 tcp_update_reordering(sk, tp->fackets_out - state->reord, 0);
1867
1868         tcp_verify_left_out(tp);
1869 out:
1870
1871 #if FASTRETRANS_DEBUG > 0
1872         WARN_ON((int)tp->sacked_out < 0);
1873         WARN_ON((int)tp->lost_out < 0);
1874         WARN_ON((int)tp->retrans_out < 0);
1875         WARN_ON((int)tcp_packets_in_flight(tp) < 0);
1876 #endif
1877         return state->flag;
1878 }
1879
1880 /* Limits sacked_out so that sum with lost_out isn't ever larger than
1881  * packets_out. Returns false if sacked_out adjustement wasn't necessary.
1882  */
1883 static bool tcp_limit_reno_sacked(struct tcp_sock *tp)
1884 {
1885         u32 holes;
1886
1887         holes = max(tp->lost_out, 1U);
1888         holes = min(holes, tp->packets_out);
1889
1890         if ((tp->sacked_out + holes) > tp->packets_out) {
1891                 tp->sacked_out = tp->packets_out - holes;
1892                 return true;
1893         }
1894         return false;
1895 }
1896
1897 /* If we receive more dupacks than we expected counting segments
1898  * in assumption of absent reordering, interpret this as reordering.
1899  * The only another reason could be bug in receiver TCP.
1900  */
1901 static void tcp_check_reno_reordering(struct sock *sk, const int addend)
1902 {
1903         struct tcp_sock *tp = tcp_sk(sk);
1904         if (tcp_limit_reno_sacked(tp))
1905                 tcp_update_reordering(sk, tp->packets_out + addend, 0);
1906 }
1907
1908 /* Emulate SACKs for SACKless connection: account for a new dupack. */
1909
1910 static void tcp_add_reno_sack(struct sock *sk)
1911 {
1912         struct tcp_sock *tp = tcp_sk(sk);
1913         u32 prior_sacked = tp->sacked_out;
1914
1915         tp->sacked_out++;
1916         tcp_check_reno_reordering(sk, 0);
1917         if (tp->sacked_out > prior_sacked)
1918                 tp->delivered++; /* Some out-of-order packet is delivered */
1919         tcp_verify_left_out(tp);
1920 }
1921
1922 /* Account for ACK, ACKing some data in Reno Recovery phase. */
1923
1924 static void tcp_remove_reno_sacks(struct sock *sk, int acked)
1925 {
1926         struct tcp_sock *tp = tcp_sk(sk);
1927
1928         if (acked > 0) {
1929                 /* One ACK acked hole. The rest eat duplicate ACKs. */
1930                 tp->delivered += max_t(int, acked - tp->sacked_out, 1);
1931                 if (acked - 1 >= tp->sacked_out)
1932                         tp->sacked_out = 0;
1933                 else
1934                         tp->sacked_out -= acked - 1;
1935         }
1936         tcp_check_reno_reordering(sk, acked);
1937         tcp_verify_left_out(tp);
1938 }
1939
1940 static inline void tcp_reset_reno_sack(struct tcp_sock *tp)
1941 {
1942         tp->sacked_out = 0;
1943 }
1944
1945 void tcp_clear_retrans(struct tcp_sock *tp)
1946 {
1947         tp->retrans_out = 0;
1948         tp->lost_out = 0;
1949         tp->undo_marker = 0;
1950         tp->undo_retrans = -1;
1951         tp->fackets_out = 0;
1952         tp->sacked_out = 0;
1953 }
1954
1955 static inline void tcp_init_undo(struct tcp_sock *tp)
1956 {
1957         tp->undo_marker = tp->snd_una;
1958         /* Retransmission still in flight may cause DSACKs later. */
1959         tp->undo_retrans = tp->retrans_out ? : -1;
1960 }
1961
1962 /* Enter Loss state. If we detect SACK reneging, forget all SACK information
1963  * and reset tags completely, otherwise preserve SACKs. If receiver
1964  * dropped its ofo queue, we will know this due to reneging detection.
1965  */
1966 void tcp_enter_loss(struct sock *sk)
1967 {
1968         const struct inet_connection_sock *icsk = inet_csk(sk);
1969         struct tcp_sock *tp = tcp_sk(sk);
1970         struct net *net = sock_net(sk);
1971         struct sk_buff *skb;
1972         bool new_recovery = icsk->icsk_ca_state < TCP_CA_Recovery;
1973         bool is_reneg;                  /* is receiver reneging on SACKs? */
1974         bool mark_lost;
1975
1976         /* Reduce ssthresh if it has not yet been made inside this window. */
1977         if (icsk->icsk_ca_state <= TCP_CA_Disorder ||
1978             !after(tp->high_seq, tp->snd_una) ||
1979             (icsk->icsk_ca_state == TCP_CA_Loss && !icsk->icsk_retransmits)) {
1980                 tp->prior_ssthresh = tcp_current_ssthresh(sk);
1981                 tp->snd_ssthresh = icsk->icsk_ca_ops->ssthresh(sk);
1982                 tcp_ca_event(sk, CA_EVENT_LOSS);
1983                 tcp_init_undo(tp);
1984         }
1985         tp->snd_cwnd       = 1;
1986         tp->snd_cwnd_cnt   = 0;
1987         tp->snd_cwnd_stamp = tcp_time_stamp;
1988
1989         tp->retrans_out = 0;
1990         tp->lost_out = 0;
1991
1992         if (tcp_is_reno(tp))
1993                 tcp_reset_reno_sack(tp);
1994
1995         skb = tcp_write_queue_head(sk);
1996         is_reneg = skb && (TCP_SKB_CB(skb)->sacked & TCPCB_SACKED_ACKED);
1997         if (is_reneg) {
1998                 NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPSACKRENEGING);
1999                 tp->sacked_out = 0;
2000                 tp->fackets_out = 0;
2001                 /* Mark SACK reneging until we recover from this loss event. */
2002                 tp->is_sack_reneg = 1;
2003         }
2004         tcp_clear_all_retrans_hints(tp);
2005
2006         tcp_for_write_queue(skb, sk) {
2007                 if (skb == tcp_send_head(sk))
2008                         break;
2009
2010                 mark_lost = (!(TCP_SKB_CB(skb)->sacked & TCPCB_SACKED_ACKED) ||
2011                              is_reneg);
2012                 if (mark_lost)
2013                         tcp_sum_lost(tp, skb);
2014                 TCP_SKB_CB(skb)->sacked &= (~TCPCB_TAGBITS)|TCPCB_SACKED_ACKED;
2015                 if (mark_lost) {
2016                         TCP_SKB_CB(skb)->sacked &= ~TCPCB_SACKED_ACKED;
2017                         TCP_SKB_CB(skb)->sacked |= TCPCB_LOST;
2018                         tp->lost_out += tcp_skb_pcount(skb);
2019                         tp->retransmit_high = TCP_SKB_CB(skb)->end_seq;
2020                 }
2021         }
2022         tcp_verify_left_out(tp);
2023
2024         /* Timeout in disordered state after receiving substantial DUPACKs
2025          * suggests that the degree of reordering is over-estimated.
2026          */
2027         if (icsk->icsk_ca_state <= TCP_CA_Disorder &&
2028             tp->sacked_out >= net->ipv4.sysctl_tcp_reordering)
2029                 tp->reordering = min_t(unsigned int, tp->reordering,
2030                                        net->ipv4.sysctl_tcp_reordering);
2031         tcp_set_ca_state(sk, TCP_CA_Loss);
2032         tp->high_seq = tp->snd_nxt;
2033         tcp_ecn_queue_cwr(tp);
2034
2035         /* F-RTO RFC5682 sec 3.1 step 1: retransmit SND.UNA if no previous
2036          * loss recovery is underway except recurring timeout(s) on
2037          * the same SND.UNA (sec 3.2). Disable F-RTO on path MTU probing
2038          */
2039         tp->frto = sysctl_tcp_frto &&
2040                    (new_recovery || icsk->icsk_retransmits) &&
2041                    !inet_csk(sk)->icsk_mtup.probe_size;
2042 }
2043
2044 /* If ACK arrived pointing to a remembered SACK, it means that our
2045  * remembered SACKs do not reflect real state of receiver i.e.
2046  * receiver _host_ is heavily congested (or buggy).
2047  *
2048  * To avoid big spurious retransmission bursts due to transient SACK
2049  * scoreboard oddities that look like reneging, we give the receiver a
2050  * little time (max(RTT/2, 10ms)) to send us some more ACKs that will
2051  * restore sanity to the SACK scoreboard. If the apparent reneging
2052  * persists until this RTO then we'll clear the SACK scoreboard.
2053  */
2054 static bool tcp_check_sack_reneging(struct sock *sk, int flag)
2055 {
2056         if (flag & FLAG_SACK_RENEGING) {
2057                 struct tcp_sock *tp = tcp_sk(sk);
2058                 unsigned long delay = max(usecs_to_jiffies(tp->srtt_us >> 4),
2059                                           msecs_to_jiffies(10));
2060
2061                 inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS,
2062                                           delay, TCP_RTO_MAX);
2063                 return true;
2064         }
2065         return false;
2066 }
2067
2068 static inline int tcp_fackets_out(const struct tcp_sock *tp)
2069 {
2070         return tcp_is_reno(tp) ? tp->sacked_out + 1 : tp->fackets_out;
2071 }
2072
2073 /* Heurestics to calculate number of duplicate ACKs. There's no dupACKs
2074  * counter when SACK is enabled (without SACK, sacked_out is used for
2075  * that purpose).
2076  *
2077  * Instead, with FACK TCP uses fackets_out that includes both SACKed
2078  * segments up to the highest received SACK block so far and holes in
2079  * between them.
2080  *
2081  * With reordering, holes may still be in flight, so RFC3517 recovery
2082  * uses pure sacked_out (total number of SACKed segments) even though
2083  * it violates the RFC that uses duplicate ACKs, often these are equal
2084  * but when e.g. out-of-window ACKs or packet duplication occurs,
2085  * they differ. Since neither occurs due to loss, TCP should really
2086  * ignore them.
2087  */
2088 static inline int tcp_dupack_heuristics(const struct tcp_sock *tp)
2089 {
2090         return tcp_is_fack(tp) ? tp->fackets_out : tp->sacked_out + 1;
2091 }
2092
2093 static bool tcp_pause_early_retransmit(struct sock *sk, int flag)
2094 {
2095         struct tcp_sock *tp = tcp_sk(sk);
2096         unsigned long delay;
2097
2098         /* Delay early retransmit and entering fast recovery for
2099          * max(RTT/4, 2msec) unless ack has ECE mark, no RTT samples
2100          * available, or RTO is scheduled to fire first.
2101          */
2102         if (sysctl_tcp_early_retrans < 2 || sysctl_tcp_early_retrans > 3 ||
2103             (flag & FLAG_ECE) || !tp->srtt_us)
2104                 return false;
2105
2106         delay = max(usecs_to_jiffies(tp->srtt_us >> 5),
2107                     msecs_to_jiffies(2));
2108
2109         if (!time_after(inet_csk(sk)->icsk_timeout, (jiffies + delay)))
2110                 return false;
2111
2112         inet_csk_reset_xmit_timer(sk, ICSK_TIME_EARLY_RETRANS, delay,
2113                                   TCP_RTO_MAX);
2114         return true;
2115 }
2116
2117 /* Linux NewReno/SACK/FACK/ECN state machine.
2118  * --------------------------------------
2119  *
2120  * "Open"       Normal state, no dubious events, fast path.
2121  * "Disorder"   In all the respects it is "Open",
2122  *              but requires a bit more attention. It is entered when
2123  *              we see some SACKs or dupacks. It is split of "Open"
2124  *              mainly to move some processing from fast path to slow one.
2125  * "CWR"        CWND was reduced due to some Congestion Notification event.
2126  *              It can be ECN, ICMP source quench, local device congestion.
2127  * "Recovery"   CWND was reduced, we are fast-retransmitting.
2128  * "Loss"       CWND was reduced due to RTO timeout or SACK reneging.
2129  *
2130  * tcp_fastretrans_alert() is entered:
2131  * - each incoming ACK, if state is not "Open"
2132  * - when arrived ACK is unusual, namely:
2133  *      * SACK
2134  *      * Duplicate ACK.
2135  *      * ECN ECE.
2136  *
2137  * Counting packets in flight is pretty simple.
2138  *
2139  *      in_flight = packets_out - left_out + retrans_out
2140  *
2141  *      packets_out is SND.NXT-SND.UNA counted in packets.
2142  *
2143  *      retrans_out is number of retransmitted segments.
2144  *
2145  *      left_out is number of segments left network, but not ACKed yet.
2146  *
2147  *              left_out = sacked_out + lost_out
2148  *
2149  *     sacked_out: Packets, which arrived to receiver out of order
2150  *                 and hence not ACKed. With SACKs this number is simply
2151  *                 amount of SACKed data. Even without SACKs
2152  *                 it is easy to give pretty reliable estimate of this number,
2153  *                 counting duplicate ACKs.
2154  *
2155  *       lost_out: Packets lost by network. TCP has no explicit
2156  *                 "loss notification" feedback from network (for now).
2157  *                 It means that this number can be only _guessed_.
2158  *                 Actually, it is the heuristics to predict lossage that
2159  *                 distinguishes different algorithms.
2160  *
2161  *      F.e. after RTO, when all the queue is considered as lost,
2162  *      lost_out = packets_out and in_flight = retrans_out.
2163  *
2164  *              Essentially, we have now two algorithms counting
2165  *              lost packets.
2166  *
2167  *              FACK: It is the simplest heuristics. As soon as we decided
2168  *              that something is lost, we decide that _all_ not SACKed
2169  *              packets until the most forward SACK are lost. I.e.
2170  *              lost_out = fackets_out - sacked_out and left_out = fackets_out.
2171  *              It is absolutely correct estimate, if network does not reorder
2172  *              packets. And it loses any connection to reality when reordering
2173  *              takes place. We use FACK by default until reordering
2174  *              is suspected on the path to this destination.
2175  *
2176  *              NewReno: when Recovery is entered, we assume that one segment
2177  *              is lost (classic Reno). While we are in Recovery and
2178  *              a partial ACK arrives, we assume that one more packet
2179  *              is lost (NewReno). This heuristics are the same in NewReno
2180  *              and SACK.
2181  *
2182  *  Imagine, that's all! Forget about all this shamanism about CWND inflation
2183  *  deflation etc. CWND is real congestion window, never inflated, changes
2184  *  only according to classic VJ rules.
2185  *
2186  * Really tricky (and requiring careful tuning) part of algorithm
2187  * is hidden in functions tcp_time_to_recover() and tcp_xmit_retransmit_queue().
2188  * The first determines the moment _when_ we should reduce CWND and,
2189  * hence, slow down forward transmission. In fact, it determines the moment
2190  * when we decide that hole is caused by loss, rather than by a reorder.
2191  *
2192  * tcp_xmit_retransmit_queue() decides, _what_ we should retransmit to fill
2193  * holes, caused by lost packets.
2194  *
2195  * And the most logically complicated part of algorithm is undo
2196  * heuristics. We detect false retransmits due to both too early
2197  * fast retransmit (reordering) and underestimated RTO, analyzing
2198  * timestamps and D-SACKs. When we detect that some segments were
2199  * retransmitted by mistake and CWND reduction was wrong, we undo
2200  * window reduction and abort recovery phase. This logic is hidden
2201  * inside several functions named tcp_try_undo_<something>.
2202  */
2203
2204 /* This function decides, when we should leave Disordered state
2205  * and enter Recovery phase, reducing congestion window.
2206  *
2207  * Main question: may we further continue forward transmission
2208  * with the same cwnd?
2209  */
2210 static bool tcp_time_to_recover(struct sock *sk, int flag)
2211 {
2212         struct tcp_sock *tp = tcp_sk(sk);
2213         __u32 packets_out;
2214         int tcp_reordering = sock_net(sk)->ipv4.sysctl_tcp_reordering;
2215
2216         /* Trick#1: The loss is proven. */
2217         if (tp->lost_out)
2218                 return true;
2219
2220         /* Not-A-Trick#2 : Classic rule... */
2221         if (tcp_dupack_heuristics(tp) > tp->reordering)
2222                 return true;
2223
2224         /* Trick#4: It is still not OK... But will it be useful to delay
2225          * recovery more?
2226          */
2227         packets_out = tp->packets_out;
2228         if (packets_out <= tp->reordering &&
2229             tp->sacked_out >= max_t(__u32, packets_out/2, tcp_reordering) &&
2230             !tcp_may_send_now(sk)) {
2231                 /* We have nothing to send. This connection is limited
2232                  * either by receiver window or by application.
2233                  */
2234                 return true;
2235         }
2236
2237         /* If a thin stream is detected, retransmit after first
2238          * received dupack. Employ only if SACK is supported in order
2239          * to avoid possible corner-case series of spurious retransmissions
2240          * Use only if there are no unsent data.
2241          */
2242         if ((tp->thin_dupack || sysctl_tcp_thin_dupack) &&
2243             tcp_stream_is_thin(tp) && tcp_dupack_heuristics(tp) > 1 &&
2244             tcp_is_sack(tp) && !tcp_send_head(sk))
2245                 return true;
2246
2247         /* Trick#6: TCP early retransmit, per RFC5827.  To avoid spurious
2248          * retransmissions due to small network reorderings, we implement
2249          * Mitigation A.3 in the RFC and delay the retransmission for a short
2250          * interval if appropriate.
2251          */
2252         if (tp->do_early_retrans && !tp->retrans_out && tp->sacked_out &&
2253             (tp->packets_out >= (tp->sacked_out + 1) && tp->packets_out < 4) &&
2254             !tcp_may_send_now(sk))
2255                 return !tcp_pause_early_retransmit(sk, flag);
2256
2257         return false;
2258 }
2259
2260 /* Detect loss in event "A" above by marking head of queue up as lost.
2261  * For FACK or non-SACK(Reno) senders, the first "packets" number of segments
2262  * are considered lost. For RFC3517 SACK, a segment is considered lost if it
2263  * has at least tp->reordering SACKed seqments above it; "packets" refers to
2264  * the maximum SACKed segments to pass before reaching this limit.
2265  */
2266 static void tcp_mark_head_lost(struct sock *sk, int packets, int mark_head)
2267 {
2268         struct tcp_sock *tp = tcp_sk(sk);
2269         struct sk_buff *skb;
2270         int cnt, oldcnt, lost;
2271         unsigned int mss;
2272         /* Use SACK to deduce losses of new sequences sent during recovery */
2273         const u32 loss_high = tcp_is_sack(tp) ?  tp->snd_nxt : tp->high_seq;
2274
2275         WARN_ON(packets > tp->packets_out);
2276         if (tp->lost_skb_hint) {
2277                 skb = tp->lost_skb_hint;
2278                 cnt = tp->lost_cnt_hint;
2279                 /* Head already handled? */
2280                 if (mark_head && skb != tcp_write_queue_head(sk))
2281                         return;
2282         } else {
2283                 skb = tcp_write_queue_head(sk);
2284                 cnt = 0;
2285         }
2286
2287         tcp_for_write_queue_from(skb, sk) {
2288                 if (skb == tcp_send_head(sk))
2289                         break;
2290                 /* TODO: do this better */
2291                 /* this is not the most efficient way to do this... */
2292                 tp->lost_skb_hint = skb;
2293                 tp->lost_cnt_hint = cnt;
2294
2295                 if (after(TCP_SKB_CB(skb)->end_seq, loss_high))
2296                         break;
2297
2298                 oldcnt = cnt;
2299                 if (tcp_is_fack(tp) || tcp_is_reno(tp) ||
2300                     (TCP_SKB_CB(skb)->sacked & TCPCB_SACKED_ACKED))
2301                         cnt += tcp_skb_pcount(skb);
2302
2303                 if (cnt > packets) {
2304                         if ((tcp_is_sack(tp) && !tcp_is_fack(tp)) ||
2305                             (TCP_SKB_CB(skb)->sacked & TCPCB_SACKED_ACKED) ||
2306                             (oldcnt >= packets))
2307                                 break;
2308
2309                         mss = tcp_skb_mss(skb);
2310                         /* If needed, chop off the prefix to mark as lost. */
2311                         lost = (packets - oldcnt) * mss;
2312                         if (lost < skb->len &&
2313                             tcp_fragment(sk, skb, lost, mss, GFP_ATOMIC) < 0)
2314                                 break;
2315                         cnt = packets;
2316                 }
2317
2318                 tcp_skb_mark_lost(tp, skb);
2319
2320                 if (mark_head)
2321                         break;
2322         }
2323         tcp_verify_left_out(tp);
2324 }
2325
2326 /* Account newly detected lost packet(s) */
2327
2328 static void tcp_update_scoreboard(struct sock *sk, int fast_rexmit)
2329 {
2330         struct tcp_sock *tp = tcp_sk(sk);
2331
2332         if (tcp_is_reno(tp)) {
2333                 tcp_mark_head_lost(sk, 1, 1);
2334         } else if (tcp_is_fack(tp)) {
2335                 int lost = tp->fackets_out - tp->reordering;
2336                 if (lost <= 0)
2337                         lost = 1;
2338                 tcp_mark_head_lost(sk, lost, 0);
2339         } else {
2340                 int sacked_upto = tp->sacked_out - tp->reordering;
2341                 if (sacked_upto >= 0)
2342                         tcp_mark_head_lost(sk, sacked_upto, 0);
2343                 else if (fast_rexmit)
2344                         tcp_mark_head_lost(sk, 1, 1);
2345         }
2346 }
2347
2348 static bool tcp_tsopt_ecr_before(const struct tcp_sock *tp, u32 when)
2349 {
2350         return tp->rx_opt.saw_tstamp && tp->rx_opt.rcv_tsecr &&
2351                before(tp->rx_opt.rcv_tsecr, when);
2352 }
2353
2354 /* skb is spurious retransmitted if the returned timestamp echo
2355  * reply is prior to the skb transmission time
2356  */
2357 static bool tcp_skb_spurious_retrans(const struct tcp_sock *tp,
2358                                      const struct sk_buff *skb)
2359 {
2360         return (TCP_SKB_CB(skb)->sacked & TCPCB_RETRANS) &&
2361                tcp_tsopt_ecr_before(tp, tcp_skb_timestamp(skb));
2362 }
2363
2364 /* Nothing was retransmitted or returned timestamp is less
2365  * than timestamp of the first retransmission.
2366  */
2367 static inline bool tcp_packet_delayed(const struct tcp_sock *tp)
2368 {
2369         return !tp->retrans_stamp ||
2370                tcp_tsopt_ecr_before(tp, tp->retrans_stamp);
2371 }
2372
2373 /* Undo procedures. */
2374
2375 /* We can clear retrans_stamp when there are no retransmissions in the
2376  * window. It would seem that it is trivially available for us in
2377  * tp->retrans_out, however, that kind of assumptions doesn't consider
2378  * what will happen if errors occur when sending retransmission for the
2379  * second time. ...It could the that such segment has only
2380  * TCPCB_EVER_RETRANS set at the present time. It seems that checking
2381  * the head skb is enough except for some reneging corner cases that
2382  * are not worth the effort.
2383  *
2384  * Main reason for all this complexity is the fact that connection dying
2385  * time now depends on the validity of the retrans_stamp, in particular,
2386  * that successive retransmissions of a segment must not advance
2387  * retrans_stamp under any conditions.
2388  */
2389 static bool tcp_any_retrans_done(const struct sock *sk)
2390 {
2391         const struct tcp_sock *tp = tcp_sk(sk);
2392         struct sk_buff *skb;
2393
2394         if (tp->retrans_out)
2395                 return true;
2396
2397         skb = tcp_write_queue_head(sk);
2398         if (unlikely(skb && TCP_SKB_CB(skb)->sacked & TCPCB_EVER_RETRANS))
2399                 return true;
2400
2401         return false;
2402 }
2403
2404 #if FASTRETRANS_DEBUG > 1
2405 static void DBGUNDO(struct sock *sk, const char *msg)
2406 {
2407         struct tcp_sock *tp = tcp_sk(sk);
2408         struct inet_sock *inet = inet_sk(sk);
2409
2410         if (sk->sk_family == AF_INET) {
2411                 pr_debug("Undo %s %pI4/%u c%u l%u ss%u/%u p%u\n",
2412                          msg,
2413                          &inet->inet_daddr, ntohs(inet->inet_dport),
2414                          tp->snd_cwnd, tcp_left_out(tp),
2415                          tp->snd_ssthresh, tp->prior_ssthresh,
2416                          tp->packets_out);
2417         }
2418 #if IS_ENABLED(CONFIG_IPV6)
2419         else if (sk->sk_family == AF_INET6) {
2420                 pr_debug("Undo %s %pI6/%u c%u l%u ss%u/%u p%u\n",
2421                          msg,
2422                          &sk->sk_v6_daddr, ntohs(inet->inet_dport),
2423                          tp->snd_cwnd, tcp_left_out(tp),
2424                          tp->snd_ssthresh, tp->prior_ssthresh,
2425                          tp->packets_out);
2426         }
2427 #endif
2428 }
2429 #else
2430 #define DBGUNDO(x...) do { } while (0)
2431 #endif
2432
2433 static void tcp_undo_cwnd_reduction(struct sock *sk, bool unmark_loss)
2434 {
2435         struct tcp_sock *tp = tcp_sk(sk);
2436
2437         if (unmark_loss) {
2438                 struct sk_buff *skb;
2439
2440                 tcp_for_write_queue(skb, sk) {
2441                         if (skb == tcp_send_head(sk))
2442                                 break;
2443                         TCP_SKB_CB(skb)->sacked &= ~TCPCB_LOST;
2444                 }
2445                 tp->lost_out = 0;
2446                 tcp_clear_all_retrans_hints(tp);
2447         }
2448
2449         if (tp->prior_ssthresh) {
2450                 const struct inet_connection_sock *icsk = inet_csk(sk);
2451
2452                 if (icsk->icsk_ca_ops->undo_cwnd)
2453                         tp->snd_cwnd = icsk->icsk_ca_ops->undo_cwnd(sk);
2454                 else
2455                         tp->snd_cwnd = max(tp->snd_cwnd, tp->snd_ssthresh << 1);
2456
2457                 if (tp->prior_ssthresh > tp->snd_ssthresh) {
2458                         tp->snd_ssthresh = tp->prior_ssthresh;
2459                         tcp_ecn_withdraw_cwr(tp);
2460                 }
2461         }
2462         tp->snd_cwnd_stamp = tcp_time_stamp;
2463         tp->undo_marker = 0;
2464 }
2465
2466 static inline bool tcp_may_undo(const struct tcp_sock *tp)
2467 {
2468         return tp->undo_marker && (!tp->undo_retrans || tcp_packet_delayed(tp));
2469 }
2470
2471 /* People celebrate: "We love our President!" */
2472 static bool tcp_try_undo_recovery(struct sock *sk)
2473 {
2474         struct tcp_sock *tp = tcp_sk(sk);
2475
2476         if (tcp_may_undo(tp)) {
2477                 int mib_idx;
2478
2479                 /* Happy end! We did not retransmit anything
2480                  * or our original transmission succeeded.
2481                  */
2482                 DBGUNDO(sk, inet_csk(sk)->icsk_ca_state == TCP_CA_Loss ? "loss" : "retrans");
2483                 tcp_undo_cwnd_reduction(sk, false);
2484                 if (inet_csk(sk)->icsk_ca_state == TCP_CA_Loss)
2485                         mib_idx = LINUX_MIB_TCPLOSSUNDO;
2486                 else
2487                         mib_idx = LINUX_MIB_TCPFULLUNDO;
2488
2489                 NET_INC_STATS(sock_net(sk), mib_idx);
2490         }
2491         if (tp->snd_una == tp->high_seq && tcp_is_reno(tp)) {
2492                 /* Hold old state until something *above* high_seq
2493                  * is ACKed. For Reno it is MUST to prevent false
2494                  * fast retransmits (RFC2582). SACK TCP is safe. */
2495                 if (!tcp_any_retrans_done(sk))
2496                         tp->retrans_stamp = 0;
2497                 return true;
2498         }
2499         tcp_set_ca_state(sk, TCP_CA_Open);
2500         tp->is_sack_reneg = 0;
2501         return false;
2502 }
2503
2504 /* Try to undo cwnd reduction, because D-SACKs acked all retransmitted data */
2505 static bool tcp_try_undo_dsack(struct sock *sk)
2506 {
2507         struct tcp_sock *tp = tcp_sk(sk);
2508
2509         if (tp->undo_marker && !tp->undo_retrans) {
2510                 DBGUNDO(sk, "D-SACK");
2511                 tcp_undo_cwnd_reduction(sk, false);
2512                 NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPDSACKUNDO);
2513                 return true;
2514         }
2515         return false;
2516 }
2517
2518 /* Undo during loss recovery after partial ACK or using F-RTO. */
2519 static bool tcp_try_undo_loss(struct sock *sk, bool frto_undo)
2520 {
2521         struct tcp_sock *tp = tcp_sk(sk);
2522
2523         if (frto_undo || tcp_may_undo(tp)) {
2524                 tcp_undo_cwnd_reduction(sk, true);
2525
2526                 DBGUNDO(sk, "partial loss");
2527                 NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPLOSSUNDO);
2528                 if (frto_undo)
2529                         NET_INC_STATS(sock_net(sk),
2530                                         LINUX_MIB_TCPSPURIOUSRTOS);
2531                 inet_csk(sk)->icsk_retransmits = 0;
2532                 if (frto_undo || tcp_is_sack(tp)) {
2533                         tcp_set_ca_state(sk, TCP_CA_Open);
2534                         tp->is_sack_reneg = 0;
2535                 }
2536                 return true;
2537         }
2538         return false;
2539 }
2540
2541 /* The cwnd reduction in CWR and Recovery uses the PRR algorithm in RFC 6937.
2542  * It computes the number of packets to send (sndcnt) based on packets newly
2543  * delivered:
2544  *   1) If the packets in flight is larger than ssthresh, PRR spreads the
2545  *      cwnd reductions across a full RTT.
2546  *   2) Otherwise PRR uses packet conservation to send as much as delivered.
2547  *      But when the retransmits are acked without further losses, PRR
2548  *      slow starts cwnd up to ssthresh to speed up the recovery.
2549  */
2550 static void tcp_init_cwnd_reduction(struct sock *sk)
2551 {
2552         struct tcp_sock *tp = tcp_sk(sk);
2553
2554         tp->high_seq = tp->snd_nxt;
2555         tp->tlp_high_seq = 0;
2556         tp->snd_cwnd_cnt = 0;
2557         tp->prior_cwnd = tp->snd_cwnd;
2558         tp->prr_delivered = 0;
2559         tp->prr_out = 0;
2560         tp->snd_ssthresh = inet_csk(sk)->icsk_ca_ops->ssthresh(sk);
2561         tcp_ecn_queue_cwr(tp);
2562 }
2563
2564 static void tcp_cwnd_reduction(struct sock *sk, int newly_acked_sacked,
2565                                int flag)
2566 {
2567         struct tcp_sock *tp = tcp_sk(sk);
2568         int sndcnt = 0;
2569         int delta = tp->snd_ssthresh - tcp_packets_in_flight(tp);
2570
2571         if (newly_acked_sacked <= 0 || WARN_ON_ONCE(!tp->prior_cwnd))
2572                 return;
2573
2574         tp->prr_delivered += newly_acked_sacked;
2575         if (delta < 0) {
2576                 u64 dividend = (u64)tp->snd_ssthresh * tp->prr_delivered +
2577                                tp->prior_cwnd - 1;
2578                 sndcnt = div_u64(dividend, tp->prior_cwnd) - tp->prr_out;
2579         } else if ((flag & FLAG_RETRANS_DATA_ACKED) &&
2580                    !(flag & FLAG_LOST_RETRANS)) {
2581                 sndcnt = min_t(int, delta,
2582                                max_t(int, tp->prr_delivered - tp->prr_out,
2583                                      newly_acked_sacked) + 1);
2584         } else {
2585                 sndcnt = min(delta, newly_acked_sacked);
2586         }
2587         /* Force a fast retransmit upon entering fast recovery */
2588         sndcnt = max(sndcnt, (tp->prr_out ? 0 : 1));
2589         tp->snd_cwnd = tcp_packets_in_flight(tp) + sndcnt;
2590 }
2591
2592 static inline void tcp_end_cwnd_reduction(struct sock *sk)
2593 {
2594         struct tcp_sock *tp = tcp_sk(sk);
2595
2596         if (inet_csk(sk)->icsk_ca_ops->cong_control)
2597                 return;
2598
2599         /* Reset cwnd to ssthresh in CWR or Recovery (unless it's undone) */
2600         if (tp->snd_ssthresh < TCP_INFINITE_SSTHRESH &&
2601             (inet_csk(sk)->icsk_ca_state == TCP_CA_CWR || tp->undo_marker)) {
2602                 tp->snd_cwnd = tp->snd_ssthresh;
2603                 tp->snd_cwnd_stamp = tcp_time_stamp;
2604         }
2605         tcp_ca_event(sk, CA_EVENT_COMPLETE_CWR);
2606 }
2607
2608 /* Enter CWR state. Disable cwnd undo since congestion is proven with ECN */
2609 void tcp_enter_cwr(struct sock *sk)
2610 {
2611         struct tcp_sock *tp = tcp_sk(sk);
2612
2613         tp->prior_ssthresh = 0;
2614         if (inet_csk(sk)->icsk_ca_state < TCP_CA_CWR) {
2615                 tp->undo_marker = 0;
2616                 tcp_init_cwnd_reduction(sk);
2617                 tcp_set_ca_state(sk, TCP_CA_CWR);
2618         }
2619 }
2620 EXPORT_SYMBOL(tcp_enter_cwr);
2621
2622 static void tcp_try_keep_open(struct sock *sk)
2623 {
2624         struct tcp_sock *tp = tcp_sk(sk);
2625         int state = TCP_CA_Open;
2626
2627         if (tcp_left_out(tp) || tcp_any_retrans_done(sk))
2628                 state = TCP_CA_Disorder;
2629
2630         if (inet_csk(sk)->icsk_ca_state != state) {
2631                 tcp_set_ca_state(sk, state);
2632                 tp->high_seq = tp->snd_nxt;
2633         }
2634 }
2635
2636 static void tcp_try_to_open(struct sock *sk, int flag)
2637 {
2638         struct tcp_sock *tp = tcp_sk(sk);
2639
2640         tcp_verify_left_out(tp);
2641
2642         if (!tcp_any_retrans_done(sk))
2643                 tp->retrans_stamp = 0;
2644
2645         if (flag & FLAG_ECE)
2646                 tcp_enter_cwr(sk);
2647
2648         if (inet_csk(sk)->icsk_ca_state != TCP_CA_CWR) {
2649                 tcp_try_keep_open(sk);
2650         }
2651 }
2652
2653 static void tcp_mtup_probe_failed(struct sock *sk)
2654 {
2655         struct inet_connection_sock *icsk = inet_csk(sk);
2656
2657         icsk->icsk_mtup.search_high = icsk->icsk_mtup.probe_size - 1;
2658         icsk->icsk_mtup.probe_size = 0;
2659         NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPMTUPFAIL);
2660 }
2661
2662 static void tcp_mtup_probe_success(struct sock *sk)
2663 {
2664         struct tcp_sock *tp = tcp_sk(sk);
2665         struct inet_connection_sock *icsk = inet_csk(sk);
2666
2667         /* FIXME: breaks with very large cwnd */
2668         tp->prior_ssthresh = tcp_current_ssthresh(sk);
2669         tp->snd_cwnd = tp->snd_cwnd *
2670                        tcp_mss_to_mtu(sk, tp->mss_cache) /
2671                        icsk->icsk_mtup.probe_size;
2672         tp->snd_cwnd_cnt = 0;
2673         tp->snd_cwnd_stamp = tcp_time_stamp;
2674         tp->snd_ssthresh = tcp_current_ssthresh(sk);
2675
2676         icsk->icsk_mtup.search_low = icsk->icsk_mtup.probe_size;
2677         icsk->icsk_mtup.probe_size = 0;
2678         tcp_sync_mss(sk, icsk->icsk_pmtu_cookie);
2679         NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPMTUPSUCCESS);
2680 }
2681
2682 /* Do a simple retransmit without using the backoff mechanisms in
2683  * tcp_timer. This is used for path mtu discovery.
2684  * The socket is already locked here.
2685  */
2686 void tcp_simple_retransmit(struct sock *sk)
2687 {
2688         const struct inet_connection_sock *icsk = inet_csk(sk);
2689         struct tcp_sock *tp = tcp_sk(sk);
2690         struct sk_buff *skb;
2691         unsigned int mss = tcp_current_mss(sk);
2692         u32 prior_lost = tp->lost_out;
2693
2694         tcp_for_write_queue(skb, sk) {
2695                 if (skb == tcp_send_head(sk))
2696                         break;
2697                 if (tcp_skb_seglen(skb) > mss &&
2698                     !(TCP_SKB_CB(skb)->sacked & TCPCB_SACKED_ACKED)) {
2699                         if (TCP_SKB_CB(skb)->sacked & TCPCB_SACKED_RETRANS) {
2700                                 TCP_SKB_CB(skb)->sacked &= ~TCPCB_SACKED_RETRANS;
2701                                 tp->retrans_out -= tcp_skb_pcount(skb);
2702                         }
2703                         tcp_skb_mark_lost_uncond_verify(tp, skb);
2704                 }
2705         }
2706
2707         tcp_clear_retrans_hints_partial(tp);
2708
2709         if (prior_lost == tp->lost_out)
2710                 return;
2711
2712         if (tcp_is_reno(tp))
2713                 tcp_limit_reno_sacked(tp);
2714
2715         tcp_verify_left_out(tp);
2716
2717         /* Don't muck with the congestion window here.
2718          * Reason is that we do not increase amount of _data_
2719          * in network, but units changed and effective
2720          * cwnd/ssthresh really reduced now.
2721          */
2722         if (icsk->icsk_ca_state != TCP_CA_Loss) {
2723                 tp->high_seq = tp->snd_nxt;
2724                 tp->snd_ssthresh = tcp_current_ssthresh(sk);
2725                 tp->prior_ssthresh = 0;
2726                 tp->undo_marker = 0;
2727                 tcp_set_ca_state(sk, TCP_CA_Loss);
2728         }
2729         tcp_xmit_retransmit_queue(sk);
2730 }
2731 EXPORT_SYMBOL(tcp_simple_retransmit);
2732
2733 static void tcp_enter_recovery(struct sock *sk, bool ece_ack)
2734 {
2735         struct tcp_sock *tp = tcp_sk(sk);
2736         int mib_idx;
2737
2738         if (tcp_is_reno(tp))
2739                 mib_idx = LINUX_MIB_TCPRENORECOVERY;
2740         else
2741                 mib_idx = LINUX_MIB_TCPSACKRECOVERY;
2742
2743         NET_INC_STATS(sock_net(sk), mib_idx);
2744
2745         tp->prior_ssthresh = 0;
2746         tcp_init_undo(tp);
2747
2748         if (!tcp_in_cwnd_reduction(sk)) {
2749                 if (!ece_ack)
2750                         tp->prior_ssthresh = tcp_current_ssthresh(sk);
2751                 tcp_init_cwnd_reduction(sk);
2752         }
2753         tcp_set_ca_state(sk, TCP_CA_Recovery);
2754 }
2755
2756 /* Process an ACK in CA_Loss state. Move to CA_Open if lost data are
2757  * recovered or spurious. Otherwise retransmits more on partial ACKs.
2758  */
2759 static void tcp_process_loss(struct sock *sk, int flag, bool is_dupack,
2760                              int *rexmit)
2761 {
2762         struct tcp_sock *tp = tcp_sk(sk);
2763         bool recovered = !before(tp->snd_una, tp->high_seq);
2764
2765         if ((flag & FLAG_SND_UNA_ADVANCED) &&
2766             tcp_try_undo_loss(sk, false))
2767                 return;
2768
2769         if (tp->frto) { /* F-RTO RFC5682 sec 3.1 (sack enhanced version). */
2770                 /* Step 3.b. A timeout is spurious if not all data are
2771                  * lost, i.e., never-retransmitted data are (s)acked.
2772                  */
2773                 if ((flag & FLAG_ORIG_SACK_ACKED) &&
2774                     tcp_try_undo_loss(sk, true))
2775                         return;
2776
2777                 if (after(tp->snd_nxt, tp->high_seq)) {
2778                         if (flag & FLAG_DATA_SACKED || is_dupack)
2779                                 tp->frto = 0; /* Step 3.a. loss was real */
2780                 } else if (flag & FLAG_SND_UNA_ADVANCED && !recovered) {
2781                         tp->high_seq = tp->snd_nxt;
2782                         /* Step 2.b. Try send new data (but deferred until cwnd
2783                          * is updated in tcp_ack()). Otherwise fall back to
2784                          * the conventional recovery.
2785                          */
2786                         if (tcp_send_head(sk) &&
2787                             after(tcp_wnd_end(tp), tp->snd_nxt)) {
2788                                 *rexmit = REXMIT_NEW;
2789                                 return;
2790                         }
2791                         tp->frto = 0;
2792                 }
2793         }
2794
2795         if (recovered) {
2796                 /* F-RTO RFC5682 sec 3.1 step 2.a and 1st part of step 3.a */
2797                 tcp_try_undo_recovery(sk);
2798                 return;
2799         }
2800         if (tcp_is_reno(tp)) {
2801                 /* A Reno DUPACK means new data in F-RTO step 2.b above are
2802                  * delivered. Lower inflight to clock out (re)tranmissions.
2803                  */
2804                 if (after(tp->snd_nxt, tp->high_seq) && is_dupack)
2805                         tcp_add_reno_sack(sk);
2806                 else if (flag & FLAG_SND_UNA_ADVANCED)
2807                         tcp_reset_reno_sack(tp);
2808         }
2809         *rexmit = REXMIT_LOST;
2810 }
2811
2812 /* Undo during fast recovery after partial ACK. */
2813 static bool tcp_try_undo_partial(struct sock *sk, const int acked)
2814 {
2815         struct tcp_sock *tp = tcp_sk(sk);
2816
2817         if (tp->undo_marker && tcp_packet_delayed(tp)) {
2818                 /* Plain luck! Hole if filled with delayed
2819                  * packet, rather than with a retransmit.
2820                  */
2821                 tcp_update_reordering(sk, tcp_fackets_out(tp) + acked, 1);
2822
2823                 /* We are getting evidence that the reordering degree is higher
2824                  * than we realized. If there are no retransmits out then we
2825                  * can undo. Otherwise we clock out new packets but do not
2826                  * mark more packets lost or retransmit more.
2827                  */
2828                 if (tp->retrans_out)
2829                         return true;
2830
2831                 if (!tcp_any_retrans_done(sk))
2832                         tp->retrans_stamp = 0;
2833
2834                 DBGUNDO(sk, "partial recovery");
2835                 tcp_undo_cwnd_reduction(sk, true);
2836                 NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPPARTIALUNDO);
2837                 tcp_try_keep_open(sk);
2838                 return true;
2839         }
2840         return false;
2841 }
2842
2843 /* Process an event, which can update packets-in-flight not trivially.
2844  * Main goal of this function is to calculate new estimate for left_out,
2845  * taking into account both packets sitting in receiver's buffer and
2846  * packets lost by network.
2847  *
2848  * Besides that it updates the congestion state when packet loss or ECN
2849  * is detected. But it does not reduce the cwnd, it is done by the
2850  * congestion control later.
2851  *
2852  * It does _not_ decide what to send, it is made in function
2853  * tcp_xmit_retransmit_queue().
2854  */
2855 static void tcp_fastretrans_alert(struct sock *sk, const int acked,
2856                                   bool is_dupack, int *ack_flag, int *rexmit)
2857 {
2858         struct inet_connection_sock *icsk = inet_csk(sk);
2859         struct tcp_sock *tp = tcp_sk(sk);
2860         int fast_rexmit = 0, flag = *ack_flag;
2861         bool do_lost = is_dupack || ((flag & FLAG_DATA_SACKED) &&
2862                                     (tcp_fackets_out(tp) > tp->reordering));
2863
2864         if (!tp->packets_out && tp->sacked_out)
2865                 tp->sacked_out = 0;
2866         if (!tp->sacked_out && tp->fackets_out)
2867                 tp->fackets_out = 0;
2868
2869         /* Now state machine starts.
2870          * A. ECE, hence prohibit cwnd undoing, the reduction is required. */
2871         if (flag & FLAG_ECE)
2872                 tp->prior_ssthresh = 0;
2873
2874         /* B. In all the states check for reneging SACKs. */
2875         if (tcp_check_sack_reneging(sk, flag))
2876                 return;
2877
2878         /* C. Check consistency of the current state. */
2879         tcp_verify_left_out(tp);
2880
2881         /* D. Check state exit conditions. State can be terminated
2882          *    when high_seq is ACKed. */
2883         if (icsk->icsk_ca_state == TCP_CA_Open) {
2884                 WARN_ON(tp->retrans_out != 0);
2885                 tp->retrans_stamp = 0;
2886         } else if (!before(tp->snd_una, tp->high_seq)) {
2887                 switch (icsk->icsk_ca_state) {
2888                 case TCP_CA_CWR:
2889                         /* CWR is to be held something *above* high_seq
2890                          * is ACKed for CWR bit to reach receiver. */
2891                         if (tp->snd_una != tp->high_seq) {
2892                                 tcp_end_cwnd_reduction(sk);
2893                                 tcp_set_ca_state(sk, TCP_CA_Open);
2894                         }
2895                         break;
2896
2897                 case TCP_CA_Recovery:
2898                         if (tcp_is_reno(tp))
2899                                 tcp_reset_reno_sack(tp);
2900                         if (tcp_try_undo_recovery(sk))
2901                                 return;
2902                         tcp_end_cwnd_reduction(sk);
2903                         break;
2904                 }
2905         }
2906
2907         /* Use RACK to detect loss */
2908         if (sysctl_tcp_recovery & TCP_RACK_LOST_RETRANS &&
2909             tcp_rack_mark_lost(sk)) {
2910                 flag |= FLAG_LOST_RETRANS;
2911                 *ack_flag |= FLAG_LOST_RETRANS;
2912         }
2913
2914         /* E. Process state. */
2915         switch (icsk->icsk_ca_state) {
2916         case TCP_CA_Recovery:
2917                 if (!(flag & FLAG_SND_UNA_ADVANCED)) {
2918                         if (tcp_is_reno(tp) && is_dupack)
2919                                 tcp_add_reno_sack(sk);
2920                 } else {
2921                         if (tcp_try_undo_partial(sk, acked))
2922                                 return;
2923                         /* Partial ACK arrived. Force fast retransmit. */
2924                         do_lost = tcp_is_reno(tp) ||
2925                                   tcp_fackets_out(tp) > tp->reordering;
2926                 }
2927                 if (tcp_try_undo_dsack(sk)) {
2928                         tcp_try_keep_open(sk);
2929                         return;
2930                 }
2931                 break;
2932         case TCP_CA_Loss:
2933                 tcp_process_loss(sk, flag, is_dupack, rexmit);
2934                 if (icsk->icsk_ca_state != TCP_CA_Open &&
2935                     !(flag & FLAG_LOST_RETRANS))
2936                         return;
2937                 /* Change state if cwnd is undone or retransmits are lost */
2938         default:
2939                 if (tcp_is_reno(tp)) {
2940                         if (flag & FLAG_SND_UNA_ADVANCED)
2941                                 tcp_reset_reno_sack(tp);
2942                         if (is_dupack)
2943                                 tcp_add_reno_sack(sk);
2944                 }
2945
2946                 if (icsk->icsk_ca_state <= TCP_CA_Disorder)
2947                         tcp_try_undo_dsack(sk);
2948
2949                 if (!tcp_time_to_recover(sk, flag)) {
2950                         tcp_try_to_open(sk, flag);
2951                         return;
2952                 }
2953
2954                 /* MTU probe failure: don't reduce cwnd */
2955                 if (icsk->icsk_ca_state < TCP_CA_CWR &&
2956                     icsk->icsk_mtup.probe_size &&
2957                     tp->snd_una == tp->mtu_probe.probe_seq_start) {
2958                         tcp_mtup_probe_failed(sk);
2959                         /* Restores the reduction we did in tcp_mtup_probe() */
2960                         tp->snd_cwnd++;
2961                         tcp_simple_retransmit(sk);
2962                         return;
2963                 }
2964
2965                 /* Otherwise enter Recovery state */
2966                 tcp_enter_recovery(sk, (flag & FLAG_ECE));
2967                 fast_rexmit = 1;
2968         }
2969
2970         if (do_lost)
2971                 tcp_update_scoreboard(sk, fast_rexmit);
2972         *rexmit = REXMIT_LOST;
2973 }
2974
2975 static void tcp_update_rtt_min(struct sock *sk, u32 rtt_us)
2976 {
2977         struct tcp_sock *tp = tcp_sk(sk);
2978         u32 wlen = sysctl_tcp_min_rtt_wlen * HZ;
2979
2980         minmax_running_min(&tp->rtt_min, wlen, tcp_time_stamp,
2981                            rtt_us ? : jiffies_to_usecs(1));
2982 }
2983
2984 static inline bool tcp_ack_update_rtt(struct sock *sk, const int flag,
2985                                       long seq_rtt_us, long sack_rtt_us,
2986                                       long ca_rtt_us)
2987 {
2988         const struct tcp_sock *tp = tcp_sk(sk);
2989
2990         /* Prefer RTT measured from ACK's timing to TS-ECR. This is because
2991          * broken middle-boxes or peers may corrupt TS-ECR fields. But
2992          * Karn's algorithm forbids taking RTT if some retransmitted data
2993          * is acked (RFC6298).
2994          */
2995         if (seq_rtt_us < 0)
2996                 seq_rtt_us = sack_rtt_us;
2997
2998         /* RTTM Rule: A TSecr value received in a segment is used to
2999          * update the averaged RTT measurement only if the segment
3000          * acknowledges some new data, i.e., only if it advances the
3001          * left edge of the send window.
3002          * See draft-ietf-tcplw-high-performance-00, section 3.3.
3003          */
3004         if (seq_rtt_us < 0 && tp->rx_opt.saw_tstamp && tp->rx_opt.rcv_tsecr &&
3005             flag & FLAG_ACKED)
3006                 seq_rtt_us = ca_rtt_us = jiffies_to_usecs(tcp_time_stamp -
3007                                                           tp->rx_opt.rcv_tsecr);
3008         if (seq_rtt_us < 0)
3009                 return false;
3010
3011         /* ca_rtt_us >= 0 is counting on the invariant that ca_rtt_us is
3012          * always taken together with ACK, SACK, or TS-opts. Any negative
3013          * values will be skipped with the seq_rtt_us < 0 check above.
3014          */
3015         tcp_update_rtt_min(sk, ca_rtt_us);
3016         tcp_rtt_estimator(sk, seq_rtt_us);
3017         tcp_set_rto(sk);
3018
3019         /* RFC6298: only reset backoff on valid RTT measurement. */
3020         inet_csk(sk)->icsk_backoff = 0;
3021         return true;
3022 }
3023
3024 /* Compute time elapsed between (last) SYNACK and the ACK completing 3WHS. */
3025 void tcp_synack_rtt_meas(struct sock *sk, struct request_sock *req)
3026 {
3027         long rtt_us = -1L;
3028
3029         if (req && !req->num_retrans && tcp_rsk(req)->snt_synack.v64) {
3030                 struct skb_mstamp now;
3031
3032                 skb_mstamp_get(&now);
3033                 rtt_us = skb_mstamp_us_delta(&now, &tcp_rsk(req)->snt_synack);
3034         }
3035
3036         tcp_ack_update_rtt(sk, FLAG_SYN_ACKED, rtt_us, -1L, rtt_us);
3037 }
3038
3039
3040 static void tcp_cong_avoid(struct sock *sk, u32 ack, u32 acked)
3041 {
3042         const struct inet_connection_sock *icsk = inet_csk(sk);
3043
3044         icsk->icsk_ca_ops->cong_avoid(sk, ack, acked);
3045         tcp_sk(sk)->snd_cwnd_stamp = tcp_time_stamp;
3046 }
3047
3048 /* Restart timer after forward progress on connection.
3049  * RFC2988 recommends to restart timer to now+rto.
3050  */
3051 void tcp_rearm_rto(struct sock *sk)
3052 {
3053         const struct inet_connection_sock *icsk = inet_csk(sk);
3054         struct tcp_sock *tp = tcp_sk(sk);
3055
3056         /* If the retrans timer is currently being used by Fast Open
3057          * for SYN-ACK retrans purpose, stay put.
3058          */
3059         if (tp->fastopen_rsk)
3060                 return;
3061
3062         if (!tp->packets_out) {
3063                 inet_csk_clear_xmit_timer(sk, ICSK_TIME_RETRANS);
3064         } else {
3065                 u32 rto = inet_csk(sk)->icsk_rto;
3066                 /* Offset the time elapsed after installing regular RTO */
3067                 if (icsk->icsk_pending == ICSK_TIME_EARLY_RETRANS ||
3068                     icsk->icsk_pending == ICSK_TIME_LOSS_PROBE) {
3069                         struct sk_buff *skb = tcp_write_queue_head(sk);
3070                         const u32 rto_time_stamp =
3071                                 tcp_skb_timestamp(skb) + rto;
3072                         s32 delta = (s32)(rto_time_stamp - tcp_time_stamp);
3073                         /* delta may not be positive if the socket is locked
3074                          * when the retrans timer fires and is rescheduled.
3075                          */
3076                         rto = max(delta, 1);
3077                 }
3078                 inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS, rto,
3079                                           TCP_RTO_MAX);
3080         }
3081 }
3082
3083 /* This function is called when the delayed ER timer fires. TCP enters
3084  * fast recovery and performs fast-retransmit.
3085  */
3086 void tcp_resume_early_retransmit(struct sock *sk)
3087 {
3088         struct tcp_sock *tp = tcp_sk(sk);
3089
3090         tcp_rearm_rto(sk);
3091
3092         /* Stop if ER is disabled after the delayed ER timer is scheduled */
3093         if (!tp->do_early_retrans)
3094                 return;
3095
3096         tcp_enter_recovery(sk, false);
3097         tcp_update_scoreboard(sk, 1);
3098         tcp_xmit_retransmit_queue(sk);
3099 }
3100
3101 /* If we get here, the whole TSO packet has not been acked. */
3102 static u32 tcp_tso_acked(struct sock *sk, struct sk_buff *skb)
3103 {
3104         struct tcp_sock *tp = tcp_sk(sk);
3105         u32 packets_acked;
3106
3107         BUG_ON(!after(TCP_SKB_CB(skb)->end_seq, tp->snd_una));
3108
3109         packets_acked = tcp_skb_pcount(skb);
3110         if (tcp_trim_head(sk, skb, tp->snd_una - TCP_SKB_CB(skb)->seq))
3111                 return 0;
3112         packets_acked -= tcp_skb_pcount(skb);
3113
3114         if (packets_acked) {
3115                 BUG_ON(tcp_skb_pcount(skb) == 0);
3116                 BUG_ON(!before(TCP_SKB_CB(skb)->seq, TCP_SKB_CB(skb)->end_seq));
3117         }
3118
3119         return packets_acked;
3120 }
3121
3122 static void tcp_ack_tstamp(struct sock *sk, struct sk_buff *skb,
3123                            u32 prior_snd_una)
3124 {
3125         const struct skb_shared_info *shinfo;
3126
3127         /* Avoid cache line misses to get skb_shinfo() and shinfo->tx_flags */
3128         if (likely(!TCP_SKB_CB(skb)->txstamp_ack))
3129                 return;
3130
3131         shinfo = skb_shinfo(skb);
3132         if (!before(shinfo->tskey, prior_snd_una) &&
3133             before(shinfo->tskey, tcp_sk(sk)->snd_una))
3134                 __skb_tstamp_tx(skb, NULL, sk, SCM_TSTAMP_ACK);
3135 }
3136
3137 /* Remove acknowledged frames from the retransmission queue. If our packet
3138  * is before the ack sequence we can discard it as it's confirmed to have
3139  * arrived at the other end.
3140  */
3141 static int tcp_clean_rtx_queue(struct sock *sk, int prior_fackets,
3142                                u32 prior_snd_una, int *acked,
3143                                struct tcp_sacktag_state *sack,
3144                                struct skb_mstamp *now)
3145 {
3146         const struct inet_connection_sock *icsk = inet_csk(sk);
3147         struct skb_mstamp first_ackt, last_ackt;
3148         struct tcp_sock *tp = tcp_sk(sk);
3149         u32 prior_sacked = tp->sacked_out;
3150         u32 reord = tp->packets_out;
3151         bool fully_acked = true;
3152         long sack_rtt_us = -1L;
3153         long seq_rtt_us = -1L;
3154         long ca_rtt_us = -1L;
3155         struct sk_buff *skb;
3156         u32 pkts_acked = 0;
3157         u32 last_in_flight = 0;
3158         bool rtt_update;
3159         int flag = 0;
3160
3161         first_ackt.v64 = 0;
3162
3163         while ((skb = tcp_write_queue_head(sk)) && skb != tcp_send_head(sk)) {
3164                 struct tcp_skb_cb *scb = TCP_SKB_CB(skb);
3165                 u8 sacked = scb->sacked;
3166                 u32 acked_pcount;
3167
3168                 tcp_ack_tstamp(sk, skb, prior_snd_una);
3169
3170                 /* Determine how many packets and what bytes were acked, tso and else */
3171                 if (after(scb->end_seq, tp->snd_una)) {
3172                         if (tcp_skb_pcount(skb) == 1 ||
3173                             !after(tp->snd_una, scb->seq))
3174                                 break;
3175
3176                         acked_pcount = tcp_tso_acked(sk, skb);
3177                         if (!acked_pcount)
3178                                 break;
3179                         fully_acked = false;
3180                 } else {
3181                         /* Speedup tcp_unlink_write_queue() and next loop */
3182                         prefetchw(skb->next);
3183                         acked_pcount = tcp_skb_pcount(skb);
3184                 }
3185
3186                 if (unlikely(sacked & TCPCB_RETRANS)) {
3187                         if (sacked & TCPCB_SACKED_RETRANS)
3188                                 tp->retrans_out -= acked_pcount;
3189                         flag |= FLAG_RETRANS_DATA_ACKED;
3190                 } else if (!(sacked & TCPCB_SACKED_ACKED)) {
3191                         last_ackt = skb->skb_mstamp;
3192                         WARN_ON_ONCE(last_ackt.v64 == 0);
3193                         if (!first_ackt.v64)
3194                                 first_ackt = last_ackt;
3195
3196                         last_in_flight = TCP_SKB_CB(skb)->tx.in_flight;
3197                         reord = min(pkts_acked, reord);
3198                         if (!after(scb->end_seq, tp->high_seq))
3199                                 flag |= FLAG_ORIG_SACK_ACKED;
3200                 }
3201
3202                 if (sacked & TCPCB_SACKED_ACKED) {
3203                         tp->sacked_out -= acked_pcount;
3204                 } else if (tcp_is_sack(tp)) {
3205                         tp->delivered += acked_pcount;
3206                         if (!tcp_skb_spurious_retrans(tp, skb))
3207                                 tcp_rack_advance(tp, &skb->skb_mstamp, sacked);
3208                 }
3209                 if (sacked & TCPCB_LOST)
3210                         tp->lost_out -= acked_pcount;
3211
3212                 tp->packets_out -= acked_pcount;
3213                 pkts_acked += acked_pcount;
3214                 tcp_rate_skb_delivered(sk, skb, sack->rate);
3215
3216                 /* Initial outgoing SYN's get put onto the write_queue
3217                  * just like anything else we transmit.  It is not
3218                  * true data, and if we misinform our callers that
3219                  * this ACK acks real data, we will erroneously exit
3220                  * connection startup slow start one packet too
3221                  * quickly.  This is severely frowned upon behavior.
3222                  */
3223                 if (likely(!(scb->tcp_flags & TCPHDR_SYN))) {
3224                         flag |= FLAG_DATA_ACKED;
3225                 } else {
3226                         flag |= FLAG_SYN_ACKED;
3227                         tp->retrans_stamp = 0;
3228                 }
3229
3230                 if (!fully_acked)
3231                         break;
3232
3233                 tcp_unlink_write_queue(skb, sk);
3234                 sk_wmem_free_skb(sk, skb);
3235                 if (unlikely(skb == tp->retransmit_skb_hint))
3236                         tp->retransmit_skb_hint = NULL;
3237                 if (unlikely(skb == tp->lost_skb_hint))
3238                         tp->lost_skb_hint = NULL;
3239         }
3240
3241         if (likely(between(tp->snd_up, prior_snd_una, tp->snd_una)))
3242                 tp->snd_up = tp->snd_una;
3243
3244         if (skb && (TCP_SKB_CB(skb)->sacked & TCPCB_SACKED_ACKED))
3245                 flag |= FLAG_SACK_RENEGING;
3246
3247         if (likely(first_ackt.v64) && !(flag & FLAG_RETRANS_DATA_ACKED)) {
3248                 seq_rtt_us = skb_mstamp_us_delta(now, &first_ackt);
3249                 ca_rtt_us = skb_mstamp_us_delta(now, &last_ackt);
3250         }
3251         if (sack->first_sackt.v64) {
3252                 sack_rtt_us = skb_mstamp_us_delta(now, &sack->first_sackt);
3253                 ca_rtt_us = skb_mstamp_us_delta(now, &sack->last_sackt);
3254         }
3255         sack->rate->rtt_us = ca_rtt_us; /* RTT of last (S)ACKed packet, or -1 */
3256         rtt_update = tcp_ack_update_rtt(sk, flag, seq_rtt_us, sack_rtt_us,
3257                                         ca_rtt_us);
3258
3259         if (flag & FLAG_ACKED) {
3260                 tcp_rearm_rto(sk);
3261                 if (unlikely(icsk->icsk_mtup.probe_size &&
3262                              !after(tp->mtu_probe.probe_seq_end, tp->snd_una))) {
3263                         tcp_mtup_probe_success(sk);
3264                 }
3265
3266                 if (tcp_is_reno(tp)) {
3267                         tcp_remove_reno_sacks(sk, pkts_acked);
3268
3269                         /* If any of the cumulatively ACKed segments was
3270                          * retransmitted, non-SACK case cannot confirm that
3271                          * progress was due to original transmission due to
3272                          * lack of TCPCB_SACKED_ACKED bits even if some of
3273                          * the packets may have been never retransmitted.
3274                          */
3275                         if (flag & FLAG_RETRANS_DATA_ACKED)
3276                                 flag &= ~FLAG_ORIG_SACK_ACKED;
3277                 } else {
3278                         int delta;
3279
3280                         /* Non-retransmitted hole got filled? That's reordering */
3281                         if (reord < prior_fackets && reord <= tp->fackets_out)
3282                                 tcp_update_reordering(sk, tp->fackets_out - reord, 0);
3283
3284                         delta = tcp_is_fack(tp) ? pkts_acked :
3285                                                   prior_sacked - tp->sacked_out;
3286                         tp->lost_cnt_hint -= min(tp->lost_cnt_hint, delta);
3287                 }
3288
3289                 tp->fackets_out -= min(pkts_acked, tp->fackets_out);
3290
3291         } else if (skb && rtt_update && sack_rtt_us >= 0 &&
3292                    sack_rtt_us > skb_mstamp_us_delta(now, &skb->skb_mstamp)) {
3293                 /* Do not re-arm RTO if the sack RTT is measured from data sent
3294                  * after when the head was last (re)transmitted. Otherwise the
3295                  * timeout may continue to extend in loss recovery.
3296                  */
3297                 tcp_rearm_rto(sk);
3298         }
3299
3300         if (icsk->icsk_ca_ops->pkts_acked) {
3301                 struct ack_sample sample = { .pkts_acked = pkts_acked,
3302                                              .rtt_us = ca_rtt_us,
3303                                              .in_flight = last_in_flight };
3304
3305                 icsk->icsk_ca_ops->pkts_acked(sk, &sample);
3306         }
3307
3308 #if FASTRETRANS_DEBUG > 0
3309         WARN_ON((int)tp->sacked_out < 0);
3310         WARN_ON((int)tp->lost_out < 0);
3311         WARN_ON((int)tp->retrans_out < 0);
3312         if (!tp->packets_out && tcp_is_sack(tp)) {
3313                 icsk = inet_csk(sk);
3314                 if (tp->lost_out) {
3315                         pr_debug("Leak l=%u %d\n",
3316                                  tp->lost_out, icsk->icsk_ca_state);
3317                         tp->lost_out = 0;
3318                 }
3319                 if (tp->sacked_out) {
3320                         pr_debug("Leak s=%u %d\n",
3321                                  tp->sacked_out, icsk->icsk_ca_state);
3322                         tp->sacked_out = 0;
3323                 }
3324                 if (tp->retrans_out) {
3325                         pr_debug("Leak r=%u %d\n",
3326                                  tp->retrans_out, icsk->icsk_ca_state);
3327                         tp->retrans_out = 0;
3328                 }
3329         }
3330 #endif
3331         *acked = pkts_acked;
3332         return flag;
3333 }
3334
3335 static void tcp_ack_probe(struct sock *sk)
3336 {
3337         const struct tcp_sock *tp = tcp_sk(sk);
3338         struct inet_connection_sock *icsk = inet_csk(sk);
3339
3340         /* Was it a usable window open? */
3341
3342         if (!after(TCP_SKB_CB(tcp_send_head(sk))->end_seq, tcp_wnd_end(tp))) {
3343                 icsk->icsk_backoff = 0;
3344                 inet_csk_clear_xmit_timer(sk, ICSK_TIME_PROBE0);
3345                 /* Socket must be waked up by subsequent tcp_data_snd_check().
3346                  * This function is not for random using!
3347                  */
3348         } else {
3349                 unsigned long when = tcp_probe0_when(sk, TCP_RTO_MAX);
3350
3351                 inet_csk_reset_xmit_timer(sk, ICSK_TIME_PROBE0,
3352                                           when, TCP_RTO_MAX);
3353         }
3354 }
3355
3356 static inline bool tcp_ack_is_dubious(const struct sock *sk, const int flag)
3357 {
3358         return !(flag & FLAG_NOT_DUP) || (flag & FLAG_CA_ALERT) ||
3359                 inet_csk(sk)->icsk_ca_state != TCP_CA_Open;
3360 }
3361
3362 /* Decide wheather to run the increase function of congestion control. */
3363 static inline bool tcp_may_raise_cwnd(const struct sock *sk, const int flag)
3364 {
3365         /* If reordering is high then always grow cwnd whenever data is
3366          * delivered regardless of its ordering. Otherwise stay conservative
3367          * and only grow cwnd on in-order delivery (RFC5681). A stretched ACK w/
3368          * new SACK or ECE mark may first advance cwnd here and later reduce
3369          * cwnd in tcp_fastretrans_alert() based on more states.
3370          */
3371         if (tcp_sk(sk)->reordering > sock_net(sk)->ipv4.sysctl_tcp_reordering)
3372                 return flag & FLAG_FORWARD_PROGRESS;
3373
3374         return flag & FLAG_DATA_ACKED;
3375 }
3376
3377 /* The "ultimate" congestion control function that aims to replace the rigid
3378  * cwnd increase and decrease control (tcp_cong_avoid,tcp_*cwnd_reduction).
3379  * It's called toward the end of processing an ACK with precise rate
3380  * information. All transmission or retransmission are delayed afterwards.
3381  */
3382 static void tcp_cong_control(struct sock *sk, u32 ack, u32 acked_sacked,
3383                              int flag, const struct rate_sample *rs)
3384 {
3385         const struct inet_connection_sock *icsk = inet_csk(sk);
3386
3387         if (icsk->icsk_ca_ops->cong_control) {
3388                 icsk->icsk_ca_ops->cong_control(sk, rs);
3389                 return;
3390         }
3391
3392         if (tcp_in_cwnd_reduction(sk)) {
3393                 /* Reduce cwnd if state mandates */
3394                 tcp_cwnd_reduction(sk, acked_sacked, flag);
3395         } else if (tcp_may_raise_cwnd(sk, flag)) {
3396                 /* Advance cwnd if state allows */
3397                 tcp_cong_avoid(sk, ack, acked_sacked);
3398         }
3399         tcp_update_pacing_rate(sk);
3400 }
3401
3402 /* Check that window update is acceptable.
3403  * The function assumes that snd_una<=ack<=snd_next.
3404  */
3405 static inline bool tcp_may_update_window(const struct tcp_sock *tp,
3406                                         const u32 ack, const u32 ack_seq,
3407                                         const u32 nwin)
3408 {
3409         return  after(ack, tp->snd_una) ||
3410                 after(ack_seq, tp->snd_wl1) ||
3411                 (ack_seq == tp->snd_wl1 && nwin > tp->snd_wnd);
3412 }
3413
3414 /* If we update tp->snd_una, also update tp->bytes_acked */
3415 static void tcp_snd_una_update(struct tcp_sock *tp, u32 ack)
3416 {
3417         u32 delta = ack - tp->snd_una;
3418
3419         sock_owned_by_me((struct sock *)tp);
3420         u64_stats_update_begin_raw(&tp->syncp);
3421         tp->bytes_acked += delta;
3422         u64_stats_update_end_raw(&tp->syncp);
3423         tp->snd_una = ack;
3424 }
3425
3426 /* If we update tp->rcv_nxt, also update tp->bytes_received */
3427 static void tcp_rcv_nxt_update(struct tcp_sock *tp, u32 seq)
3428 {
3429         u32 delta = seq - tp->rcv_nxt;
3430
3431         sock_owned_by_me((struct sock *)tp);
3432         u64_stats_update_begin_raw(&tp->syncp);
3433         tp->bytes_received += delta;
3434         u64_stats_update_end_raw(&tp->syncp);
3435         tp->rcv_nxt = seq;
3436 }
3437
3438 /* Update our send window.
3439  *
3440  * Window update algorithm, described in RFC793/RFC1122 (used in linux-2.2
3441  * and in FreeBSD. NetBSD's one is even worse.) is wrong.
3442  */
3443 static int tcp_ack_update_window(struct sock *sk, const struct sk_buff *skb, u32 ack,
3444                                  u32 ack_seq)
3445 {
3446         struct tcp_sock *tp = tcp_sk(sk);
3447         int flag = 0;
3448         u32 nwin = ntohs(tcp_hdr(skb)->window);
3449
3450         if (likely(!tcp_hdr(skb)->syn))
3451                 nwin <<= tp->rx_opt.snd_wscale;
3452
3453         if (tcp_may_update_window(tp, ack, ack_seq, nwin)) {
3454                 flag |= FLAG_WIN_UPDATE;
3455                 tcp_update_wl(tp, ack_seq);
3456
3457                 if (tp->snd_wnd != nwin) {
3458                         tp->snd_wnd = nwin;
3459
3460                         /* Note, it is the only place, where
3461                          * fast path is recovered for sending TCP.
3462                          */
3463                         tp->pred_flags = 0;
3464                         tcp_fast_path_check(sk);
3465
3466                         if (tcp_send_head(sk))
3467                                 tcp_slow_start_after_idle_check(sk);
3468
3469                         if (nwin > tp->max_window) {
3470                                 tp->max_window = nwin;
3471                                 tcp_sync_mss(sk, inet_csk(sk)->icsk_pmtu_cookie);
3472                         }
3473                 }
3474         }
3475
3476         tcp_snd_una_update(tp, ack);
3477
3478         return flag;
3479 }
3480
3481 static bool __tcp_oow_rate_limited(struct net *net, int mib_idx,
3482                                    u32 *last_oow_ack_time)
3483 {
3484         if (*last_oow_ack_time) {
3485                 s32 elapsed = (s32)(tcp_time_stamp - *last_oow_ack_time);
3486
3487                 if (0 <= elapsed && elapsed < sysctl_tcp_invalid_ratelimit) {
3488                         NET_INC_STATS(net, mib_idx);
3489                         return true;    /* rate-limited: don't send yet! */
3490                 }
3491         }
3492
3493         *last_oow_ack_time = tcp_time_stamp;
3494
3495         return false;   /* not rate-limited: go ahead, send dupack now! */
3496 }
3497
3498 /* Return true if we're currently rate-limiting out-of-window ACKs and
3499  * thus shouldn't send a dupack right now. We rate-limit dupacks in
3500  * response to out-of-window SYNs or ACKs to mitigate ACK loops or DoS
3501  * attacks that send repeated SYNs or ACKs for the same connection. To
3502  * do this, we do not send a duplicate SYNACK or ACK if the remote
3503  * endpoint is sending out-of-window SYNs or pure ACKs at a high rate.
3504  */
3505 bool tcp_oow_rate_limited(struct net *net, const struct sk_buff *skb,
3506                           int mib_idx, u32 *last_oow_ack_time)
3507 {
3508         /* Data packets without SYNs are not likely part of an ACK loop. */
3509         if ((TCP_SKB_CB(skb)->seq != TCP_SKB_CB(skb)->end_seq) &&
3510             !tcp_hdr(skb)->syn)
3511                 return false;
3512
3513         return __tcp_oow_rate_limited(net, mib_idx, last_oow_ack_time);
3514 }
3515
3516 /* RFC 5961 7 [ACK Throttling] */
3517 static void tcp_send_challenge_ack(struct sock *sk, const struct sk_buff *skb)
3518 {
3519         /* unprotected vars, we dont care of overwrites */
3520         static u32 challenge_timestamp;
3521         static unsigned int challenge_count;
3522         struct tcp_sock *tp = tcp_sk(sk);
3523         u32 count, now;
3524
3525         /* First check our per-socket dupack rate limit. */
3526         if (__tcp_oow_rate_limited(sock_net(sk),
3527                                    LINUX_MIB_TCPACKSKIPPEDCHALLENGE,
3528                                    &tp->last_oow_ack_time))
3529                 return;
3530
3531         /* Then check host-wide RFC 5961 rate limit. */
3532         now = jiffies / HZ;
3533         if (now != challenge_timestamp) {
3534                 u32 half = (sysctl_tcp_challenge_ack_limit + 1) >> 1;
3535
3536                 challenge_timestamp = now;
3537                 WRITE_ONCE(challenge_count, half +
3538                            prandom_u32_max(sysctl_tcp_challenge_ack_limit));
3539         }
3540         count = READ_ONCE(challenge_count);
3541         if (count > 0) {
3542                 WRITE_ONCE(challenge_count, count - 1);
3543                 NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPCHALLENGEACK);
3544                 tcp_send_ack(sk);
3545         }
3546 }
3547
3548 static void tcp_store_ts_recent(struct tcp_sock *tp)
3549 {
3550         tp->rx_opt.ts_recent = tp->rx_opt.rcv_tsval;
3551         tp->rx_opt.ts_recent_stamp = get_seconds();
3552 }
3553
3554 static void tcp_replace_ts_recent(struct tcp_sock *tp, u32 seq)
3555 {
3556         if (tp->rx_opt.saw_tstamp && !after(seq, tp->rcv_wup)) {
3557                 /* PAWS bug workaround wrt. ACK frames, the PAWS discard
3558                  * extra check below makes sure this can only happen
3559                  * for pure ACK frames.  -DaveM
3560                  *
3561                  * Not only, also it occurs for expired timestamps.
3562                  */
3563
3564                 if (tcp_paws_check(&tp->rx_opt, 0))
3565                         tcp_store_ts_recent(tp);
3566         }
3567 }
3568
3569 /* This routine deals with acks during a TLP episode and ends an episode by
3570  * resetting tlp_high_seq. Ref: TLP algorithm in draft-ietf-tcpm-rack
3571  */
3572 static void tcp_process_tlp_ack(struct sock *sk, u32 ack, int flag)
3573 {
3574         struct tcp_sock *tp = tcp_sk(sk);
3575
3576         if (before(ack, tp->tlp_high_seq))
3577                 return;
3578
3579         if (!tp->tlp_retrans) {
3580                 /* TLP of new data has been acknowledged */
3581                 tp->tlp_high_seq = 0;
3582         } else if (flag & FLAG_DSACKING_ACK) {
3583                 /* This DSACK means original and TLP probe arrived; no loss */
3584                 tp->tlp_high_seq = 0;
3585         } else if (after(ack, tp->tlp_high_seq)) {
3586                 /* ACK advances: there was a loss, so reduce cwnd. Reset
3587                  * tlp_high_seq in tcp_init_cwnd_reduction()
3588                  */
3589                 tcp_init_cwnd_reduction(sk);
3590                 tcp_set_ca_state(sk, TCP_CA_CWR);
3591                 tcp_end_cwnd_reduction(sk);
3592                 tcp_try_keep_open(sk);
3593                 NET_INC_STATS(sock_net(sk),
3594                                 LINUX_MIB_TCPLOSSPROBERECOVERY);
3595         } else if (!(flag & (FLAG_SND_UNA_ADVANCED |
3596                              FLAG_NOT_DUP | FLAG_DATA_SACKED))) {
3597                 /* Pure dupack: original and TLP probe arrived; no loss */
3598                 tp->tlp_high_seq = 0;
3599         }
3600 }
3601
3602 static inline void tcp_in_ack_event(struct sock *sk, u32 flags)
3603 {
3604         const struct inet_connection_sock *icsk = inet_csk(sk);
3605
3606         if (icsk->icsk_ca_ops->in_ack_event)
3607                 icsk->icsk_ca_ops->in_ack_event(sk, flags);
3608 }
3609
3610 /* Congestion control has updated the cwnd already. So if we're in
3611  * loss recovery then now we do any new sends (for FRTO) or
3612  * retransmits (for CA_Loss or CA_recovery) that make sense.
3613  */
3614 static void tcp_xmit_recovery(struct sock *sk, int rexmit)
3615 {
3616         struct tcp_sock *tp = tcp_sk(sk);
3617
3618         if (rexmit == REXMIT_NONE)
3619                 return;
3620
3621         if (unlikely(rexmit == 2)) {
3622                 __tcp_push_pending_frames(sk, tcp_current_mss(sk),
3623                                           TCP_NAGLE_OFF);
3624                 if (after(tp->snd_nxt, tp->high_seq))
3625                         return;
3626                 tp->frto = 0;
3627         }
3628         tcp_xmit_retransmit_queue(sk);
3629 }
3630
3631 /* This routine deals with incoming acks, but not outgoing ones. */
3632 static int tcp_ack(struct sock *sk, const struct sk_buff *skb, int flag)
3633 {
3634         struct inet_connection_sock *icsk = inet_csk(sk);
3635         struct tcp_sock *tp = tcp_sk(sk);
3636         struct tcp_sacktag_state sack_state;
3637         struct rate_sample rs = { .prior_delivered = 0 };
3638         u32 prior_snd_una = tp->snd_una;
3639         bool is_sack_reneg = tp->is_sack_reneg;
3640         u32 ack_seq = TCP_SKB_CB(skb)->seq;
3641         u32 ack = TCP_SKB_CB(skb)->ack_seq;
3642         bool is_dupack = false;
3643         u32 prior_fackets;
3644         int prior_packets = tp->packets_out;
3645         u32 delivered = tp->delivered;
3646         u32 lost = tp->lost;
3647         int acked = 0; /* Number of packets newly acked */
3648         int rexmit = REXMIT_NONE; /* Flag to (re)transmit to recover losses */
3649         struct skb_mstamp now;
3650
3651         sack_state.first_sackt.v64 = 0;
3652         sack_state.rate = &rs;
3653
3654         /* We very likely will need to access write queue head. */
3655         prefetchw(sk->sk_write_queue.next);
3656
3657         /* If the ack is older than previous acks
3658          * then we can probably ignore it.
3659          */
3660         if (before(ack, prior_snd_una)) {
3661                 /* RFC 5961 5.2 [Blind Data Injection Attack].[Mitigation] */
3662                 if (before(ack, prior_snd_una - tp->max_window)) {
3663                         if (!(flag & FLAG_NO_CHALLENGE_ACK))
3664                                 tcp_send_challenge_ack(sk, skb);
3665                         return -1;
3666                 }
3667                 goto old_ack;
3668         }
3669
3670         /* If the ack includes data we haven't sent yet, discard
3671          * this segment (RFC793 Section 3.9).
3672          */
3673         if (after(ack, tp->snd_nxt))
3674                 goto invalid_ack;
3675
3676         skb_mstamp_get(&now);
3677
3678         if (icsk->icsk_pending == ICSK_TIME_EARLY_RETRANS ||
3679             icsk->icsk_pending == ICSK_TIME_LOSS_PROBE)
3680                 tcp_rearm_rto(sk);
3681
3682         if (after(ack, prior_snd_una)) {
3683                 flag |= FLAG_SND_UNA_ADVANCED;
3684                 icsk->icsk_retransmits = 0;
3685         }
3686
3687         prior_fackets = tp->fackets_out;
3688         rs.prior_in_flight = tcp_packets_in_flight(tp);
3689
3690         /* ts_recent update must be made after we are sure that the packet
3691          * is in window.
3692          */
3693         if (flag & FLAG_UPDATE_TS_RECENT)
3694                 tcp_replace_ts_recent(tp, TCP_SKB_CB(skb)->seq);
3695
3696         if (!(flag & FLAG_SLOWPATH) && after(ack, prior_snd_una)) {
3697                 /* Window is constant, pure forward advance.
3698                  * No more checks are required.
3699                  * Note, we use the fact that SND.UNA>=SND.WL2.
3700                  */
3701                 tcp_update_wl(tp, ack_seq);
3702                 tcp_snd_una_update(tp, ack);
3703                 flag |= FLAG_WIN_UPDATE;
3704
3705                 tcp_in_ack_event(sk, CA_ACK_WIN_UPDATE);
3706
3707                 NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPHPACKS);
3708         } else {
3709                 u32 ack_ev_flags = CA_ACK_SLOWPATH;
3710
3711                 if (ack_seq != TCP_SKB_CB(skb)->end_seq)
3712                         flag |= FLAG_DATA;
3713                 else
3714                         NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPPUREACKS);
3715
3716                 flag |= tcp_ack_update_window(sk, skb, ack, ack_seq);
3717
3718                 if (TCP_SKB_CB(skb)->sacked)
3719                         flag |= tcp_sacktag_write_queue(sk, skb, prior_snd_una,
3720                                                         &sack_state);
3721
3722                 if (tcp_ecn_rcv_ecn_echo(tp, tcp_hdr(skb))) {
3723                         flag |= FLAG_ECE;
3724                         ack_ev_flags |= CA_ACK_ECE;
3725                 }
3726
3727                 if (flag & FLAG_WIN_UPDATE)
3728                         ack_ev_flags |= CA_ACK_WIN_UPDATE;
3729
3730                 tcp_in_ack_event(sk, ack_ev_flags);
3731         }
3732
3733         /* We passed data and got it acked, remove any soft error
3734          * log. Something worked...
3735          */
3736         sk->sk_err_soft = 0;
3737         icsk->icsk_probes_out = 0;
3738         tp->rcv_tstamp = tcp_time_stamp;
3739         if (!prior_packets)
3740                 goto no_queue;
3741
3742         /* See if we can take anything off of the retransmit queue. */
3743         flag |= tcp_clean_rtx_queue(sk, prior_fackets, prior_snd_una, &acked,
3744                                     &sack_state, &now);
3745
3746         if (tcp_ack_is_dubious(sk, flag)) {
3747                 is_dupack = !(flag & (FLAG_SND_UNA_ADVANCED | FLAG_NOT_DUP));
3748                 tcp_fastretrans_alert(sk, acked, is_dupack, &flag, &rexmit);
3749         }
3750         if (tp->tlp_high_seq)
3751                 tcp_process_tlp_ack(sk, ack, flag);
3752
3753         if ((flag & FLAG_FORWARD_PROGRESS) || !(flag & FLAG_NOT_DUP)) {
3754                 struct dst_entry *dst = __sk_dst_get(sk);
3755                 if (dst)
3756                         dst_confirm(dst);
3757         }
3758
3759         if (icsk->icsk_pending == ICSK_TIME_RETRANS)
3760                 tcp_schedule_loss_probe(sk);
3761         delivered = tp->delivered - delivered;  /* freshly ACKed or SACKed */
3762         lost = tp->lost - lost;                 /* freshly marked lost */
3763         tcp_rate_gen(sk, delivered, lost, is_sack_reneg, &now, &rs);
3764         tcp_cong_control(sk, ack, delivered, flag, &rs);
3765         tcp_xmit_recovery(sk, rexmit);
3766         return 1;
3767
3768 no_queue:
3769         /* If data was DSACKed, see if we can undo a cwnd reduction. */
3770         if (flag & FLAG_DSACKING_ACK)
3771                 tcp_fastretrans_alert(sk, acked, is_dupack, &flag, &rexmit);
3772         /* If this ack opens up a zero window, clear backoff.  It was
3773          * being used to time the probes, and is probably far higher than
3774          * it needs to be for normal retransmission.
3775          */
3776         if (tcp_send_head(sk))
3777                 tcp_ack_probe(sk);
3778
3779         if (tp->tlp_high_seq)
3780                 tcp_process_tlp_ack(sk, ack, flag);
3781         return 1;
3782
3783 invalid_ack:
3784         SOCK_DEBUG(sk, "Ack %u after %u:%u\n", ack, tp->snd_una, tp->snd_nxt);
3785         return -1;
3786
3787 old_ack:
3788         /* If data was SACKed, tag it and see if we should send more data.
3789          * If data was DSACKed, see if we can undo a cwnd reduction.
3790          */
3791         if (TCP_SKB_CB(skb)->sacked) {
3792                 flag |= tcp_sacktag_write_queue(sk, skb, prior_snd_una,
3793                                                 &sack_state);
3794                 tcp_fastretrans_alert(sk, acked, is_dupack, &flag, &rexmit);
3795                 tcp_xmit_recovery(sk, rexmit);
3796         }
3797
3798         SOCK_DEBUG(sk, "Ack %u before %u:%u\n", ack, tp->snd_una, tp->snd_nxt);
3799         return 0;
3800 }
3801
3802 static void tcp_parse_fastopen_option(int len, const unsigned char *cookie,
3803                                       bool syn, struct tcp_fastopen_cookie *foc,
3804                                       bool exp_opt)
3805 {
3806         /* Valid only in SYN or SYN-ACK with an even length.  */
3807         if (!foc || !syn || len < 0 || (len & 1))
3808                 return;
3809
3810         if (len >= TCP_FASTOPEN_COOKIE_MIN &&
3811             len <= TCP_FASTOPEN_COOKIE_MAX)
3812                 memcpy(foc->val, cookie, len);
3813         else if (len != 0)
3814                 len = -1;
3815         foc->len = len;
3816         foc->exp = exp_opt;
3817 }
3818
3819 /* Look for tcp options. Normally only called on SYN and SYNACK packets.
3820  * But, this can also be called on packets in the established flow when
3821  * the fast version below fails.
3822  */
3823 void tcp_parse_options(const struct sk_buff *skb,
3824                        struct tcp_options_received *opt_rx, int estab,
3825                        struct tcp_fastopen_cookie *foc)
3826 {
3827         const unsigned char *ptr;
3828         const struct tcphdr *th = tcp_hdr(skb);
3829         int length = (th->doff * 4) - sizeof(struct tcphdr);
3830
3831         ptr = (const unsigned char *)(th + 1);
3832         opt_rx->saw_tstamp = 0;
3833
3834         while (length > 0) {
3835                 int opcode = *ptr++;
3836                 int opsize;
3837
3838                 switch (opcode) {
3839                 case TCPOPT_EOL:
3840                         return;
3841                 case TCPOPT_NOP:        /* Ref: RFC 793 section 3.1 */
3842                         length--;
3843                         continue;
3844                 default:
3845                         opsize = *ptr++;
3846                         if (opsize < 2) /* "silly options" */
3847                                 return;
3848                         if (opsize > length)
3849                                 return; /* don't parse partial options */
3850                         switch (opcode) {
3851                         case TCPOPT_MSS:
3852                                 if (opsize == TCPOLEN_MSS && th->syn && !estab) {
3853                                         u16 in_mss = get_unaligned_be16(ptr);
3854                                         if (in_mss) {
3855                                                 if (opt_rx->user_mss &&
3856                                                     opt_rx->user_mss < in_mss)
3857                                                         in_mss = opt_rx->user_mss;
3858                                                 opt_rx->mss_clamp = in_mss;
3859                                         }
3860                                 }
3861                                 break;
3862                         case TCPOPT_WINDOW:
3863                                 if (opsize == TCPOLEN_WINDOW && th->syn &&
3864                                     !estab && sysctl_tcp_window_scaling) {
3865                                         __u8 snd_wscale = *(__u8 *)ptr;
3866                                         opt_rx->wscale_ok = 1;
3867                                         if (snd_wscale > 14) {
3868                                                 net_info_ratelimited("%s: Illegal window scaling value %d >14 received\n",
3869                                                                      __func__,
3870                                                                      snd_wscale);
3871                                                 snd_wscale = 14;
3872                                         }
3873                                         opt_rx->snd_wscale = snd_wscale;
3874                                 }
3875                                 break;
3876                         case TCPOPT_TIMESTAMP:
3877                                 if ((opsize == TCPOLEN_TIMESTAMP) &&
3878                                     ((estab && opt_rx->tstamp_ok) ||
3879                                      (!estab && sysctl_tcp_timestamps))) {
3880                                         opt_rx->saw_tstamp = 1;
3881                                         opt_rx->rcv_tsval = get_unaligned_be32(ptr);
3882                                         opt_rx->rcv_tsecr = get_unaligned_be32(ptr + 4);
3883                                 }
3884                                 break;
3885                         case TCPOPT_SACK_PERM:
3886                                 if (opsize == TCPOLEN_SACK_PERM && th->syn &&
3887                                     !estab && sysctl_tcp_sack) {
3888                                         opt_rx->sack_ok = TCP_SACK_SEEN;
3889                                         tcp_sack_reset(opt_rx);
3890                                 }
3891                                 break;
3892
3893                         case TCPOPT_SACK:
3894                                 if ((opsize >= (TCPOLEN_SACK_BASE + TCPOLEN_SACK_PERBLOCK)) &&
3895                                    !((opsize - TCPOLEN_SACK_BASE) % TCPOLEN_SACK_PERBLOCK) &&
3896                                    opt_rx->sack_ok) {
3897                                         TCP_SKB_CB(skb)->sacked = (ptr - 2) - (unsigned char *)th;
3898                                 }
3899                                 break;
3900 #ifdef CONFIG_TCP_MD5SIG
3901                         case TCPOPT_MD5SIG:
3902                                 /*
3903                                  * The MD5 Hash has already been
3904                                  * checked (see tcp_v{4,6}_do_rcv()).
3905                                  */
3906                                 break;
3907 #endif
3908                         case TCPOPT_FASTOPEN:
3909                                 tcp_parse_fastopen_option(
3910                                         opsize - TCPOLEN_FASTOPEN_BASE,
3911                                         ptr, th->syn, foc, false);
3912                                 break;
3913
3914                         case TCPOPT_EXP:
3915                                 /* Fast Open option shares code 254 using a
3916                                  * 16 bits magic number.
3917                                  */
3918                                 if (opsize >= TCPOLEN_EXP_FASTOPEN_BASE &&
3919                                     get_unaligned_be16(ptr) ==
3920                                     TCPOPT_FASTOPEN_MAGIC)
3921                                         tcp_parse_fastopen_option(opsize -
3922                                                 TCPOLEN_EXP_FASTOPEN_BASE,
3923                                                 ptr + 2, th->syn, foc, true);
3924                                 break;
3925
3926                         }
3927                         ptr += opsize-2;
3928                         length -= opsize;
3929                 }
3930         }
3931 }
3932 EXPORT_SYMBOL(tcp_parse_options);
3933
3934 static bool tcp_parse_aligned_timestamp(struct tcp_sock *tp, const struct tcphdr *th)
3935 {
3936         const __be32 *ptr = (const __be32 *)(th + 1);
3937
3938         if (*ptr == htonl((TCPOPT_NOP << 24) | (TCPOPT_NOP << 16)
3939                           | (TCPOPT_TIMESTAMP << 8) | TCPOLEN_TIMESTAMP)) {
3940                 tp->rx_opt.saw_tstamp = 1;
3941                 ++ptr;
3942                 tp->rx_opt.rcv_tsval = ntohl(*ptr);
3943                 ++ptr;
3944                 if (*ptr)
3945                         tp->rx_opt.rcv_tsecr = ntohl(*ptr) - tp->tsoffset;
3946                 else
3947                         tp->rx_opt.rcv_tsecr = 0;
3948                 return true;
3949         }
3950         return false;
3951 }
3952
3953 /* Fast parse options. This hopes to only see timestamps.
3954  * If it is wrong it falls back on tcp_parse_options().
3955  */
3956 static bool tcp_fast_parse_options(const struct sk_buff *skb,
3957                                    const struct tcphdr *th, struct tcp_sock *tp)
3958 {
3959         /* In the spirit of fast parsing, compare doff directly to constant
3960          * values.  Because equality is used, short doff can be ignored here.
3961          */
3962         if (th->doff == (sizeof(*th) / 4)) {
3963                 tp->rx_opt.saw_tstamp = 0;
3964                 return false;
3965         } else if (tp->rx_opt.tstamp_ok &&
3966                    th->doff == ((sizeof(*th) + TCPOLEN_TSTAMP_ALIGNED) / 4)) {
3967                 if (tcp_parse_aligned_timestamp(tp, th))
3968                         return true;
3969         }
3970
3971         tcp_parse_options(skb, &tp->rx_opt, 1, NULL);
3972         if (tp->rx_opt.saw_tstamp && tp->rx_opt.rcv_tsecr)
3973                 tp->rx_opt.rcv_tsecr -= tp->tsoffset;
3974
3975         return true;
3976 }
3977
3978 #ifdef CONFIG_TCP_MD5SIG
3979 /*
3980  * Parse MD5 Signature option
3981  */
3982 const u8 *tcp_parse_md5sig_option(const struct tcphdr *th)
3983 {
3984         int length = (th->doff << 2) - sizeof(*th);
3985         const u8 *ptr = (const u8 *)(th + 1);
3986
3987         /* If not enough data remaining, we can short cut */
3988         while (length >= TCPOLEN_MD5SIG) {
3989                 int opcode = *ptr++;
3990                 int opsize;
3991
3992                 switch (opcode) {
3993                 case TCPOPT_EOL:
3994                         return NULL;
3995                 case TCPOPT_NOP:
3996                         length--;
3997                         continue;
3998                 default:
3999                         opsize = *ptr++;
4000                         if (opsize < 2 || opsize > length)
4001                                 return NULL;
4002                         if (opcode == TCPOPT_MD5SIG)
4003                                 return opsize == TCPOLEN_MD5SIG ? ptr : NULL;
4004                 }
4005                 ptr += opsize - 2;
4006                 length -= opsize;
4007         }
4008         return NULL;
4009 }
4010 EXPORT_SYMBOL(tcp_parse_md5sig_option);
4011 #endif
4012
4013 /* Sorry, PAWS as specified is broken wrt. pure-ACKs -DaveM
4014  *
4015  * It is not fatal. If this ACK does _not_ change critical state (seqs, window)
4016  * it can pass through stack. So, the following predicate verifies that
4017  * this segment is not used for anything but congestion avoidance or
4018  * fast retransmit. Moreover, we even are able to eliminate most of such
4019  * second order effects, if we apply some small "replay" window (~RTO)
4020  * to timestamp space.
4021  *
4022  * All these measures still do not guarantee that we reject wrapped ACKs
4023  * on networks with high bandwidth, when sequence space is recycled fastly,
4024  * but it guarantees that such events will be very rare and do not affect
4025  * connection seriously. This doesn't look nice, but alas, PAWS is really
4026  * buggy extension.
4027  *
4028  * [ Later note. Even worse! It is buggy for segments _with_ data. RFC
4029  * states that events when retransmit arrives after original data are rare.
4030  * It is a blatant lie. VJ forgot about fast retransmit! 8)8) It is
4031  * the biggest problem on large power networks even with minor reordering.
4032  * OK, let's give it small replay window. If peer clock is even 1hz, it is safe
4033  * up to bandwidth of 18Gigabit/sec. 8) ]
4034  */
4035
4036 static int tcp_disordered_ack(const struct sock *sk, const struct sk_buff *skb)
4037 {
4038         const struct tcp_sock *tp = tcp_sk(sk);
4039         const struct tcphdr *th = tcp_hdr(skb);
4040         u32 seq = TCP_SKB_CB(skb)->seq;
4041         u32 ack = TCP_SKB_CB(skb)->ack_seq;
4042
4043         return (/* 1. Pure ACK with correct sequence number. */
4044                 (th->ack && seq == TCP_SKB_CB(skb)->end_seq && seq == tp->rcv_nxt) &&
4045
4046                 /* 2. ... and duplicate ACK. */
4047                 ack == tp->snd_una &&
4048
4049                 /* 3. ... and does not update window. */
4050                 !tcp_may_update_window(tp, ack, seq, ntohs(th->window) << tp->rx_opt.snd_wscale) &&
4051
4052                 /* 4. ... and sits in replay window. */
4053                 (s32)(tp->rx_opt.ts_recent - tp->rx_opt.rcv_tsval) <= (inet_csk(sk)->icsk_rto * 1024) / HZ);
4054 }
4055
4056 static inline bool tcp_paws_discard(const struct sock *sk,
4057                                    const struct sk_buff *skb)
4058 {
4059         const struct tcp_sock *tp = tcp_sk(sk);
4060
4061         return !tcp_paws_check(&tp->rx_opt, TCP_PAWS_WINDOW) &&
4062                !tcp_disordered_ack(sk, skb);
4063 }
4064
4065 /* Check segment sequence number for validity.
4066  *
4067  * Segment controls are considered valid, if the segment
4068  * fits to the window after truncation to the window. Acceptability
4069  * of data (and SYN, FIN, of course) is checked separately.
4070  * See tcp_data_queue(), for example.
4071  *
4072  * Also, controls (RST is main one) are accepted using RCV.WUP instead
4073  * of RCV.NXT. Peer still did not advance his SND.UNA when we
4074  * delayed ACK, so that hisSND.UNA<=ourRCV.WUP.
4075  * (borrowed from freebsd)
4076  */
4077
4078 static inline bool tcp_sequence(const struct tcp_sock *tp, u32 seq, u32 end_seq)
4079 {
4080         return  !before(end_seq, tp->rcv_wup) &&
4081                 !after(seq, tp->rcv_nxt + tcp_receive_window(tp));
4082 }
4083
4084 /* When we get a reset we do this. */
4085 void tcp_reset(struct sock *sk)
4086 {
4087         /* We want the right error as BSD sees it (and indeed as we do). */
4088         switch (sk->sk_state) {
4089         case TCP_SYN_SENT:
4090                 sk->sk_err = ECONNREFUSED;
4091                 break;
4092         case TCP_CLOSE_WAIT:
4093                 sk->sk_err = EPIPE;
4094                 break;
4095         case TCP_CLOSE:
4096                 return;
4097         default:
4098                 sk->sk_err = ECONNRESET;
4099         }
4100         /* This barrier is coupled with smp_rmb() in tcp_poll() */
4101         smp_wmb();
4102
4103         if (!sock_flag(sk, SOCK_DEAD))
4104                 sk->sk_error_report(sk);
4105
4106         tcp_done(sk);
4107 }
4108
4109 /*
4110  *      Process the FIN bit. This now behaves as it is supposed to work
4111  *      and the FIN takes effect when it is validly part of sequence
4112  *      space. Not before when we get holes.
4113  *
4114  *      If we are ESTABLISHED, a received fin moves us to CLOSE-WAIT
4115  *      (and thence onto LAST-ACK and finally, CLOSE, we never enter
4116  *      TIME-WAIT)
4117  *
4118  *      If we are in FINWAIT-1, a received FIN indicates simultaneous
4119  *      close and we go into CLOSING (and later onto TIME-WAIT)
4120  *
4121  *      If we are in FINWAIT-2, a received FIN moves us to TIME-WAIT.
4122  */
4123 void tcp_fin(struct sock *sk)
4124 {
4125         struct tcp_sock *tp = tcp_sk(sk);
4126
4127         inet_csk_schedule_ack(sk);
4128
4129         sk->sk_shutdown |= RCV_SHUTDOWN;
4130         sock_set_flag(sk, SOCK_DONE);
4131
4132         switch (sk->sk_state) {
4133         case TCP_SYN_RECV:
4134         case TCP_ESTABLISHED:
4135                 /* Move to CLOSE_WAIT */
4136                 tcp_set_state(sk, TCP_CLOSE_WAIT);
4137                 inet_csk(sk)->icsk_ack.pingpong = 1;
4138                 break;
4139
4140         case TCP_CLOSE_WAIT:
4141         case TCP_CLOSING:
4142                 /* Received a retransmission of the FIN, do
4143                  * nothing.
4144                  */
4145                 break;
4146         case TCP_LAST_ACK:
4147                 /* RFC793: Remain in the LAST-ACK state. */
4148                 break;
4149
4150         case TCP_FIN_WAIT1:
4151                 /* This case occurs when a simultaneous close
4152                  * happens, we must ack the received FIN and
4153                  * enter the CLOSING state.
4154                  */
4155                 tcp_send_ack(sk);
4156                 tcp_set_state(sk, TCP_CLOSING);
4157                 break;
4158         case TCP_FIN_WAIT2:
4159                 /* Received a FIN -- send ACK and enter TIME_WAIT. */
4160                 tcp_send_ack(sk);
4161                 tcp_time_wait(sk, TCP_TIME_WAIT, 0);
4162                 break;
4163         default:
4164                 /* Only TCP_LISTEN and TCP_CLOSE are left, in these
4165                  * cases we should never reach this piece of code.
4166                  */
4167                 pr_err("%s: Impossible, sk->sk_state=%d\n",
4168                        __func__, sk->sk_state);
4169                 break;
4170         }
4171
4172         /* It _is_ possible, that we have something out-of-order _after_ FIN.
4173          * Probably, we should reset in this case. For now drop them.
4174          */
4175         skb_rbtree_purge(&tp->out_of_order_queue);
4176         if (tcp_is_sack(tp))
4177                 tcp_sack_reset(&tp->rx_opt);
4178         sk_mem_reclaim(sk);
4179
4180         if (!sock_flag(sk, SOCK_DEAD)) {
4181                 sk->sk_state_change(sk);
4182
4183                 /* Do not send POLL_HUP for half duplex close. */
4184                 if (sk->sk_shutdown == SHUTDOWN_MASK ||
4185                     sk->sk_state == TCP_CLOSE)
4186                         sk_wake_async(sk, SOCK_WAKE_WAITD, POLL_HUP);
4187                 else
4188                         sk_wake_async(sk, SOCK_WAKE_WAITD, POLL_IN);
4189         }
4190 }
4191
4192 static inline bool tcp_sack_extend(struct tcp_sack_block *sp, u32 seq,
4193                                   u32 end_seq)
4194 {
4195         if (!after(seq, sp->end_seq) && !after(sp->start_seq, end_seq)) {
4196                 if (before(seq, sp->start_seq))
4197                         sp->start_seq = seq;
4198                 if (after(end_seq, sp->end_seq))
4199                         sp->end_seq = end_seq;
4200                 return true;
4201         }
4202         return false;
4203 }
4204
4205 static void tcp_dsack_set(struct sock *sk, u32 seq, u32 end_seq)
4206 {
4207         struct tcp_sock *tp = tcp_sk(sk);
4208
4209         if (tcp_is_sack(tp) && sysctl_tcp_dsack) {
4210                 int mib_idx;
4211
4212                 if (before(seq, tp->rcv_nxt))
4213                         mib_idx = LINUX_MIB_TCPDSACKOLDSENT;
4214                 else
4215                         mib_idx = LINUX_MIB_TCPDSACKOFOSENT;
4216
4217                 NET_INC_STATS(sock_net(sk), mib_idx);
4218
4219                 tp->rx_opt.dsack = 1;
4220                 tp->duplicate_sack[0].start_seq = seq;
4221                 tp->duplicate_sack[0].end_seq = end_seq;
4222         }
4223 }
4224
4225 static void tcp_dsack_extend(struct sock *sk, u32 seq, u32 end_seq)
4226 {
4227         struct tcp_sock *tp = tcp_sk(sk);
4228
4229         if (!tp->rx_opt.dsack)
4230                 tcp_dsack_set(sk, seq, end_seq);
4231         else
4232                 tcp_sack_extend(tp->duplicate_sack, seq, end_seq);
4233 }
4234
4235 static void tcp_send_dupack(struct sock *sk, const struct sk_buff *skb)
4236 {
4237         struct tcp_sock *tp = tcp_sk(sk);
4238
4239         if (TCP_SKB_CB(skb)->end_seq != TCP_SKB_CB(skb)->seq &&
4240             before(TCP_SKB_CB(skb)->seq, tp->rcv_nxt)) {
4241                 NET_INC_STATS(sock_net(sk), LINUX_MIB_DELAYEDACKLOST);
4242                 tcp_enter_quickack_mode(sk, TCP_MAX_QUICKACKS);
4243
4244                 if (tcp_is_sack(tp) && sysctl_tcp_dsack) {
4245                         u32 end_seq = TCP_SKB_CB(skb)->end_seq;
4246
4247                         if (after(TCP_SKB_CB(skb)->end_seq, tp->rcv_nxt))
4248                                 end_seq = tp->rcv_nxt;
4249                         tcp_dsack_set(sk, TCP_SKB_CB(skb)->seq, end_seq);
4250                 }
4251         }
4252
4253         tcp_send_ack(sk);
4254 }
4255
4256 /* These routines update the SACK block as out-of-order packets arrive or
4257  * in-order packets close up the sequence space.
4258  */
4259 static void tcp_sack_maybe_coalesce(struct tcp_sock *tp)
4260 {
4261         int this_sack;
4262         struct tcp_sack_block *sp = &tp->selective_acks[0];
4263         struct tcp_sack_block *swalk = sp + 1;
4264
4265         /* See if the recent change to the first SACK eats into
4266          * or hits the sequence space of other SACK blocks, if so coalesce.
4267          */
4268         for (this_sack = 1; this_sack < tp->rx_opt.num_sacks;) {
4269                 if (tcp_sack_extend(sp, swalk->start_seq, swalk->end_seq)) {
4270                         int i;
4271
4272                         /* Zap SWALK, by moving every further SACK up by one slot.
4273                          * Decrease num_sacks.
4274                          */
4275                         tp->rx_opt.num_sacks--;
4276                         for (i = this_sack; i < tp->rx_opt.num_sacks; i++)
4277                                 sp[i] = sp[i + 1];
4278                         continue;
4279                 }
4280                 this_sack++, swalk++;
4281         }
4282 }
4283
4284 static void tcp_sack_new_ofo_skb(struct sock *sk, u32 seq, u32 end_seq)
4285 {
4286         struct tcp_sock *tp = tcp_sk(sk);
4287         struct tcp_sack_block *sp = &tp->selective_acks[0];
4288         int cur_sacks = tp->rx_opt.num_sacks;
4289         int this_sack;
4290
4291         if (!cur_sacks)
4292                 goto new_sack;
4293
4294         for (this_sack = 0; this_sack < cur_sacks; this_sack++, sp++) {
4295                 if (tcp_sack_extend(sp, seq, end_seq)) {
4296                         /* Rotate this_sack to the first one. */
4297                         for (; this_sack > 0; this_sack--, sp--)
4298                                 swap(*sp, *(sp - 1));
4299                         if (cur_sacks > 1)
4300                                 tcp_sack_maybe_coalesce(tp);
4301                         return;
4302                 }
4303         }
4304
4305         /* Could not find an adjacent existing SACK, build a new one,
4306          * put it at the front, and shift everyone else down.  We
4307          * always know there is at least one SACK present already here.
4308          *
4309          * If the sack array is full, forget about the last one.
4310          */
4311         if (this_sack >= TCP_NUM_SACKS) {
4312                 this_sack--;
4313                 tp->rx_opt.num_sacks--;
4314                 sp--;
4315         }
4316         for (; this_sack > 0; this_sack--, sp--)
4317                 *sp = *(sp - 1);
4318
4319 new_sack:
4320         /* Build the new head SACK, and we're done. */
4321         sp->start_seq = seq;
4322         sp->end_seq = end_seq;
4323         tp->rx_opt.num_sacks++;
4324 }
4325
4326 /* RCV.NXT advances, some SACKs should be eaten. */
4327
4328 static void tcp_sack_remove(struct tcp_sock *tp)
4329 {
4330         struct tcp_sack_block *sp = &tp->selective_acks[0];
4331         int num_sacks = tp->rx_opt.num_sacks;
4332         int this_sack;
4333
4334         /* Empty ofo queue, hence, all the SACKs are eaten. Clear. */
4335         if (RB_EMPTY_ROOT(&tp->out_of_order_queue)) {
4336                 tp->rx_opt.num_sacks = 0;
4337                 return;
4338         }
4339
4340         for (this_sack = 0; this_sack < num_sacks;) {
4341                 /* Check if the start of the sack is covered by RCV.NXT. */
4342                 if (!before(tp->rcv_nxt, sp->start_seq)) {
4343                         int i;
4344
4345                         /* RCV.NXT must cover all the block! */
4346                         WARN_ON(before(tp->rcv_nxt, sp->end_seq));
4347
4348                         /* Zap this SACK, by moving forward any other SACKS. */
4349                         for (i = this_sack+1; i < num_sacks; i++)
4350                                 tp->selective_acks[i-1] = tp->selective_acks[i];
4351                         num_sacks--;
4352                         continue;
4353                 }
4354                 this_sack++;
4355                 sp++;
4356         }
4357         tp->rx_opt.num_sacks = num_sacks;
4358 }
4359
4360 /**
4361  * tcp_try_coalesce - try to merge skb to prior one
4362  * @sk: socket
4363  * @to: prior buffer
4364  * @from: buffer to add in queue
4365  * @fragstolen: pointer to boolean
4366  *
4367  * Before queueing skb @from after @to, try to merge them
4368  * to reduce overall memory use and queue lengths, if cost is small.
4369  * Packets in ofo or receive queues can stay a long time.
4370  * Better try to coalesce them right now to avoid future collapses.
4371  * Returns true if caller should free @from instead of queueing it
4372  */
4373 static bool tcp_try_coalesce(struct sock *sk,
4374                              struct sk_buff *to,
4375                              struct sk_buff *from,
4376                              bool *fragstolen)
4377 {
4378         int delta;
4379
4380         *fragstolen = false;
4381
4382         /* Its possible this segment overlaps with prior segment in queue */
4383         if (TCP_SKB_CB(from)->seq != TCP_SKB_CB(to)->end_seq)
4384                 return false;
4385
4386         if (!skb_try_coalesce(to, from, fragstolen, &delta))
4387                 return false;
4388
4389         atomic_add(delta, &sk->sk_rmem_alloc);
4390         sk_mem_charge(sk, delta);
4391         NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPRCVCOALESCE);
4392         TCP_SKB_CB(to)->end_seq = TCP_SKB_CB(from)->end_seq;
4393         TCP_SKB_CB(to)->ack_seq = TCP_SKB_CB(from)->ack_seq;
4394         TCP_SKB_CB(to)->tcp_flags |= TCP_SKB_CB(from)->tcp_flags;
4395         return true;
4396 }
4397
4398 static bool tcp_ooo_try_coalesce(struct sock *sk,
4399                              struct sk_buff *to,
4400                              struct sk_buff *from,
4401                              bool *fragstolen)
4402 {
4403         bool res = tcp_try_coalesce(sk, to, from, fragstolen);
4404
4405         /* In case tcp_drop() is called later, update to->gso_segs */
4406         if (res) {
4407                 u32 gso_segs = max_t(u16, 1, skb_shinfo(to)->gso_segs) +
4408                                max_t(u16, 1, skb_shinfo(from)->gso_segs);
4409
4410                 skb_shinfo(to)->gso_segs = min_t(u32, gso_segs, 0xFFFF);
4411         }
4412         return res;
4413 }
4414
4415 static void tcp_drop(struct sock *sk, struct sk_buff *skb)
4416 {
4417         sk_drops_add(sk, skb);
4418         __kfree_skb(skb);
4419 }
4420
4421 /* This one checks to see if we can put data from the
4422  * out_of_order queue into the receive_queue.
4423  */
4424 static void tcp_ofo_queue(struct sock *sk)
4425 {
4426         struct tcp_sock *tp = tcp_sk(sk);
4427         __u32 dsack_high = tp->rcv_nxt;
4428         bool fin, fragstolen, eaten;
4429         struct sk_buff *skb, *tail;
4430         struct rb_node *p;
4431
4432         p = rb_first(&tp->out_of_order_queue);
4433         while (p) {
4434                 skb = rb_to_skb(p);
4435                 if (after(TCP_SKB_CB(skb)->seq, tp->rcv_nxt))
4436                         break;
4437
4438                 if (before(TCP_SKB_CB(skb)->seq, dsack_high)) {
4439                         __u32 dsack = dsack_high;
4440                         if (before(TCP_SKB_CB(skb)->end_seq, dsack_high))
4441                                 dsack_high = TCP_SKB_CB(skb)->end_seq;
4442                         tcp_dsack_extend(sk, TCP_SKB_CB(skb)->seq, dsack);
4443                 }
4444                 p = rb_next(p);
4445                 rb_erase(&skb->rbnode, &tp->out_of_order_queue);
4446
4447                 if (unlikely(!after(TCP_SKB_CB(skb)->end_seq, tp->rcv_nxt))) {
4448                         SOCK_DEBUG(sk, "ofo packet was already received\n");
4449                         tcp_drop(sk, skb);
4450                         continue;
4451                 }
4452                 SOCK_DEBUG(sk, "ofo requeuing : rcv_next %X seq %X - %X\n",
4453                            tp->rcv_nxt, TCP_SKB_CB(skb)->seq,
4454                            TCP_SKB_CB(skb)->end_seq);
4455
4456                 tail = skb_peek_tail(&sk->sk_receive_queue);
4457                 eaten = tail && tcp_try_coalesce(sk, tail, skb, &fragstolen);
4458                 tcp_rcv_nxt_update(tp, TCP_SKB_CB(skb)->end_seq);
4459                 fin = TCP_SKB_CB(skb)->tcp_flags & TCPHDR_FIN;
4460                 if (!eaten)
4461                         __skb_queue_tail(&sk->sk_receive_queue, skb);
4462                 else
4463                         kfree_skb_partial(skb, fragstolen);
4464
4465                 if (unlikely(fin)) {
4466                         tcp_fin(sk);
4467                         /* tcp_fin() purges tp->out_of_order_queue,
4468                          * so we must end this loop right now.
4469                          */
4470                         break;
4471                 }
4472         }
4473 }
4474
4475 static bool tcp_prune_ofo_queue(struct sock *sk);
4476 static int tcp_prune_queue(struct sock *sk);
4477
4478 static int tcp_try_rmem_schedule(struct sock *sk, struct sk_buff *skb,
4479                                  unsigned int size)
4480 {
4481         if (atomic_read(&sk->sk_rmem_alloc) > sk->sk_rcvbuf ||
4482             !sk_rmem_schedule(sk, skb, size)) {
4483
4484                 if (tcp_prune_queue(sk) < 0)
4485                         return -1;
4486
4487                 while (!sk_rmem_schedule(sk, skb, size)) {
4488                         if (!tcp_prune_ofo_queue(sk))
4489                                 return -1;
4490                 }
4491         }
4492         return 0;
4493 }
4494
4495 static void tcp_data_queue_ofo(struct sock *sk, struct sk_buff *skb)
4496 {
4497         struct tcp_sock *tp = tcp_sk(sk);
4498         struct rb_node **p, *parent;
4499         struct sk_buff *skb1;
4500         u32 seq, end_seq;
4501         bool fragstolen;
4502
4503         tcp_ecn_check_ce(sk, skb);
4504
4505         if (unlikely(tcp_try_rmem_schedule(sk, skb, skb->truesize))) {
4506                 NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPOFODROP);
4507                 tcp_drop(sk, skb);
4508                 return;
4509         }
4510
4511         /* Disable header prediction. */
4512         tp->pred_flags = 0;
4513         inet_csk_schedule_ack(sk);
4514
4515         NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPOFOQUEUE);
4516         seq = TCP_SKB_CB(skb)->seq;
4517         end_seq = TCP_SKB_CB(skb)->end_seq;
4518         SOCK_DEBUG(sk, "out of order segment: rcv_next %X seq %X - %X\n",
4519                    tp->rcv_nxt, seq, end_seq);
4520
4521         p = &tp->out_of_order_queue.rb_node;
4522         if (RB_EMPTY_ROOT(&tp->out_of_order_queue)) {
4523                 /* Initial out of order segment, build 1 SACK. */
4524                 if (tcp_is_sack(tp)) {
4525                         tp->rx_opt.num_sacks = 1;
4526                         tp->selective_acks[0].start_seq = seq;
4527                         tp->selective_acks[0].end_seq = end_seq;
4528                 }
4529                 rb_link_node(&skb->rbnode, NULL, p);
4530                 rb_insert_color(&skb->rbnode, &tp->out_of_order_queue);
4531                 tp->ooo_last_skb = skb;
4532                 goto end;
4533         }
4534
4535         /* In the typical case, we are adding an skb to the end of the list.
4536          * Use of ooo_last_skb avoids the O(Log(N)) rbtree lookup.
4537          */
4538         if (tcp_ooo_try_coalesce(sk, tp->ooo_last_skb,
4539                                  skb, &fragstolen)) {
4540 coalesce_done:
4541                 /* For non sack flows, do not grow window to force DUPACK
4542                  * and trigger fast retransmit.
4543                  */
4544                 if (tcp_is_sack(tp))
4545                         tcp_grow_window(sk, skb);
4546                 kfree_skb_partial(skb, fragstolen);
4547                 skb = NULL;
4548                 goto add_sack;
4549         }
4550         /* Can avoid an rbtree lookup if we are adding skb after ooo_last_skb */
4551         if (!before(seq, TCP_SKB_CB(tp->ooo_last_skb)->end_seq)) {
4552                 parent = &tp->ooo_last_skb->rbnode;
4553                 p = &parent->rb_right;
4554                 goto insert;
4555         }
4556
4557         /* Find place to insert this segment. Handle overlaps on the way. */
4558         parent = NULL;
4559         while (*p) {
4560                 parent = *p;
4561                 skb1 = rb_to_skb(parent);
4562                 if (before(seq, TCP_SKB_CB(skb1)->seq)) {
4563                         p = &parent->rb_left;
4564                         continue;
4565                 }
4566                 if (before(seq, TCP_SKB_CB(skb1)->end_seq)) {
4567                         if (!after(end_seq, TCP_SKB_CB(skb1)->end_seq)) {
4568                                 /* All the bits are present. Drop. */
4569                                 NET_INC_STATS(sock_net(sk),
4570                                               LINUX_MIB_TCPOFOMERGE);
4571                                 tcp_drop(sk, skb);
4572                                 skb = NULL;
4573                                 tcp_dsack_set(sk, seq, end_seq);
4574                                 goto add_sack;
4575                         }
4576                         if (after(seq, TCP_SKB_CB(skb1)->seq)) {
4577                                 /* Partial overlap. */
4578                                 tcp_dsack_set(sk, seq, TCP_SKB_CB(skb1)->end_seq);
4579                         } else {
4580                                 /* skb's seq == skb1's seq and skb covers skb1.
4581                                  * Replace skb1 with skb.
4582                                  */
4583                                 rb_replace_node(&skb1->rbnode, &skb->rbnode,
4584                                                 &tp->out_of_order_queue);
4585                                 tcp_dsack_extend(sk,
4586                                                  TCP_SKB_CB(skb1)->seq,
4587                                                  TCP_SKB_CB(skb1)->end_seq);
4588                                 NET_INC_STATS(sock_net(sk),
4589                                               LINUX_MIB_TCPOFOMERGE);
4590                                 tcp_drop(sk, skb1);
4591                                 goto merge_right;
4592                         }
4593                 } else if (tcp_ooo_try_coalesce(sk, skb1,
4594                                                 skb, &fragstolen)) {
4595                         goto coalesce_done;
4596                 }
4597                 p = &parent->rb_right;
4598         }
4599 insert:
4600         /* Insert segment into RB tree. */
4601         rb_link_node(&skb->rbnode, parent, p);
4602         rb_insert_color(&skb->rbnode, &tp->out_of_order_queue);
4603
4604 merge_right:
4605         /* Remove other segments covered by skb. */
4606         while ((skb1 = skb_rb_next(skb)) != NULL) {
4607                 if (!after(end_seq, TCP_SKB_CB(skb1)->seq))
4608                         break;
4609                 if (before(end_seq, TCP_SKB_CB(skb1)->end_seq)) {
4610                         tcp_dsack_extend(sk, TCP_SKB_CB(skb1)->seq,
4611                                          end_seq);
4612                         break;
4613                 }
4614                 rb_erase(&skb1->rbnode, &tp->out_of_order_queue);
4615                 tcp_dsack_extend(sk, TCP_SKB_CB(skb1)->seq,
4616                                  TCP_SKB_CB(skb1)->end_seq);
4617                 NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPOFOMERGE);
4618                 tcp_drop(sk, skb1);
4619         }
4620         /* If there is no skb after us, we are the last_skb ! */
4621         if (!skb1)
4622                 tp->ooo_last_skb = skb;
4623
4624 add_sack:
4625         if (tcp_is_sack(tp))
4626                 tcp_sack_new_ofo_skb(sk, seq, end_seq);
4627 end:
4628         if (skb) {
4629                 /* For non sack flows, do not grow window to force DUPACK
4630                  * and trigger fast retransmit.
4631                  */
4632                 if (tcp_is_sack(tp))
4633                         tcp_grow_window(sk, skb);
4634                 skb_set_owner_r(skb, sk);
4635         }
4636 }
4637
4638 static int __must_check tcp_queue_rcv(struct sock *sk, struct sk_buff *skb, int hdrlen,
4639                   bool *fragstolen)
4640 {
4641         int eaten;
4642         struct sk_buff *tail = skb_peek_tail(&sk->sk_receive_queue);
4643
4644         __skb_pull(skb, hdrlen);
4645         eaten = (tail &&
4646                  tcp_try_coalesce(sk, tail, skb, fragstolen)) ? 1 : 0;
4647         tcp_rcv_nxt_update(tcp_sk(sk), TCP_SKB_CB(skb)->end_seq);
4648         if (!eaten) {
4649                 __skb_queue_tail(&sk->sk_receive_queue, skb);
4650                 skb_set_owner_r(skb, sk);
4651         }
4652         return eaten;
4653 }
4654
4655 int tcp_send_rcvq(struct sock *sk, struct msghdr *msg, size_t size)
4656 {
4657         struct sk_buff *skb;
4658         int err = -ENOMEM;
4659         int data_len = 0;
4660         bool fragstolen;
4661
4662         if (size == 0)
4663                 return 0;
4664
4665         if (size > PAGE_SIZE) {
4666                 int npages = min_t(size_t, size >> PAGE_SHIFT, MAX_SKB_FRAGS);
4667
4668                 data_len = npages << PAGE_SHIFT;
4669                 size = data_len + (size & ~PAGE_MASK);
4670         }
4671         skb = alloc_skb_with_frags(size - data_len, data_len,
4672                                    PAGE_ALLOC_COSTLY_ORDER,
4673                                    &err, sk->sk_allocation);
4674         if (!skb)
4675                 goto err;
4676
4677         skb_put(skb, size - data_len);
4678         skb->data_len = data_len;
4679         skb->len = size;
4680
4681         if (tcp_try_rmem_schedule(sk, skb, skb->truesize))
4682                 goto err_free;
4683
4684         err = skb_copy_datagram_from_iter(skb, 0, &msg->msg_iter, size);
4685         if (err)
4686                 goto err_free;
4687
4688         TCP_SKB_CB(skb)->seq = tcp_sk(sk)->rcv_nxt;
4689         TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(skb)->seq + size;
4690         TCP_SKB_CB(skb)->ack_seq = tcp_sk(sk)->snd_una - 1;
4691
4692         if (tcp_queue_rcv(sk, skb, 0, &fragstolen)) {
4693                 WARN_ON_ONCE(fragstolen); /* should not happen */
4694                 __kfree_skb(skb);
4695         }
4696         return size;
4697
4698 err_free:
4699         kfree_skb(skb);
4700 err:
4701         return err;
4702
4703 }
4704
4705 static void tcp_data_queue(struct sock *sk, struct sk_buff *skb)
4706 {
4707         struct tcp_sock *tp = tcp_sk(sk);
4708         bool fragstolen = false;
4709         int eaten = -1;
4710
4711         if (TCP_SKB_CB(skb)->seq == TCP_SKB_CB(skb)->end_seq) {
4712                 __kfree_skb(skb);
4713                 return;
4714         }
4715         skb_dst_drop(skb);
4716         __skb_pull(skb, tcp_hdr(skb)->doff * 4);
4717
4718         tcp_ecn_accept_cwr(tp, skb);
4719
4720         tp->rx_opt.dsack = 0;
4721
4722         /*  Queue data for delivery to the user.
4723          *  Packets in sequence go to the receive queue.
4724          *  Out of sequence packets to the out_of_order_queue.
4725          */
4726         if (TCP_SKB_CB(skb)->seq == tp->rcv_nxt) {
4727                 if (tcp_receive_window(tp) == 0)
4728                         goto out_of_window;
4729
4730                 /* Ok. In sequence. In window. */
4731                 if (tp->ucopy.task == current &&
4732                     tp->copied_seq == tp->rcv_nxt && tp->ucopy.len &&
4733                     sock_owned_by_user(sk) && !tp->urg_data) {
4734                         int chunk = min_t(unsigned int, skb->len,
4735                                           tp->ucopy.len);
4736
4737                         __set_current_state(TASK_RUNNING);
4738
4739                         if (!skb_copy_datagram_msg(skb, 0, tp->ucopy.msg, chunk)) {
4740                                 tp->ucopy.len -= chunk;
4741                                 tp->copied_seq += chunk;
4742                                 eaten = (chunk == skb->len);
4743                                 tcp_rcv_space_adjust(sk);
4744                         }
4745                 }
4746
4747                 if (eaten <= 0) {
4748 queue_and_out:
4749                         if (eaten < 0) {
4750                                 if (skb_queue_len(&sk->sk_receive_queue) == 0)
4751                                         sk_forced_mem_schedule(sk, skb->truesize);
4752                                 else if (tcp_try_rmem_schedule(sk, skb, skb->truesize))
4753                                         goto drop;
4754                         }
4755                         eaten = tcp_queue_rcv(sk, skb, 0, &fragstolen);
4756                 }
4757                 tcp_rcv_nxt_update(tp, TCP_SKB_CB(skb)->end_seq);
4758                 if (skb->len)
4759                         tcp_event_data_recv(sk, skb);
4760                 if (TCP_SKB_CB(skb)->tcp_flags & TCPHDR_FIN)
4761                         tcp_fin(sk);
4762
4763                 if (!RB_EMPTY_ROOT(&tp->out_of_order_queue)) {
4764                         tcp_ofo_queue(sk);
4765
4766                         /* RFC2581. 4.2. SHOULD send immediate ACK, when
4767                          * gap in queue is filled.
4768                          */
4769                         if (RB_EMPTY_ROOT(&tp->out_of_order_queue))
4770                                 inet_csk(sk)->icsk_ack.pingpong = 0;
4771                 }
4772
4773                 if (tp->rx_opt.num_sacks)
4774                         tcp_sack_remove(tp);
4775
4776                 tcp_fast_path_check(sk);
4777
4778                 if (eaten > 0)
4779                         kfree_skb_partial(skb, fragstolen);
4780                 if (!sock_flag(sk, SOCK_DEAD))
4781                         sk->sk_data_ready(sk);
4782                 return;
4783         }
4784
4785         if (!after(TCP_SKB_CB(skb)->end_seq, tp->rcv_nxt)) {
4786                 /* A retransmit, 2nd most common case.  Force an immediate ack. */
4787                 NET_INC_STATS(sock_net(sk), LINUX_MIB_DELAYEDACKLOST);
4788                 tcp_dsack_set(sk, TCP_SKB_CB(skb)->seq, TCP_SKB_CB(skb)->end_seq);
4789
4790 out_of_window:
4791                 tcp_enter_quickack_mode(sk, TCP_MAX_QUICKACKS);
4792                 inet_csk_schedule_ack(sk);
4793 drop:
4794                 tcp_drop(sk, skb);
4795                 return;
4796         }
4797
4798         /* Out of window. F.e. zero window probe. */
4799         if (!before(TCP_SKB_CB(skb)->seq, tp->rcv_nxt + tcp_receive_window(tp)))
4800                 goto out_of_window;
4801
4802         if (before(TCP_SKB_CB(skb)->seq, tp->rcv_nxt)) {
4803                 /* Partial packet, seq < rcv_next < end_seq */
4804                 SOCK_DEBUG(sk, "partial packet: rcv_next %X seq %X - %X\n",
4805                            tp->rcv_nxt, TCP_SKB_CB(skb)->seq,
4806                            TCP_SKB_CB(skb)->end_seq);
4807
4808                 tcp_dsack_set(sk, TCP_SKB_CB(skb)->seq, tp->rcv_nxt);
4809
4810                 /* If window is closed, drop tail of packet. But after
4811                  * remembering D-SACK for its head made in previous line.
4812                  */
4813                 if (!tcp_receive_window(tp))
4814                         goto out_of_window;
4815                 goto queue_and_out;
4816         }
4817
4818         tcp_data_queue_ofo(sk, skb);
4819 }
4820
4821 static struct sk_buff *tcp_skb_next(struct sk_buff *skb, struct sk_buff_head *list)
4822 {
4823         if (list)
4824                 return !skb_queue_is_last(list, skb) ? skb->next : NULL;
4825
4826         return skb_rb_next(skb);
4827 }
4828
4829 static struct sk_buff *tcp_collapse_one(struct sock *sk, struct sk_buff *skb,
4830                                         struct sk_buff_head *list,
4831                                         struct rb_root *root)
4832 {
4833         struct sk_buff *next = tcp_skb_next(skb, list);
4834
4835         if (list)
4836                 __skb_unlink(skb, list);
4837         else
4838                 rb_erase(&skb->rbnode, root);
4839
4840         __kfree_skb(skb);
4841         NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPRCVCOLLAPSED);
4842
4843         return next;
4844 }
4845
4846 /* Insert skb into rb tree, ordered by TCP_SKB_CB(skb)->seq */
4847 static void tcp_rbtree_insert(struct rb_root *root, struct sk_buff *skb)
4848 {
4849         struct rb_node **p = &root->rb_node;
4850         struct rb_node *parent = NULL;
4851         struct sk_buff *skb1;
4852
4853         while (*p) {
4854                 parent = *p;
4855                 skb1 = rb_to_skb(parent);
4856                 if (before(TCP_SKB_CB(skb)->seq, TCP_SKB_CB(skb1)->seq))
4857                         p = &parent->rb_left;
4858                 else
4859                         p = &parent->rb_right;
4860         }
4861         rb_link_node(&skb->rbnode, parent, p);
4862         rb_insert_color(&skb->rbnode, root);
4863 }
4864
4865 /* Collapse contiguous sequence of skbs head..tail with
4866  * sequence numbers start..end.
4867  *
4868  * If tail is NULL, this means until the end of the queue.
4869  *
4870  * Segments with FIN/SYN are not collapsed (only because this
4871  * simplifies code)
4872  */
4873 static void
4874 tcp_collapse(struct sock *sk, struct sk_buff_head *list, struct rb_root *root,
4875              struct sk_buff *head, struct sk_buff *tail, u32 start, u32 end)
4876 {
4877         struct sk_buff *skb = head, *n;
4878         struct sk_buff_head tmp;
4879         bool end_of_skbs;
4880
4881         /* First, check that queue is collapsible and find
4882          * the point where collapsing can be useful.
4883          */
4884 restart:
4885         for (end_of_skbs = true; skb != NULL && skb != tail; skb = n) {
4886                 n = tcp_skb_next(skb, list);
4887
4888                 /* No new bits? It is possible on ofo queue. */
4889                 if (!before(start, TCP_SKB_CB(skb)->end_seq)) {
4890                         skb = tcp_collapse_one(sk, skb, list, root);
4891                         if (!skb)
4892                                 break;
4893                         goto restart;
4894                 }
4895
4896                 /* The first skb to collapse is:
4897                  * - not SYN/FIN and
4898                  * - bloated or contains data before "start" or
4899                  *   overlaps to the next one.
4900                  */
4901                 if (!(TCP_SKB_CB(skb)->tcp_flags & (TCPHDR_SYN | TCPHDR_FIN)) &&
4902                     (tcp_win_from_space(skb->truesize) > skb->len ||
4903                      before(TCP_SKB_CB(skb)->seq, start))) {
4904                         end_of_skbs = false;
4905                         break;
4906                 }
4907
4908                 if (n && n != tail &&
4909                     TCP_SKB_CB(skb)->end_seq != TCP_SKB_CB(n)->seq) {
4910                         end_of_skbs = false;
4911                         break;
4912                 }
4913
4914                 /* Decided to skip this, advance start seq. */
4915                 start = TCP_SKB_CB(skb)->end_seq;
4916         }
4917         if (end_of_skbs ||
4918             (TCP_SKB_CB(skb)->tcp_flags & (TCPHDR_SYN | TCPHDR_FIN)))
4919                 return;
4920
4921         __skb_queue_head_init(&tmp);
4922
4923         while (before(start, end)) {
4924                 int copy = min_t(int, SKB_MAX_ORDER(0, 0), end - start);
4925                 struct sk_buff *nskb;
4926
4927                 nskb = alloc_skb(copy, GFP_ATOMIC);
4928                 if (!nskb)
4929                         break;
4930
4931                 memcpy(nskb->cb, skb->cb, sizeof(skb->cb));
4932                 TCP_SKB_CB(nskb)->seq = TCP_SKB_CB(nskb)->end_seq = start;
4933                 if (list)
4934                         __skb_queue_before(list, skb, nskb);
4935                 else
4936                         __skb_queue_tail(&tmp, nskb); /* defer rbtree insertion */
4937                 skb_set_owner_r(nskb, sk);
4938
4939                 /* Copy data, releasing collapsed skbs. */
4940                 while (copy > 0) {
4941                         int offset = start - TCP_SKB_CB(skb)->seq;
4942                         int size = TCP_SKB_CB(skb)->end_seq - start;
4943
4944                         BUG_ON(offset < 0);
4945                         if (size > 0) {
4946                                 size = min(copy, size);
4947                                 if (skb_copy_bits(skb, offset, skb_put(nskb, size), size))
4948                                         BUG();
4949                                 TCP_SKB_CB(nskb)->end_seq += size;
4950                                 copy -= size;
4951                                 start += size;
4952                         }
4953                         if (!before(start, TCP_SKB_CB(skb)->end_seq)) {
4954                                 skb = tcp_collapse_one(sk, skb, list, root);
4955                                 if (!skb ||
4956                                     skb == tail ||
4957                                     (TCP_SKB_CB(skb)->tcp_flags & (TCPHDR_SYN | TCPHDR_FIN)))
4958                                         goto end;
4959                         }
4960                 }
4961         }
4962 end:
4963         skb_queue_walk_safe(&tmp, skb, n)
4964                 tcp_rbtree_insert(root, skb);
4965 }
4966
4967 /* Collapse ofo queue. Algorithm: select contiguous sequence of skbs
4968  * and tcp_collapse() them until all the queue is collapsed.
4969  */
4970 static void tcp_collapse_ofo_queue(struct sock *sk)
4971 {
4972         struct tcp_sock *tp = tcp_sk(sk);
4973         u32 range_truesize, sum_tiny = 0;
4974         struct sk_buff *skb, *head;
4975         u32 start, end;
4976
4977         skb = skb_rb_first(&tp->out_of_order_queue);
4978 new_range:
4979         if (!skb) {
4980                 tp->ooo_last_skb = skb_rb_last(&tp->out_of_order_queue);
4981                 return;
4982         }
4983         start = TCP_SKB_CB(skb)->seq;
4984         end = TCP_SKB_CB(skb)->end_seq;
4985         range_truesize = skb->truesize;
4986
4987         for (head = skb;;) {
4988                 skb = skb_rb_next(skb);
4989
4990                 /* Range is terminated when we see a gap or when
4991                  * we are at the queue end.
4992                  */
4993                 if (!skb ||
4994                     after(TCP_SKB_CB(skb)->seq, end) ||
4995                     before(TCP_SKB_CB(skb)->end_seq, start)) {
4996                         /* Do not attempt collapsing tiny skbs */
4997                         if (range_truesize != head->truesize ||
4998                             end - start >= SKB_WITH_OVERHEAD(SK_MEM_QUANTUM)) {
4999                                 tcp_collapse(sk, NULL, &tp->out_of_order_queue,
5000                                              head, skb, start, end);
5001                         } else {
5002                                 sum_tiny += range_truesize;
5003                                 if (sum_tiny > sk->sk_rcvbuf >> 3)
5004                                         return;
5005                         }
5006                         goto new_range;
5007                 }
5008
5009                 range_truesize += skb->truesize;
5010                 if (unlikely(before(TCP_SKB_CB(skb)->seq, start)))
5011                         start = TCP_SKB_CB(skb)->seq;
5012                 if (after(TCP_SKB_CB(skb)->end_seq, end))
5013                         end = TCP_SKB_CB(skb)->end_seq;
5014         }
5015 }
5016
5017 /*
5018  * Clean the out-of-order queue to make room.
5019  * We drop high sequences packets to :
5020  * 1) Let a chance for holes to be filled.
5021  * 2) not add too big latencies if thousands of packets sit there.
5022  *    (But if application shrinks SO_RCVBUF, we could still end up
5023  *     freeing whole queue here)
5024  * 3) Drop at least 12.5 % of sk_rcvbuf to avoid malicious attacks.
5025  *
5026  * Return true if queue has shrunk.
5027  */
5028 static bool tcp_prune_ofo_queue(struct sock *sk)
5029 {
5030         struct tcp_sock *tp = tcp_sk(sk);
5031         struct rb_node *node, *prev;
5032         int goal;
5033
5034         if (RB_EMPTY_ROOT(&tp->out_of_order_queue))
5035                 return false;
5036
5037         NET_INC_STATS(sock_net(sk), LINUX_MIB_OFOPRUNED);
5038         goal = sk->sk_rcvbuf >> 3;
5039         node = &tp->ooo_last_skb->rbnode;
5040         do {
5041                 prev = rb_prev(node);
5042                 rb_erase(node, &tp->out_of_order_queue);
5043                 goal -= rb_to_skb(node)->truesize;
5044                 tcp_drop(sk, rb_to_skb(node));
5045                 if (!prev || goal <= 0) {
5046                         sk_mem_reclaim(sk);
5047                         if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf &&
5048                             !tcp_under_memory_pressure(sk))
5049                                 break;
5050                         goal = sk->sk_rcvbuf >> 3;
5051                 }
5052                 node = prev;
5053         } while (node);
5054         tp->ooo_last_skb = rb_to_skb(prev);
5055
5056         /* Reset SACK state.  A conforming SACK implementation will
5057          * do the same at a timeout based retransmit.  When a connection
5058          * is in a sad state like this, we care only about integrity
5059          * of the connection not performance.
5060          */
5061         if (tp->rx_opt.sack_ok)
5062                 tcp_sack_reset(&tp->rx_opt);
5063         return true;
5064 }
5065
5066 /* Reduce allocated memory if we can, trying to get
5067  * the socket within its memory limits again.
5068  *
5069  * Return less than zero if we should start dropping frames
5070  * until the socket owning process reads some of the data
5071  * to stabilize the situation.
5072  */
5073 static int tcp_prune_queue(struct sock *sk)
5074 {
5075         struct tcp_sock *tp = tcp_sk(sk);
5076
5077         SOCK_DEBUG(sk, "prune_queue: c=%x\n", tp->copied_seq);
5078
5079         NET_INC_STATS(sock_net(sk), LINUX_MIB_PRUNECALLED);
5080
5081         if (atomic_read(&sk->sk_rmem_alloc) >= sk->sk_rcvbuf)
5082                 tcp_clamp_window(sk);
5083         else if (tcp_under_memory_pressure(sk))
5084                 tp->rcv_ssthresh = min(tp->rcv_ssthresh, 4U * tp->advmss);
5085
5086         if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf)
5087                 return 0;
5088
5089         tcp_collapse_ofo_queue(sk);
5090         if (!skb_queue_empty(&sk->sk_receive_queue))
5091                 tcp_collapse(sk, &sk->sk_receive_queue, NULL,
5092                              skb_peek(&sk->sk_receive_queue),
5093                              NULL,
5094                              tp->copied_seq, tp->rcv_nxt);
5095         sk_mem_reclaim(sk);
5096
5097         if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf)
5098                 return 0;
5099
5100         /* Collapsing did not help, destructive actions follow.
5101          * This must not ever occur. */
5102
5103         tcp_prune_ofo_queue(sk);
5104
5105         if (atomic_read(&sk->sk_rmem_alloc) <= sk->sk_rcvbuf)
5106                 return 0;
5107
5108         /* If we are really being abused, tell the caller to silently
5109          * drop receive data on the floor.  It will get retransmitted
5110          * and hopefully then we'll have sufficient space.
5111          */
5112         NET_INC_STATS(sock_net(sk), LINUX_MIB_RCVPRUNED);
5113
5114         /* Massive buffer overcommit. */
5115         tp->pred_flags = 0;
5116         return -1;
5117 }
5118
5119 static bool tcp_should_expand_sndbuf(const struct sock *sk)
5120 {
5121         const struct tcp_sock *tp = tcp_sk(sk);
5122
5123         /* If the user specified a specific send buffer setting, do
5124          * not modify it.
5125          */
5126         if (sk->sk_userlocks & SOCK_SNDBUF_LOCK)
5127                 return false;
5128
5129         /* If we are under global TCP memory pressure, do not expand.  */
5130         if (tcp_under_memory_pressure(sk))
5131                 return false;
5132
5133         /* If we are under soft global TCP memory pressure, do not expand.  */
5134         if (sk_memory_allocated(sk) >= sk_prot_mem_limits(sk, 0))
5135                 return false;
5136
5137         /* If we filled the congestion window, do not expand.  */
5138         if (tcp_packets_in_flight(tp) >= tp->snd_cwnd)
5139                 return false;
5140
5141         return true;
5142 }
5143
5144 /* When incoming ACK allowed to free some skb from write_queue,
5145  * we remember this event in flag SOCK_QUEUE_SHRUNK and wake up socket
5146  * on the exit from tcp input handler.
5147  *
5148  * PROBLEM: sndbuf expansion does not work well with largesend.
5149  */
5150 static void tcp_new_space(struct sock *sk)
5151 {
5152         struct tcp_sock *tp = tcp_sk(sk);
5153
5154         if (tcp_should_expand_sndbuf(sk)) {
5155                 tcp_sndbuf_expand(sk);
5156                 tp->snd_cwnd_stamp = tcp_time_stamp;
5157         }
5158
5159         sk->sk_write_space(sk);
5160 }
5161
5162 static void tcp_check_space(struct sock *sk)
5163 {
5164         if (sock_flag(sk, SOCK_QUEUE_SHRUNK)) {
5165                 sock_reset_flag(sk, SOCK_QUEUE_SHRUNK);
5166                 /* pairs with tcp_poll() */
5167                 smp_mb();
5168                 if (sk->sk_socket &&
5169                     test_bit(SOCK_NOSPACE, &sk->sk_socket->flags))
5170                         tcp_new_space(sk);
5171         }
5172 }
5173
5174 static inline void tcp_data_snd_check(struct sock *sk)
5175 {
5176         tcp_push_pending_frames(sk);
5177         tcp_check_space(sk);
5178 }
5179
5180 /*
5181  * Check if sending an ack is needed.
5182  */
5183 static void __tcp_ack_snd_check(struct sock *sk, int ofo_possible)
5184 {
5185         struct tcp_sock *tp = tcp_sk(sk);
5186
5187             /* More than one full frame received... */
5188         if (((tp->rcv_nxt - tp->rcv_wup) > inet_csk(sk)->icsk_ack.rcv_mss &&
5189              /* ... and right edge of window advances far enough.
5190               * (tcp_recvmsg() will send ACK otherwise). Or...
5191               */
5192              __tcp_select_window(sk) >= tp->rcv_wnd) ||
5193             /* We ACK each frame or... */
5194             tcp_in_quickack_mode(sk) ||
5195             /* We have out of order data. */
5196             (ofo_possible && !RB_EMPTY_ROOT(&tp->out_of_order_queue))) {
5197                 /* Then ack it now */
5198                 tcp_send_ack(sk);
5199         } else {
5200                 /* Else, send delayed ack. */
5201                 tcp_send_delayed_ack(sk);
5202         }
5203 }
5204
5205 static inline void tcp_ack_snd_check(struct sock *sk)
5206 {
5207         if (!inet_csk_ack_scheduled(sk)) {
5208                 /* We sent a data segment already. */
5209                 return;
5210         }
5211         __tcp_ack_snd_check(sk, 1);
5212 }
5213
5214 /*
5215  *      This routine is only called when we have urgent data
5216  *      signaled. Its the 'slow' part of tcp_urg. It could be
5217  *      moved inline now as tcp_urg is only called from one
5218  *      place. We handle URGent data wrong. We have to - as
5219  *      BSD still doesn't use the correction from RFC961.
5220  *      For 1003.1g we should support a new option TCP_STDURG to permit
5221  *      either form (or just set the sysctl tcp_stdurg).
5222  */
5223
5224 static void tcp_check_urg(struct sock *sk, const struct tcphdr *th)
5225 {
5226         struct tcp_sock *tp = tcp_sk(sk);
5227         u32 ptr = ntohs(th->urg_ptr);
5228
5229         if (ptr && !sysctl_tcp_stdurg)
5230                 ptr--;
5231         ptr += ntohl(th->seq);
5232
5233         /* Ignore urgent data that we've already seen and read. */
5234         if (after(tp->copied_seq, ptr))
5235                 return;
5236
5237         /* Do not replay urg ptr.
5238          *
5239          * NOTE: interesting situation not covered by specs.
5240          * Misbehaving sender may send urg ptr, pointing to segment,
5241          * which we already have in ofo queue. We are not able to fetch
5242          * such data and will stay in TCP_URG_NOTYET until will be eaten
5243          * by recvmsg(). Seems, we are not obliged to handle such wicked
5244          * situations. But it is worth to think about possibility of some
5245          * DoSes using some hypothetical application level deadlock.
5246          */
5247         if (before(ptr, tp->rcv_nxt))
5248                 return;
5249
5250         /* Do we already have a newer (or duplicate) urgent pointer? */
5251         if (tp->urg_data && !after(ptr, tp->urg_seq))
5252                 return;
5253
5254         /* Tell the world about our new urgent pointer. */
5255         sk_send_sigurg(sk);
5256
5257         /* We may be adding urgent data when the last byte read was
5258          * urgent. To do this requires some care. We cannot just ignore
5259          * tp->copied_seq since we would read the last urgent byte again
5260          * as data, nor can we alter copied_seq until this data arrives
5261          * or we break the semantics of SIOCATMARK (and thus sockatmark())
5262          *
5263          * NOTE. Double Dutch. Rendering to plain English: author of comment
5264          * above did something sort of  send("A", MSG_OOB); send("B", MSG_OOB);
5265          * and expect that both A and B disappear from stream. This is _wrong_.
5266          * Though this happens in BSD with high probability, this is occasional.
5267          * Any application relying on this is buggy. Note also, that fix "works"
5268          * only in this artificial test. Insert some normal data between A and B and we will
5269          * decline of BSD again. Verdict: it is better to remove to trap
5270          * buggy users.
5271          */
5272         if (tp->urg_seq == tp->copied_seq && tp->urg_data &&
5273             !sock_flag(sk, SOCK_URGINLINE) && tp->copied_seq != tp->rcv_nxt) {
5274                 struct sk_buff *skb = skb_peek(&sk->sk_receive_queue);
5275                 tp->copied_seq++;
5276                 if (skb && !before(tp->copied_seq, TCP_SKB_CB(skb)->end_seq)) {
5277                         __skb_unlink(skb, &sk->sk_receive_queue);
5278                         __kfree_skb(skb);
5279                 }
5280         }
5281
5282         tp->urg_data = TCP_URG_NOTYET;
5283         tp->urg_seq = ptr;
5284
5285         /* Disable header prediction. */
5286         tp->pred_flags = 0;
5287 }
5288
5289 /* This is the 'fast' part of urgent handling. */
5290 static void tcp_urg(struct sock *sk, struct sk_buff *skb, const struct tcphdr *th)
5291 {
5292         struct tcp_sock *tp = tcp_sk(sk);
5293
5294         /* Check if we get a new urgent pointer - normally not. */
5295         if (th->urg)
5296                 tcp_check_urg(sk, th);
5297
5298         /* Do we wait for any urgent data? - normally not... */
5299         if (tp->urg_data == TCP_URG_NOTYET) {
5300                 u32 ptr = tp->urg_seq - ntohl(th->seq) + (th->doff * 4) -
5301                           th->syn;
5302
5303                 /* Is the urgent pointer pointing into this packet? */
5304                 if (ptr < skb->len) {
5305                         u8 tmp;
5306                         if (skb_copy_bits(skb, ptr, &tmp, 1))
5307                                 BUG();
5308                         tp->urg_data = TCP_URG_VALID | tmp;
5309                         if (!sock_flag(sk, SOCK_DEAD))
5310                                 sk->sk_data_ready(sk);
5311                 }
5312         }
5313 }
5314
5315 static int tcp_copy_to_iovec(struct sock *sk, struct sk_buff *skb, int hlen)
5316 {
5317         struct tcp_sock *tp = tcp_sk(sk);
5318         int chunk = skb->len - hlen;
5319         int err;
5320
5321         if (skb_csum_unnecessary(skb))
5322                 err = skb_copy_datagram_msg(skb, hlen, tp->ucopy.msg, chunk);
5323         else
5324                 err = skb_copy_and_csum_datagram_msg(skb, hlen, tp->ucopy.msg);
5325
5326         if (!err) {
5327                 tp->ucopy.len -= chunk;
5328                 tp->copied_seq += chunk;
5329                 tcp_rcv_space_adjust(sk);
5330         }
5331
5332         return err;
5333 }
5334
5335 /* Does PAWS and seqno based validation of an incoming segment, flags will
5336  * play significant role here.
5337  */
5338 static bool tcp_validate_incoming(struct sock *sk, struct sk_buff *skb,
5339                                   const struct tcphdr *th, int syn_inerr)
5340 {
5341         struct tcp_sock *tp = tcp_sk(sk);
5342         bool rst_seq_match = false;
5343
5344         /* RFC1323: H1. Apply PAWS check first. */
5345         if (tcp_fast_parse_options(skb, th, tp) && tp->rx_opt.saw_tstamp &&
5346             tcp_paws_discard(sk, skb)) {
5347                 if (!th->rst) {
5348                         NET_INC_STATS(sock_net(sk), LINUX_MIB_PAWSESTABREJECTED);
5349                         if (!tcp_oow_rate_limited(sock_net(sk), skb,
5350                                                   LINUX_MIB_TCPACKSKIPPEDPAWS,
5351                                                   &tp->last_oow_ack_time))
5352                                 tcp_send_dupack(sk, skb);
5353                         goto discard;
5354                 }
5355                 /* Reset is accepted even if it did not pass PAWS. */
5356         }
5357
5358         /* Step 1: check sequence number */
5359         if (!tcp_sequence(tp, TCP_SKB_CB(skb)->seq, TCP_SKB_CB(skb)->end_seq)) {
5360                 /* RFC793, page 37: "In all states except SYN-SENT, all reset
5361                  * (RST) segments are validated by checking their SEQ-fields."
5362                  * And page 69: "If an incoming segment is not acceptable,
5363                  * an acknowledgment should be sent in reply (unless the RST
5364                  * bit is set, if so drop the segment and return)".
5365                  */
5366                 if (!th->rst) {
5367                         if (th->syn)
5368                                 goto syn_challenge;
5369                         if (!tcp_oow_rate_limited(sock_net(sk), skb,
5370                                                   LINUX_MIB_TCPACKSKIPPEDSEQ,
5371                                                   &tp->last_oow_ack_time))
5372                                 tcp_send_dupack(sk, skb);
5373                 }
5374                 goto discard;
5375         }
5376
5377         /* Step 2: check RST bit */
5378         if (th->rst) {
5379                 /* RFC 5961 3.2 (extend to match against SACK too if available):
5380                  * If seq num matches RCV.NXT or the right-most SACK block,
5381                  * then
5382                  *     RESET the connection
5383                  * else
5384                  *     Send a challenge ACK
5385                  */
5386                 if (TCP_SKB_CB(skb)->seq == tp->rcv_nxt) {
5387                         rst_seq_match = true;
5388                 } else if (tcp_is_sack(tp) && tp->rx_opt.num_sacks > 0) {
5389                         struct tcp_sack_block *sp = &tp->selective_acks[0];
5390                         int max_sack = sp[0].end_seq;
5391                         int this_sack;
5392
5393                         for (this_sack = 1; this_sack < tp->rx_opt.num_sacks;
5394                              ++this_sack) {
5395                                 max_sack = after(sp[this_sack].end_seq,
5396                                                  max_sack) ?
5397                                         sp[this_sack].end_seq : max_sack;
5398                         }
5399
5400                         if (TCP_SKB_CB(skb)->seq == max_sack)
5401                                 rst_seq_match = true;
5402                 }
5403
5404                 if (rst_seq_match)
5405                         tcp_reset(sk);
5406                 else
5407                         tcp_send_challenge_ack(sk, skb);
5408                 goto discard;
5409         }
5410
5411         /* step 3: check security and precedence [ignored] */
5412
5413         /* step 4: Check for a SYN
5414          * RFC 5961 4.2 : Send a challenge ack
5415          */
5416         if (th->syn) {
5417 syn_challenge:
5418                 if (syn_inerr)
5419                         TCP_INC_STATS(sock_net(sk), TCP_MIB_INERRS);
5420                 NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPSYNCHALLENGE);
5421                 tcp_send_challenge_ack(sk, skb);
5422                 goto discard;
5423         }
5424
5425         return true;
5426
5427 discard:
5428         tcp_drop(sk, skb);
5429         return false;
5430 }
5431
5432 /*
5433  *      TCP receive function for the ESTABLISHED state.
5434  *
5435  *      It is split into a fast path and a slow path. The fast path is
5436  *      disabled when:
5437  *      - A zero window was announced from us - zero window probing
5438  *        is only handled properly in the slow path.
5439  *      - Out of order segments arrived.
5440  *      - Urgent data is expected.
5441  *      - There is no buffer space left
5442  *      - Unexpected TCP flags/window values/header lengths are received
5443  *        (detected by checking the TCP header against pred_flags)
5444  *      - Data is sent in both directions. Fast path only supports pure senders
5445  *        or pure receivers (this means either the sequence number or the ack
5446  *        value must stay constant)
5447  *      - Unexpected TCP option.
5448  *
5449  *      When these conditions are not satisfied it drops into a standard
5450  *      receive procedure patterned after RFC793 to handle all cases.
5451  *      The first three cases are guaranteed by proper pred_flags setting,
5452  *      the rest is checked inline. Fast processing is turned on in
5453  *      tcp_data_queue when everything is OK.
5454  */
5455 void tcp_rcv_established(struct sock *sk, struct sk_buff *skb,
5456                          const struct tcphdr *th, unsigned int len)
5457 {
5458         struct tcp_sock *tp = tcp_sk(sk);
5459
5460         if (unlikely(!sk->sk_rx_dst))
5461                 inet_csk(sk)->icsk_af_ops->sk_rx_dst_set(sk, skb);
5462         /*
5463          *      Header prediction.
5464          *      The code loosely follows the one in the famous
5465          *      "30 instruction TCP receive" Van Jacobson mail.
5466          *
5467          *      Van's trick is to deposit buffers into socket queue
5468          *      on a device interrupt, to call tcp_recv function
5469          *      on the receive process context and checksum and copy
5470          *      the buffer to user space. smart...
5471          *
5472          *      Our current scheme is not silly either but we take the
5473          *      extra cost of the net_bh soft interrupt processing...
5474          *      We do checksum and copy also but from device to kernel.
5475          */
5476
5477         tp->rx_opt.saw_tstamp = 0;
5478
5479         /*      pred_flags is 0xS?10 << 16 + snd_wnd
5480          *      if header_prediction is to be made
5481          *      'S' will always be tp->tcp_header_len >> 2
5482          *      '?' will be 0 for the fast path, otherwise pred_flags is 0 to
5483          *  turn it off (when there are holes in the receive
5484          *       space for instance)
5485          *      PSH flag is ignored.
5486          */
5487
5488         if ((tcp_flag_word(th) & TCP_HP_BITS) == tp->pred_flags &&
5489             TCP_SKB_CB(skb)->seq == tp->rcv_nxt &&
5490             !after(TCP_SKB_CB(skb)->ack_seq, tp->snd_nxt)) {
5491                 int tcp_header_len = tp->tcp_header_len;
5492
5493                 /* Timestamp header prediction: tcp_header_len
5494                  * is automatically equal to th->doff*4 due to pred_flags
5495                  * match.
5496                  */
5497
5498                 /* Check timestamp */
5499                 if (tcp_header_len == sizeof(struct tcphdr) + TCPOLEN_TSTAMP_ALIGNED) {
5500                         /* No? Slow path! */
5501                         if (!tcp_parse_aligned_timestamp(tp, th))
5502                                 goto slow_path;
5503
5504                         /* If PAWS failed, check it more carefully in slow path */
5505                         if ((s32)(tp->rx_opt.rcv_tsval - tp->rx_opt.ts_recent) < 0)
5506                                 goto slow_path;
5507
5508                         /* DO NOT update ts_recent here, if checksum fails
5509                          * and timestamp was corrupted part, it will result
5510                          * in a hung connection since we will drop all
5511                          * future packets due to the PAWS test.
5512                          */
5513                 }
5514
5515                 if (len <= tcp_header_len) {
5516                         /* Bulk data transfer: sender */
5517                         if (len == tcp_header_len) {
5518                                 /* Predicted packet is in window by definition.
5519                                  * seq == rcv_nxt and rcv_wup <= rcv_nxt.
5520                                  * Hence, check seq<=rcv_wup reduces to:
5521                                  */
5522                                 if (tcp_header_len ==
5523                                     (sizeof(struct tcphdr) + TCPOLEN_TSTAMP_ALIGNED) &&
5524                                     tp->rcv_nxt == tp->rcv_wup)
5525                                         tcp_store_ts_recent(tp);
5526
5527                                 /* We know that such packets are checksummed
5528                                  * on entry.
5529                                  */
5530                                 tcp_ack(sk, skb, 0);
5531                                 __kfree_skb(skb);
5532                                 tcp_data_snd_check(sk);
5533                                 return;
5534                         } else { /* Header too small */
5535                                 TCP_INC_STATS(sock_net(sk), TCP_MIB_INERRS);
5536                                 goto discard;
5537                         }
5538                 } else {
5539                         int eaten = 0;
5540                         bool fragstolen = false;
5541
5542                         if (tp->ucopy.task == current &&
5543                             tp->copied_seq == tp->rcv_nxt &&
5544                             len - tcp_header_len <= tp->ucopy.len &&
5545                             sock_owned_by_user(sk)) {
5546                                 __set_current_state(TASK_RUNNING);
5547
5548                                 if (!tcp_copy_to_iovec(sk, skb, tcp_header_len)) {
5549                                         /* Predicted packet is in window by definition.
5550                                          * seq == rcv_nxt and rcv_wup <= rcv_nxt.
5551                                          * Hence, check seq<=rcv_wup reduces to:
5552                                          */
5553                                         if (tcp_header_len ==
5554                                             (sizeof(struct tcphdr) +
5555                                              TCPOLEN_TSTAMP_ALIGNED) &&
5556                                             tp->rcv_nxt == tp->rcv_wup)
5557                                                 tcp_store_ts_recent(tp);
5558
5559                                         tcp_rcv_rtt_measure_ts(sk, skb);
5560
5561                                         __skb_pull(skb, tcp_header_len);
5562                                         tcp_rcv_nxt_update(tp, TCP_SKB_CB(skb)->end_seq);
5563                                         NET_INC_STATS(sock_net(sk),
5564                                                         LINUX_MIB_TCPHPHITSTOUSER);
5565                                         eaten = 1;
5566                                 }
5567                         }
5568                         if (!eaten) {
5569                                 if (tcp_checksum_complete(skb))
5570                                         goto csum_error;
5571
5572                                 if ((int)skb->truesize > sk->sk_forward_alloc)
5573                                         goto step5;
5574
5575                                 /* Predicted packet is in window by definition.
5576                                  * seq == rcv_nxt and rcv_wup <= rcv_nxt.
5577                                  * Hence, check seq<=rcv_wup reduces to:
5578                                  */
5579                                 if (tcp_header_len ==
5580                                     (sizeof(struct tcphdr) + TCPOLEN_TSTAMP_ALIGNED) &&
5581                                     tp->rcv_nxt == tp->rcv_wup)
5582                                         tcp_store_ts_recent(tp);
5583
5584                                 tcp_rcv_rtt_measure_ts(sk, skb);
5585
5586                                 NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPHPHITS);
5587
5588                                 /* Bulk data transfer: receiver */
5589                                 eaten = tcp_queue_rcv(sk, skb, tcp_header_len,
5590                                                       &fragstolen);
5591                         }
5592
5593                         tcp_event_data_recv(sk, skb);
5594
5595                         if (TCP_SKB_CB(skb)->ack_seq != tp->snd_una) {
5596                                 /* Well, only one small jumplet in fast path... */
5597                                 tcp_ack(sk, skb, FLAG_DATA);
5598                                 tcp_data_snd_check(sk);
5599                                 if (!inet_csk_ack_scheduled(sk))
5600                                         goto no_ack;
5601                         } else {
5602                                 tcp_update_wl(tp, TCP_SKB_CB(skb)->seq);
5603                         }
5604
5605                         __tcp_ack_snd_check(sk, 0);
5606 no_ack:
5607                         if (eaten)
5608                                 kfree_skb_partial(skb, fragstolen);
5609                         sk->sk_data_ready(sk);
5610                         return;
5611                 }
5612         }
5613
5614 slow_path:
5615         if (len < (th->doff << 2) || tcp_checksum_complete(skb))
5616                 goto csum_error;
5617
5618         if (!th->ack && !th->rst && !th->syn)
5619                 goto discard;
5620
5621         /*
5622          *      Standard slow path.
5623          */
5624
5625         if (!tcp_validate_incoming(sk, skb, th, 1))
5626                 return;
5627
5628 step5:
5629         if (tcp_ack(sk, skb, FLAG_SLOWPATH | FLAG_UPDATE_TS_RECENT) < 0)
5630                 goto discard;
5631
5632         tcp_rcv_rtt_measure_ts(sk, skb);
5633
5634         /* Process urgent data. */
5635         tcp_urg(sk, skb, th);
5636
5637         /* step 7: process the segment text */
5638         tcp_data_queue(sk, skb);
5639
5640         tcp_data_snd_check(sk);
5641         tcp_ack_snd_check(sk);
5642         return;
5643
5644 csum_error:
5645         TCP_INC_STATS(sock_net(sk), TCP_MIB_CSUMERRORS);
5646         TCP_INC_STATS(sock_net(sk), TCP_MIB_INERRS);
5647
5648 discard:
5649         tcp_drop(sk, skb);
5650 }
5651 EXPORT_SYMBOL(tcp_rcv_established);
5652
5653 void tcp_finish_connect(struct sock *sk, struct sk_buff *skb)
5654 {
5655         struct tcp_sock *tp = tcp_sk(sk);
5656         struct inet_connection_sock *icsk = inet_csk(sk);
5657
5658         tcp_set_state(sk, TCP_ESTABLISHED);
5659         icsk->icsk_ack.lrcvtime = tcp_time_stamp;
5660
5661         if (skb) {
5662                 icsk->icsk_af_ops->sk_rx_dst_set(sk, skb);
5663                 security_inet_conn_established(sk, skb);
5664         }
5665
5666         /* Make sure socket is routed, for correct metrics.  */
5667         icsk->icsk_af_ops->rebuild_header(sk);
5668
5669         tcp_init_metrics(sk);
5670
5671         tcp_init_congestion_control(sk);
5672
5673         /* Prevent spurious tcp_cwnd_restart() on first data
5674          * packet.
5675          */
5676         tp->lsndtime = tcp_time_stamp;
5677
5678         tcp_init_buffer_space(sk);
5679
5680         if (sock_flag(sk, SOCK_KEEPOPEN))
5681                 inet_csk_reset_keepalive_timer(sk, keepalive_time_when(tp));
5682
5683         if (!tp->rx_opt.snd_wscale)
5684                 __tcp_fast_path_on(tp, tp->snd_wnd);
5685         else
5686                 tp->pred_flags = 0;
5687
5688 }
5689
5690 static bool tcp_rcv_fastopen_synack(struct sock *sk, struct sk_buff *synack,
5691                                     struct tcp_fastopen_cookie *cookie)
5692 {
5693         struct tcp_sock *tp = tcp_sk(sk);
5694         struct sk_buff *data = tp->syn_data ? tcp_write_queue_head(sk) : NULL;
5695         u16 mss = tp->rx_opt.mss_clamp, try_exp = 0;
5696         bool syn_drop = false;
5697
5698         if (mss == tp->rx_opt.user_mss) {
5699                 struct tcp_options_received opt;
5700
5701                 /* Get original SYNACK MSS value if user MSS sets mss_clamp */
5702                 tcp_clear_options(&opt);
5703                 opt.user_mss = opt.mss_clamp = 0;
5704                 tcp_parse_options(synack, &opt, 0, NULL);
5705                 mss = opt.mss_clamp;
5706         }
5707
5708         if (!tp->syn_fastopen) {
5709                 /* Ignore an unsolicited cookie */
5710                 cookie->len = -1;
5711         } else if (tp->total_retrans) {
5712                 /* SYN timed out and the SYN-ACK neither has a cookie nor
5713                  * acknowledges data. Presumably the remote received only
5714                  * the retransmitted (regular) SYNs: either the original
5715                  * SYN-data or the corresponding SYN-ACK was dropped.
5716                  */
5717                 syn_drop = (cookie->len < 0 && data);
5718         } else if (cookie->len < 0 && !tp->syn_data) {
5719                 /* We requested a cookie but didn't get it. If we did not use
5720                  * the (old) exp opt format then try so next time (try_exp=1).
5721                  * Otherwise we go back to use the RFC7413 opt (try_exp=2).
5722                  */
5723                 try_exp = tp->syn_fastopen_exp ? 2 : 1;
5724         }
5725
5726         tcp_fastopen_cache_set(sk, mss, cookie, syn_drop, try_exp);
5727
5728         if (data) { /* Retransmit unacked data in SYN */
5729                 tcp_for_write_queue_from(data, sk) {
5730                         if (data == tcp_send_head(sk) ||
5731                             __tcp_retransmit_skb(sk, data, 1))
5732                                 break;
5733                 }
5734                 tcp_rearm_rto(sk);
5735                 NET_INC_STATS(sock_net(sk),
5736                                 LINUX_MIB_TCPFASTOPENACTIVEFAIL);
5737                 return true;
5738         }
5739         tp->syn_data_acked = tp->syn_data;
5740         if (tp->syn_data_acked)
5741                 NET_INC_STATS(sock_net(sk),
5742                                 LINUX_MIB_TCPFASTOPENACTIVE);
5743
5744         tcp_fastopen_add_skb(sk, synack);
5745
5746         return false;
5747 }
5748
5749 static int tcp_rcv_synsent_state_process(struct sock *sk, struct sk_buff *skb,
5750                                          const struct tcphdr *th)
5751 {
5752         struct inet_connection_sock *icsk = inet_csk(sk);
5753         struct tcp_sock *tp = tcp_sk(sk);
5754         struct tcp_fastopen_cookie foc = { .len = -1 };
5755         int saved_clamp = tp->rx_opt.mss_clamp;
5756         bool fastopen_fail;
5757
5758         tcp_parse_options(skb, &tp->rx_opt, 0, &foc);
5759         if (tp->rx_opt.saw_tstamp && tp->rx_opt.rcv_tsecr)
5760                 tp->rx_opt.rcv_tsecr -= tp->tsoffset;
5761
5762         if (th->ack) {
5763                 /* rfc793:
5764                  * "If the state is SYN-SENT then
5765                  *    first check the ACK bit
5766                  *      If the ACK bit is set
5767                  *        If SEG.ACK =< ISS, or SEG.ACK > SND.NXT, send
5768                  *        a reset (unless the RST bit is set, if so drop
5769                  *        the segment and return)"
5770                  */
5771                 if (!after(TCP_SKB_CB(skb)->ack_seq, tp->snd_una) ||
5772                     after(TCP_SKB_CB(skb)->ack_seq, tp->snd_nxt))
5773                         goto reset_and_undo;
5774
5775                 if (tp->rx_opt.saw_tstamp && tp->rx_opt.rcv_tsecr &&
5776                     !between(tp->rx_opt.rcv_tsecr, tp->retrans_stamp,
5777                              tcp_time_stamp)) {
5778                         NET_INC_STATS(sock_net(sk),
5779                                         LINUX_MIB_PAWSACTIVEREJECTED);
5780                         goto reset_and_undo;
5781                 }
5782
5783                 /* Now ACK is acceptable.
5784                  *
5785                  * "If the RST bit is set
5786                  *    If the ACK was acceptable then signal the user "error:
5787                  *    connection reset", drop the segment, enter CLOSED state,
5788                  *    delete TCB, and return."
5789                  */
5790
5791                 if (th->rst) {
5792                         tcp_reset(sk);
5793                         goto discard;
5794                 }
5795
5796                 /* rfc793:
5797                  *   "fifth, if neither of the SYN or RST bits is set then
5798                  *    drop the segment and return."
5799                  *
5800                  *    See note below!
5801                  *                                        --ANK(990513)
5802                  */
5803                 if (!th->syn)
5804                         goto discard_and_undo;
5805
5806                 /* rfc793:
5807                  *   "If the SYN bit is on ...
5808                  *    are acceptable then ...
5809                  *    (our SYN has been ACKed), change the connection
5810                  *    state to ESTABLISHED..."
5811                  */
5812
5813                 tcp_ecn_rcv_synack(tp, th);
5814
5815                 tcp_init_wl(tp, TCP_SKB_CB(skb)->seq);
5816                 tcp_ack(sk, skb, FLAG_SLOWPATH);
5817
5818                 /* Ok.. it's good. Set up sequence numbers and
5819                  * move to established.
5820                  */
5821                 tp->rcv_nxt = TCP_SKB_CB(skb)->seq + 1;
5822                 tp->rcv_wup = TCP_SKB_CB(skb)->seq + 1;
5823
5824                 /* RFC1323: The window in SYN & SYN/ACK segments is
5825                  * never scaled.
5826                  */
5827                 tp->snd_wnd = ntohs(th->window);
5828
5829                 if (!tp->rx_opt.wscale_ok) {
5830                         tp->rx_opt.snd_wscale = tp->rx_opt.rcv_wscale = 0;
5831                         tp->window_clamp = min(tp->window_clamp, 65535U);
5832                 }
5833
5834                 if (tp->rx_opt.saw_tstamp) {
5835                         tp->rx_opt.tstamp_ok       = 1;
5836                         tp->tcp_header_len =
5837                                 sizeof(struct tcphdr) + TCPOLEN_TSTAMP_ALIGNED;
5838                         tp->advmss          -= TCPOLEN_TSTAMP_ALIGNED;
5839                         tcp_store_ts_recent(tp);
5840                 } else {
5841                         tp->tcp_header_len = sizeof(struct tcphdr);
5842                 }
5843
5844                 if (tcp_is_sack(tp) && sysctl_tcp_fack)
5845                         tcp_enable_fack(tp);
5846
5847                 tcp_mtup_init(sk);
5848                 tcp_sync_mss(sk, icsk->icsk_pmtu_cookie);
5849                 tcp_initialize_rcv_mss(sk);
5850
5851                 /* Remember, tcp_poll() does not lock socket!
5852                  * Change state from SYN-SENT only after copied_seq
5853                  * is initialized. */
5854                 tp->copied_seq = tp->rcv_nxt;
5855
5856                 smp_mb();
5857
5858                 tcp_finish_connect(sk, skb);
5859
5860                 fastopen_fail = (tp->syn_fastopen || tp->syn_data) &&
5861                                 tcp_rcv_fastopen_synack(sk, skb, &foc);
5862
5863                 if (!sock_flag(sk, SOCK_DEAD)) {
5864                         sk->sk_state_change(sk);
5865                         sk_wake_async(sk, SOCK_WAKE_IO, POLL_OUT);
5866                 }
5867                 if (fastopen_fail)
5868                         return -1;
5869                 if (sk->sk_write_pending ||
5870                     icsk->icsk_accept_queue.rskq_defer_accept ||
5871                     icsk->icsk_ack.pingpong) {
5872                         /* Save one ACK. Data will be ready after
5873                          * several ticks, if write_pending is set.
5874                          *
5875                          * It may be deleted, but with this feature tcpdumps
5876                          * look so _wonderfully_ clever, that I was not able
5877                          * to stand against the temptation 8)     --ANK
5878                          */
5879                         inet_csk_schedule_ack(sk);
5880                         tcp_enter_quickack_mode(sk, TCP_MAX_QUICKACKS);
5881                         inet_csk_reset_xmit_timer(sk, ICSK_TIME_DACK,
5882                                                   TCP_DELACK_MAX, TCP_RTO_MAX);
5883
5884 discard:
5885                         tcp_drop(sk, skb);
5886                         return 0;
5887                 } else {
5888                         tcp_send_ack(sk);
5889                 }
5890                 return -1;
5891         }
5892
5893         /* No ACK in the segment */
5894
5895         if (th->rst) {
5896                 /* rfc793:
5897                  * "If the RST bit is set
5898                  *
5899                  *      Otherwise (no ACK) drop the segment and return."
5900                  */
5901
5902                 goto discard_and_undo;
5903         }
5904
5905         /* PAWS check. */
5906         if (tp->rx_opt.ts_recent_stamp && tp->rx_opt.saw_tstamp &&
5907             tcp_paws_reject(&tp->rx_opt, 0))
5908                 goto discard_and_undo;
5909
5910         if (th->syn) {
5911                 /* We see SYN without ACK. It is attempt of
5912                  * simultaneous connect with crossed SYNs.
5913                  * Particularly, it can be connect to self.
5914                  */
5915                 tcp_set_state(sk, TCP_SYN_RECV);
5916
5917                 if (tp->rx_opt.saw_tstamp) {
5918                         tp->rx_opt.tstamp_ok = 1;
5919                         tcp_store_ts_recent(tp);
5920                         tp->tcp_header_len =
5921                                 sizeof(struct tcphdr) + TCPOLEN_TSTAMP_ALIGNED;
5922                 } else {
5923                         tp->tcp_header_len = sizeof(struct tcphdr);
5924                 }
5925
5926                 tp->rcv_nxt = TCP_SKB_CB(skb)->seq + 1;
5927                 tp->copied_seq = tp->rcv_nxt;
5928                 tp->rcv_wup = TCP_SKB_CB(skb)->seq + 1;
5929
5930                 /* RFC1323: The window in SYN & SYN/ACK segments is
5931                  * never scaled.
5932                  */
5933                 tp->snd_wnd    = ntohs(th->window);
5934                 tp->snd_wl1    = TCP_SKB_CB(skb)->seq;
5935                 tp->max_window = tp->snd_wnd;
5936
5937                 tcp_ecn_rcv_syn(tp, th);
5938
5939                 tcp_mtup_init(sk);
5940                 tcp_sync_mss(sk, icsk->icsk_pmtu_cookie);
5941                 tcp_initialize_rcv_mss(sk);
5942
5943                 tcp_send_synack(sk);
5944 #if 0
5945                 /* Note, we could accept data and URG from this segment.
5946                  * There are no obstacles to make this (except that we must
5947                  * either change tcp_recvmsg() to prevent it from returning data
5948                  * before 3WHS completes per RFC793, or employ TCP Fast Open).
5949                  *
5950                  * However, if we ignore data in ACKless segments sometimes,
5951                  * we have no reasons to accept it sometimes.
5952                  * Also, seems the code doing it in step6 of tcp_rcv_state_process
5953                  * is not flawless. So, discard packet for sanity.
5954                  * Uncomment this return to process the data.
5955                  */
5956                 return -1;
5957 #else
5958                 goto discard;
5959 #endif
5960         }
5961         /* "fifth, if neither of the SYN or RST bits is set then
5962          * drop the segment and return."
5963          */
5964
5965 discard_and_undo:
5966         tcp_clear_options(&tp->rx_opt);
5967         tp->rx_opt.mss_clamp = saved_clamp;
5968         goto discard;
5969
5970 reset_and_undo:
5971         tcp_clear_options(&tp->rx_opt);
5972         tp->rx_opt.mss_clamp = saved_clamp;
5973         return 1;
5974 }
5975
5976 /*
5977  *      This function implements the receiving procedure of RFC 793 for
5978  *      all states except ESTABLISHED and TIME_WAIT.
5979  *      It's called from both tcp_v4_rcv and tcp_v6_rcv and should be
5980  *      address independent.
5981  */
5982
5983 int tcp_rcv_state_process(struct sock *sk, struct sk_buff *skb)
5984 {
5985         struct tcp_sock *tp = tcp_sk(sk);
5986         struct inet_connection_sock *icsk = inet_csk(sk);
5987         const struct tcphdr *th = tcp_hdr(skb);
5988         struct request_sock *req;
5989         int queued = 0;
5990         bool acceptable;
5991
5992         switch (sk->sk_state) {
5993         case TCP_CLOSE:
5994                 goto discard;
5995
5996         case TCP_LISTEN:
5997                 if (th->ack)
5998                         return 1;
5999
6000                 if (th->rst)
6001                         goto discard;
6002
6003                 if (th->syn) {
6004                         if (th->fin)
6005                                 goto discard;
6006                         /* It is possible that we process SYN packets from backlog,
6007                          * so we need to make sure to disable BH and RCU right there.
6008                          */
6009                         rcu_read_lock();
6010                         local_bh_disable();
6011                         acceptable = icsk->icsk_af_ops->conn_request(sk, skb) >= 0;
6012                         local_bh_enable();
6013                         rcu_read_unlock();
6014
6015                         if (!acceptable)
6016                                 return 1;
6017                         consume_skb(skb);
6018                         return 0;
6019                 }
6020                 goto discard;
6021
6022         case TCP_SYN_SENT:
6023                 tp->rx_opt.saw_tstamp = 0;
6024                 queued = tcp_rcv_synsent_state_process(sk, skb, th);
6025                 if (queued >= 0)
6026                         return queued;
6027
6028                 /* Do step6 onward by hand. */
6029                 tcp_urg(sk, skb, th);
6030                 __kfree_skb(skb);
6031                 tcp_data_snd_check(sk);
6032                 return 0;
6033         }
6034
6035         tp->rx_opt.saw_tstamp = 0;
6036         req = tp->fastopen_rsk;
6037         if (req) {
6038                 WARN_ON_ONCE(sk->sk_state != TCP_SYN_RECV &&
6039                     sk->sk_state != TCP_FIN_WAIT1);
6040
6041                 if (!tcp_check_req(sk, skb, req, true))
6042                         goto discard;
6043         }
6044
6045         if (!th->ack && !th->rst && !th->syn)
6046                 goto discard;
6047
6048         if (!tcp_validate_incoming(sk, skb, th, 0))
6049                 return 0;
6050
6051         /* step 5: check the ACK field */
6052         acceptable = tcp_ack(sk, skb, FLAG_SLOWPATH |
6053                                       FLAG_UPDATE_TS_RECENT |
6054                                       FLAG_NO_CHALLENGE_ACK) > 0;
6055
6056         if (!acceptable) {
6057                 if (sk->sk_state == TCP_SYN_RECV)
6058                         return 1;       /* send one RST */
6059                 tcp_send_challenge_ack(sk, skb);
6060                 goto discard;
6061         }
6062         switch (sk->sk_state) {
6063         case TCP_SYN_RECV:
6064                 if (!tp->srtt_us)
6065                         tcp_synack_rtt_meas(sk, req);
6066
6067                 /* Once we leave TCP_SYN_RECV, we no longer need req
6068                  * so release it.
6069                  */
6070                 if (req) {
6071                         inet_csk(sk)->icsk_retransmits = 0;
6072                         reqsk_fastopen_remove(sk, req, false);
6073                 } else {
6074                         /* Make sure socket is routed, for correct metrics. */
6075                         icsk->icsk_af_ops->rebuild_header(sk);
6076                         tcp_init_congestion_control(sk);
6077
6078                         tcp_mtup_init(sk);
6079                         tp->copied_seq = tp->rcv_nxt;
6080                         tcp_init_buffer_space(sk);
6081                 }
6082                 smp_mb();
6083                 tcp_set_state(sk, TCP_ESTABLISHED);
6084                 sk->sk_state_change(sk);
6085
6086                 /* Note, that this wakeup is only for marginal crossed SYN case.
6087                  * Passively open sockets are not waked up, because
6088                  * sk->sk_sleep == NULL and sk->sk_socket == NULL.
6089                  */
6090                 if (sk->sk_socket)
6091                         sk_wake_async(sk, SOCK_WAKE_IO, POLL_OUT);
6092
6093                 tp->snd_una = TCP_SKB_CB(skb)->ack_seq;
6094                 tp->snd_wnd = ntohs(th->window) << tp->rx_opt.snd_wscale;
6095                 tcp_init_wl(tp, TCP_SKB_CB(skb)->seq);
6096
6097                 if (tp->rx_opt.tstamp_ok)
6098                         tp->advmss -= TCPOLEN_TSTAMP_ALIGNED;
6099
6100                 if (req) {
6101                         /* Re-arm the timer because data may have been sent out.
6102                          * This is similar to the regular data transmission case
6103                          * when new data has just been ack'ed.
6104                          *
6105                          * (TFO) - we could try to be more aggressive and
6106                          * retransmitting any data sooner based on when they
6107                          * are sent out.
6108                          */
6109                         tcp_rearm_rto(sk);
6110                 } else
6111                         tcp_init_metrics(sk);
6112
6113                 if (!inet_csk(sk)->icsk_ca_ops->cong_control)
6114                         tcp_update_pacing_rate(sk);
6115
6116                 /* Prevent spurious tcp_cwnd_restart() on first data packet */
6117                 tp->lsndtime = tcp_time_stamp;
6118
6119                 tcp_initialize_rcv_mss(sk);
6120                 tcp_fast_path_on(tp);
6121                 break;
6122
6123         case TCP_FIN_WAIT1: {
6124                 struct dst_entry *dst;
6125                 int tmo;
6126
6127                 /* If we enter the TCP_FIN_WAIT1 state and we are a
6128                  * Fast Open socket and this is the first acceptable
6129                  * ACK we have received, this would have acknowledged
6130                  * our SYNACK so stop the SYNACK timer.
6131                  */
6132                 if (req) {
6133                         /* We no longer need the request sock. */
6134                         reqsk_fastopen_remove(sk, req, false);
6135                         tcp_rearm_rto(sk);
6136                 }
6137                 if (tp->snd_una != tp->write_seq)
6138                         break;
6139
6140                 tcp_set_state(sk, TCP_FIN_WAIT2);
6141                 sk->sk_shutdown |= SEND_SHUTDOWN;
6142
6143                 dst = __sk_dst_get(sk);
6144                 if (dst)
6145                         dst_confirm(dst);
6146
6147                 if (!sock_flag(sk, SOCK_DEAD)) {
6148                         /* Wake up lingering close() */
6149                         sk->sk_state_change(sk);
6150                         break;
6151                 }
6152
6153                 if (tp->linger2 < 0 ||
6154                     (TCP_SKB_CB(skb)->end_seq != TCP_SKB_CB(skb)->seq &&
6155                      after(TCP_SKB_CB(skb)->end_seq - th->fin, tp->rcv_nxt))) {
6156                         tcp_done(sk);
6157                         NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPABORTONDATA);
6158                         return 1;
6159                 }
6160
6161                 tmo = tcp_fin_time(sk);
6162                 if (tmo > TCP_TIMEWAIT_LEN) {
6163                         inet_csk_reset_keepalive_timer(sk, tmo - TCP_TIMEWAIT_LEN);
6164                 } else if (th->fin || sock_owned_by_user(sk)) {
6165                         /* Bad case. We could lose such FIN otherwise.
6166                          * It is not a big problem, but it looks confusing
6167                          * and not so rare event. We still can lose it now,
6168                          * if it spins in bh_lock_sock(), but it is really
6169                          * marginal case.
6170                          */
6171                         inet_csk_reset_keepalive_timer(sk, tmo);
6172                 } else {
6173                         tcp_time_wait(sk, TCP_FIN_WAIT2, tmo);
6174                         goto discard;
6175                 }
6176                 break;
6177         }
6178
6179         case TCP_CLOSING:
6180                 if (tp->snd_una == tp->write_seq) {
6181                         tcp_time_wait(sk, TCP_TIME_WAIT, 0);
6182                         goto discard;
6183                 }
6184                 break;
6185
6186         case TCP_LAST_ACK:
6187                 if (tp->snd_una == tp->write_seq) {
6188                         tcp_update_metrics(sk);
6189                         tcp_done(sk);
6190                         goto discard;
6191                 }
6192                 break;
6193         }
6194
6195         /* step 6: check the URG bit */
6196         tcp_urg(sk, skb, th);
6197
6198         /* step 7: process the segment text */
6199         switch (sk->sk_state) {
6200         case TCP_CLOSE_WAIT:
6201         case TCP_CLOSING:
6202         case TCP_LAST_ACK:
6203                 if (!before(TCP_SKB_CB(skb)->seq, tp->rcv_nxt))
6204                         break;
6205         case TCP_FIN_WAIT1:
6206         case TCP_FIN_WAIT2:
6207                 /* RFC 793 says to queue data in these states,
6208                  * RFC 1122 says we MUST send a reset.
6209                  * BSD 4.4 also does reset.
6210                  */
6211                 if (sk->sk_shutdown & RCV_SHUTDOWN) {
6212                         if (TCP_SKB_CB(skb)->end_seq != TCP_SKB_CB(skb)->seq &&
6213                             after(TCP_SKB_CB(skb)->end_seq - th->fin, tp->rcv_nxt)) {
6214                                 NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPABORTONDATA);
6215                                 tcp_reset(sk);
6216                                 return 1;
6217                         }
6218                 }
6219                 /* Fall through */
6220         case TCP_ESTABLISHED:
6221                 tcp_data_queue(sk, skb);
6222                 queued = 1;
6223                 break;
6224         }
6225
6226         /* tcp_data could move socket to TIME-WAIT */
6227         if (sk->sk_state != TCP_CLOSE) {
6228                 tcp_data_snd_check(sk);
6229                 tcp_ack_snd_check(sk);
6230         }
6231
6232         if (!queued) {
6233 discard:
6234                 tcp_drop(sk, skb);
6235         }
6236         return 0;
6237 }
6238 EXPORT_SYMBOL(tcp_rcv_state_process);
6239
6240 static inline void pr_drop_req(struct request_sock *req, __u16 port, int family)
6241 {
6242         struct inet_request_sock *ireq = inet_rsk(req);
6243
6244         if (family == AF_INET)
6245                 net_dbg_ratelimited("drop open request from %pI4/%u\n",
6246                                     &ireq->ir_rmt_addr, port);
6247 #if IS_ENABLED(CONFIG_IPV6)
6248         else if (family == AF_INET6)
6249                 net_dbg_ratelimited("drop open request from %pI6/%u\n",
6250                                     &ireq->ir_v6_rmt_addr, port);
6251 #endif
6252 }
6253
6254 /* RFC3168 : 6.1.1 SYN packets must not have ECT/ECN bits set
6255  *
6256  * If we receive a SYN packet with these bits set, it means a
6257  * network is playing bad games with TOS bits. In order to
6258  * avoid possible false congestion notifications, we disable
6259  * TCP ECN negotiation.
6260  *
6261  * Exception: tcp_ca wants ECN. This is required for DCTCP
6262  * congestion control: Linux DCTCP asserts ECT on all packets,
6263  * including SYN, which is most optimal solution; however,
6264  * others, such as FreeBSD do not.
6265  */
6266 static void tcp_ecn_create_request(struct request_sock *req,
6267                                    const struct sk_buff *skb,
6268                                    const struct sock *listen_sk,
6269                                    const struct dst_entry *dst)
6270 {
6271         const struct tcphdr *th = tcp_hdr(skb);
6272         const struct net *net = sock_net(listen_sk);
6273         bool th_ecn = th->ece && th->cwr;
6274         bool ect, ecn_ok;
6275         u32 ecn_ok_dst;
6276
6277         if (!th_ecn)
6278                 return;
6279
6280         ect = !INET_ECN_is_not_ect(TCP_SKB_CB(skb)->ip_dsfield);
6281         ecn_ok_dst = dst_feature(dst, DST_FEATURE_ECN_MASK);
6282         ecn_ok = net->ipv4.sysctl_tcp_ecn || ecn_ok_dst;
6283
6284         if ((!ect && ecn_ok) || tcp_ca_needs_ecn(listen_sk) ||
6285             (ecn_ok_dst & DST_FEATURE_ECN_CA))
6286                 inet_rsk(req)->ecn_ok = 1;
6287 }
6288
6289 static void tcp_openreq_init(struct request_sock *req,
6290                              const struct tcp_options_received *rx_opt,
6291                              struct sk_buff *skb, const struct sock *sk)
6292 {
6293         struct inet_request_sock *ireq = inet_rsk(req);
6294
6295         req->rsk_rcv_wnd = 0;           /* So that tcp_send_synack() knows! */
6296         req->cookie_ts = 0;
6297         tcp_rsk(req)->rcv_isn = TCP_SKB_CB(skb)->seq;
6298         tcp_rsk(req)->rcv_nxt = TCP_SKB_CB(skb)->seq + 1;
6299         skb_mstamp_get(&tcp_rsk(req)->snt_synack);
6300         tcp_rsk(req)->last_oow_ack_time = 0;
6301         req->mss = rx_opt->mss_clamp;
6302         req->ts_recent = rx_opt->saw_tstamp ? rx_opt->rcv_tsval : 0;
6303         ireq->tstamp_ok = rx_opt->tstamp_ok;
6304         ireq->sack_ok = rx_opt->sack_ok;
6305         ireq->snd_wscale = rx_opt->snd_wscale;
6306         ireq->wscale_ok = rx_opt->wscale_ok;
6307         ireq->acked = 0;
6308         ireq->ecn_ok = 0;
6309         ireq->ir_rmt_port = tcp_hdr(skb)->source;
6310         ireq->ir_num = ntohs(tcp_hdr(skb)->dest);
6311         ireq->ir_mark = inet_request_mark(sk, skb);
6312 }
6313
6314 struct request_sock *inet_reqsk_alloc(const struct request_sock_ops *ops,
6315                                       struct sock *sk_listener,
6316                                       bool attach_listener)
6317 {
6318         struct request_sock *req = reqsk_alloc(ops, sk_listener,
6319                                                attach_listener);
6320
6321         if (req) {
6322                 struct inet_request_sock *ireq = inet_rsk(req);
6323
6324                 kmemcheck_annotate_bitfield(ireq, flags);
6325                 ireq->ireq_opt = NULL;
6326 #if IS_ENABLED(CONFIG_IPV6)
6327                 ireq->pktopts = NULL;
6328 #endif
6329                 atomic64_set(&ireq->ir_cookie, 0);
6330                 ireq->ireq_state = TCP_NEW_SYN_RECV;
6331                 write_pnet(&ireq->ireq_net, sock_net(sk_listener));
6332                 ireq->ireq_family = sk_listener->sk_family;
6333         }
6334
6335         return req;
6336 }
6337 EXPORT_SYMBOL(inet_reqsk_alloc);
6338
6339 /*
6340  * Return true if a syncookie should be sent
6341  */
6342 static bool tcp_syn_flood_action(const struct sock *sk,
6343                                  const struct sk_buff *skb,
6344                                  const char *proto)
6345 {
6346         struct request_sock_queue *queue = &inet_csk(sk)->icsk_accept_queue;
6347         const char *msg = "Dropping request";
6348         bool want_cookie = false;
6349         struct net *net = sock_net(sk);
6350
6351 #ifdef CONFIG_SYN_COOKIES
6352         if (net->ipv4.sysctl_tcp_syncookies) {
6353                 msg = "Sending cookies";
6354                 want_cookie = true;
6355                 __NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPREQQFULLDOCOOKIES);
6356         } else
6357 #endif
6358                 __NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPREQQFULLDROP);
6359
6360         if (!queue->synflood_warned &&
6361             net->ipv4.sysctl_tcp_syncookies != 2 &&
6362             xchg(&queue->synflood_warned, 1) == 0)
6363                 pr_info("%s: Possible SYN flooding on port %d. %s.  Check SNMP counters.\n",
6364                         proto, ntohs(tcp_hdr(skb)->dest), msg);
6365
6366         return want_cookie;
6367 }
6368
6369 static void tcp_reqsk_record_syn(const struct sock *sk,
6370                                  struct request_sock *req,
6371                                  const struct sk_buff *skb)
6372 {
6373         if (tcp_sk(sk)->save_syn) {
6374                 u32 len = skb_network_header_len(skb) + tcp_hdrlen(skb);
6375                 u32 *copy;
6376
6377                 copy = kmalloc(len + sizeof(u32), GFP_ATOMIC);
6378                 if (copy) {
6379                         copy[0] = len;
6380                         memcpy(&copy[1], skb_network_header(skb), len);
6381                         req->saved_syn = copy;
6382                 }
6383         }
6384 }
6385
6386 int tcp_conn_request(struct request_sock_ops *rsk_ops,
6387                      const struct tcp_request_sock_ops *af_ops,
6388                      struct sock *sk, struct sk_buff *skb)
6389 {
6390         struct tcp_fastopen_cookie foc = { .len = -1 };
6391         __u32 isn = TCP_SKB_CB(skb)->tcp_tw_isn;
6392         struct tcp_options_received tmp_opt;
6393         struct tcp_sock *tp = tcp_sk(sk);
6394         struct net *net = sock_net(sk);
6395         struct sock *fastopen_sk = NULL;
6396         struct dst_entry *dst = NULL;
6397         struct request_sock *req;
6398         bool want_cookie = false;
6399         struct flowi fl;
6400
6401         /* TW buckets are converted to open requests without
6402          * limitations, they conserve resources and peer is
6403          * evidently real one.
6404          */
6405         if ((net->ipv4.sysctl_tcp_syncookies == 2 ||
6406              inet_csk_reqsk_queue_is_full(sk)) && !isn) {
6407                 want_cookie = tcp_syn_flood_action(sk, skb, rsk_ops->slab_name);
6408                 if (!want_cookie)
6409                         goto drop;
6410         }
6411
6412         if (sk_acceptq_is_full(sk)) {
6413                 NET_INC_STATS(sock_net(sk), LINUX_MIB_LISTENOVERFLOWS);
6414                 goto drop;
6415         }
6416
6417         req = inet_reqsk_alloc(rsk_ops, sk, !want_cookie);
6418         if (!req)
6419                 goto drop;
6420
6421         tcp_rsk(req)->af_specific = af_ops;
6422
6423         tcp_clear_options(&tmp_opt);
6424         tmp_opt.mss_clamp = af_ops->mss_clamp;
6425         tmp_opt.user_mss  = tp->rx_opt.user_mss;
6426         tcp_parse_options(skb, &tmp_opt, 0, want_cookie ? NULL : &foc);
6427
6428         if (want_cookie && !tmp_opt.saw_tstamp)
6429                 tcp_clear_options(&tmp_opt);
6430
6431         tmp_opt.tstamp_ok = tmp_opt.saw_tstamp;
6432         tcp_openreq_init(req, &tmp_opt, skb, sk);
6433         inet_rsk(req)->no_srccheck = inet_sk(sk)->transparent;
6434
6435         /* Note: tcp_v6_init_req() might override ir_iif for link locals */
6436         inet_rsk(req)->ir_iif = inet_request_bound_dev_if(sk, skb);
6437
6438         af_ops->init_req(req, sk, skb);
6439
6440         if (security_inet_conn_request(sk, skb, req))
6441                 goto drop_and_free;
6442
6443         if (!want_cookie && !isn) {
6444                 /* VJ's idea. We save last timestamp seen
6445                  * from the destination in peer table, when entering
6446                  * state TIME-WAIT, and check against it before
6447                  * accepting new connection request.
6448                  *
6449                  * If "isn" is not zero, this request hit alive
6450                  * timewait bucket, so that all the necessary checks
6451                  * are made in the function processing timewait state.
6452                  */
6453                 if (tcp_death_row.sysctl_tw_recycle) {
6454                         bool strict;
6455
6456                         dst = af_ops->route_req(sk, &fl, req, &strict);
6457
6458                         if (dst && strict &&
6459                             !tcp_peer_is_proven(req, dst, true,
6460                                                 tmp_opt.saw_tstamp)) {
6461                                 NET_INC_STATS(sock_net(sk), LINUX_MIB_PAWSPASSIVEREJECTED);
6462                                 goto drop_and_release;
6463                         }
6464                 }
6465                 /* Kill the following clause, if you dislike this way. */
6466                 else if (!net->ipv4.sysctl_tcp_syncookies &&
6467                          (sysctl_max_syn_backlog - inet_csk_reqsk_queue_len(sk) <
6468                           (sysctl_max_syn_backlog >> 2)) &&
6469                          !tcp_peer_is_proven(req, dst, false,
6470                                              tmp_opt.saw_tstamp)) {
6471                         /* Without syncookies last quarter of
6472                          * backlog is filled with destinations,
6473                          * proven to be alive.
6474                          * It means that we continue to communicate
6475                          * to destinations, already remembered
6476                          * to the moment of synflood.
6477                          */
6478                         pr_drop_req(req, ntohs(tcp_hdr(skb)->source),
6479                                     rsk_ops->family);
6480                         goto drop_and_release;
6481                 }
6482
6483                 isn = af_ops->init_seq(skb);
6484         }
6485         if (!dst) {
6486                 dst = af_ops->route_req(sk, &fl, req, NULL);
6487                 if (!dst)
6488                         goto drop_and_free;
6489         }
6490
6491         tcp_ecn_create_request(req, skb, sk, dst);
6492
6493         if (want_cookie) {
6494                 isn = cookie_init_sequence(af_ops, sk, skb, &req->mss);
6495                 req->cookie_ts = tmp_opt.tstamp_ok;
6496                 if (!tmp_opt.tstamp_ok)
6497                         inet_rsk(req)->ecn_ok = 0;
6498         }
6499
6500         tcp_rsk(req)->snt_isn = isn;
6501         tcp_rsk(req)->txhash = net_tx_rndhash();
6502         tcp_openreq_init_rwin(req, sk, dst);
6503         if (!want_cookie) {
6504                 tcp_reqsk_record_syn(sk, req, skb);
6505                 fastopen_sk = tcp_try_fastopen(sk, skb, req, &foc, dst);
6506         }
6507         if (fastopen_sk) {
6508                 af_ops->send_synack(fastopen_sk, dst, &fl, req,
6509                                     &foc, TCP_SYNACK_FASTOPEN);
6510                 /* Add the child socket directly into the accept queue */
6511                 if (!inet_csk_reqsk_queue_add(sk, req, fastopen_sk)) {
6512                         reqsk_fastopen_remove(fastopen_sk, req, false);
6513                         bh_unlock_sock(fastopen_sk);
6514                         sock_put(fastopen_sk);
6515                         reqsk_put(req);
6516                         goto drop;
6517                 }
6518                 sk->sk_data_ready(sk);
6519                 bh_unlock_sock(fastopen_sk);
6520                 sock_put(fastopen_sk);
6521         } else {
6522                 tcp_rsk(req)->tfo_listener = false;
6523                 if (!want_cookie)
6524                         inet_csk_reqsk_queue_hash_add(sk, req, TCP_TIMEOUT_INIT);
6525                 af_ops->send_synack(sk, dst, &fl, req, &foc,
6526                                     !want_cookie ? TCP_SYNACK_NORMAL :
6527                                                    TCP_SYNACK_COOKIE);
6528                 if (want_cookie) {
6529                         reqsk_free(req);
6530                         return 0;
6531                 }
6532         }
6533         reqsk_put(req);
6534         return 0;
6535
6536 drop_and_release:
6537         dst_release(dst);
6538 drop_and_free:
6539         reqsk_free(req);
6540 drop:
6541         tcp_listendrop(sk);
6542         return 0;
6543 }
6544 EXPORT_SYMBOL(tcp_conn_request);