]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - net/ipv4/tcp_output.c
tuntap: properly align skb->head before building skb
[mirror_ubuntu-bionic-kernel.git] / net / ipv4 / tcp_output.c
CommitLineData
1da177e4
LT
1/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * Implementation of the Transmission Control Protocol(TCP).
7 *
02c30a84 8 * Authors: Ross Biro
1da177e4
LT
9 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
10 * Mark Evans, <evansmp@uhura.aston.ac.uk>
11 * Corey Minyard <wf-rch!minyard@relay.EU.net>
12 * Florian La Roche, <flla@stud.uni-sb.de>
13 * Charles Hedrick, <hedrick@klinzhai.rutgers.edu>
14 * Linus Torvalds, <torvalds@cs.helsinki.fi>
15 * Alan Cox, <gw4pts@gw4pts.ampr.org>
16 * Matthew Dillon, <dillon@apollo.west.oic.com>
17 * Arnt Gulbrandsen, <agulbra@nvg.unit.no>
18 * Jorge Cwik, <jorge@laser.satlink.net>
19 */
20
21/*
22 * Changes: Pedro Roque : Retransmit queue handled by TCP.
23 * : Fragmentation on mtu decrease
24 * : Segment collapse on retransmit
25 * : AF independence
26 *
27 * Linus Torvalds : send_delayed_ack
28 * David S. Miller : Charge memory using the right skb
29 * during syn/ack processing.
30 * David S. Miller : Output engine completely rewritten.
31 * Andrea Arcangeli: SYNACK carry ts_recent in tsecr.
32 * Cacophonix Gaul : draft-minshall-nagle-01
33 * J Hadi Salim : ECN support
34 *
35 */
36
91df42be
JP
37#define pr_fmt(fmt) "TCP: " fmt
38
1da177e4
LT
39#include <net/tcp.h>
40
41#include <linux/compiler.h>
5a0e3ad6 42#include <linux/gfp.h>
1da177e4 43#include <linux/module.h>
1da177e4
LT
44
45/* People can turn this off for buggy TCP's found in printers etc. */
ab32ea5d 46int sysctl_tcp_retrans_collapse __read_mostly = 1;
1da177e4 47
09cb105e 48/* People can turn this on to work with those rare, broken TCPs that
15d99e02
RJ
49 * interpret the window field as a signed quantity.
50 */
ab32ea5d 51int sysctl_tcp_workaround_signed_windows __read_mostly = 0;
15d99e02 52
c39c4c6a
WL
53/* Default TSQ limit of four TSO segments */
54int sysctl_tcp_limit_output_bytes __read_mostly = 262144;
46d3ceab 55
1da177e4
LT
56/* This limits the percentage of the congestion window which we
57 * will allow a single TSO frame to consume. Building TSO frames
58 * which are too large can cause TCP streams to be bursty.
59 */
ab32ea5d 60int sysctl_tcp_tso_win_divisor __read_mostly = 3;
1da177e4 61
35089bb2 62/* By default, RFC2861 behavior. */
ab32ea5d 63int sysctl_tcp_slow_start_after_idle __read_mostly = 1;
35089bb2 64
46d3ceab
ED
65static bool tcp_write_xmit(struct sock *sk, unsigned int mss_now, int nonagle,
66 int push_one, gfp_t gfp);
519855c5 67
67edfef7 68/* Account for new data that has been sent to the network. */
cf533ea5 69static void tcp_event_new_data_sent(struct sock *sk, const struct sk_buff *skb)
1da177e4 70{
6ba8a3b1 71 struct inet_connection_sock *icsk = inet_csk(sk);
9e412ba7 72 struct tcp_sock *tp = tcp_sk(sk);
66f5fe62 73 unsigned int prior_packets = tp->packets_out;
9e412ba7 74
fe067e8a 75 tcp_advance_send_head(sk, skb);
1da177e4 76 tp->snd_nxt = TCP_SKB_CB(skb)->end_seq;
8512430e 77
66f5fe62 78 tp->packets_out += tcp_skb_pcount(skb);
bec41a11 79 if (!prior_packets || icsk->icsk_pending == ICSK_TIME_LOSS_PROBE)
750ea2ba 80 tcp_rearm_rto(sk);
f19c29e3 81
f7324acd
DM
82 NET_ADD_STATS(sock_net(sk), LINUX_MIB_TCPORIGDATASENT,
83 tcp_skb_pcount(skb));
1da177e4
LT
84}
85
a4ecb15a
CC
86/* SND.NXT, if window was not shrunk or the amount of shrunk was less than one
87 * window scaling factor due to loss of precision.
1da177e4
LT
88 * If window has been shrunk, what should we make? It is not clear at all.
89 * Using SND.UNA we will fail to open window, SND.NXT is out of window. :-(
90 * Anything in between SND.UNA...SND.UNA+SND.WND also can be already
91 * invalid. OK, let's make this for now:
92 */
cf533ea5 93static inline __u32 tcp_acceptable_seq(const struct sock *sk)
1da177e4 94{
cf533ea5 95 const struct tcp_sock *tp = tcp_sk(sk);
9e412ba7 96
a4ecb15a
CC
97 if (!before(tcp_wnd_end(tp), tp->snd_nxt) ||
98 (tp->rx_opt.wscale_ok &&
99 ((tp->snd_nxt - tcp_wnd_end(tp)) < (1 << tp->rx_opt.rcv_wscale))))
1da177e4
LT
100 return tp->snd_nxt;
101 else
90840def 102 return tcp_wnd_end(tp);
1da177e4
LT
103}
104
105/* Calculate mss to advertise in SYN segment.
106 * RFC1122, RFC1063, draft-ietf-tcpimpl-pmtud-01 state that:
107 *
108 * 1. It is independent of path mtu.
109 * 2. Ideally, it is maximal possible segment size i.e. 65535-40.
110 * 3. For IPv4 it is reasonable to calculate it from maximal MTU of
111 * attached devices, because some buggy hosts are confused by
112 * large MSS.
113 * 4. We do not make 3, we advertise MSS, calculated from first
114 * hop device mtu, but allow to raise it to ip_rt_min_advmss.
115 * This may be overridden via information stored in routing table.
116 * 5. Value 65535 for MSS is valid in IPv6 and means "as large as possible,
117 * probably even Jumbo".
118 */
119static __u16 tcp_advertise_mss(struct sock *sk)
120{
121 struct tcp_sock *tp = tcp_sk(sk);
cf533ea5 122 const struct dst_entry *dst = __sk_dst_get(sk);
1da177e4
LT
123 int mss = tp->advmss;
124
0dbaee3b
DM
125 if (dst) {
126 unsigned int metric = dst_metric_advmss(dst);
127
128 if (metric < mss) {
129 mss = metric;
130 tp->advmss = mss;
131 }
1da177e4
LT
132 }
133
134 return (__u16)mss;
135}
136
137/* RFC2861. Reset CWND after idle period longer RTO to "restart window".
6f021c62
ED
138 * This is the first part of cwnd validation mechanism.
139 */
140void tcp_cwnd_restart(struct sock *sk, s32 delta)
1da177e4 141{
463c84b9 142 struct tcp_sock *tp = tcp_sk(sk);
6f021c62 143 u32 restart_cwnd = tcp_init_cwnd(tp, __sk_dst_get(sk));
1da177e4
LT
144 u32 cwnd = tp->snd_cwnd;
145
6687e988 146 tcp_ca_event(sk, CA_EVENT_CWND_RESTART);
1da177e4 147
6687e988 148 tp->snd_ssthresh = tcp_current_ssthresh(sk);
1da177e4
LT
149 restart_cwnd = min(restart_cwnd, cwnd);
150
463c84b9 151 while ((delta -= inet_csk(sk)->icsk_rto) > 0 && cwnd > restart_cwnd)
1da177e4
LT
152 cwnd >>= 1;
153 tp->snd_cwnd = max(cwnd, restart_cwnd);
c2203cf7 154 tp->snd_cwnd_stamp = tcp_jiffies32;
1da177e4
LT
155 tp->snd_cwnd_used = 0;
156}
157
67edfef7 158/* Congestion state accounting after a packet has been sent. */
40efc6fa 159static void tcp_event_data_sent(struct tcp_sock *tp,
cf533ea5 160 struct sock *sk)
1da177e4 161{
463c84b9 162 struct inet_connection_sock *icsk = inet_csk(sk);
d635fbe2 163 const u32 now = tcp_jiffies32;
1da177e4 164
05c5a46d
NC
165 if (tcp_packets_in_flight(tp) == 0)
166 tcp_ca_event(sk, CA_EVENT_TX_START);
167
1da177e4
LT
168 tp->lsndtime = now;
169
170 /* If it is a reply for ato after last received
171 * packet, enter pingpong mode.
172 */
2251ae46
JM
173 if ((u32)(now - icsk->icsk_ack.lrcvtime) < icsk->icsk_ack.ato)
174 icsk->icsk_ack.pingpong = 1;
1da177e4
LT
175}
176
67edfef7 177/* Account for an ACK we sent. */
40efc6fa 178static inline void tcp_event_ack_sent(struct sock *sk, unsigned int pkts)
1da177e4 179{
463c84b9
ACM
180 tcp_dec_quickack_mode(sk, pkts);
181 inet_csk_clear_xmit_timer(sk, ICSK_TIME_DACK);
1da177e4
LT
182}
183
85f16525
YC
184
185u32 tcp_default_init_rwnd(u32 mss)
186{
187 /* Initial receive window should be twice of TCP_INIT_CWND to
9ef71e0c 188 * enable proper sending of new unsent data during fast recovery
85f16525
YC
189 * (RFC 3517, Section 4, NextSeg() rule (2)). Further place a
190 * limit when mss is larger than 1460.
191 */
192 u32 init_rwnd = TCP_INIT_CWND * 2;
193
194 if (mss > 1460)
195 init_rwnd = max((1460 * init_rwnd) / mss, 2U);
196 return init_rwnd;
197}
198
1da177e4
LT
199/* Determine a window scaling and initial window to offer.
200 * Based on the assumption that the given amount of space
201 * will be offered. Store the results in the tp structure.
202 * NOTE: for smooth operation initial space offering should
203 * be a multiple of mss if possible. We assume here that mss >= 1.
204 * This MUST be enforced by all callers.
205 */
206void tcp_select_initial_window(int __space, __u32 mss,
207 __u32 *rcv_wnd, __u32 *window_clamp,
31d12926 208 int wscale_ok, __u8 *rcv_wscale,
209 __u32 init_rcv_wnd)
1da177e4
LT
210{
211 unsigned int space = (__space < 0 ? 0 : __space);
212
213 /* If no clamp set the clamp to the max possible scaled window */
214 if (*window_clamp == 0)
589c49cb 215 (*window_clamp) = (U16_MAX << TCP_MAX_WSCALE);
1da177e4
LT
216 space = min(*window_clamp, space);
217
218 /* Quantize space offering to a multiple of mss if possible. */
219 if (space > mss)
589c49cb 220 space = rounddown(space, mss);
1da177e4
LT
221
222 /* NOTE: offering an initial window larger than 32767
15d99e02
RJ
223 * will break some buggy TCP stacks. If the admin tells us
224 * it is likely we could be speaking with such a buggy stack
225 * we will truncate our initial window offering to 32K-1
226 * unless the remote has sent us a window scaling option,
227 * which we interpret as a sign the remote TCP is not
228 * misinterpreting the window field as a signed quantity.
1da177e4 229 */
15d99e02
RJ
230 if (sysctl_tcp_workaround_signed_windows)
231 (*rcv_wnd) = min(space, MAX_TCP_WINDOW);
232 else
233 (*rcv_wnd) = space;
234
1da177e4
LT
235 (*rcv_wscale) = 0;
236 if (wscale_ok) {
589c49cb 237 /* Set window scaling on max possible window */
f626300a
SHY
238 space = max_t(u32, space, sysctl_tcp_rmem[2]);
239 space = max_t(u32, space, sysctl_rmem_max);
316c1592 240 space = min_t(u32, space, *window_clamp);
589c49cb 241 while (space > U16_MAX && (*rcv_wscale) < TCP_MAX_WSCALE) {
1da177e4
LT
242 space >>= 1;
243 (*rcv_wscale)++;
244 }
245 }
246
056834d9 247 if (mss > (1 << *rcv_wscale)) {
85f16525
YC
248 if (!init_rcv_wnd) /* Use default unless specified otherwise */
249 init_rcv_wnd = tcp_default_init_rwnd(mss);
250 *rcv_wnd = min(*rcv_wnd, init_rcv_wnd * mss);
1da177e4
LT
251 }
252
253 /* Set the clamp no higher than max representable value */
589c49cb 254 (*window_clamp) = min_t(__u32, U16_MAX << (*rcv_wscale), *window_clamp);
1da177e4 255}
4bc2f18b 256EXPORT_SYMBOL(tcp_select_initial_window);
1da177e4
LT
257
258/* Chose a new window to advertise, update state in tcp_sock for the
259 * socket, and return result with RFC1323 scaling applied. The return
260 * value can be stuffed directly into th->window for an outgoing
261 * frame.
262 */
40efc6fa 263static u16 tcp_select_window(struct sock *sk)
1da177e4
LT
264{
265 struct tcp_sock *tp = tcp_sk(sk);
8e165e20 266 u32 old_win = tp->rcv_wnd;
1da177e4
LT
267 u32 cur_win = tcp_receive_window(tp);
268 u32 new_win = __tcp_select_window(sk);
269
270 /* Never shrink the offered window */
2de979bd 271 if (new_win < cur_win) {
1da177e4
LT
272 /* Danger Will Robinson!
273 * Don't update rcv_wup/rcv_wnd here or else
274 * we will not be able to advertise a zero
275 * window in time. --DaveM
276 *
277 * Relax Will Robinson.
278 */
8e165e20
FW
279 if (new_win == 0)
280 NET_INC_STATS(sock_net(sk),
281 LINUX_MIB_TCPWANTZEROWINDOWADV);
607bfbf2 282 new_win = ALIGN(cur_win, 1 << tp->rx_opt.rcv_wscale);
1da177e4
LT
283 }
284 tp->rcv_wnd = new_win;
285 tp->rcv_wup = tp->rcv_nxt;
286
287 /* Make sure we do not exceed the maximum possible
288 * scaled window.
289 */
15d99e02 290 if (!tp->rx_opt.rcv_wscale && sysctl_tcp_workaround_signed_windows)
1da177e4
LT
291 new_win = min(new_win, MAX_TCP_WINDOW);
292 else
293 new_win = min(new_win, (65535U << tp->rx_opt.rcv_wscale));
294
295 /* RFC1323 scaling applied */
296 new_win >>= tp->rx_opt.rcv_wscale;
297
31770e34 298 /* If we advertise zero window, disable fast path. */
8e165e20 299 if (new_win == 0) {
31770e34 300 tp->pred_flags = 0;
8e165e20
FW
301 if (old_win)
302 NET_INC_STATS(sock_net(sk),
303 LINUX_MIB_TCPTOZEROWINDOWADV);
304 } else if (old_win == 0) {
305 NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPFROMZEROWINDOWADV);
306 }
1da177e4
LT
307
308 return new_win;
309}
310
67edfef7 311/* Packet ECN state for a SYN-ACK */
735d3831 312static void tcp_ecn_send_synack(struct sock *sk, struct sk_buff *skb)
bdf1ee5d 313{
30e502a3
DB
314 const struct tcp_sock *tp = tcp_sk(sk);
315
4de075e0 316 TCP_SKB_CB(skb)->tcp_flags &= ~TCPHDR_CWR;
056834d9 317 if (!(tp->ecn_flags & TCP_ECN_OK))
4de075e0 318 TCP_SKB_CB(skb)->tcp_flags &= ~TCPHDR_ECE;
91b5b21c
LB
319 else if (tcp_ca_needs_ecn(sk) ||
320 tcp_bpf_ca_needs_ecn(sk))
30e502a3 321 INET_ECN_xmit(sk);
bdf1ee5d
IJ
322}
323
67edfef7 324/* Packet ECN state for a SYN. */
735d3831 325static void tcp_ecn_send_syn(struct sock *sk, struct sk_buff *skb)
bdf1ee5d
IJ
326{
327 struct tcp_sock *tp = tcp_sk(sk);
91b5b21c 328 bool bpf_needs_ecn = tcp_bpf_ca_needs_ecn(sk);
f7b3bec6 329 bool use_ecn = sock_net(sk)->ipv4.sysctl_tcp_ecn == 1 ||
91b5b21c 330 tcp_ca_needs_ecn(sk) || bpf_needs_ecn;
f7b3bec6
FW
331
332 if (!use_ecn) {
333 const struct dst_entry *dst = __sk_dst_get(sk);
334
335 if (dst && dst_feature(dst, RTAX_FEATURE_ECN))
336 use_ecn = true;
337 }
bdf1ee5d
IJ
338
339 tp->ecn_flags = 0;
f7b3bec6
FW
340
341 if (use_ecn) {
4de075e0 342 TCP_SKB_CB(skb)->tcp_flags |= TCPHDR_ECE | TCPHDR_CWR;
bdf1ee5d 343 tp->ecn_flags = TCP_ECN_OK;
91b5b21c 344 if (tcp_ca_needs_ecn(sk) || bpf_needs_ecn)
30e502a3 345 INET_ECN_xmit(sk);
bdf1ee5d
IJ
346 }
347}
348
49213555
DB
349static void tcp_ecn_clear_syn(struct sock *sk, struct sk_buff *skb)
350{
351 if (sock_net(sk)->ipv4.sysctl_tcp_ecn_fallback)
352 /* tp->ecn_flags are cleared at a later point in time when
353 * SYN ACK is ultimatively being received.
354 */
355 TCP_SKB_CB(skb)->tcp_flags &= ~(TCPHDR_ECE | TCPHDR_CWR);
356}
357
735d3831 358static void
6ac705b1 359tcp_ecn_make_synack(const struct request_sock *req, struct tcphdr *th)
bdf1ee5d 360{
6ac705b1 361 if (inet_rsk(req)->ecn_ok)
bdf1ee5d
IJ
362 th->ece = 1;
363}
364
67edfef7
AK
365/* Set up ECN state for a packet on a ESTABLISHED socket that is about to
366 * be sent.
367 */
735d3831 368static void tcp_ecn_send(struct sock *sk, struct sk_buff *skb,
ea1627c2 369 struct tcphdr *th, int tcp_header_len)
bdf1ee5d
IJ
370{
371 struct tcp_sock *tp = tcp_sk(sk);
372
373 if (tp->ecn_flags & TCP_ECN_OK) {
374 /* Not-retransmitted data segment: set ECT and inject CWR. */
375 if (skb->len != tcp_header_len &&
376 !before(TCP_SKB_CB(skb)->seq, tp->snd_nxt)) {
377 INET_ECN_xmit(sk);
056834d9 378 if (tp->ecn_flags & TCP_ECN_QUEUE_CWR) {
bdf1ee5d 379 tp->ecn_flags &= ~TCP_ECN_QUEUE_CWR;
ea1627c2 380 th->cwr = 1;
bdf1ee5d
IJ
381 skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN;
382 }
30e502a3 383 } else if (!tcp_ca_needs_ecn(sk)) {
bdf1ee5d
IJ
384 /* ACK or retransmitted segment: clear ECT|CE */
385 INET_ECN_dontxmit(sk);
386 }
387 if (tp->ecn_flags & TCP_ECN_DEMAND_CWR)
ea1627c2 388 th->ece = 1;
bdf1ee5d
IJ
389 }
390}
391
e870a8ef
IJ
392/* Constructs common control bits of non-data skb. If SYN/FIN is present,
393 * auto increment end seqno.
394 */
395static void tcp_init_nondata_skb(struct sk_buff *skb, u32 seq, u8 flags)
396{
2e8e18ef 397 skb->ip_summed = CHECKSUM_PARTIAL;
e870a8ef
IJ
398 skb->csum = 0;
399
4de075e0 400 TCP_SKB_CB(skb)->tcp_flags = flags;
e870a8ef
IJ
401 TCP_SKB_CB(skb)->sacked = 0;
402
cd7d8498 403 tcp_skb_pcount_set(skb, 1);
e870a8ef
IJ
404
405 TCP_SKB_CB(skb)->seq = seq;
a3433f35 406 if (flags & (TCPHDR_SYN | TCPHDR_FIN))
e870a8ef
IJ
407 seq++;
408 TCP_SKB_CB(skb)->end_seq = seq;
409}
410
a2a385d6 411static inline bool tcp_urg_mode(const struct tcp_sock *tp)
33f5f57e
IJ
412{
413 return tp->snd_una != tp->snd_up;
414}
415
33ad798c
AL
416#define OPTION_SACK_ADVERTISE (1 << 0)
417#define OPTION_TS (1 << 1)
418#define OPTION_MD5 (1 << 2)
89e95a61 419#define OPTION_WSCALE (1 << 3)
2100c8d2 420#define OPTION_FAST_OPEN_COOKIE (1 << 8)
33ad798c
AL
421
422struct tcp_out_options {
2100c8d2
YC
423 u16 options; /* bit field of OPTION_* */
424 u16 mss; /* 0 to disable */
33ad798c
AL
425 u8 ws; /* window scale, 0 to disable */
426 u8 num_sack_blocks; /* number of SACK blocks to include */
bd0388ae 427 u8 hash_size; /* bytes in hash_location */
bd0388ae 428 __u8 *hash_location; /* temporary pointer, overloaded */
2100c8d2
YC
429 __u32 tsval, tsecr; /* need to include OPTION_TS */
430 struct tcp_fastopen_cookie *fastopen_cookie; /* Fast open cookie */
33ad798c
AL
431};
432
67edfef7
AK
433/* Write previously computed TCP options to the packet.
434 *
435 * Beware: Something in the Internet is very sensitive to the ordering of
fd6149d3
IJ
436 * TCP options, we learned this through the hard way, so be careful here.
437 * Luckily we can at least blame others for their non-compliance but from
8e3bff96 438 * inter-operability perspective it seems that we're somewhat stuck with
fd6149d3
IJ
439 * the ordering which we have been using if we want to keep working with
440 * those broken things (not that it currently hurts anybody as there isn't
441 * particular reason why the ordering would need to be changed).
442 *
443 * At least SACK_PERM as the first option is known to lead to a disaster
444 * (but it may well be that other scenarios fail similarly).
445 */
33ad798c 446static void tcp_options_write(__be32 *ptr, struct tcp_sock *tp,
bd0388ae
WAS
447 struct tcp_out_options *opts)
448{
2100c8d2 449 u16 options = opts->options; /* mungable copy */
bd0388ae 450
bd0388ae 451 if (unlikely(OPTION_MD5 & options)) {
1a2c6181
CP
452 *ptr++ = htonl((TCPOPT_NOP << 24) | (TCPOPT_NOP << 16) |
453 (TCPOPT_MD5SIG << 8) | TCPOLEN_MD5SIG);
bd0388ae
WAS
454 /* overload cookie hash location */
455 opts->hash_location = (__u8 *)ptr;
33ad798c 456 ptr += 4;
40efc6fa 457 }
33ad798c 458
fd6149d3
IJ
459 if (unlikely(opts->mss)) {
460 *ptr++ = htonl((TCPOPT_MSS << 24) |
461 (TCPOLEN_MSS << 16) |
462 opts->mss);
463 }
464
bd0388ae
WAS
465 if (likely(OPTION_TS & options)) {
466 if (unlikely(OPTION_SACK_ADVERTISE & options)) {
33ad798c
AL
467 *ptr++ = htonl((TCPOPT_SACK_PERM << 24) |
468 (TCPOLEN_SACK_PERM << 16) |
469 (TCPOPT_TIMESTAMP << 8) |
470 TCPOLEN_TIMESTAMP);
bd0388ae 471 options &= ~OPTION_SACK_ADVERTISE;
33ad798c
AL
472 } else {
473 *ptr++ = htonl((TCPOPT_NOP << 24) |
474 (TCPOPT_NOP << 16) |
475 (TCPOPT_TIMESTAMP << 8) |
476 TCPOLEN_TIMESTAMP);
477 }
478 *ptr++ = htonl(opts->tsval);
479 *ptr++ = htonl(opts->tsecr);
480 }
481
bd0388ae 482 if (unlikely(OPTION_SACK_ADVERTISE & options)) {
33ad798c
AL
483 *ptr++ = htonl((TCPOPT_NOP << 24) |
484 (TCPOPT_NOP << 16) |
485 (TCPOPT_SACK_PERM << 8) |
486 TCPOLEN_SACK_PERM);
487 }
488
bd0388ae 489 if (unlikely(OPTION_WSCALE & options)) {
33ad798c
AL
490 *ptr++ = htonl((TCPOPT_NOP << 24) |
491 (TCPOPT_WINDOW << 16) |
492 (TCPOLEN_WINDOW << 8) |
493 opts->ws);
494 }
495
496 if (unlikely(opts->num_sack_blocks)) {
497 struct tcp_sack_block *sp = tp->rx_opt.dsack ?
498 tp->duplicate_sack : tp->selective_acks;
40efc6fa
SH
499 int this_sack;
500
501 *ptr++ = htonl((TCPOPT_NOP << 24) |
502 (TCPOPT_NOP << 16) |
503 (TCPOPT_SACK << 8) |
33ad798c 504 (TCPOLEN_SACK_BASE + (opts->num_sack_blocks *
40efc6fa 505 TCPOLEN_SACK_PERBLOCK)));
2de979bd 506
33ad798c
AL
507 for (this_sack = 0; this_sack < opts->num_sack_blocks;
508 ++this_sack) {
40efc6fa
SH
509 *ptr++ = htonl(sp[this_sack].start_seq);
510 *ptr++ = htonl(sp[this_sack].end_seq);
511 }
2de979bd 512
5861f8e5 513 tp->rx_opt.dsack = 0;
40efc6fa 514 }
2100c8d2
YC
515
516 if (unlikely(OPTION_FAST_OPEN_COOKIE & options)) {
517 struct tcp_fastopen_cookie *foc = opts->fastopen_cookie;
7f9b838b
DL
518 u8 *p = (u8 *)ptr;
519 u32 len; /* Fast Open option length */
520
521 if (foc->exp) {
522 len = TCPOLEN_EXP_FASTOPEN_BASE + foc->len;
523 *ptr = htonl((TCPOPT_EXP << 24) | (len << 16) |
524 TCPOPT_FASTOPEN_MAGIC);
525 p += TCPOLEN_EXP_FASTOPEN_BASE;
526 } else {
527 len = TCPOLEN_FASTOPEN_BASE + foc->len;
528 *p++ = TCPOPT_FASTOPEN;
529 *p++ = len;
530 }
2100c8d2 531
7f9b838b
DL
532 memcpy(p, foc->val, foc->len);
533 if ((len & 3) == 2) {
534 p[foc->len] = TCPOPT_NOP;
535 p[foc->len + 1] = TCPOPT_NOP;
2100c8d2 536 }
7f9b838b 537 ptr += (len + 3) >> 2;
2100c8d2 538 }
33ad798c
AL
539}
540
67edfef7
AK
541/* Compute TCP options for SYN packets. This is not the final
542 * network wire format yet.
543 */
95c96174 544static unsigned int tcp_syn_options(struct sock *sk, struct sk_buff *skb,
33ad798c 545 struct tcp_out_options *opts,
cf533ea5
ED
546 struct tcp_md5sig_key **md5)
547{
33ad798c 548 struct tcp_sock *tp = tcp_sk(sk);
95c96174 549 unsigned int remaining = MAX_TCP_OPTION_SPACE;
783237e8 550 struct tcp_fastopen_request *fastopen = tp->fastopen_req;
33ad798c 551
cfb6eeb4 552#ifdef CONFIG_TCP_MD5SIG
33ad798c
AL
553 *md5 = tp->af_specific->md5_lookup(sk, sk);
554 if (*md5) {
555 opts->options |= OPTION_MD5;
bd0388ae 556 remaining -= TCPOLEN_MD5SIG_ALIGNED;
cfb6eeb4 557 }
33ad798c
AL
558#else
559 *md5 = NULL;
cfb6eeb4 560#endif
33ad798c
AL
561
562 /* We always get an MSS option. The option bytes which will be seen in
563 * normal data packets should timestamps be used, must be in the MSS
564 * advertised. But we subtract them from tp->mss_cache so that
565 * calculations in tcp_sendmsg are simpler etc. So account for this
566 * fact here if necessary. If we don't do this correctly, as a
567 * receiver we won't recognize data packets as being full sized when we
568 * should, and thus we won't abide by the delayed ACK rules correctly.
569 * SACKs don't matter, we never delay an ACK when we have any of those
570 * going out. */
571 opts->mss = tcp_advertise_mss(sk);
bd0388ae 572 remaining -= TCPOLEN_MSS_ALIGNED;
33ad798c 573
5d2ed052 574 if (likely(sock_net(sk)->ipv4.sysctl_tcp_timestamps && !*md5)) {
33ad798c 575 opts->options |= OPTION_TS;
7faee5c0 576 opts->tsval = tcp_skb_timestamp(skb) + tp->tsoffset;
33ad798c 577 opts->tsecr = tp->rx_opt.ts_recent;
bd0388ae 578 remaining -= TCPOLEN_TSTAMP_ALIGNED;
33ad798c 579 }
9bb37ef0 580 if (likely(sock_net(sk)->ipv4.sysctl_tcp_window_scaling)) {
33ad798c 581 opts->ws = tp->rx_opt.rcv_wscale;
89e95a61 582 opts->options |= OPTION_WSCALE;
bd0388ae 583 remaining -= TCPOLEN_WSCALE_ALIGNED;
33ad798c 584 }
f9301034 585 if (likely(sock_net(sk)->ipv4.sysctl_tcp_sack)) {
33ad798c 586 opts->options |= OPTION_SACK_ADVERTISE;
b32d1310 587 if (unlikely(!(OPTION_TS & opts->options)))
bd0388ae 588 remaining -= TCPOLEN_SACKPERM_ALIGNED;
33ad798c
AL
589 }
590
783237e8 591 if (fastopen && fastopen->cookie.len >= 0) {
2646c831
DL
592 u32 need = fastopen->cookie.len;
593
594 need += fastopen->cookie.exp ? TCPOLEN_EXP_FASTOPEN_BASE :
595 TCPOLEN_FASTOPEN_BASE;
783237e8
YC
596 need = (need + 3) & ~3U; /* Align to 32 bits */
597 if (remaining >= need) {
598 opts->options |= OPTION_FAST_OPEN_COOKIE;
599 opts->fastopen_cookie = &fastopen->cookie;
600 remaining -= need;
601 tp->syn_fastopen = 1;
2646c831 602 tp->syn_fastopen_exp = fastopen->cookie.exp ? 1 : 0;
783237e8
YC
603 }
604 }
bd0388ae 605
bd0388ae 606 return MAX_TCP_OPTION_SPACE - remaining;
40efc6fa
SH
607}
608
67edfef7 609/* Set up TCP options for SYN-ACKs. */
37bfbdda
ED
610static unsigned int tcp_synack_options(struct request_sock *req,
611 unsigned int mss, struct sk_buff *skb,
612 struct tcp_out_options *opts,
613 const struct tcp_md5sig_key *md5,
614 struct tcp_fastopen_cookie *foc)
4957faad 615{
33ad798c 616 struct inet_request_sock *ireq = inet_rsk(req);
95c96174 617 unsigned int remaining = MAX_TCP_OPTION_SPACE;
33ad798c 618
cfb6eeb4 619#ifdef CONFIG_TCP_MD5SIG
80f03e27 620 if (md5) {
33ad798c 621 opts->options |= OPTION_MD5;
4957faad
WAS
622 remaining -= TCPOLEN_MD5SIG_ALIGNED;
623
624 /* We can't fit any SACK blocks in a packet with MD5 + TS
625 * options. There was discussion about disabling SACK
626 * rather than TS in order to fit in better with old,
627 * buggy kernels, but that was deemed to be unnecessary.
628 */
de213e5e 629 ireq->tstamp_ok &= !ireq->sack_ok;
cfb6eeb4
YH
630 }
631#endif
33ad798c 632
4957faad 633 /* We always send an MSS option. */
33ad798c 634 opts->mss = mss;
4957faad 635 remaining -= TCPOLEN_MSS_ALIGNED;
33ad798c
AL
636
637 if (likely(ireq->wscale_ok)) {
638 opts->ws = ireq->rcv_wscale;
89e95a61 639 opts->options |= OPTION_WSCALE;
4957faad 640 remaining -= TCPOLEN_WSCALE_ALIGNED;
33ad798c 641 }
de213e5e 642 if (likely(ireq->tstamp_ok)) {
33ad798c 643 opts->options |= OPTION_TS;
95a22cae 644 opts->tsval = tcp_skb_timestamp(skb) + tcp_rsk(req)->ts_off;
33ad798c 645 opts->tsecr = req->ts_recent;
4957faad 646 remaining -= TCPOLEN_TSTAMP_ALIGNED;
33ad798c
AL
647 }
648 if (likely(ireq->sack_ok)) {
649 opts->options |= OPTION_SACK_ADVERTISE;
de213e5e 650 if (unlikely(!ireq->tstamp_ok))
4957faad 651 remaining -= TCPOLEN_SACKPERM_ALIGNED;
33ad798c 652 }
7f9b838b
DL
653 if (foc != NULL && foc->len >= 0) {
654 u32 need = foc->len;
655
656 need += foc->exp ? TCPOLEN_EXP_FASTOPEN_BASE :
657 TCPOLEN_FASTOPEN_BASE;
8336886f
JC
658 need = (need + 3) & ~3U; /* Align to 32 bits */
659 if (remaining >= need) {
660 opts->options |= OPTION_FAST_OPEN_COOKIE;
661 opts->fastopen_cookie = foc;
662 remaining -= need;
663 }
664 }
1a2c6181 665
4957faad 666 return MAX_TCP_OPTION_SPACE - remaining;
33ad798c
AL
667}
668
67edfef7
AK
669/* Compute TCP options for ESTABLISHED sockets. This is not the
670 * final wire format yet.
671 */
95c96174 672static unsigned int tcp_established_options(struct sock *sk, struct sk_buff *skb,
33ad798c 673 struct tcp_out_options *opts,
cf533ea5
ED
674 struct tcp_md5sig_key **md5)
675{
33ad798c 676 struct tcp_sock *tp = tcp_sk(sk);
95c96174 677 unsigned int size = 0;
cabeccbd 678 unsigned int eff_sacks;
33ad798c 679
5843ef42
AK
680 opts->options = 0;
681
33ad798c
AL
682#ifdef CONFIG_TCP_MD5SIG
683 *md5 = tp->af_specific->md5_lookup(sk, sk);
684 if (unlikely(*md5)) {
685 opts->options |= OPTION_MD5;
686 size += TCPOLEN_MD5SIG_ALIGNED;
687 }
688#else
689 *md5 = NULL;
690#endif
691
692 if (likely(tp->rx_opt.tstamp_ok)) {
693 opts->options |= OPTION_TS;
7faee5c0 694 opts->tsval = skb ? tcp_skb_timestamp(skb) + tp->tsoffset : 0;
33ad798c
AL
695 opts->tsecr = tp->rx_opt.ts_recent;
696 size += TCPOLEN_TSTAMP_ALIGNED;
697 }
698
cabeccbd
IJ
699 eff_sacks = tp->rx_opt.num_sacks + tp->rx_opt.dsack;
700 if (unlikely(eff_sacks)) {
95c96174 701 const unsigned int remaining = MAX_TCP_OPTION_SPACE - size;
33ad798c 702 opts->num_sack_blocks =
95c96174 703 min_t(unsigned int, eff_sacks,
33ad798c
AL
704 (remaining - TCPOLEN_SACK_BASE_ALIGNED) /
705 TCPOLEN_SACK_PERBLOCK);
706 size += TCPOLEN_SACK_BASE_ALIGNED +
707 opts->num_sack_blocks * TCPOLEN_SACK_PERBLOCK;
708 }
709
710 return size;
40efc6fa 711}
1da177e4 712
46d3ceab
ED
713
714/* TCP SMALL QUEUES (TSQ)
715 *
716 * TSQ goal is to keep small amount of skbs per tcp flow in tx queues (qdisc+dev)
717 * to reduce RTT and bufferbloat.
718 * We do this using a special skb destructor (tcp_wfree).
719 *
720 * Its important tcp_wfree() can be replaced by sock_wfree() in the event skb
721 * needs to be reallocated in a driver.
8e3bff96 722 * The invariant being skb->truesize subtracted from sk->sk_wmem_alloc
46d3ceab
ED
723 *
724 * Since transmit from skb destructor is forbidden, we use a tasklet
725 * to process all sockets that eventually need to send more skbs.
726 * We use one tasklet per cpu, with its own queue of sockets.
727 */
728struct tsq_tasklet {
729 struct tasklet_struct tasklet;
730 struct list_head head; /* queue of tcp sockets */
731};
732static DEFINE_PER_CPU(struct tsq_tasklet, tsq_tasklet);
733
6f458dfb
ED
734static void tcp_tsq_handler(struct sock *sk)
735{
736 if ((1 << sk->sk_state) &
737 (TCPF_ESTABLISHED | TCPF_FIN_WAIT1 | TCPF_CLOSING |
f9616c35
ED
738 TCPF_CLOSE_WAIT | TCPF_LAST_ACK)) {
739 struct tcp_sock *tp = tcp_sk(sk);
740
741 if (tp->lost_out > tp->retrans_out &&
3a91d29f
KD
742 tp->snd_cwnd > tcp_packets_in_flight(tp)) {
743 tcp_mstamp_refresh(tp);
f9616c35 744 tcp_xmit_retransmit_queue(sk);
3a91d29f 745 }
f9616c35
ED
746
747 tcp_write_xmit(sk, tcp_current_mss(sk), tp->nonagle,
bf06200e 748 0, GFP_ATOMIC);
f9616c35 749 }
6f458dfb 750}
46d3ceab 751/*
8e3bff96 752 * One tasklet per cpu tries to send more skbs.
46d3ceab 753 * We run in tasklet context but need to disable irqs when
8e3bff96 754 * transferring tsq->head because tcp_wfree() might
46d3ceab
ED
755 * interrupt us (non NAPI drivers)
756 */
757static void tcp_tasklet_func(unsigned long data)
758{
759 struct tsq_tasklet *tsq = (struct tsq_tasklet *)data;
760 LIST_HEAD(list);
761 unsigned long flags;
762 struct list_head *q, *n;
763 struct tcp_sock *tp;
764 struct sock *sk;
765
766 local_irq_save(flags);
767 list_splice_init(&tsq->head, &list);
768 local_irq_restore(flags);
769
770 list_for_each_safe(q, n, &list) {
771 tp = list_entry(q, struct tcp_sock, tsq_node);
772 list_del(&tp->tsq_node);
773
774 sk = (struct sock *)tp;
0a9648f1 775 smp_mb__before_atomic();
7aa5470c
ED
776 clear_bit(TSQ_QUEUED, &sk->sk_tsq_flags);
777
b223feb9 778 if (!sk->sk_lock.owned &&
7aa5470c 779 test_bit(TCP_TSQ_DEFERRED, &sk->sk_tsq_flags)) {
b223feb9
ED
780 bh_lock_sock(sk);
781 if (!sock_owned_by_user(sk)) {
7aa5470c 782 clear_bit(TCP_TSQ_DEFERRED, &sk->sk_tsq_flags);
b223feb9
ED
783 tcp_tsq_handler(sk);
784 }
785 bh_unlock_sock(sk);
46d3ceab 786 }
46d3ceab 787
46d3ceab
ED
788 sk_free(sk);
789 }
790}
791
40fc3423
ED
792#define TCP_DEFERRED_ALL (TCPF_TSQ_DEFERRED | \
793 TCPF_WRITE_TIMER_DEFERRED | \
794 TCPF_DELACK_TIMER_DEFERRED | \
795 TCPF_MTU_REDUCED_DEFERRED)
46d3ceab
ED
796/**
797 * tcp_release_cb - tcp release_sock() callback
798 * @sk: socket
799 *
800 * called from release_sock() to perform protocol dependent
801 * actions before socket release.
802 */
803void tcp_release_cb(struct sock *sk)
804{
6f458dfb 805 unsigned long flags, nflags;
46d3ceab 806
6f458dfb
ED
807 /* perform an atomic operation only if at least one flag is set */
808 do {
7aa5470c 809 flags = sk->sk_tsq_flags;
6f458dfb
ED
810 if (!(flags & TCP_DEFERRED_ALL))
811 return;
812 nflags = flags & ~TCP_DEFERRED_ALL;
7aa5470c 813 } while (cmpxchg(&sk->sk_tsq_flags, flags, nflags) != flags);
6f458dfb 814
40fc3423 815 if (flags & TCPF_TSQ_DEFERRED)
6f458dfb
ED
816 tcp_tsq_handler(sk);
817
c3f9b018
ED
818 /* Here begins the tricky part :
819 * We are called from release_sock() with :
820 * 1) BH disabled
821 * 2) sk_lock.slock spinlock held
822 * 3) socket owned by us (sk->sk_lock.owned == 1)
823 *
824 * But following code is meant to be called from BH handlers,
825 * so we should keep BH disabled, but early release socket ownership
826 */
827 sock_release_ownership(sk);
828
40fc3423 829 if (flags & TCPF_WRITE_TIMER_DEFERRED) {
6f458dfb 830 tcp_write_timer_handler(sk);
144d56e9
ED
831 __sock_put(sk);
832 }
40fc3423 833 if (flags & TCPF_DELACK_TIMER_DEFERRED) {
6f458dfb 834 tcp_delack_timer_handler(sk);
144d56e9
ED
835 __sock_put(sk);
836 }
40fc3423 837 if (flags & TCPF_MTU_REDUCED_DEFERRED) {
4fab9071 838 inet_csk(sk)->icsk_af_ops->mtu_reduced(sk);
144d56e9
ED
839 __sock_put(sk);
840 }
46d3ceab
ED
841}
842EXPORT_SYMBOL(tcp_release_cb);
843
844void __init tcp_tasklet_init(void)
845{
846 int i;
847
848 for_each_possible_cpu(i) {
849 struct tsq_tasklet *tsq = &per_cpu(tsq_tasklet, i);
850
851 INIT_LIST_HEAD(&tsq->head);
852 tasklet_init(&tsq->tasklet,
853 tcp_tasklet_func,
854 (unsigned long)tsq);
855 }
856}
857
858/*
859 * Write buffer destructor automatically called from kfree_skb.
8e3bff96 860 * We can't xmit new skbs from this context, as we might already
46d3ceab
ED
861 * hold qdisc lock.
862 */
d6a4a104 863void tcp_wfree(struct sk_buff *skb)
46d3ceab
ED
864{
865 struct sock *sk = skb->sk;
866 struct tcp_sock *tp = tcp_sk(sk);
408f0a6c 867 unsigned long flags, nval, oval;
9b462d02
ED
868
869 /* Keep one reference on sk_wmem_alloc.
870 * Will be released by sk_free() from here or tcp_tasklet_func()
871 */
14afee4b 872 WARN_ON(refcount_sub_and_test(skb->truesize - 1, &sk->sk_wmem_alloc));
9b462d02
ED
873
874 /* If this softirq is serviced by ksoftirqd, we are likely under stress.
875 * Wait until our queues (qdisc + devices) are drained.
876 * This gives :
877 * - less callbacks to tcp_write_xmit(), reducing stress (batches)
878 * - chance for incoming ACK (processed by another cpu maybe)
879 * to migrate this flow (skb->ooo_okay will be eventually set)
880 */
14afee4b 881 if (refcount_read(&sk->sk_wmem_alloc) >= SKB_TRUESIZE(1) && this_cpu_ksoftirqd() == current)
9b462d02 882 goto out;
46d3ceab 883
7aa5470c 884 for (oval = READ_ONCE(sk->sk_tsq_flags);; oval = nval) {
46d3ceab 885 struct tsq_tasklet *tsq;
a9b204d1 886 bool empty;
46d3ceab 887
408f0a6c
ED
888 if (!(oval & TSQF_THROTTLED) || (oval & TSQF_QUEUED))
889 goto out;
890
b223feb9 891 nval = (oval & ~TSQF_THROTTLED) | TSQF_QUEUED | TCPF_TSQ_DEFERRED;
7aa5470c 892 nval = cmpxchg(&sk->sk_tsq_flags, oval, nval);
408f0a6c
ED
893 if (nval != oval)
894 continue;
895
46d3ceab
ED
896 /* queue this socket to tasklet queue */
897 local_irq_save(flags);
903ceff7 898 tsq = this_cpu_ptr(&tsq_tasklet);
a9b204d1 899 empty = list_empty(&tsq->head);
46d3ceab 900 list_add(&tp->tsq_node, &tsq->head);
a9b204d1
ED
901 if (empty)
902 tasklet_schedule(&tsq->tasklet);
46d3ceab 903 local_irq_restore(flags);
9b462d02 904 return;
46d3ceab 905 }
9b462d02
ED
906out:
907 sk_free(sk);
46d3ceab
ED
908}
909
218af599
ED
910/* Note: Called under hard irq.
911 * We can not call TCP stack right away.
912 */
913enum hrtimer_restart tcp_pace_kick(struct hrtimer *timer)
914{
915 struct tcp_sock *tp = container_of(timer, struct tcp_sock, pacing_timer);
916 struct sock *sk = (struct sock *)tp;
917 unsigned long nval, oval;
918
919 for (oval = READ_ONCE(sk->sk_tsq_flags);; oval = nval) {
920 struct tsq_tasklet *tsq;
921 bool empty;
922
923 if (oval & TSQF_QUEUED)
924 break;
925
926 nval = (oval & ~TSQF_THROTTLED) | TSQF_QUEUED | TCPF_TSQ_DEFERRED;
927 nval = cmpxchg(&sk->sk_tsq_flags, oval, nval);
928 if (nval != oval)
929 continue;
930
14afee4b 931 if (!refcount_inc_not_zero(&sk->sk_wmem_alloc))
218af599
ED
932 break;
933 /* queue this socket to tasklet queue */
934 tsq = this_cpu_ptr(&tsq_tasklet);
935 empty = list_empty(&tsq->head);
936 list_add(&tp->tsq_node, &tsq->head);
937 if (empty)
938 tasklet_schedule(&tsq->tasklet);
939 break;
940 }
941 return HRTIMER_NORESTART;
942}
943
944/* BBR congestion control needs pacing.
945 * Same remark for SO_MAX_PACING_RATE.
946 * sch_fq packet scheduler is efficiently handling pacing,
947 * but is not always installed/used.
948 * Return true if TCP stack should pace packets itself.
949 */
950static bool tcp_needs_internal_pacing(const struct sock *sk)
951{
952 return smp_load_acquire(&sk->sk_pacing_status) == SK_PACING_NEEDED;
953}
954
955static void tcp_internal_pacing(struct sock *sk, const struct sk_buff *skb)
956{
957 u64 len_ns;
958 u32 rate;
959
960 if (!tcp_needs_internal_pacing(sk))
961 return;
962 rate = sk->sk_pacing_rate;
963 if (!rate || rate == ~0U)
964 return;
965
966 /* Should account for header sizes as sch_fq does,
967 * but lets make things simple.
968 */
969 len_ns = (u64)skb->len * NSEC_PER_SEC;
970 do_div(len_ns, rate);
971 hrtimer_start(&tcp_sk(sk)->pacing_timer,
972 ktime_add_ns(ktime_get(), len_ns),
973 HRTIMER_MODE_ABS_PINNED);
974}
975
1da177e4
LT
976/* This routine actually transmits TCP packets queued in by
977 * tcp_do_sendmsg(). This is used by both the initial
978 * transmission and possible later retransmissions.
979 * All SKB's seen here are completely headerless. It is our
980 * job to build the TCP header, and pass the packet down to
981 * IP so it can do the same plus pass the packet off to the
982 * device.
983 *
984 * We are working here with either a clone of the original
985 * SKB, or a fresh unique copy made by the retransmit engine.
986 */
056834d9
IJ
987static int tcp_transmit_skb(struct sock *sk, struct sk_buff *skb, int clone_it,
988 gfp_t gfp_mask)
1da177e4 989{
dfb4b9dc
DM
990 const struct inet_connection_sock *icsk = inet_csk(sk);
991 struct inet_sock *inet;
992 struct tcp_sock *tp;
993 struct tcp_skb_cb *tcb;
33ad798c 994 struct tcp_out_options opts;
95c96174 995 unsigned int tcp_options_size, tcp_header_size;
8c72c65b 996 struct sk_buff *oskb = NULL;
cfb6eeb4 997 struct tcp_md5sig_key *md5;
dfb4b9dc 998 struct tcphdr *th;
dfb4b9dc
DM
999 int err;
1000
1001 BUG_ON(!skb || !tcp_skb_pcount(skb));
6f094b9e 1002 tp = tcp_sk(sk);
dfb4b9dc 1003
ccdbb6e9 1004 if (clone_it) {
6f094b9e
LB
1005 TCP_SKB_CB(skb)->tx.in_flight = TCP_SKB_CB(skb)->end_seq
1006 - tp->snd_una;
8c72c65b 1007 oskb = skb;
dfb4b9dc
DM
1008 if (unlikely(skb_cloned(skb)))
1009 skb = pskb_copy(skb, gfp_mask);
1010 else
1011 skb = skb_clone(skb, gfp_mask);
1012 if (unlikely(!skb))
1013 return -ENOBUFS;
1014 }
8c72c65b 1015 skb->skb_mstamp = tp->tcp_mstamp;
1da177e4 1016
dfb4b9dc 1017 inet = inet_sk(sk);
dfb4b9dc 1018 tcb = TCP_SKB_CB(skb);
33ad798c 1019 memset(&opts, 0, sizeof(opts));
1da177e4 1020
4de075e0 1021 if (unlikely(tcb->tcp_flags & TCPHDR_SYN))
33ad798c
AL
1022 tcp_options_size = tcp_syn_options(sk, skb, &opts, &md5);
1023 else
1024 tcp_options_size = tcp_established_options(sk, skb, &opts,
1025 &md5);
1026 tcp_header_size = tcp_options_size + sizeof(struct tcphdr);
e905a9ed 1027
547669d4 1028 /* if no packet is in qdisc/device queue, then allow XPS to select
b2532eb9
ED
1029 * another queue. We can be called from tcp_tsq_handler()
1030 * which holds one reference to sk_wmem_alloc.
1031 *
1032 * TODO: Ideally, in-flight pure ACK packets should not matter here.
1033 * One way to get this would be to set skb->truesize = 2 on them.
547669d4 1034 */
b2532eb9 1035 skb->ooo_okay = sk_wmem_alloc_get(sk) < SKB_TRUESIZE(1);
dfb4b9dc 1036
38ab52e8
ED
1037 /* If we had to use memory reserve to allocate this skb,
1038 * this might cause drops if packet is looped back :
1039 * Other socket might not have SOCK_MEMALLOC.
1040 * Packets not looped back do not care about pfmemalloc.
1041 */
1042 skb->pfmemalloc = 0;
1043
aa8223c7
ACM
1044 skb_push(skb, tcp_header_size);
1045 skb_reset_transport_header(skb);
46d3ceab
ED
1046
1047 skb_orphan(skb);
1048 skb->sk = sk;
1d2077ac 1049 skb->destructor = skb_is_tcp_pure_ack(skb) ? __sock_wfree : tcp_wfree;
b73c3d0e 1050 skb_set_hash_from_sk(skb, sk);
14afee4b 1051 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
dfb4b9dc 1052
c3a2e837
JA
1053 skb_set_dst_pending_confirm(skb, sk->sk_dst_pending_confirm);
1054
dfb4b9dc 1055 /* Build TCP header and checksum it. */
ea1627c2 1056 th = (struct tcphdr *)skb->data;
c720c7e8
ED
1057 th->source = inet->inet_sport;
1058 th->dest = inet->inet_dport;
dfb4b9dc
DM
1059 th->seq = htonl(tcb->seq);
1060 th->ack_seq = htonl(tp->rcv_nxt);
df7a3b07 1061 *(((__be16 *)th) + 6) = htons(((tcp_header_size >> 2) << 12) |
4de075e0 1062 tcb->tcp_flags);
dfb4b9dc 1063
dfb4b9dc
DM
1064 th->check = 0;
1065 th->urg_ptr = 0;
1da177e4 1066
33f5f57e 1067 /* The urg_mode check is necessary during a below snd_una win probe */
7691367d
HX
1068 if (unlikely(tcp_urg_mode(tp) && before(tcb->seq, tp->snd_up))) {
1069 if (before(tp->snd_up, tcb->seq + 0x10000)) {
1070 th->urg_ptr = htons(tp->snd_up - tcb->seq);
1071 th->urg = 1;
1072 } else if (after(tcb->seq + 0xFFFF, tp->snd_nxt)) {
0eae88f3 1073 th->urg_ptr = htons(0xFFFF);
7691367d
HX
1074 th->urg = 1;
1075 }
dfb4b9dc 1076 }
1da177e4 1077
bd0388ae 1078 tcp_options_write((__be32 *)(th + 1), tp, &opts);
51466a75 1079 skb_shinfo(skb)->gso_type = sk->sk_gso_type;
ea1627c2
ED
1080 if (likely(!(tcb->tcp_flags & TCPHDR_SYN))) {
1081 th->window = htons(tcp_select_window(sk));
1082 tcp_ecn_send(sk, skb, th, tcp_header_size);
1083 } else {
1084 /* RFC1323: The window in SYN & SYN/ACK segments
1085 * is never scaled.
1086 */
1087 th->window = htons(min(tp->rcv_wnd, 65535U));
1088 }
cfb6eeb4
YH
1089#ifdef CONFIG_TCP_MD5SIG
1090 /* Calculate the MD5 hash, as we have all we need now */
1091 if (md5) {
a465419b 1092 sk_nocaps_add(sk, NETIF_F_GSO_MASK);
bd0388ae 1093 tp->af_specific->calc_md5_hash(opts.hash_location,
39f8e58e 1094 md5, sk, skb);
cfb6eeb4
YH
1095 }
1096#endif
1097
bb296246 1098 icsk->icsk_af_ops->send_check(sk, skb);
1da177e4 1099
4de075e0 1100 if (likely(tcb->tcp_flags & TCPHDR_ACK))
dfb4b9dc 1101 tcp_event_ack_sent(sk, tcp_skb_pcount(skb));
1da177e4 1102
a44d6eac 1103 if (skb->len != tcp_header_size) {
cf533ea5 1104 tcp_event_data_sent(tp, sk);
a44d6eac 1105 tp->data_segs_out += tcp_skb_pcount(skb);
218af599 1106 tcp_internal_pacing(sk, skb);
a44d6eac 1107 }
1da177e4 1108
bd37a088 1109 if (after(tcb->end_seq, tp->snd_nxt) || tcb->seq == tcb->end_seq)
aa2ea058
TH
1110 TCP_ADD_STATS(sock_net(sk), TCP_MIB_OUTSEGS,
1111 tcp_skb_pcount(skb));
1da177e4 1112
2efd055c 1113 tp->segs_out += tcp_skb_pcount(skb);
f69ad292 1114 /* OK, its time to fill skb_shinfo(skb)->gso_{segs|size} */
cd7d8498 1115 skb_shinfo(skb)->gso_segs = tcp_skb_pcount(skb);
f69ad292 1116 skb_shinfo(skb)->gso_size = tcp_skb_mss(skb);
cd7d8498 1117
7faee5c0 1118 /* Our usage of tstamp should remain private */
2456e855 1119 skb->tstamp = 0;
971f10ec
ED
1120
1121 /* Cleanup our debris for IP stacks */
1122 memset(skb->cb, 0, max(sizeof(struct inet_skb_parm),
1123 sizeof(struct inet6_skb_parm)));
1124
b0270e91 1125 err = icsk->icsk_af_ops->queue_xmit(sk, skb, &inet->cork.fl);
7faee5c0 1126
8c72c65b
ED
1127 if (unlikely(err > 0)) {
1128 tcp_enter_cwr(sk);
1129 err = net_xmit_eval(err);
1130 }
fc225799 1131 if (!err && oskb) {
8c72c65b 1132 oskb->skb_mstamp = tp->tcp_mstamp;
fc225799
ED
1133 tcp_rate_skb_sent(sk, oskb);
1134 }
8c72c65b 1135 return err;
1da177e4
LT
1136}
1137
67edfef7 1138/* This routine just queues the buffer for sending.
1da177e4
LT
1139 *
1140 * NOTE: probe0 timer is not checked, do not forget tcp_push_pending_frames,
1141 * otherwise socket can stall.
1142 */
1143static void tcp_queue_skb(struct sock *sk, struct sk_buff *skb)
1144{
1145 struct tcp_sock *tp = tcp_sk(sk);
1146
1147 /* Advance write_seq and place onto the write_queue. */
1148 tp->write_seq = TCP_SKB_CB(skb)->end_seq;
f4a775d1 1149 __skb_header_release(skb);
fe067e8a 1150 tcp_add_write_queue_tail(sk, skb);
3ab224be
HA
1151 sk->sk_wmem_queued += skb->truesize;
1152 sk_mem_charge(sk, skb->truesize);
1da177e4
LT
1153}
1154
67edfef7 1155/* Initialize TSO segments for a packet. */
5bbb432c 1156static void tcp_set_skb_tso_segs(struct sk_buff *skb, unsigned int mss_now)
f6302d1d 1157{
8f26fb1c 1158 if (skb->len <= mss_now || skb->ip_summed == CHECKSUM_NONE) {
f6302d1d
DM
1159 /* Avoid the costly divide in the normal
1160 * non-TSO case.
1161 */
cd7d8498 1162 tcp_skb_pcount_set(skb, 1);
f69ad292 1163 TCP_SKB_CB(skb)->tcp_gso_size = 0;
f6302d1d 1164 } else {
cd7d8498 1165 tcp_skb_pcount_set(skb, DIV_ROUND_UP(skb->len, mss_now));
f69ad292 1166 TCP_SKB_CB(skb)->tcp_gso_size = mss_now;
1da177e4
LT
1167 }
1168}
1169
91fed7a1 1170/* When a modification to fackets out becomes necessary, we need to check
68f8353b 1171 * skb is counted to fackets_out or not.
91fed7a1 1172 */
cf533ea5 1173static void tcp_adjust_fackets_out(struct sock *sk, const struct sk_buff *skb,
91fed7a1
IJ
1174 int decr)
1175{
a47e5a98
IJ
1176 struct tcp_sock *tp = tcp_sk(sk);
1177
dc86967b 1178 if (!tp->sacked_out || tcp_is_reno(tp))
91fed7a1
IJ
1179 return;
1180
6859d494 1181 if (after(tcp_highest_sack_seq(tp), TCP_SKB_CB(skb)->seq))
91fed7a1 1182 tp->fackets_out -= decr;
91fed7a1
IJ
1183}
1184
797108d1
IJ
1185/* Pcount in the middle of the write queue got changed, we need to do various
1186 * tweaks to fix counters
1187 */
cf533ea5 1188static void tcp_adjust_pcount(struct sock *sk, const struct sk_buff *skb, int decr)
797108d1
IJ
1189{
1190 struct tcp_sock *tp = tcp_sk(sk);
1191
1192 tp->packets_out -= decr;
1193
1194 if (TCP_SKB_CB(skb)->sacked & TCPCB_SACKED_ACKED)
1195 tp->sacked_out -= decr;
1196 if (TCP_SKB_CB(skb)->sacked & TCPCB_SACKED_RETRANS)
1197 tp->retrans_out -= decr;
1198 if (TCP_SKB_CB(skb)->sacked & TCPCB_LOST)
1199 tp->lost_out -= decr;
1200
1201 /* Reno case is special. Sigh... */
1202 if (tcp_is_reno(tp) && decr > 0)
1203 tp->sacked_out -= min_t(u32, tp->sacked_out, decr);
1204
1205 tcp_adjust_fackets_out(sk, skb, decr);
1206
1207 if (tp->lost_skb_hint &&
1208 before(TCP_SKB_CB(skb)->seq, TCP_SKB_CB(tp->lost_skb_hint)->seq) &&
52cf3cc8 1209 (tcp_is_fack(tp) || (TCP_SKB_CB(skb)->sacked & TCPCB_SACKED_ACKED)))
797108d1
IJ
1210 tp->lost_cnt_hint -= decr;
1211
1212 tcp_verify_left_out(tp);
1213}
1214
0a2cf20c
SHY
1215static bool tcp_has_tx_tstamp(const struct sk_buff *skb)
1216{
1217 return TCP_SKB_CB(skb)->txstamp_ack ||
1218 (skb_shinfo(skb)->tx_flags & SKBTX_ANY_TSTAMP);
1219}
1220
490cc7d0
WB
1221static void tcp_fragment_tstamp(struct sk_buff *skb, struct sk_buff *skb2)
1222{
1223 struct skb_shared_info *shinfo = skb_shinfo(skb);
1224
0a2cf20c 1225 if (unlikely(tcp_has_tx_tstamp(skb)) &&
490cc7d0
WB
1226 !before(shinfo->tskey, TCP_SKB_CB(skb2)->seq)) {
1227 struct skb_shared_info *shinfo2 = skb_shinfo(skb2);
1228 u8 tsflags = shinfo->tx_flags & SKBTX_ANY_TSTAMP;
1229
1230 shinfo->tx_flags &= ~tsflags;
1231 shinfo2->tx_flags |= tsflags;
1232 swap(shinfo->tskey, shinfo2->tskey);
b51e13fa
MKL
1233 TCP_SKB_CB(skb2)->txstamp_ack = TCP_SKB_CB(skb)->txstamp_ack;
1234 TCP_SKB_CB(skb)->txstamp_ack = 0;
490cc7d0
WB
1235 }
1236}
1237
a166140e
MKL
1238static void tcp_skb_fragment_eor(struct sk_buff *skb, struct sk_buff *skb2)
1239{
1240 TCP_SKB_CB(skb2)->eor = TCP_SKB_CB(skb)->eor;
1241 TCP_SKB_CB(skb)->eor = 0;
1242}
1243
1da177e4
LT
1244/* Function to create two new TCP segments. Shrinks the given segment
1245 * to the specified size and appends a new segment with the rest of the
e905a9ed 1246 * packet to the list. This won't be called frequently, I hope.
1da177e4
LT
1247 * Remember, these are still headerless SKBs at this point.
1248 */
056834d9 1249int tcp_fragment(struct sock *sk, struct sk_buff *skb, u32 len,
6cc55e09 1250 unsigned int mss_now, gfp_t gfp)
1da177e4
LT
1251{
1252 struct tcp_sock *tp = tcp_sk(sk);
1253 struct sk_buff *buff;
6475be16 1254 int nsize, old_factor;
b60b49ea 1255 int nlen;
9ce01461 1256 u8 flags;
1da177e4 1257
2fceec13
IJ
1258 if (WARN_ON(len > skb->len))
1259 return -EINVAL;
6a438bbe 1260
1da177e4
LT
1261 nsize = skb_headlen(skb) - len;
1262 if (nsize < 0)
1263 nsize = 0;
1264
6cc55e09 1265 if (skb_unclone(skb, gfp))
1da177e4
LT
1266 return -ENOMEM;
1267
1268 /* Get a new skb... force flag on. */
eb934478 1269 buff = sk_stream_alloc_skb(sk, nsize, gfp, true);
51456b29 1270 if (!buff)
1da177e4 1271 return -ENOMEM; /* We'll just try again later. */
ef5cb973 1272
3ab224be
HA
1273 sk->sk_wmem_queued += buff->truesize;
1274 sk_mem_charge(sk, buff->truesize);
b60b49ea
HX
1275 nlen = skb->len - len - nsize;
1276 buff->truesize += nlen;
1277 skb->truesize -= nlen;
1da177e4
LT
1278
1279 /* Correct the sequence numbers. */
1280 TCP_SKB_CB(buff)->seq = TCP_SKB_CB(skb)->seq + len;
1281 TCP_SKB_CB(buff)->end_seq = TCP_SKB_CB(skb)->end_seq;
1282 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(buff)->seq;
1283
1284 /* PSH and FIN should only be set in the second packet. */
4de075e0
ED
1285 flags = TCP_SKB_CB(skb)->tcp_flags;
1286 TCP_SKB_CB(skb)->tcp_flags = flags & ~(TCPHDR_FIN | TCPHDR_PSH);
1287 TCP_SKB_CB(buff)->tcp_flags = flags;
e14c3caf 1288 TCP_SKB_CB(buff)->sacked = TCP_SKB_CB(skb)->sacked;
a166140e 1289 tcp_skb_fragment_eor(skb, buff);
1da177e4 1290
84fa7933 1291 if (!skb_shinfo(skb)->nr_frags && skb->ip_summed != CHECKSUM_PARTIAL) {
1da177e4 1292 /* Copy and checksum data tail into the new buffer. */
056834d9
IJ
1293 buff->csum = csum_partial_copy_nocheck(skb->data + len,
1294 skb_put(buff, nsize),
1da177e4
LT
1295 nsize, 0);
1296
1297 skb_trim(skb, len);
1298
1299 skb->csum = csum_block_sub(skb->csum, buff->csum, len);
1300 } else {
84fa7933 1301 skb->ip_summed = CHECKSUM_PARTIAL;
1da177e4
LT
1302 skb_split(skb, buff, len);
1303 }
1304
1305 buff->ip_summed = skb->ip_summed;
1306
a61bbcf2 1307 buff->tstamp = skb->tstamp;
490cc7d0 1308 tcp_fragment_tstamp(skb, buff);
1da177e4 1309
6475be16
DM
1310 old_factor = tcp_skb_pcount(skb);
1311
1da177e4 1312 /* Fix up tso_factor for both original and new SKB. */
5bbb432c
ED
1313 tcp_set_skb_tso_segs(skb, mss_now);
1314 tcp_set_skb_tso_segs(buff, mss_now);
1da177e4 1315
b9f64820
YC
1316 /* Update delivered info for the new segment */
1317 TCP_SKB_CB(buff)->tx = TCP_SKB_CB(skb)->tx;
1318
6475be16
DM
1319 /* If this packet has been sent out already, we must
1320 * adjust the various packet counters.
1321 */
cf0b450c 1322 if (!before(tp->snd_nxt, TCP_SKB_CB(buff)->end_seq)) {
6475be16
DM
1323 int diff = old_factor - tcp_skb_pcount(skb) -
1324 tcp_skb_pcount(buff);
1da177e4 1325
797108d1
IJ
1326 if (diff)
1327 tcp_adjust_pcount(sk, skb, diff);
1da177e4
LT
1328 }
1329
1330 /* Link BUFF into the send queue. */
f4a775d1 1331 __skb_header_release(buff);
fe067e8a 1332 tcp_insert_write_queue_after(skb, buff, sk);
1da177e4
LT
1333
1334 return 0;
1335}
1336
f4d01666
ED
1337/* This is similar to __pskb_pull_tail(). The difference is that pulled
1338 * data is not copied, but immediately discarded.
1da177e4 1339 */
7162fb24 1340static int __pskb_trim_head(struct sk_buff *skb, int len)
1da177e4 1341{
7b7fc97a 1342 struct skb_shared_info *shinfo;
1da177e4
LT
1343 int i, k, eat;
1344
4fa48bf3
ED
1345 eat = min_t(int, len, skb_headlen(skb));
1346 if (eat) {
1347 __skb_pull(skb, eat);
1348 len -= eat;
1349 if (!len)
7162fb24 1350 return 0;
4fa48bf3 1351 }
1da177e4
LT
1352 eat = len;
1353 k = 0;
7b7fc97a
ED
1354 shinfo = skb_shinfo(skb);
1355 for (i = 0; i < shinfo->nr_frags; i++) {
1356 int size = skb_frag_size(&shinfo->frags[i]);
9e903e08
ED
1357
1358 if (size <= eat) {
aff65da0 1359 skb_frag_unref(skb, i);
9e903e08 1360 eat -= size;
1da177e4 1361 } else {
7b7fc97a 1362 shinfo->frags[k] = shinfo->frags[i];
1da177e4 1363 if (eat) {
7b7fc97a
ED
1364 shinfo->frags[k].page_offset += eat;
1365 skb_frag_size_sub(&shinfo->frags[k], eat);
1da177e4
LT
1366 eat = 0;
1367 }
1368 k++;
1369 }
1370 }
7b7fc97a 1371 shinfo->nr_frags = k;
1da177e4 1372
1da177e4
LT
1373 skb->data_len -= len;
1374 skb->len = skb->data_len;
7162fb24 1375 return len;
1da177e4
LT
1376}
1377
67edfef7 1378/* Remove acked data from a packet in the transmit queue. */
1da177e4
LT
1379int tcp_trim_head(struct sock *sk, struct sk_buff *skb, u32 len)
1380{
7162fb24
ED
1381 u32 delta_truesize;
1382
14bbd6a5 1383 if (skb_unclone(skb, GFP_ATOMIC))
1da177e4
LT
1384 return -ENOMEM;
1385
7162fb24 1386 delta_truesize = __pskb_trim_head(skb, len);
1da177e4
LT
1387
1388 TCP_SKB_CB(skb)->seq += len;
84fa7933 1389 skb->ip_summed = CHECKSUM_PARTIAL;
1da177e4 1390
7162fb24
ED
1391 if (delta_truesize) {
1392 skb->truesize -= delta_truesize;
1393 sk->sk_wmem_queued -= delta_truesize;
1394 sk_mem_uncharge(sk, delta_truesize);
1395 sock_set_flag(sk, SOCK_QUEUE_SHRUNK);
1396 }
1da177e4 1397
5b35e1e6 1398 /* Any change of skb->len requires recalculation of tso factor. */
1da177e4 1399 if (tcp_skb_pcount(skb) > 1)
5bbb432c 1400 tcp_set_skb_tso_segs(skb, tcp_skb_mss(skb));
1da177e4
LT
1401
1402 return 0;
1403}
1404
1b63edd6
YC
1405/* Calculate MSS not accounting any TCP options. */
1406static inline int __tcp_mtu_to_mss(struct sock *sk, int pmtu)
5d424d5a 1407{
cf533ea5
ED
1408 const struct tcp_sock *tp = tcp_sk(sk);
1409 const struct inet_connection_sock *icsk = inet_csk(sk);
5d424d5a
JH
1410 int mss_now;
1411
1412 /* Calculate base mss without TCP options:
1413 It is MMS_S - sizeof(tcphdr) of rfc1122
1414 */
1415 mss_now = pmtu - icsk->icsk_af_ops->net_header_len - sizeof(struct tcphdr);
1416
67469601
ED
1417 /* IPv6 adds a frag_hdr in case RTAX_FEATURE_ALLFRAG is set */
1418 if (icsk->icsk_af_ops->net_frag_header_len) {
1419 const struct dst_entry *dst = __sk_dst_get(sk);
1420
1421 if (dst && dst_allfrag(dst))
1422 mss_now -= icsk->icsk_af_ops->net_frag_header_len;
1423 }
1424
5d424d5a
JH
1425 /* Clamp it (mss_clamp does not include tcp options) */
1426 if (mss_now > tp->rx_opt.mss_clamp)
1427 mss_now = tp->rx_opt.mss_clamp;
1428
1429 /* Now subtract optional transport overhead */
1430 mss_now -= icsk->icsk_ext_hdr_len;
1431
1432 /* Then reserve room for full set of TCP options and 8 bytes of data */
1433 if (mss_now < 48)
1434 mss_now = 48;
5d424d5a
JH
1435 return mss_now;
1436}
1437
1b63edd6
YC
1438/* Calculate MSS. Not accounting for SACKs here. */
1439int tcp_mtu_to_mss(struct sock *sk, int pmtu)
1440{
1441 /* Subtract TCP options size, not including SACKs */
1442 return __tcp_mtu_to_mss(sk, pmtu) -
1443 (tcp_sk(sk)->tcp_header_len - sizeof(struct tcphdr));
1444}
1445
5d424d5a 1446/* Inverse of above */
67469601 1447int tcp_mss_to_mtu(struct sock *sk, int mss)
5d424d5a 1448{
cf533ea5
ED
1449 const struct tcp_sock *tp = tcp_sk(sk);
1450 const struct inet_connection_sock *icsk = inet_csk(sk);
5d424d5a
JH
1451 int mtu;
1452
1453 mtu = mss +
1454 tp->tcp_header_len +
1455 icsk->icsk_ext_hdr_len +
1456 icsk->icsk_af_ops->net_header_len;
1457
67469601
ED
1458 /* IPv6 adds a frag_hdr in case RTAX_FEATURE_ALLFRAG is set */
1459 if (icsk->icsk_af_ops->net_frag_header_len) {
1460 const struct dst_entry *dst = __sk_dst_get(sk);
1461
1462 if (dst && dst_allfrag(dst))
1463 mtu += icsk->icsk_af_ops->net_frag_header_len;
1464 }
5d424d5a
JH
1465 return mtu;
1466}
556c6b46 1467EXPORT_SYMBOL(tcp_mss_to_mtu);
5d424d5a 1468
67edfef7 1469/* MTU probing init per socket */
5d424d5a
JH
1470void tcp_mtup_init(struct sock *sk)
1471{
1472 struct tcp_sock *tp = tcp_sk(sk);
1473 struct inet_connection_sock *icsk = inet_csk(sk);
b0f9ca53 1474 struct net *net = sock_net(sk);
5d424d5a 1475
b0f9ca53 1476 icsk->icsk_mtup.enabled = net->ipv4.sysctl_tcp_mtu_probing > 1;
5d424d5a 1477 icsk->icsk_mtup.search_high = tp->rx_opt.mss_clamp + sizeof(struct tcphdr) +
e905a9ed 1478 icsk->icsk_af_ops->net_header_len;
b0f9ca53 1479 icsk->icsk_mtup.search_low = tcp_mss_to_mtu(sk, net->ipv4.sysctl_tcp_base_mss);
5d424d5a 1480 icsk->icsk_mtup.probe_size = 0;
05cbc0db 1481 if (icsk->icsk_mtup.enabled)
c74df29a 1482 icsk->icsk_mtup.probe_timestamp = tcp_jiffies32;
5d424d5a 1483}
4bc2f18b 1484EXPORT_SYMBOL(tcp_mtup_init);
5d424d5a 1485
1da177e4
LT
1486/* This function synchronize snd mss to current pmtu/exthdr set.
1487
1488 tp->rx_opt.user_mss is mss set by user by TCP_MAXSEG. It does NOT counts
1489 for TCP options, but includes only bare TCP header.
1490
1491 tp->rx_opt.mss_clamp is mss negotiated at connection setup.
caa20d9a 1492 It is minimum of user_mss and mss received with SYN.
1da177e4
LT
1493 It also does not include TCP options.
1494
d83d8461 1495 inet_csk(sk)->icsk_pmtu_cookie is last pmtu, seen by this function.
1da177e4
LT
1496
1497 tp->mss_cache is current effective sending mss, including
1498 all tcp options except for SACKs. It is evaluated,
1499 taking into account current pmtu, but never exceeds
1500 tp->rx_opt.mss_clamp.
1501
1502 NOTE1. rfc1122 clearly states that advertised MSS
1503 DOES NOT include either tcp or ip options.
1504
d83d8461
ACM
1505 NOTE2. inet_csk(sk)->icsk_pmtu_cookie and tp->mss_cache
1506 are READ ONLY outside this function. --ANK (980731)
1da177e4 1507 */
1da177e4
LT
1508unsigned int tcp_sync_mss(struct sock *sk, u32 pmtu)
1509{
1510 struct tcp_sock *tp = tcp_sk(sk);
d83d8461 1511 struct inet_connection_sock *icsk = inet_csk(sk);
5d424d5a 1512 int mss_now;
1da177e4 1513
5d424d5a
JH
1514 if (icsk->icsk_mtup.search_high > pmtu)
1515 icsk->icsk_mtup.search_high = pmtu;
1da177e4 1516
5d424d5a 1517 mss_now = tcp_mtu_to_mss(sk, pmtu);
409d22b4 1518 mss_now = tcp_bound_to_half_wnd(tp, mss_now);
1da177e4
LT
1519
1520 /* And store cached results */
d83d8461 1521 icsk->icsk_pmtu_cookie = pmtu;
5d424d5a
JH
1522 if (icsk->icsk_mtup.enabled)
1523 mss_now = min(mss_now, tcp_mtu_to_mss(sk, icsk->icsk_mtup.search_low));
c1b4a7e6 1524 tp->mss_cache = mss_now;
1da177e4
LT
1525
1526 return mss_now;
1527}
4bc2f18b 1528EXPORT_SYMBOL(tcp_sync_mss);
1da177e4
LT
1529
1530/* Compute the current effective MSS, taking SACKs and IP options,
1531 * and even PMTU discovery events into account.
1da177e4 1532 */
0c54b85f 1533unsigned int tcp_current_mss(struct sock *sk)
1da177e4 1534{
cf533ea5
ED
1535 const struct tcp_sock *tp = tcp_sk(sk);
1536 const struct dst_entry *dst = __sk_dst_get(sk);
c1b4a7e6 1537 u32 mss_now;
95c96174 1538 unsigned int header_len;
33ad798c
AL
1539 struct tcp_out_options opts;
1540 struct tcp_md5sig_key *md5;
c1b4a7e6
DM
1541
1542 mss_now = tp->mss_cache;
1543
1da177e4
LT
1544 if (dst) {
1545 u32 mtu = dst_mtu(dst);
d83d8461 1546 if (mtu != inet_csk(sk)->icsk_pmtu_cookie)
1da177e4
LT
1547 mss_now = tcp_sync_mss(sk, mtu);
1548 }
1549
33ad798c
AL
1550 header_len = tcp_established_options(sk, NULL, &opts, &md5) +
1551 sizeof(struct tcphdr);
1552 /* The mss_cache is sized based on tp->tcp_header_len, which assumes
1553 * some common options. If this is an odd packet (because we have SACK
1554 * blocks etc) then our calculated header_len will be different, and
1555 * we have to adjust mss_now correspondingly */
1556 if (header_len != tp->tcp_header_len) {
1557 int delta = (int) header_len - tp->tcp_header_len;
1558 mss_now -= delta;
1559 }
cfb6eeb4 1560
1da177e4
LT
1561 return mss_now;
1562}
1563
86fd14ad
WP
1564/* RFC2861, slow part. Adjust cwnd, after it was not full during one rto.
1565 * As additional protections, we do not touch cwnd in retransmission phases,
1566 * and if application hit its sndbuf limit recently.
1567 */
1568static void tcp_cwnd_application_limited(struct sock *sk)
1569{
1570 struct tcp_sock *tp = tcp_sk(sk);
1571
1572 if (inet_csk(sk)->icsk_ca_state == TCP_CA_Open &&
1573 sk->sk_socket && !test_bit(SOCK_NOSPACE, &sk->sk_socket->flags)) {
1574 /* Limited by application or receiver window. */
1575 u32 init_win = tcp_init_cwnd(tp, __sk_dst_get(sk));
1576 u32 win_used = max(tp->snd_cwnd_used, init_win);
1577 if (win_used < tp->snd_cwnd) {
1578 tp->snd_ssthresh = tcp_current_ssthresh(sk);
1579 tp->snd_cwnd = (tp->snd_cwnd + win_used) >> 1;
1580 }
1581 tp->snd_cwnd_used = 0;
1582 }
c2203cf7 1583 tp->snd_cwnd_stamp = tcp_jiffies32;
86fd14ad
WP
1584}
1585
ca8a2263 1586static void tcp_cwnd_validate(struct sock *sk, bool is_cwnd_limited)
a762a980 1587{
1b1fc3fd 1588 const struct tcp_congestion_ops *ca_ops = inet_csk(sk)->icsk_ca_ops;
9e412ba7 1589 struct tcp_sock *tp = tcp_sk(sk);
a762a980 1590
ca8a2263
NC
1591 /* Track the maximum number of outstanding packets in each
1592 * window, and remember whether we were cwnd-limited then.
1593 */
1594 if (!before(tp->snd_una, tp->max_packets_seq) ||
1595 tp->packets_out > tp->max_packets_out) {
1596 tp->max_packets_out = tp->packets_out;
1597 tp->max_packets_seq = tp->snd_nxt;
1598 tp->is_cwnd_limited = is_cwnd_limited;
1599 }
e114a710 1600
24901551 1601 if (tcp_is_cwnd_limited(sk)) {
a762a980
DM
1602 /* Network is feed fully. */
1603 tp->snd_cwnd_used = 0;
c2203cf7 1604 tp->snd_cwnd_stamp = tcp_jiffies32;
a762a980
DM
1605 } else {
1606 /* Network starves. */
1607 if (tp->packets_out > tp->snd_cwnd_used)
1608 tp->snd_cwnd_used = tp->packets_out;
1609
15d33c07 1610 if (sysctl_tcp_slow_start_after_idle &&
c2203cf7 1611 (s32)(tcp_jiffies32 - tp->snd_cwnd_stamp) >= inet_csk(sk)->icsk_rto &&
1b1fc3fd 1612 !ca_ops->cong_control)
a762a980 1613 tcp_cwnd_application_limited(sk);
b0f71bd3
FY
1614
1615 /* The following conditions together indicate the starvation
1616 * is caused by insufficient sender buffer:
1617 * 1) just sent some data (see tcp_write_xmit)
1618 * 2) not cwnd limited (this else condition)
1619 * 3) no more data to send (null tcp_send_head )
1620 * 4) application is hitting buffer limit (SOCK_NOSPACE)
1621 */
1622 if (!tcp_send_head(sk) && sk->sk_socket &&
1623 test_bit(SOCK_NOSPACE, &sk->sk_socket->flags) &&
1624 (1 << sk->sk_state) & (TCPF_ESTABLISHED | TCPF_CLOSE_WAIT))
1625 tcp_chrono_start(sk, TCP_CHRONO_SNDBUF_LIMITED);
a762a980
DM
1626 }
1627}
1628
d4589926
ED
1629/* Minshall's variant of the Nagle send check. */
1630static bool tcp_minshall_check(const struct tcp_sock *tp)
1631{
1632 return after(tp->snd_sml, tp->snd_una) &&
1633 !after(tp->snd_sml, tp->snd_nxt);
1634}
1635
1636/* Update snd_sml if this skb is under mss
1637 * Note that a TSO packet might end with a sub-mss segment
1638 * The test is really :
1639 * if ((skb->len % mss) != 0)
1640 * tp->snd_sml = TCP_SKB_CB(skb)->end_seq;
1641 * But we can avoid doing the divide again given we already have
1642 * skb_pcount = skb->len / mss_now
0e3a4803 1643 */
d4589926
ED
1644static void tcp_minshall_update(struct tcp_sock *tp, unsigned int mss_now,
1645 const struct sk_buff *skb)
1646{
1647 if (skb->len < tcp_skb_pcount(skb) * mss_now)
1648 tp->snd_sml = TCP_SKB_CB(skb)->end_seq;
1649}
1650
1651/* Return false, if packet can be sent now without violation Nagle's rules:
1652 * 1. It is full sized. (provided by caller in %partial bool)
1653 * 2. Or it contains FIN. (already checked by caller)
1654 * 3. Or TCP_CORK is not set, and TCP_NODELAY is set.
1655 * 4. Or TCP_CORK is not set, and all sent packets are ACKed.
1656 * With Minshall's modification: all sent small packets are ACKed.
1657 */
1658static bool tcp_nagle_check(bool partial, const struct tcp_sock *tp,
cc93fc51 1659 int nonagle)
d4589926
ED
1660{
1661 return partial &&
1662 ((nonagle & TCP_NAGLE_CORK) ||
1663 (!nonagle && tp->packets_out && tcp_minshall_check(tp)));
1664}
605ad7f1
ED
1665
1666/* Return how many segs we'd like on a TSO packet,
1667 * to send one TSO packet per ms
1668 */
1b3878ca
NC
1669u32 tcp_tso_autosize(const struct sock *sk, unsigned int mss_now,
1670 int min_tso_segs)
605ad7f1
ED
1671{
1672 u32 bytes, segs;
1673
1674 bytes = min(sk->sk_pacing_rate >> 10,
1675 sk->sk_gso_max_size - 1 - MAX_TCP_HEADER);
1676
1677 /* Goal is to send at least one packet per ms,
1678 * not one big TSO packet every 100 ms.
1679 * This preserves ACK clocking and is consistent
1680 * with tcp_tso_should_defer() heuristic.
1681 */
1b3878ca 1682 segs = max_t(u32, bytes / mss_now, min_tso_segs);
605ad7f1
ED
1683
1684 return min_t(u32, segs, sk->sk_gso_max_segs);
1685}
1b3878ca 1686EXPORT_SYMBOL(tcp_tso_autosize);
605ad7f1 1687
ed6e7268
NC
1688/* Return the number of segments we want in the skb we are transmitting.
1689 * See if congestion control module wants to decide; otherwise, autosize.
1690 */
1691static u32 tcp_tso_segs(struct sock *sk, unsigned int mss_now)
1692{
1693 const struct tcp_congestion_ops *ca_ops = inet_csk(sk)->icsk_ca_ops;
1694 u32 tso_segs = ca_ops->tso_segs_goal ? ca_ops->tso_segs_goal(sk) : 0;
1695
1b3878ca
NC
1696 return tso_segs ? :
1697 tcp_tso_autosize(sk, mss_now, sysctl_tcp_min_tso_segs);
ed6e7268
NC
1698}
1699
d4589926
ED
1700/* Returns the portion of skb which can be sent right away */
1701static unsigned int tcp_mss_split_point(const struct sock *sk,
1702 const struct sk_buff *skb,
1703 unsigned int mss_now,
1704 unsigned int max_segs,
1705 int nonagle)
c1b4a7e6 1706{
cf533ea5 1707 const struct tcp_sock *tp = tcp_sk(sk);
d4589926 1708 u32 partial, needed, window, max_len;
c1b4a7e6 1709
90840def 1710 window = tcp_wnd_end(tp) - TCP_SKB_CB(skb)->seq;
1485348d 1711 max_len = mss_now * max_segs;
0e3a4803 1712
1485348d
BH
1713 if (likely(max_len <= window && skb != tcp_write_queue_tail(sk)))
1714 return max_len;
0e3a4803 1715
5ea3a748
IJ
1716 needed = min(skb->len, window);
1717
1485348d
BH
1718 if (max_len <= needed)
1719 return max_len;
0e3a4803 1720
d4589926
ED
1721 partial = needed % mss_now;
1722 /* If last segment is not a full MSS, check if Nagle rules allow us
1723 * to include this last segment in this skb.
1724 * Otherwise, we'll split the skb at last MSS boundary
1725 */
cc93fc51 1726 if (tcp_nagle_check(partial != 0, tp, nonagle))
d4589926
ED
1727 return needed - partial;
1728
1729 return needed;
c1b4a7e6
DM
1730}
1731
1732/* Can at least one segment of SKB be sent right now, according to the
1733 * congestion window rules? If so, return how many segments are allowed.
1734 */
cf533ea5
ED
1735static inline unsigned int tcp_cwnd_test(const struct tcp_sock *tp,
1736 const struct sk_buff *skb)
c1b4a7e6 1737{
d649a7a8 1738 u32 in_flight, cwnd, halfcwnd;
c1b4a7e6
DM
1739
1740 /* Don't be strict about the congestion window for the final FIN. */
4de075e0
ED
1741 if ((TCP_SKB_CB(skb)->tcp_flags & TCPHDR_FIN) &&
1742 tcp_skb_pcount(skb) == 1)
c1b4a7e6
DM
1743 return 1;
1744
1745 in_flight = tcp_packets_in_flight(tp);
1746 cwnd = tp->snd_cwnd;
d649a7a8
ED
1747 if (in_flight >= cwnd)
1748 return 0;
c1b4a7e6 1749
d649a7a8
ED
1750 /* For better scheduling, ensure we have at least
1751 * 2 GSO packets in flight.
1752 */
1753 halfcwnd = max(cwnd >> 1, 1U);
1754 return min(halfcwnd, cwnd - in_flight);
c1b4a7e6
DM
1755}
1756
b595076a 1757/* Initialize TSO state of a skb.
67edfef7 1758 * This must be invoked the first time we consider transmitting
c1b4a7e6
DM
1759 * SKB onto the wire.
1760 */
5bbb432c 1761static int tcp_init_tso_segs(struct sk_buff *skb, unsigned int mss_now)
c1b4a7e6
DM
1762{
1763 int tso_segs = tcp_skb_pcount(skb);
1764
f8269a49 1765 if (!tso_segs || (tso_segs > 1 && tcp_skb_mss(skb) != mss_now)) {
5bbb432c 1766 tcp_set_skb_tso_segs(skb, mss_now);
c1b4a7e6
DM
1767 tso_segs = tcp_skb_pcount(skb);
1768 }
1769 return tso_segs;
1770}
1771
c1b4a7e6 1772
a2a385d6 1773/* Return true if the Nagle test allows this packet to be
c1b4a7e6
DM
1774 * sent now.
1775 */
a2a385d6
ED
1776static inline bool tcp_nagle_test(const struct tcp_sock *tp, const struct sk_buff *skb,
1777 unsigned int cur_mss, int nonagle)
c1b4a7e6
DM
1778{
1779 /* Nagle rule does not apply to frames, which sit in the middle of the
1780 * write_queue (they have no chances to get new data).
1781 *
1782 * This is implemented in the callers, where they modify the 'nonagle'
1783 * argument based upon the location of SKB in the send queue.
1784 */
1785 if (nonagle & TCP_NAGLE_PUSH)
a2a385d6 1786 return true;
c1b4a7e6 1787
9b44190d
YC
1788 /* Don't use the nagle rule for urgent data (or for the final FIN). */
1789 if (tcp_urg_mode(tp) || (TCP_SKB_CB(skb)->tcp_flags & TCPHDR_FIN))
a2a385d6 1790 return true;
c1b4a7e6 1791
cc93fc51 1792 if (!tcp_nagle_check(skb->len < cur_mss, tp, nonagle))
a2a385d6 1793 return true;
c1b4a7e6 1794
a2a385d6 1795 return false;
c1b4a7e6
DM
1796}
1797
1798/* Does at least the first segment of SKB fit into the send window? */
a2a385d6
ED
1799static bool tcp_snd_wnd_test(const struct tcp_sock *tp,
1800 const struct sk_buff *skb,
1801 unsigned int cur_mss)
c1b4a7e6
DM
1802{
1803 u32 end_seq = TCP_SKB_CB(skb)->end_seq;
1804
1805 if (skb->len > cur_mss)
1806 end_seq = TCP_SKB_CB(skb)->seq + cur_mss;
1807
90840def 1808 return !after(end_seq, tcp_wnd_end(tp));
c1b4a7e6
DM
1809}
1810
c1b4a7e6
DM
1811/* Trim TSO SKB to LEN bytes, put the remaining data into a new packet
1812 * which is put after SKB on the list. It is very much like
1813 * tcp_fragment() except that it may make several kinds of assumptions
1814 * in order to speed up the splitting operation. In particular, we
1815 * know that all the data is in scatter-gather pages, and that the
1816 * packet has never been sent out before (and thus is not cloned).
1817 */
056834d9 1818static int tso_fragment(struct sock *sk, struct sk_buff *skb, unsigned int len,
c4ead4c5 1819 unsigned int mss_now, gfp_t gfp)
c1b4a7e6
DM
1820{
1821 struct sk_buff *buff;
1822 int nlen = skb->len - len;
9ce01461 1823 u8 flags;
c1b4a7e6
DM
1824
1825 /* All of a TSO frame must be composed of paged data. */
c8ac3774 1826 if (skb->len != skb->data_len)
6cc55e09 1827 return tcp_fragment(sk, skb, len, mss_now, gfp);
c1b4a7e6 1828
eb934478 1829 buff = sk_stream_alloc_skb(sk, 0, gfp, true);
51456b29 1830 if (unlikely(!buff))
c1b4a7e6
DM
1831 return -ENOMEM;
1832
3ab224be
HA
1833 sk->sk_wmem_queued += buff->truesize;
1834 sk_mem_charge(sk, buff->truesize);
b60b49ea 1835 buff->truesize += nlen;
c1b4a7e6
DM
1836 skb->truesize -= nlen;
1837
1838 /* Correct the sequence numbers. */
1839 TCP_SKB_CB(buff)->seq = TCP_SKB_CB(skb)->seq + len;
1840 TCP_SKB_CB(buff)->end_seq = TCP_SKB_CB(skb)->end_seq;
1841 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(buff)->seq;
1842
1843 /* PSH and FIN should only be set in the second packet. */
4de075e0
ED
1844 flags = TCP_SKB_CB(skb)->tcp_flags;
1845 TCP_SKB_CB(skb)->tcp_flags = flags & ~(TCPHDR_FIN | TCPHDR_PSH);
1846 TCP_SKB_CB(buff)->tcp_flags = flags;
c1b4a7e6
DM
1847
1848 /* This packet was never sent out yet, so no SACK bits. */
1849 TCP_SKB_CB(buff)->sacked = 0;
1850
a166140e
MKL
1851 tcp_skb_fragment_eor(skb, buff);
1852
84fa7933 1853 buff->ip_summed = skb->ip_summed = CHECKSUM_PARTIAL;
c1b4a7e6 1854 skb_split(skb, buff, len);
490cc7d0 1855 tcp_fragment_tstamp(skb, buff);
c1b4a7e6
DM
1856
1857 /* Fix up tso_factor for both original and new SKB. */
5bbb432c
ED
1858 tcp_set_skb_tso_segs(skb, mss_now);
1859 tcp_set_skb_tso_segs(buff, mss_now);
c1b4a7e6
DM
1860
1861 /* Link BUFF into the send queue. */
f4a775d1 1862 __skb_header_release(buff);
fe067e8a 1863 tcp_insert_write_queue_after(skb, buff, sk);
c1b4a7e6
DM
1864
1865 return 0;
1866}
1867
1868/* Try to defer sending, if possible, in order to minimize the amount
1869 * of TSO splitting we do. View it as a kind of TSO Nagle test.
1870 *
1871 * This algorithm is from John Heffner.
1872 */
ca8a2263 1873static bool tcp_tso_should_defer(struct sock *sk, struct sk_buff *skb,
605ad7f1 1874 bool *is_cwnd_limited, u32 max_segs)
c1b4a7e6 1875{
6687e988 1876 const struct inet_connection_sock *icsk = inet_csk(sk);
50c8339e
ED
1877 u32 age, send_win, cong_win, limit, in_flight;
1878 struct tcp_sock *tp = tcp_sk(sk);
50c8339e 1879 struct sk_buff *head;
ad9f4f50 1880 int win_divisor;
c1b4a7e6 1881
4de075e0 1882 if (TCP_SKB_CB(skb)->tcp_flags & TCPHDR_FIN)
ae8064ac 1883 goto send_now;
c1b4a7e6 1884
99d7662a 1885 if (icsk->icsk_ca_state >= TCP_CA_Recovery)
ae8064ac
JH
1886 goto send_now;
1887
5f852eb5
ED
1888 /* Avoid bursty behavior by allowing defer
1889 * only if the last write was recent.
1890 */
d635fbe2 1891 if ((s32)(tcp_jiffies32 - tp->lsndtime) > 0)
ae8064ac 1892 goto send_now;
908a75c1 1893
c1b4a7e6
DM
1894 in_flight = tcp_packets_in_flight(tp);
1895
056834d9 1896 BUG_ON(tcp_skb_pcount(skb) <= 1 || (tp->snd_cwnd <= in_flight));
c1b4a7e6 1897
90840def 1898 send_win = tcp_wnd_end(tp) - TCP_SKB_CB(skb)->seq;
c1b4a7e6
DM
1899
1900 /* From in_flight test above, we know that cwnd > in_flight. */
1901 cong_win = (tp->snd_cwnd - in_flight) * tp->mss_cache;
1902
1903 limit = min(send_win, cong_win);
1904
ba244fe9 1905 /* If a full-sized TSO skb can be sent, do it. */
605ad7f1 1906 if (limit >= max_segs * tp->mss_cache)
ae8064ac 1907 goto send_now;
ba244fe9 1908
62ad2761
IJ
1909 /* Middle in queue won't get any more data, full sendable already? */
1910 if ((skb != tcp_write_queue_tail(sk)) && (limit >= skb->len))
1911 goto send_now;
1912
ad9f4f50
ED
1913 win_divisor = ACCESS_ONCE(sysctl_tcp_tso_win_divisor);
1914 if (win_divisor) {
c1b4a7e6
DM
1915 u32 chunk = min(tp->snd_wnd, tp->snd_cwnd * tp->mss_cache);
1916
1917 /* If at least some fraction of a window is available,
1918 * just use it.
1919 */
ad9f4f50 1920 chunk /= win_divisor;
c1b4a7e6 1921 if (limit >= chunk)
ae8064ac 1922 goto send_now;
c1b4a7e6
DM
1923 } else {
1924 /* Different approach, try not to defer past a single
1925 * ACK. Receiver should ACK every other full sized
1926 * frame, so if we have space for more than 3 frames
1927 * then send now.
1928 */
6b5a5c0d 1929 if (limit > tcp_max_tso_deferred_mss(tp) * tp->mss_cache)
ae8064ac 1930 goto send_now;
c1b4a7e6
DM
1931 }
1932
50c8339e 1933 head = tcp_write_queue_head(sk);
385e2070 1934
9a568de4 1935 age = tcp_stamp_us_delta(tp->tcp_mstamp, head->skb_mstamp);
50c8339e
ED
1936 /* If next ACK is likely to come too late (half srtt), do not defer */
1937 if (age < (tp->srtt_us >> 4))
1938 goto send_now;
1939
5f852eb5 1940 /* Ok, it looks like it is advisable to defer. */
ae8064ac 1941
d2e1339f 1942 if (cong_win < send_win && cong_win <= skb->len)
ca8a2263
NC
1943 *is_cwnd_limited = true;
1944
a2a385d6 1945 return true;
ae8064ac
JH
1946
1947send_now:
a2a385d6 1948 return false;
c1b4a7e6
DM
1949}
1950
05cbc0db
FD
1951static inline void tcp_mtu_check_reprobe(struct sock *sk)
1952{
1953 struct inet_connection_sock *icsk = inet_csk(sk);
1954 struct tcp_sock *tp = tcp_sk(sk);
1955 struct net *net = sock_net(sk);
1956 u32 interval;
1957 s32 delta;
1958
1959 interval = net->ipv4.sysctl_tcp_probe_interval;
c74df29a 1960 delta = tcp_jiffies32 - icsk->icsk_mtup.probe_timestamp;
05cbc0db
FD
1961 if (unlikely(delta >= interval * HZ)) {
1962 int mss = tcp_current_mss(sk);
1963
1964 /* Update current search range */
1965 icsk->icsk_mtup.probe_size = 0;
1966 icsk->icsk_mtup.search_high = tp->rx_opt.mss_clamp +
1967 sizeof(struct tcphdr) +
1968 icsk->icsk_af_ops->net_header_len;
1969 icsk->icsk_mtup.search_low = tcp_mss_to_mtu(sk, mss);
1970
1971 /* Update probe time stamp */
c74df29a 1972 icsk->icsk_mtup.probe_timestamp = tcp_jiffies32;
05cbc0db
FD
1973 }
1974}
1975
5d424d5a 1976/* Create a new MTU probe if we are ready.
67edfef7
AK
1977 * MTU probe is regularly attempting to increase the path MTU by
1978 * deliberately sending larger packets. This discovers routing
1979 * changes resulting in larger path MTUs.
1980 *
5d424d5a
JH
1981 * Returns 0 if we should wait to probe (no cwnd available),
1982 * 1 if a probe was sent,
056834d9
IJ
1983 * -1 otherwise
1984 */
5d424d5a
JH
1985static int tcp_mtu_probe(struct sock *sk)
1986{
5d424d5a 1987 struct inet_connection_sock *icsk = inet_csk(sk);
12a59abc 1988 struct tcp_sock *tp = tcp_sk(sk);
5d424d5a 1989 struct sk_buff *skb, *nskb, *next;
6b58e0a5 1990 struct net *net = sock_net(sk);
5d424d5a 1991 int probe_size;
91cc17c0 1992 int size_needed;
12a59abc 1993 int copy, len;
5d424d5a 1994 int mss_now;
6b58e0a5 1995 int interval;
5d424d5a
JH
1996
1997 /* Not currently probing/verifying,
1998 * not in recovery,
1999 * have enough cwnd, and
12a59abc
ED
2000 * not SACKing (the variable headers throw things off)
2001 */
2002 if (likely(!icsk->icsk_mtup.enabled ||
2003 icsk->icsk_mtup.probe_size ||
2004 inet_csk(sk)->icsk_ca_state != TCP_CA_Open ||
2005 tp->snd_cwnd < 11 ||
2006 tp->rx_opt.num_sacks || tp->rx_opt.dsack))
5d424d5a
JH
2007 return -1;
2008
6b58e0a5
FD
2009 /* Use binary search for probe_size between tcp_mss_base,
2010 * and current mss_clamp. if (search_high - search_low)
2011 * smaller than a threshold, backoff from probing.
2012 */
0c54b85f 2013 mss_now = tcp_current_mss(sk);
6b58e0a5
FD
2014 probe_size = tcp_mtu_to_mss(sk, (icsk->icsk_mtup.search_high +
2015 icsk->icsk_mtup.search_low) >> 1);
91cc17c0 2016 size_needed = probe_size + (tp->reordering + 1) * tp->mss_cache;
6b58e0a5 2017 interval = icsk->icsk_mtup.search_high - icsk->icsk_mtup.search_low;
05cbc0db
FD
2018 /* When misfortune happens, we are reprobing actively,
2019 * and then reprobe timer has expired. We stick with current
2020 * probing process by not resetting search range to its orignal.
2021 */
6b58e0a5 2022 if (probe_size > tcp_mtu_to_mss(sk, icsk->icsk_mtup.search_high) ||
05cbc0db
FD
2023 interval < net->ipv4.sysctl_tcp_probe_threshold) {
2024 /* Check whether enough time has elaplased for
2025 * another round of probing.
2026 */
2027 tcp_mtu_check_reprobe(sk);
5d424d5a
JH
2028 return -1;
2029 }
2030
2031 /* Have enough data in the send queue to probe? */
7f9c33e5 2032 if (tp->write_seq - tp->snd_nxt < size_needed)
5d424d5a
JH
2033 return -1;
2034
91cc17c0
IJ
2035 if (tp->snd_wnd < size_needed)
2036 return -1;
90840def 2037 if (after(tp->snd_nxt + size_needed, tcp_wnd_end(tp)))
91cc17c0 2038 return 0;
5d424d5a 2039
d67c58e9
IJ
2040 /* Do we need to wait to drain cwnd? With none in flight, don't stall */
2041 if (tcp_packets_in_flight(tp) + 2 > tp->snd_cwnd) {
2042 if (!tcp_packets_in_flight(tp))
5d424d5a
JH
2043 return -1;
2044 else
2045 return 0;
2046 }
2047
2048 /* We're allowed to probe. Build it now. */
eb934478 2049 nskb = sk_stream_alloc_skb(sk, probe_size, GFP_ATOMIC, false);
51456b29 2050 if (!nskb)
5d424d5a 2051 return -1;
3ab224be
HA
2052 sk->sk_wmem_queued += nskb->truesize;
2053 sk_mem_charge(sk, nskb->truesize);
5d424d5a 2054
fe067e8a 2055 skb = tcp_send_head(sk);
5d424d5a
JH
2056
2057 TCP_SKB_CB(nskb)->seq = TCP_SKB_CB(skb)->seq;
2058 TCP_SKB_CB(nskb)->end_seq = TCP_SKB_CB(skb)->seq + probe_size;
4de075e0 2059 TCP_SKB_CB(nskb)->tcp_flags = TCPHDR_ACK;
5d424d5a
JH
2060 TCP_SKB_CB(nskb)->sacked = 0;
2061 nskb->csum = 0;
84fa7933 2062 nskb->ip_summed = skb->ip_summed;
5d424d5a 2063
50c4817e
IJ
2064 tcp_insert_write_queue_before(nskb, skb, sk);
2065
5d424d5a 2066 len = 0;
234b6860 2067 tcp_for_write_queue_from_safe(skb, next, sk) {
5d424d5a 2068 copy = min_t(int, skb->len, probe_size - len);
2fe664f1 2069 if (nskb->ip_summed) {
5d424d5a 2070 skb_copy_bits(skb, 0, skb_put(nskb, copy), copy);
2fe664f1
DCS
2071 } else {
2072 __wsum csum = skb_copy_and_csum_bits(skb, 0,
2073 skb_put(nskb, copy),
2074 copy, 0);
2075 nskb->csum = csum_block_add(nskb->csum, csum, len);
2076 }
5d424d5a
JH
2077
2078 if (skb->len <= copy) {
2079 /* We've eaten all the data from this skb.
2080 * Throw it away. */
4de075e0 2081 TCP_SKB_CB(nskb)->tcp_flags |= TCP_SKB_CB(skb)->tcp_flags;
fe067e8a 2082 tcp_unlink_write_queue(skb, sk);
3ab224be 2083 sk_wmem_free_skb(sk, skb);
5d424d5a 2084 } else {
4de075e0 2085 TCP_SKB_CB(nskb)->tcp_flags |= TCP_SKB_CB(skb)->tcp_flags &
a3433f35 2086 ~(TCPHDR_FIN|TCPHDR_PSH);
5d424d5a
JH
2087 if (!skb_shinfo(skb)->nr_frags) {
2088 skb_pull(skb, copy);
84fa7933 2089 if (skb->ip_summed != CHECKSUM_PARTIAL)
056834d9
IJ
2090 skb->csum = csum_partial(skb->data,
2091 skb->len, 0);
5d424d5a
JH
2092 } else {
2093 __pskb_trim_head(skb, copy);
5bbb432c 2094 tcp_set_skb_tso_segs(skb, mss_now);
5d424d5a
JH
2095 }
2096 TCP_SKB_CB(skb)->seq += copy;
2097 }
2098
2099 len += copy;
234b6860
IJ
2100
2101 if (len >= probe_size)
2102 break;
5d424d5a 2103 }
5bbb432c 2104 tcp_init_tso_segs(nskb, nskb->len);
5d424d5a
JH
2105
2106 /* We're ready to send. If this fails, the probe will
7faee5c0
ED
2107 * be resegmented into mss-sized pieces by tcp_write_xmit().
2108 */
5d424d5a
JH
2109 if (!tcp_transmit_skb(sk, nskb, 1, GFP_ATOMIC)) {
2110 /* Decrement cwnd here because we are sending
056834d9 2111 * effectively two packets. */
5d424d5a 2112 tp->snd_cwnd--;
66f5fe62 2113 tcp_event_new_data_sent(sk, nskb);
5d424d5a
JH
2114
2115 icsk->icsk_mtup.probe_size = tcp_mss_to_mtu(sk, nskb->len);
0e7b1368
JH
2116 tp->mtu_probe.probe_seq_start = TCP_SKB_CB(nskb)->seq;
2117 tp->mtu_probe.probe_seq_end = TCP_SKB_CB(nskb)->end_seq;
5d424d5a
JH
2118
2119 return 1;
2120 }
2121
2122 return -1;
2123}
2124
218af599
ED
2125static bool tcp_pacing_check(const struct sock *sk)
2126{
2127 return tcp_needs_internal_pacing(sk) &&
2128 hrtimer_active(&tcp_sk(sk)->pacing_timer);
2129}
2130
f9616c35
ED
2131/* TCP Small Queues :
2132 * Control number of packets in qdisc/devices to two packets / or ~1 ms.
2133 * (These limits are doubled for retransmits)
2134 * This allows for :
2135 * - better RTT estimation and ACK scheduling
2136 * - faster recovery
2137 * - high rates
2138 * Alas, some drivers / subsystems require a fair amount
2139 * of queued bytes to ensure line rate.
2140 * One example is wifi aggregation (802.11 AMPDU)
2141 */
2142static bool tcp_small_queue_check(struct sock *sk, const struct sk_buff *skb,
2143 unsigned int factor)
2144{
2145 unsigned int limit;
2146
2147 limit = max(2 * skb->truesize, sk->sk_pacing_rate >> 10);
2148 limit = min_t(u32, limit, sysctl_tcp_limit_output_bytes);
2149 limit <<= factor;
2150
14afee4b 2151 if (refcount_read(&sk->sk_wmem_alloc) > limit) {
75eefc6c
ED
2152 /* Always send the 1st or 2nd skb in write queue.
2153 * No need to wait for TX completion to call us back,
2154 * after softirq/tasklet schedule.
2155 * This helps when TX completions are delayed too much.
2156 */
2157 if (skb == sk->sk_write_queue.next ||
2158 skb->prev == sk->sk_write_queue.next)
2159 return false;
2160
7aa5470c 2161 set_bit(TSQ_THROTTLED, &sk->sk_tsq_flags);
f9616c35
ED
2162 /* It is possible TX completion already happened
2163 * before we set TSQ_THROTTLED, so we must
2164 * test again the condition.
2165 */
2166 smp_mb__after_atomic();
14afee4b 2167 if (refcount_read(&sk->sk_wmem_alloc) > limit)
f9616c35
ED
2168 return true;
2169 }
2170 return false;
2171}
2172
05b055e8
FY
2173static void tcp_chrono_set(struct tcp_sock *tp, const enum tcp_chrono new)
2174{
628174cc 2175 const u32 now = tcp_jiffies32;
efe967cd 2176 enum tcp_chrono old = tp->chrono_type;
05b055e8 2177
efe967cd
AB
2178 if (old > TCP_CHRONO_UNSPEC)
2179 tp->chrono_stat[old - 1] += now - tp->chrono_start;
05b055e8
FY
2180 tp->chrono_start = now;
2181 tp->chrono_type = new;
2182}
2183
2184void tcp_chrono_start(struct sock *sk, const enum tcp_chrono type)
2185{
2186 struct tcp_sock *tp = tcp_sk(sk);
2187
2188 /* If there are multiple conditions worthy of tracking in a
0f87230d
FY
2189 * chronograph then the highest priority enum takes precedence
2190 * over the other conditions. So that if something "more interesting"
05b055e8
FY
2191 * starts happening, stop the previous chrono and start a new one.
2192 */
2193 if (type > tp->chrono_type)
2194 tcp_chrono_set(tp, type);
2195}
2196
2197void tcp_chrono_stop(struct sock *sk, const enum tcp_chrono type)
2198{
2199 struct tcp_sock *tp = tcp_sk(sk);
2200
0f87230d
FY
2201
2202 /* There are multiple conditions worthy of tracking in a
2203 * chronograph, so that the highest priority enum takes
2204 * precedence over the other conditions (see tcp_chrono_start).
2205 * If a condition stops, we only stop chrono tracking if
2206 * it's the "most interesting" or current chrono we are
2207 * tracking and starts busy chrono if we have pending data.
2208 */
2209 if (tcp_write_queue_empty(sk))
2210 tcp_chrono_set(tp, TCP_CHRONO_UNSPEC);
2211 else if (type == tp->chrono_type)
2212 tcp_chrono_set(tp, TCP_CHRONO_BUSY);
05b055e8
FY
2213}
2214
1da177e4
LT
2215/* This routine writes packets to the network. It advances the
2216 * send_head. This happens as incoming acks open up the remote
2217 * window for us.
2218 *
f8269a49
IJ
2219 * LARGESEND note: !tcp_urg_mode is overkill, only frames between
2220 * snd_up-64k-mss .. snd_up cannot be large. However, taking into
2221 * account rare use of URG, this is not a big flaw.
2222 *
6ba8a3b1
ND
2223 * Send at most one packet when push_one > 0. Temporarily ignore
2224 * cwnd limit to force at most one packet out when push_one == 2.
2225
a2a385d6
ED
2226 * Returns true, if no segments are in flight and we have queued segments,
2227 * but cannot send anything now because of SWS or another problem.
1da177e4 2228 */
a2a385d6
ED
2229static bool tcp_write_xmit(struct sock *sk, unsigned int mss_now, int nonagle,
2230 int push_one, gfp_t gfp)
1da177e4
LT
2231{
2232 struct tcp_sock *tp = tcp_sk(sk);
92df7b51 2233 struct sk_buff *skb;
c1b4a7e6
DM
2234 unsigned int tso_segs, sent_pkts;
2235 int cwnd_quota;
5d424d5a 2236 int result;
5615f886 2237 bool is_cwnd_limited = false, is_rwnd_limited = false;
605ad7f1 2238 u32 max_segs;
1da177e4 2239
92df7b51 2240 sent_pkts = 0;
5d424d5a 2241
d5dd9175
IJ
2242 if (!push_one) {
2243 /* Do MTU probing. */
2244 result = tcp_mtu_probe(sk);
2245 if (!result) {
a2a385d6 2246 return false;
d5dd9175
IJ
2247 } else if (result > 0) {
2248 sent_pkts = 1;
2249 }
5d424d5a
JH
2250 }
2251
ed6e7268 2252 max_segs = tcp_tso_segs(sk, mss_now);
9a568de4 2253 tcp_mstamp_refresh(tp);
fe067e8a 2254 while ((skb = tcp_send_head(sk))) {
c8ac3774
HX
2255 unsigned int limit;
2256
218af599
ED
2257 if (tcp_pacing_check(sk))
2258 break;
2259
5bbb432c 2260 tso_segs = tcp_init_tso_segs(skb, mss_now);
c1b4a7e6 2261 BUG_ON(!tso_segs);
aa93466b 2262
9d186cac 2263 if (unlikely(tp->repair) && tp->repair_queue == TCP_SEND_QUEUE) {
7faee5c0 2264 /* "skb_mstamp" is used as a start point for the retransmit timer */
385e2070 2265 skb->skb_mstamp = tp->tcp_mstamp;
ec342325 2266 goto repair; /* Skip network transmission */
9d186cac 2267 }
ec342325 2268
b68e9f85 2269 cwnd_quota = tcp_cwnd_test(tp, skb);
6ba8a3b1
ND
2270 if (!cwnd_quota) {
2271 if (push_one == 2)
2272 /* Force out a loss probe pkt. */
2273 cwnd_quota = 1;
2274 else
2275 break;
2276 }
b68e9f85 2277
5615f886
FY
2278 if (unlikely(!tcp_snd_wnd_test(tp, skb, mss_now))) {
2279 is_rwnd_limited = true;
b68e9f85 2280 break;
5615f886 2281 }
b68e9f85 2282
d6a4e26a 2283 if (tso_segs == 1) {
c1b4a7e6
DM
2284 if (unlikely(!tcp_nagle_test(tp, skb, mss_now,
2285 (tcp_skb_is_last(sk, skb) ?
2286 nonagle : TCP_NAGLE_PUSH))))
2287 break;
2288 } else {
ca8a2263 2289 if (!push_one &&
605ad7f1
ED
2290 tcp_tso_should_defer(sk, skb, &is_cwnd_limited,
2291 max_segs))
c1b4a7e6
DM
2292 break;
2293 }
aa93466b 2294
605ad7f1 2295 limit = mss_now;
d6a4e26a 2296 if (tso_segs > 1 && !tcp_urg_mode(tp))
605ad7f1
ED
2297 limit = tcp_mss_split_point(sk, skb, mss_now,
2298 min_t(unsigned int,
2299 cwnd_quota,
2300 max_segs),
2301 nonagle);
2302
2303 if (skb->len > limit &&
2304 unlikely(tso_fragment(sk, skb, limit, mss_now, gfp)))
2305 break;
2306
7aa5470c
ED
2307 if (test_bit(TCP_TSQ_DEFERRED, &sk->sk_tsq_flags))
2308 clear_bit(TCP_TSQ_DEFERRED, &sk->sk_tsq_flags);
f9616c35
ED
2309 if (tcp_small_queue_check(sk, skb, 0))
2310 break;
c9eeec26 2311
d5dd9175 2312 if (unlikely(tcp_transmit_skb(sk, skb, 1, gfp)))
92df7b51 2313 break;
1da177e4 2314
ec342325 2315repair:
92df7b51
DM
2316 /* Advance the send_head. This one is sent out.
2317 * This call will increment packets_out.
2318 */
66f5fe62 2319 tcp_event_new_data_sent(sk, skb);
1da177e4 2320
92df7b51 2321 tcp_minshall_update(tp, mss_now, skb);
a262f0cd 2322 sent_pkts += tcp_skb_pcount(skb);
d5dd9175
IJ
2323
2324 if (push_one)
2325 break;
92df7b51 2326 }
1da177e4 2327
5615f886
FY
2328 if (is_rwnd_limited)
2329 tcp_chrono_start(sk, TCP_CHRONO_RWND_LIMITED);
2330 else
2331 tcp_chrono_stop(sk, TCP_CHRONO_RWND_LIMITED);
2332
aa93466b 2333 if (likely(sent_pkts)) {
684bad11
YC
2334 if (tcp_in_cwnd_reduction(sk))
2335 tp->prr_out += sent_pkts;
6ba8a3b1
ND
2336
2337 /* Send one loss probe per tail loss episode. */
2338 if (push_one != 2)
2339 tcp_schedule_loss_probe(sk);
d2e1339f 2340 is_cwnd_limited |= (tcp_packets_in_flight(tp) >= tp->snd_cwnd);
ca8a2263 2341 tcp_cwnd_validate(sk, is_cwnd_limited);
a2a385d6 2342 return false;
1da177e4 2343 }
b340b264 2344 return !tp->packets_out && tcp_send_head(sk);
6ba8a3b1
ND
2345}
2346
2347bool tcp_schedule_loss_probe(struct sock *sk)
2348{
2349 struct inet_connection_sock *icsk = inet_csk(sk);
2350 struct tcp_sock *tp = tcp_sk(sk);
a2815817 2351 u32 timeout, rto_delta_us;
6ba8a3b1 2352
6ba8a3b1
ND
2353 /* Don't do any loss probe on a Fast Open connection before 3WHS
2354 * finishes.
2355 */
f9b99582 2356 if (tp->fastopen_rsk)
6ba8a3b1
ND
2357 return false;
2358
6ba8a3b1
ND
2359 /* Schedule a loss probe in 2*RTT for SACK capable connections
2360 * in Open state, that are either limited by cwnd or application.
2361 */
bec41a11
YC
2362 if ((sysctl_tcp_early_retrans != 3 && sysctl_tcp_early_retrans != 4) ||
2363 !tp->packets_out || !tcp_is_sack(tp) ||
2364 icsk->icsk_ca_state != TCP_CA_Open)
6ba8a3b1
ND
2365 return false;
2366
2367 if ((tp->snd_cwnd > tcp_packets_in_flight(tp)) &&
2368 tcp_send_head(sk))
2369 return false;
2370
bb4d991a 2371 /* Probe timeout is 2*rtt. Add minimum RTO to account
f9b99582
YC
2372 * for delayed ack when there's one outstanding packet. If no RTT
2373 * sample is available then probe after TCP_TIMEOUT_INIT.
6ba8a3b1 2374 */
bb4d991a
YC
2375 if (tp->srtt_us) {
2376 timeout = usecs_to_jiffies(tp->srtt_us >> 2);
2377 if (tp->packets_out == 1)
2378 timeout += TCP_RTO_MIN;
2379 else
2380 timeout += TCP_TIMEOUT_MIN;
2381 } else {
2382 timeout = TCP_TIMEOUT_INIT;
2383 }
6ba8a3b1 2384
a2815817
NC
2385 /* If the RTO formula yields an earlier time, then use that time. */
2386 rto_delta_us = tcp_rto_delta_us(sk); /* How far in future is RTO? */
2387 if (rto_delta_us > 0)
2388 timeout = min_t(u32, timeout, usecs_to_jiffies(rto_delta_us));
6ba8a3b1
ND
2389
2390 inet_csk_reset_xmit_timer(sk, ICSK_TIME_LOSS_PROBE, timeout,
2391 TCP_RTO_MAX);
2392 return true;
2393}
2394
1f3279ae
ED
2395/* Thanks to skb fast clones, we can detect if a prior transmit of
2396 * a packet is still in a qdisc or driver queue.
2397 * In this case, there is very little point doing a retransmit !
1f3279ae
ED
2398 */
2399static bool skb_still_in_host_queue(const struct sock *sk,
2400 const struct sk_buff *skb)
2401{
39bb5e62 2402 if (unlikely(skb_fclone_busy(sk, skb))) {
c10d9310
ED
2403 NET_INC_STATS(sock_net(sk),
2404 LINUX_MIB_TCPSPURIOUS_RTX_HOSTQUEUES);
1f3279ae
ED
2405 return true;
2406 }
2407 return false;
2408}
2409
b340b264 2410/* When probe timeout (PTO) fires, try send a new segment if possible, else
6ba8a3b1
ND
2411 * retransmit the last segment.
2412 */
2413void tcp_send_loss_probe(struct sock *sk)
2414{
9b717a8d 2415 struct tcp_sock *tp = tcp_sk(sk);
6ba8a3b1
ND
2416 struct sk_buff *skb;
2417 int pcount;
2418 int mss = tcp_current_mss(sk);
6ba8a3b1 2419
b340b264
YC
2420 skb = tcp_send_head(sk);
2421 if (skb) {
2422 if (tcp_snd_wnd_test(tp, skb, mss)) {
2423 pcount = tp->packets_out;
2424 tcp_write_xmit(sk, mss, TCP_NAGLE_OFF, 2, GFP_ATOMIC);
2425 if (tp->packets_out > pcount)
2426 goto probe_sent;
2427 goto rearm_timer;
2428 }
2429 skb = tcp_write_queue_prev(sk, skb);
2430 } else {
2431 skb = tcp_write_queue_tail(sk);
6ba8a3b1
ND
2432 }
2433
9b717a8d
ND
2434 /* At most one outstanding TLP retransmission. */
2435 if (tp->tlp_high_seq)
2436 goto rearm_timer;
2437
6ba8a3b1 2438 /* Retransmit last segment. */
6ba8a3b1
ND
2439 if (WARN_ON(!skb))
2440 goto rearm_timer;
2441
1f3279ae
ED
2442 if (skb_still_in_host_queue(sk, skb))
2443 goto rearm_timer;
2444
6ba8a3b1
ND
2445 pcount = tcp_skb_pcount(skb);
2446 if (WARN_ON(!pcount))
2447 goto rearm_timer;
2448
2449 if ((pcount > 1) && (skb->len > (pcount - 1) * mss)) {
6cc55e09
OP
2450 if (unlikely(tcp_fragment(sk, skb, (pcount - 1) * mss, mss,
2451 GFP_ATOMIC)))
6ba8a3b1 2452 goto rearm_timer;
b340b264 2453 skb = tcp_write_queue_next(sk, skb);
6ba8a3b1
ND
2454 }
2455
2456 if (WARN_ON(!skb || !tcp_skb_pcount(skb)))
2457 goto rearm_timer;
2458
10d3be56 2459 if (__tcp_retransmit_skb(sk, skb, 1))
b340b264 2460 goto rearm_timer;
6ba8a3b1 2461
9b717a8d 2462 /* Record snd_nxt for loss detection. */
b340b264 2463 tp->tlp_high_seq = tp->snd_nxt;
9b717a8d 2464
b340b264 2465probe_sent:
c10d9310 2466 NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPLOSSPROBES);
b340b264
YC
2467 /* Reset s.t. tcp_rearm_rto will restart timer from now */
2468 inet_csk(sk)->icsk_pending = 0;
6ba8a3b1 2469rearm_timer:
fcd16c0a 2470 tcp_rearm_rto(sk);
1da177e4
LT
2471}
2472
a762a980
DM
2473/* Push out any pending frames which were held back due to
2474 * TCP_CORK or attempt at coalescing tiny packets.
2475 * The socket must be locked by the caller.
2476 */
9e412ba7
IJ
2477void __tcp_push_pending_frames(struct sock *sk, unsigned int cur_mss,
2478 int nonagle)
a762a980 2479{
726e07a8
IJ
2480 /* If we are closed, the bytes will have to remain here.
2481 * In time closedown will finish, we empty the write queue and
2482 * all will be happy.
2483 */
2484 if (unlikely(sk->sk_state == TCP_CLOSE))
2485 return;
2486
99a1dec7 2487 if (tcp_write_xmit(sk, cur_mss, nonagle, 0,
7450aaf6 2488 sk_gfp_mask(sk, GFP_ATOMIC)))
726e07a8 2489 tcp_check_probe_timer(sk);
a762a980
DM
2490}
2491
c1b4a7e6
DM
2492/* Send _single_ skb sitting at the send head. This function requires
2493 * true push pending frames to setup probe timer etc.
2494 */
2495void tcp_push_one(struct sock *sk, unsigned int mss_now)
2496{
fe067e8a 2497 struct sk_buff *skb = tcp_send_head(sk);
c1b4a7e6
DM
2498
2499 BUG_ON(!skb || skb->len < mss_now);
2500
d5dd9175 2501 tcp_write_xmit(sk, mss_now, TCP_NAGLE_PUSH, 1, sk->sk_allocation);
c1b4a7e6
DM
2502}
2503
1da177e4
LT
2504/* This function returns the amount that we can raise the
2505 * usable window based on the following constraints
e905a9ed 2506 *
1da177e4
LT
2507 * 1. The window can never be shrunk once it is offered (RFC 793)
2508 * 2. We limit memory per socket
2509 *
2510 * RFC 1122:
2511 * "the suggested [SWS] avoidance algorithm for the receiver is to keep
2512 * RECV.NEXT + RCV.WIN fixed until:
2513 * RCV.BUFF - RCV.USER - RCV.WINDOW >= min(1/2 RCV.BUFF, MSS)"
2514 *
2515 * i.e. don't raise the right edge of the window until you can raise
2516 * it at least MSS bytes.
2517 *
2518 * Unfortunately, the recommended algorithm breaks header prediction,
2519 * since header prediction assumes th->window stays fixed.
2520 *
2521 * Strictly speaking, keeping th->window fixed violates the receiver
2522 * side SWS prevention criteria. The problem is that under this rule
2523 * a stream of single byte packets will cause the right side of the
2524 * window to always advance by a single byte.
e905a9ed 2525 *
1da177e4
LT
2526 * Of course, if the sender implements sender side SWS prevention
2527 * then this will not be a problem.
e905a9ed 2528 *
1da177e4 2529 * BSD seems to make the following compromise:
e905a9ed 2530 *
1da177e4
LT
2531 * If the free space is less than the 1/4 of the maximum
2532 * space available and the free space is less than 1/2 mss,
2533 * then set the window to 0.
2534 * [ Actually, bsd uses MSS and 1/4 of maximal _window_ ]
2535 * Otherwise, just prevent the window from shrinking
2536 * and from being larger than the largest representable value.
2537 *
2538 * This prevents incremental opening of the window in the regime
2539 * where TCP is limited by the speed of the reader side taking
2540 * data out of the TCP receive queue. It does nothing about
2541 * those cases where the window is constrained on the sender side
2542 * because the pipeline is full.
2543 *
2544 * BSD also seems to "accidentally" limit itself to windows that are a
2545 * multiple of MSS, at least until the free space gets quite small.
2546 * This would appear to be a side effect of the mbuf implementation.
2547 * Combining these two algorithms results in the observed behavior
2548 * of having a fixed window size at almost all times.
2549 *
2550 * Below we obtain similar behavior by forcing the offered window to
2551 * a multiple of the mss when it is feasible to do so.
2552 *
2553 * Note, we don't "adjust" for TIMESTAMP or SACK option bytes.
2554 * Regular options like TIMESTAMP are taken into account.
2555 */
2556u32 __tcp_select_window(struct sock *sk)
2557{
463c84b9 2558 struct inet_connection_sock *icsk = inet_csk(sk);
1da177e4 2559 struct tcp_sock *tp = tcp_sk(sk);
caa20d9a 2560 /* MSS for the peer's data. Previous versions used mss_clamp
1da177e4
LT
2561 * here. I don't know if the value based on our guesses
2562 * of peer's MSS is better for the performance. It's more correct
2563 * but may be worse for the performance because of rcv_mss
2564 * fluctuations. --SAW 1998/11/1
2565 */
463c84b9 2566 int mss = icsk->icsk_ack.rcv_mss;
1da177e4 2567 int free_space = tcp_space(sk);
86c1a045
FW
2568 int allowed_space = tcp_full_space(sk);
2569 int full_space = min_t(int, tp->window_clamp, allowed_space);
1da177e4
LT
2570 int window;
2571
06425c30 2572 if (unlikely(mss > full_space)) {
e905a9ed 2573 mss = full_space;
06425c30
ED
2574 if (mss <= 0)
2575 return 0;
2576 }
b92edbe0 2577 if (free_space < (full_space >> 1)) {
463c84b9 2578 icsk->icsk_ack.quick = 0;
1da177e4 2579
b8da51eb 2580 if (tcp_under_memory_pressure(sk))
056834d9
IJ
2581 tp->rcv_ssthresh = min(tp->rcv_ssthresh,
2582 4U * tp->advmss);
1da177e4 2583
86c1a045
FW
2584 /* free_space might become our new window, make sure we don't
2585 * increase it due to wscale.
2586 */
2587 free_space = round_down(free_space, 1 << tp->rx_opt.rcv_wscale);
2588
2589 /* if free space is less than mss estimate, or is below 1/16th
2590 * of the maximum allowed, try to move to zero-window, else
2591 * tcp_clamp_window() will grow rcv buf up to tcp_rmem[2], and
2592 * new incoming data is dropped due to memory limits.
2593 * With large window, mss test triggers way too late in order
2594 * to announce zero window in time before rmem limit kicks in.
2595 */
2596 if (free_space < (allowed_space >> 4) || free_space < mss)
1da177e4
LT
2597 return 0;
2598 }
2599
2600 if (free_space > tp->rcv_ssthresh)
2601 free_space = tp->rcv_ssthresh;
2602
2603 /* Don't do rounding if we are using window scaling, since the
2604 * scaled window will not line up with the MSS boundary anyway.
2605 */
1da177e4
LT
2606 if (tp->rx_opt.rcv_wscale) {
2607 window = free_space;
2608
2609 /* Advertise enough space so that it won't get scaled away.
2610 * Import case: prevent zero window announcement if
2611 * 1<<rcv_wscale > mss.
2612 */
1935299d 2613 window = ALIGN(window, (1 << tp->rx_opt.rcv_wscale));
1da177e4 2614 } else {
1935299d 2615 window = tp->rcv_wnd;
1da177e4
LT
2616 /* Get the largest window that is a nice multiple of mss.
2617 * Window clamp already applied above.
2618 * If our current window offering is within 1 mss of the
2619 * free space we just keep it. This prevents the divide
2620 * and multiply from happening most of the time.
2621 * We also don't do any window rounding when the free space
2622 * is too small.
2623 */
2624 if (window <= free_space - mss || window > free_space)
1935299d 2625 window = rounddown(free_space, mss);
84565070 2626 else if (mss == full_space &&
b92edbe0 2627 free_space > window + (full_space >> 1))
84565070 2628 window = free_space;
1da177e4
LT
2629 }
2630
2631 return window;
2632}
2633
cfea5a68
MKL
2634void tcp_skb_collapse_tstamp(struct sk_buff *skb,
2635 const struct sk_buff *next_skb)
082ac2d5 2636{
0a2cf20c
SHY
2637 if (unlikely(tcp_has_tx_tstamp(next_skb))) {
2638 const struct skb_shared_info *next_shinfo =
2639 skb_shinfo(next_skb);
082ac2d5
MKL
2640 struct skb_shared_info *shinfo = skb_shinfo(skb);
2641
0a2cf20c 2642 shinfo->tx_flags |= next_shinfo->tx_flags & SKBTX_ANY_TSTAMP;
082ac2d5 2643 shinfo->tskey = next_shinfo->tskey;
2de8023e
MKL
2644 TCP_SKB_CB(skb)->txstamp_ack |=
2645 TCP_SKB_CB(next_skb)->txstamp_ack;
082ac2d5
MKL
2646 }
2647}
2648
4a17fc3a 2649/* Collapses two adjacent SKB's during retransmission. */
f8071cde 2650static bool tcp_collapse_retrans(struct sock *sk, struct sk_buff *skb)
1da177e4
LT
2651{
2652 struct tcp_sock *tp = tcp_sk(sk);
fe067e8a 2653 struct sk_buff *next_skb = tcp_write_queue_next(sk, skb);
058dc334 2654 int skb_size, next_skb_size;
1da177e4 2655
058dc334
IJ
2656 skb_size = skb->len;
2657 next_skb_size = next_skb->len;
1da177e4 2658
058dc334 2659 BUG_ON(tcp_skb_pcount(skb) != 1 || tcp_skb_pcount(next_skb) != 1);
a6963a6b 2660
f8071cde
ED
2661 if (next_skb_size) {
2662 if (next_skb_size <= skb_availroom(skb))
2663 skb_copy_bits(next_skb, 0, skb_put(skb, next_skb_size),
2664 next_skb_size);
2665 else if (!skb_shift(skb, next_skb, next_skb_size))
2666 return false;
2667 }
058dc334 2668 tcp_highest_sack_combine(sk, next_skb, skb);
1da177e4 2669
058dc334 2670 tcp_unlink_write_queue(next_skb, sk);
1da177e4 2671
058dc334
IJ
2672 if (next_skb->ip_summed == CHECKSUM_PARTIAL)
2673 skb->ip_summed = CHECKSUM_PARTIAL;
1da177e4 2674
058dc334
IJ
2675 if (skb->ip_summed != CHECKSUM_PARTIAL)
2676 skb->csum = csum_block_add(skb->csum, next_skb->csum, skb_size);
1da177e4 2677
058dc334
IJ
2678 /* Update sequence range on original skb. */
2679 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(next_skb)->end_seq;
1da177e4 2680
e6c7d085 2681 /* Merge over control information. This moves PSH/FIN etc. over */
4de075e0 2682 TCP_SKB_CB(skb)->tcp_flags |= TCP_SKB_CB(next_skb)->tcp_flags;
058dc334
IJ
2683
2684 /* All done, get rid of second SKB and account for it so
2685 * packet counting does not break.
2686 */
2687 TCP_SKB_CB(skb)->sacked |= TCP_SKB_CB(next_skb)->sacked & TCPCB_EVER_RETRANS;
a643b5d4 2688 TCP_SKB_CB(skb)->eor = TCP_SKB_CB(next_skb)->eor;
058dc334
IJ
2689
2690 /* changed transmit queue under us so clear hints */
ef9da47c
IJ
2691 tcp_clear_retrans_hints_partial(tp);
2692 if (next_skb == tp->retransmit_skb_hint)
2693 tp->retransmit_skb_hint = skb;
058dc334 2694
797108d1
IJ
2695 tcp_adjust_pcount(sk, next_skb, tcp_skb_pcount(next_skb));
2696
082ac2d5
MKL
2697 tcp_skb_collapse_tstamp(skb, next_skb);
2698
058dc334 2699 sk_wmem_free_skb(sk, next_skb);
f8071cde 2700 return true;
1da177e4
LT
2701}
2702
67edfef7 2703/* Check if coalescing SKBs is legal. */
a2a385d6 2704static bool tcp_can_collapse(const struct sock *sk, const struct sk_buff *skb)
4a17fc3a
IJ
2705{
2706 if (tcp_skb_pcount(skb) > 1)
a2a385d6 2707 return false;
4a17fc3a 2708 if (skb_cloned(skb))
a2a385d6 2709 return false;
4a17fc3a 2710 if (skb == tcp_send_head(sk))
a2a385d6 2711 return false;
2331ccc5 2712 /* Some heuristics for collapsing over SACK'd could be invented */
4a17fc3a 2713 if (TCP_SKB_CB(skb)->sacked & TCPCB_SACKED_ACKED)
a2a385d6 2714 return false;
4a17fc3a 2715
a2a385d6 2716 return true;
4a17fc3a
IJ
2717}
2718
67edfef7
AK
2719/* Collapse packets in the retransmit queue to make to create
2720 * less packets on the wire. This is only done on retransmission.
2721 */
4a17fc3a
IJ
2722static void tcp_retrans_try_collapse(struct sock *sk, struct sk_buff *to,
2723 int space)
2724{
2725 struct tcp_sock *tp = tcp_sk(sk);
2726 struct sk_buff *skb = to, *tmp;
a2a385d6 2727 bool first = true;
4a17fc3a
IJ
2728
2729 if (!sysctl_tcp_retrans_collapse)
2730 return;
4de075e0 2731 if (TCP_SKB_CB(skb)->tcp_flags & TCPHDR_SYN)
4a17fc3a
IJ
2732 return;
2733
2734 tcp_for_write_queue_from_safe(skb, tmp, sk) {
2735 if (!tcp_can_collapse(sk, skb))
2736 break;
2737
a643b5d4
MKL
2738 if (!tcp_skb_can_collapse_to(to))
2739 break;
2740
4a17fc3a
IJ
2741 space -= skb->len;
2742
2743 if (first) {
a2a385d6 2744 first = false;
4a17fc3a
IJ
2745 continue;
2746 }
2747
2748 if (space < 0)
2749 break;
4a17fc3a
IJ
2750
2751 if (after(TCP_SKB_CB(skb)->end_seq, tcp_wnd_end(tp)))
2752 break;
2753
f8071cde
ED
2754 if (!tcp_collapse_retrans(sk, to))
2755 break;
4a17fc3a
IJ
2756 }
2757}
2758
1da177e4
LT
2759/* This retransmits one SKB. Policy decisions and retransmit queue
2760 * state updates are done by the caller. Returns non-zero if an
2761 * error occurred which prevented the send.
2762 */
10d3be56 2763int __tcp_retransmit_skb(struct sock *sk, struct sk_buff *skb, int segs)
1da177e4 2764{
5d424d5a 2765 struct inet_connection_sock *icsk = inet_csk(sk);
10d3be56 2766 struct tcp_sock *tp = tcp_sk(sk);
7d227cd2 2767 unsigned int cur_mss;
10d3be56
ED
2768 int diff, len, err;
2769
1da177e4 2770
10d3be56
ED
2771 /* Inconclusive MTU probe */
2772 if (icsk->icsk_mtup.probe_size)
5d424d5a 2773 icsk->icsk_mtup.probe_size = 0;
5d424d5a 2774
1da177e4 2775 /* Do not sent more than we queued. 1/4 is reserved for possible
caa20d9a 2776 * copying overhead: fragmentation, tunneling, mangling etc.
1da177e4 2777 */
14afee4b 2778 if (refcount_read(&sk->sk_wmem_alloc) >
ffb4d6c8
ED
2779 min_t(u32, sk->sk_wmem_queued + (sk->sk_wmem_queued >> 2),
2780 sk->sk_sndbuf))
1da177e4
LT
2781 return -EAGAIN;
2782
1f3279ae
ED
2783 if (skb_still_in_host_queue(sk, skb))
2784 return -EBUSY;
2785
1da177e4
LT
2786 if (before(TCP_SKB_CB(skb)->seq, tp->snd_una)) {
2787 if (before(TCP_SKB_CB(skb)->end_seq, tp->snd_una))
2788 BUG();
1da177e4
LT
2789 if (tcp_trim_head(sk, skb, tp->snd_una - TCP_SKB_CB(skb)->seq))
2790 return -ENOMEM;
2791 }
2792
7d227cd2
SS
2793 if (inet_csk(sk)->icsk_af_ops->rebuild_header(sk))
2794 return -EHOSTUNREACH; /* Routing failure or similar. */
2795
0c54b85f 2796 cur_mss = tcp_current_mss(sk);
7d227cd2 2797
1da177e4
LT
2798 /* If receiver has shrunk his window, and skb is out of
2799 * new window, do not retransmit it. The exception is the
2800 * case, when window is shrunk to zero. In this case
2801 * our retransmit serves as a zero window probe.
2802 */
9d4fb27d
JP
2803 if (!before(TCP_SKB_CB(skb)->seq, tcp_wnd_end(tp)) &&
2804 TCP_SKB_CB(skb)->seq != tp->snd_una)
1da177e4
LT
2805 return -EAGAIN;
2806
10d3be56
ED
2807 len = cur_mss * segs;
2808 if (skb->len > len) {
2809 if (tcp_fragment(sk, skb, len, cur_mss, GFP_ATOMIC))
1da177e4 2810 return -ENOMEM; /* We'll try again later. */
02276f3c 2811 } else {
10d3be56
ED
2812 if (skb_unclone(skb, GFP_ATOMIC))
2813 return -ENOMEM;
9eb9362e 2814
10d3be56
ED
2815 diff = tcp_skb_pcount(skb);
2816 tcp_set_skb_tso_segs(skb, cur_mss);
2817 diff -= tcp_skb_pcount(skb);
2818 if (diff)
2819 tcp_adjust_pcount(sk, skb, diff);
2820 if (skb->len < cur_mss)
2821 tcp_retrans_try_collapse(sk, skb, cur_mss);
1da177e4
LT
2822 }
2823
49213555
DB
2824 /* RFC3168, section 6.1.1.1. ECN fallback */
2825 if ((TCP_SKB_CB(skb)->tcp_flags & TCPHDR_SYN_ECN) == TCPHDR_SYN_ECN)
2826 tcp_ecn_clear_syn(sk, skb);
2827
678550c6
YC
2828 /* Update global and local TCP statistics. */
2829 segs = tcp_skb_pcount(skb);
2830 TCP_ADD_STATS(sock_net(sk), TCP_MIB_RETRANSSEGS, segs);
2831 if (TCP_SKB_CB(skb)->tcp_flags & TCPHDR_SYN)
2832 __NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPSYNRETRANS);
2833 tp->total_retrans += segs;
2834
50bceae9
TG
2835 /* make sure skb->data is aligned on arches that require it
2836 * and check if ack-trimming & collapsing extended the headroom
2837 * beyond what csum_start can cover.
2838 */
2839 if (unlikely((NET_IP_ALIGN && ((unsigned long)skb->data & 3)) ||
2840 skb_headroom(skb) >= 0xFFFF)) {
10a81980
ED
2841 struct sk_buff *nskb;
2842
10a81980 2843 nskb = __pskb_copy(skb, MAX_TCP_HEADER, GFP_ATOMIC);
c84a5711
YC
2844 err = nskb ? tcp_transmit_skb(sk, nskb, 0, GFP_ATOMIC) :
2845 -ENOBUFS;
5889e2c0 2846 if (!err) {
8c72c65b 2847 skb->skb_mstamp = tp->tcp_mstamp;
5889e2c0
YS
2848 tcp_rate_skb_sent(sk, skb);
2849 }
117632e6 2850 } else {
c84a5711 2851 err = tcp_transmit_skb(sk, skb, 1, GFP_ATOMIC);
117632e6 2852 }
c84a5711 2853
fc9f3501 2854 if (likely(!err)) {
c84a5711 2855 TCP_SKB_CB(skb)->sacked |= TCPCB_EVER_RETRANS;
678550c6
YC
2856 } else if (err != -EBUSY) {
2857 NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPRETRANSFAIL);
fc9f3501 2858 }
c84a5711 2859 return err;
93b174ad
YC
2860}
2861
10d3be56 2862int tcp_retransmit_skb(struct sock *sk, struct sk_buff *skb, int segs)
93b174ad
YC
2863{
2864 struct tcp_sock *tp = tcp_sk(sk);
10d3be56 2865 int err = __tcp_retransmit_skb(sk, skb, segs);
1da177e4
LT
2866
2867 if (err == 0) {
1da177e4 2868#if FASTRETRANS_DEBUG > 0
056834d9 2869 if (TCP_SKB_CB(skb)->sacked & TCPCB_SACKED_RETRANS) {
e87cc472 2870 net_dbg_ratelimited("retrans_out leaked\n");
1da177e4
LT
2871 }
2872#endif
2873 TCP_SKB_CB(skb)->sacked |= TCPCB_RETRANS;
2874 tp->retrans_out += tcp_skb_pcount(skb);
2875
2876 /* Save stamp of the first retransmit. */
2877 if (!tp->retrans_stamp)
7faee5c0 2878 tp->retrans_stamp = tcp_skb_timestamp(skb);
1da177e4 2879
1da177e4 2880 }
6e08d5e3
YC
2881
2882 if (tp->undo_retrans < 0)
2883 tp->undo_retrans = 0;
2884 tp->undo_retrans += tcp_skb_pcount(skb);
1da177e4
LT
2885 return err;
2886}
2887
2888/* This gets called after a retransmit timeout, and the initially
2889 * retransmitted data is acknowledged. It tries to continue
2890 * resending the rest of the retransmit queue, until either
2891 * we've sent it all or the congestion window limit is reached.
2892 * If doing SACK, the first ACK which comes back for a timeout
2893 * based retransmit packet might feed us FACK information again.
2894 * If so, we use it to avoid unnecessarily retransmissions.
2895 */
2896void tcp_xmit_retransmit_queue(struct sock *sk)
2897{
6687e988 2898 const struct inet_connection_sock *icsk = inet_csk(sk);
1da177e4
LT
2899 struct tcp_sock *tp = tcp_sk(sk);
2900 struct sk_buff *skb;
0e1c54c2 2901 struct sk_buff *hole = NULL;
840a3cbe 2902 u32 max_segs;
61eb55f4 2903 int mib_idx;
6a438bbe 2904
45e77d31
IJ
2905 if (!tp->packets_out)
2906 return;
2907
618d9f25 2908 if (tp->retransmit_skb_hint) {
6a438bbe 2909 skb = tp->retransmit_skb_hint;
618d9f25 2910 } else {
fe067e8a 2911 skb = tcp_write_queue_head(sk);
618d9f25 2912 }
1da177e4 2913
ed6e7268 2914 max_segs = tcp_tso_segs(sk, tcp_current_mss(sk));
08ebd172 2915 tcp_for_write_queue_from(skb, sk) {
dca0aaf8 2916 __u8 sacked;
10d3be56 2917 int segs;
1da177e4 2918
08ebd172
IJ
2919 if (skb == tcp_send_head(sk))
2920 break;
218af599
ED
2921
2922 if (tcp_pacing_check(sk))
2923 break;
2924
08ebd172 2925 /* we could do better than to assign each time */
51456b29 2926 if (!hole)
0e1c54c2 2927 tp->retransmit_skb_hint = skb;
08ebd172 2928
10d3be56
ED
2929 segs = tp->snd_cwnd - tcp_packets_in_flight(tp);
2930 if (segs <= 0)
08ebd172 2931 return;
dca0aaf8 2932 sacked = TCP_SKB_CB(skb)->sacked;
a3d2e9f8
ED
2933 /* In case tcp_shift_skb_data() have aggregated large skbs,
2934 * we need to make sure not sending too bigs TSO packets
2935 */
2936 segs = min_t(int, segs, max_segs);
1da177e4 2937
840a3cbe
YC
2938 if (tp->retrans_out >= tp->lost_out) {
2939 break;
0e1c54c2 2940 } else if (!(sacked & TCPCB_LOST)) {
51456b29 2941 if (!hole && !(sacked & (TCPCB_SACKED_RETRANS|TCPCB_SACKED_ACKED)))
0e1c54c2
IJ
2942 hole = skb;
2943 continue;
1da177e4 2944
0e1c54c2
IJ
2945 } else {
2946 if (icsk->icsk_ca_state != TCP_CA_Loss)
2947 mib_idx = LINUX_MIB_TCPFASTRETRANS;
2948 else
2949 mib_idx = LINUX_MIB_TCPSLOWSTARTRETRANS;
2950 }
1da177e4 2951
0e1c54c2 2952 if (sacked & (TCPCB_SACKED_ACKED|TCPCB_SACKED_RETRANS))
1da177e4
LT
2953 continue;
2954
f9616c35
ED
2955 if (tcp_small_queue_check(sk, skb, 1))
2956 return;
2957
10d3be56 2958 if (tcp_retransmit_skb(sk, skb, segs))
0e1c54c2 2959 return;
24ab6bec 2960
de1d6578 2961 NET_ADD_STATS(sock_net(sk), mib_idx, tcp_skb_pcount(skb));
1da177e4 2962
684bad11 2963 if (tcp_in_cwnd_reduction(sk))
a262f0cd
ND
2964 tp->prr_out += tcp_skb_pcount(skb);
2965
57dde7f7
YC
2966 if (skb == tcp_write_queue_head(sk) &&
2967 icsk->icsk_pending != ICSK_TIME_REO_TIMEOUT)
3f421baa
ACM
2968 inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS,
2969 inet_csk(sk)->icsk_rto,
2970 TCP_RTO_MAX);
1da177e4
LT
2971 }
2972}
2973
d83769a5
ED
2974/* We allow to exceed memory limits for FIN packets to expedite
2975 * connection tear down and (memory) recovery.
845704a5
ED
2976 * Otherwise tcp_send_fin() could be tempted to either delay FIN
2977 * or even be forced to close flow without any FIN.
a6c5ea4c
ED
2978 * In general, we want to allow one skb per socket to avoid hangs
2979 * with edge trigger epoll()
d83769a5 2980 */
a6c5ea4c 2981void sk_forced_mem_schedule(struct sock *sk, int size)
d83769a5 2982{
e805605c 2983 int amt;
d83769a5
ED
2984
2985 if (size <= sk->sk_forward_alloc)
2986 return;
2987 amt = sk_mem_pages(size);
2988 sk->sk_forward_alloc += amt * SK_MEM_QUANTUM;
e805605c
JW
2989 sk_memory_allocated_add(sk, amt);
2990
baac50bb
JW
2991 if (mem_cgroup_sockets_enabled && sk->sk_memcg)
2992 mem_cgroup_charge_skmem(sk->sk_memcg, amt);
d83769a5
ED
2993}
2994
845704a5
ED
2995/* Send a FIN. The caller locks the socket for us.
2996 * We should try to send a FIN packet really hard, but eventually give up.
1da177e4
LT
2997 */
2998void tcp_send_fin(struct sock *sk)
2999{
845704a5 3000 struct sk_buff *skb, *tskb = tcp_write_queue_tail(sk);
e905a9ed 3001 struct tcp_sock *tp = tcp_sk(sk);
e905a9ed 3002
845704a5
ED
3003 /* Optimization, tack on the FIN if we have one skb in write queue and
3004 * this skb was not yet sent, or we are under memory pressure.
3005 * Note: in the latter case, FIN packet will be sent after a timeout,
3006 * as TCP stack thinks it has already been transmitted.
1da177e4 3007 */
b8da51eb 3008 if (tskb && (tcp_send_head(sk) || tcp_under_memory_pressure(sk))) {
845704a5
ED
3009coalesce:
3010 TCP_SKB_CB(tskb)->tcp_flags |= TCPHDR_FIN;
3011 TCP_SKB_CB(tskb)->end_seq++;
1da177e4 3012 tp->write_seq++;
845704a5
ED
3013 if (!tcp_send_head(sk)) {
3014 /* This means tskb was already sent.
3015 * Pretend we included the FIN on previous transmit.
3016 * We need to set tp->snd_nxt to the value it would have
3017 * if FIN had been sent. This is because retransmit path
3018 * does not change tp->snd_nxt.
3019 */
3020 tp->snd_nxt++;
3021 return;
3022 }
1da177e4 3023 } else {
845704a5
ED
3024 skb = alloc_skb_fclone(MAX_TCP_HEADER, sk->sk_allocation);
3025 if (unlikely(!skb)) {
3026 if (tskb)
3027 goto coalesce;
3028 return;
1da177e4 3029 }
d83769a5 3030 skb_reserve(skb, MAX_TCP_HEADER);
a6c5ea4c 3031 sk_forced_mem_schedule(sk, skb->truesize);
1da177e4 3032 /* FIN eats a sequence byte, write_seq advanced by tcp_queue_skb(). */
e870a8ef 3033 tcp_init_nondata_skb(skb, tp->write_seq,
a3433f35 3034 TCPHDR_ACK | TCPHDR_FIN);
1da177e4
LT
3035 tcp_queue_skb(sk, skb);
3036 }
845704a5 3037 __tcp_push_pending_frames(sk, tcp_current_mss(sk), TCP_NAGLE_OFF);
1da177e4
LT
3038}
3039
3040/* We get here when a process closes a file descriptor (either due to
3041 * an explicit close() or as a byproduct of exit()'ing) and there
3042 * was unread data in the receive queue. This behavior is recommended
65bb723c 3043 * by RFC 2525, section 2.17. -DaveM
1da177e4 3044 */
dd0fc66f 3045void tcp_send_active_reset(struct sock *sk, gfp_t priority)
1da177e4 3046{
1da177e4
LT
3047 struct sk_buff *skb;
3048
7cc2b043
GF
3049 TCP_INC_STATS(sock_net(sk), TCP_MIB_OUTRSTS);
3050
1da177e4
LT
3051 /* NOTE: No TCP options attached and we never retransmit this. */
3052 skb = alloc_skb(MAX_TCP_HEADER, priority);
3053 if (!skb) {
4e673444 3054 NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPABORTFAILED);
1da177e4
LT
3055 return;
3056 }
3057
3058 /* Reserve space for headers and prepare control bits. */
3059 skb_reserve(skb, MAX_TCP_HEADER);
e870a8ef 3060 tcp_init_nondata_skb(skb, tcp_acceptable_seq(sk),
a3433f35 3061 TCPHDR_ACK | TCPHDR_RST);
9a568de4 3062 tcp_mstamp_refresh(tcp_sk(sk));
1da177e4 3063 /* Send it off. */
dfb4b9dc 3064 if (tcp_transmit_skb(sk, skb, 0, priority))
4e673444 3065 NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPABORTFAILED);
1da177e4
LT
3066}
3067
67edfef7
AK
3068/* Send a crossed SYN-ACK during socket establishment.
3069 * WARNING: This routine must only be called when we have already sent
1da177e4
LT
3070 * a SYN packet that crossed the incoming SYN that caused this routine
3071 * to get called. If this assumption fails then the initial rcv_wnd
3072 * and rcv_wscale values will not be correct.
3073 */
3074int tcp_send_synack(struct sock *sk)
3075{
056834d9 3076 struct sk_buff *skb;
1da177e4 3077
fe067e8a 3078 skb = tcp_write_queue_head(sk);
51456b29 3079 if (!skb || !(TCP_SKB_CB(skb)->tcp_flags & TCPHDR_SYN)) {
91df42be 3080 pr_debug("%s: wrong queue state\n", __func__);
1da177e4
LT
3081 return -EFAULT;
3082 }
4de075e0 3083 if (!(TCP_SKB_CB(skb)->tcp_flags & TCPHDR_ACK)) {
1da177e4
LT
3084 if (skb_cloned(skb)) {
3085 struct sk_buff *nskb = skb_copy(skb, GFP_ATOMIC);
51456b29 3086 if (!nskb)
1da177e4 3087 return -ENOMEM;
fe067e8a 3088 tcp_unlink_write_queue(skb, sk);
f4a775d1 3089 __skb_header_release(nskb);
fe067e8a 3090 __tcp_add_write_queue_head(sk, nskb);
3ab224be
HA
3091 sk_wmem_free_skb(sk, skb);
3092 sk->sk_wmem_queued += nskb->truesize;
3093 sk_mem_charge(sk, nskb->truesize);
1da177e4
LT
3094 skb = nskb;
3095 }
3096
4de075e0 3097 TCP_SKB_CB(skb)->tcp_flags |= TCPHDR_ACK;
735d3831 3098 tcp_ecn_send_synack(sk, skb);
1da177e4 3099 }
dfb4b9dc 3100 return tcp_transmit_skb(sk, skb, 1, GFP_ATOMIC);
1da177e4
LT
3101}
3102
4aea39c1
ED
3103/**
3104 * tcp_make_synack - Prepare a SYN-ACK.
3105 * sk: listener socket
3106 * dst: dst entry attached to the SYNACK
3107 * req: request_sock pointer
4aea39c1
ED
3108 *
3109 * Allocate one skb and build a SYNACK packet.
3110 * @dst is consumed : Caller should not use it again.
3111 */
5d062de7 3112struct sk_buff *tcp_make_synack(const struct sock *sk, struct dst_entry *dst,
e6b4d113 3113 struct request_sock *req,
ca6fb065 3114 struct tcp_fastopen_cookie *foc,
b3d05147 3115 enum tcp_synack_type synack_type)
1da177e4 3116{
2e6599cb 3117 struct inet_request_sock *ireq = inet_rsk(req);
5d062de7 3118 const struct tcp_sock *tp = tcp_sk(sk);
80f03e27 3119 struct tcp_md5sig_key *md5 = NULL;
5d062de7
ED
3120 struct tcp_out_options opts;
3121 struct sk_buff *skb;
bd0388ae 3122 int tcp_header_size;
5d062de7 3123 struct tcphdr *th;
f5fff5dc 3124 int mss;
1da177e4 3125
ca6fb065 3126 skb = alloc_skb(MAX_TCP_HEADER, GFP_ATOMIC);
4aea39c1
ED
3127 if (unlikely(!skb)) {
3128 dst_release(dst);
1da177e4 3129 return NULL;
4aea39c1 3130 }
1da177e4
LT
3131 /* Reserve space for headers. */
3132 skb_reserve(skb, MAX_TCP_HEADER);
3133
b3d05147
ED
3134 switch (synack_type) {
3135 case TCP_SYNACK_NORMAL:
9e17f8a4 3136 skb_set_owner_w(skb, req_to_sk(req));
b3d05147
ED
3137 break;
3138 case TCP_SYNACK_COOKIE:
3139 /* Under synflood, we do not attach skb to a socket,
3140 * to avoid false sharing.
3141 */
3142 break;
3143 case TCP_SYNACK_FASTOPEN:
ca6fb065
ED
3144 /* sk is a const pointer, because we want to express multiple
3145 * cpu might call us concurrently.
3146 * sk->sk_wmem_alloc in an atomic, we can promote to rw.
3147 */
3148 skb_set_owner_w(skb, (struct sock *)sk);
b3d05147 3149 break;
ca6fb065 3150 }
4aea39c1 3151 skb_dst_set(skb, dst);
1da177e4 3152
3541f9e8 3153 mss = tcp_mss_clamp(tp, dst_metric_advmss(dst));
f5fff5dc 3154
33ad798c 3155 memset(&opts, 0, sizeof(opts));
8b5f12d0
FW
3156#ifdef CONFIG_SYN_COOKIES
3157 if (unlikely(req->cookie_ts))
9a568de4 3158 skb->skb_mstamp = cookie_init_timestamp(req);
8b5f12d0
FW
3159 else
3160#endif
9a568de4 3161 skb->skb_mstamp = tcp_clock_us();
80f03e27
ED
3162
3163#ifdef CONFIG_TCP_MD5SIG
3164 rcu_read_lock();
fd3a154a 3165 md5 = tcp_rsk(req)->af_specific->req_md5_lookup(sk, req_to_sk(req));
80f03e27 3166#endif
58d607d3 3167 skb_set_hash(skb, tcp_rsk(req)->txhash, PKT_HASH_TYPE_L4);
37bfbdda
ED
3168 tcp_header_size = tcp_synack_options(req, mss, skb, &opts, md5, foc) +
3169 sizeof(*th);
cfb6eeb4 3170
aa8223c7
ACM
3171 skb_push(skb, tcp_header_size);
3172 skb_reset_transport_header(skb);
1da177e4 3173
ea1627c2 3174 th = (struct tcphdr *)skb->data;
1da177e4
LT
3175 memset(th, 0, sizeof(struct tcphdr));
3176 th->syn = 1;
3177 th->ack = 1;
6ac705b1 3178 tcp_ecn_make_synack(req, th);
b44084c2 3179 th->source = htons(ireq->ir_num);
634fb979 3180 th->dest = ireq->ir_rmt_port;
e05a90ec 3181 skb->mark = ireq->ir_mark;
e870a8ef
IJ
3182 /* Setting of flags are superfluous here for callers (and ECE is
3183 * not even correctly set)
3184 */
3185 tcp_init_nondata_skb(skb, tcp_rsk(req)->snt_isn,
a3433f35 3186 TCPHDR_SYN | TCPHDR_ACK);
4957faad 3187
1da177e4 3188 th->seq = htonl(TCP_SKB_CB(skb)->seq);
8336886f
JC
3189 /* XXX data is queued and acked as is. No buffer/window check */
3190 th->ack_seq = htonl(tcp_rsk(req)->rcv_nxt);
1da177e4
LT
3191
3192 /* RFC1323: The window in SYN & SYN/ACK segments is never scaled. */
ed53d0ab 3193 th->window = htons(min(req->rsk_rcv_wnd, 65535U));
5d062de7 3194 tcp_options_write((__be32 *)(th + 1), NULL, &opts);
1da177e4 3195 th->doff = (tcp_header_size >> 2);
90bbcc60 3196 __TCP_INC_STATS(sock_net(sk), TCP_MIB_OUTSEGS);
cfb6eeb4
YH
3197
3198#ifdef CONFIG_TCP_MD5SIG
3199 /* Okay, we have all we need - do the md5 hash if needed */
80f03e27 3200 if (md5)
bd0388ae 3201 tcp_rsk(req)->af_specific->calc_md5_hash(opts.hash_location,
39f8e58e 3202 md5, req_to_sk(req), skb);
80f03e27 3203 rcu_read_unlock();
cfb6eeb4
YH
3204#endif
3205
b50edd78 3206 /* Do not fool tcpdump (if any), clean our debris */
2456e855 3207 skb->tstamp = 0;
1da177e4
LT
3208 return skb;
3209}
4bc2f18b 3210EXPORT_SYMBOL(tcp_make_synack);
1da177e4 3211
81164413
DB
3212static void tcp_ca_dst_init(struct sock *sk, const struct dst_entry *dst)
3213{
3214 struct inet_connection_sock *icsk = inet_csk(sk);
3215 const struct tcp_congestion_ops *ca;
3216 u32 ca_key = dst_metric(dst, RTAX_CC_ALGO);
3217
3218 if (ca_key == TCP_CA_UNSPEC)
3219 return;
3220
3221 rcu_read_lock();
3222 ca = tcp_ca_find_key(ca_key);
3223 if (likely(ca && try_module_get(ca->owner))) {
3224 module_put(icsk->icsk_ca_ops->owner);
3225 icsk->icsk_ca_dst_locked = tcp_ca_dst_locked(dst);
3226 icsk->icsk_ca_ops = ca;
3227 }
3228 rcu_read_unlock();
3229}
3230
67edfef7 3231/* Do all connect socket setups that can be done AF independent. */
f7e56a76 3232static void tcp_connect_init(struct sock *sk)
1da177e4 3233{
cf533ea5 3234 const struct dst_entry *dst = __sk_dst_get(sk);
1da177e4
LT
3235 struct tcp_sock *tp = tcp_sk(sk);
3236 __u8 rcv_wscale;
13d3b1eb 3237 u32 rcv_wnd;
1da177e4
LT
3238
3239 /* We'll fix this up when we get a response from the other end.
3240 * See tcp_input.c:tcp_rcv_state_process case TCP_SYN_SENT.
3241 */
5d2ed052
ED
3242 tp->tcp_header_len = sizeof(struct tcphdr);
3243 if (sock_net(sk)->ipv4.sysctl_tcp_timestamps)
3244 tp->tcp_header_len += TCPOLEN_TSTAMP_ALIGNED;
1da177e4 3245
cfb6eeb4 3246#ifdef CONFIG_TCP_MD5SIG
00db4124 3247 if (tp->af_specific->md5_lookup(sk, sk))
cfb6eeb4
YH
3248 tp->tcp_header_len += TCPOLEN_MD5SIG_ALIGNED;
3249#endif
3250
1da177e4
LT
3251 /* If user gave his TCP_MAXSEG, record it to clamp */
3252 if (tp->rx_opt.user_mss)
3253 tp->rx_opt.mss_clamp = tp->rx_opt.user_mss;
3254 tp->max_window = 0;
5d424d5a 3255 tcp_mtup_init(sk);
1da177e4
LT
3256 tcp_sync_mss(sk, dst_mtu(dst));
3257
81164413
DB
3258 tcp_ca_dst_init(sk, dst);
3259
1da177e4
LT
3260 if (!tp->window_clamp)
3261 tp->window_clamp = dst_metric(dst, RTAX_WINDOW);
3541f9e8 3262 tp->advmss = tcp_mss_clamp(tp, dst_metric_advmss(dst));
f5fff5dc 3263
1da177e4 3264 tcp_initialize_rcv_mss(sk);
1da177e4 3265
e88c64f0
HPP
3266 /* limit the window selection if the user enforce a smaller rx buffer */
3267 if (sk->sk_userlocks & SOCK_RCVBUF_LOCK &&
3268 (tp->window_clamp > tcp_full_space(sk) || tp->window_clamp == 0))
3269 tp->window_clamp = tcp_full_space(sk);
3270
13d3b1eb
LB
3271 rcv_wnd = tcp_rwnd_init_bpf(sk);
3272 if (rcv_wnd == 0)
3273 rcv_wnd = dst_metric(dst, RTAX_INITRWND);
3274
1da177e4
LT
3275 tcp_select_initial_window(tcp_full_space(sk),
3276 tp->advmss - (tp->rx_opt.ts_recent_stamp ? tp->tcp_header_len - sizeof(struct tcphdr) : 0),
3277 &tp->rcv_wnd,
3278 &tp->window_clamp,
9bb37ef0 3279 sock_net(sk)->ipv4.sysctl_tcp_window_scaling,
31d12926 3280 &rcv_wscale,
13d3b1eb 3281 rcv_wnd);
1da177e4
LT
3282
3283 tp->rx_opt.rcv_wscale = rcv_wscale;
3284 tp->rcv_ssthresh = tp->rcv_wnd;
3285
3286 sk->sk_err = 0;
3287 sock_reset_flag(sk, SOCK_DONE);
3288 tp->snd_wnd = 0;
ee7537b6 3289 tcp_init_wl(tp, 0);
1da177e4
LT
3290 tp->snd_una = tp->write_seq;
3291 tp->snd_sml = tp->write_seq;
33f5f57e 3292 tp->snd_up = tp->write_seq;
370816ae 3293 tp->snd_nxt = tp->write_seq;
ee995283
PE
3294
3295 if (likely(!tp->repair))
3296 tp->rcv_nxt = 0;
c7781a6e 3297 else
70eabf0e 3298 tp->rcv_tstamp = tcp_jiffies32;
ee995283
PE
3299 tp->rcv_wup = tp->rcv_nxt;
3300 tp->copied_seq = tp->rcv_nxt;
1da177e4 3301
8550f328 3302 inet_csk(sk)->icsk_rto = tcp_timeout_init(sk);
463c84b9 3303 inet_csk(sk)->icsk_retransmits = 0;
1da177e4
LT
3304 tcp_clear_retrans(tp);
3305}
3306
783237e8
YC
3307static void tcp_connect_queue_skb(struct sock *sk, struct sk_buff *skb)
3308{
3309 struct tcp_sock *tp = tcp_sk(sk);
3310 struct tcp_skb_cb *tcb = TCP_SKB_CB(skb);
3311
3312 tcb->end_seq += skb->len;
f4a775d1 3313 __skb_header_release(skb);
783237e8
YC
3314 __tcp_add_write_queue_tail(sk, skb);
3315 sk->sk_wmem_queued += skb->truesize;
3316 sk_mem_charge(sk, skb->truesize);
3317 tp->write_seq = tcb->end_seq;
3318 tp->packets_out += tcp_skb_pcount(skb);
3319}
3320
3321/* Build and send a SYN with data and (cached) Fast Open cookie. However,
3322 * queue a data-only packet after the regular SYN, such that regular SYNs
3323 * are retransmitted on timeouts. Also if the remote SYN-ACK acknowledges
3324 * only the SYN sequence, the data are retransmitted in the first ACK.
3325 * If cookie is not cached or other error occurs, falls back to send a
3326 * regular SYN with Fast Open cookie request option.
3327 */
3328static int tcp_send_syn_data(struct sock *sk, struct sk_buff *syn)
3329{
3330 struct tcp_sock *tp = tcp_sk(sk);
3331 struct tcp_fastopen_request *fo = tp->fastopen_req;
065263f4 3332 int space, err = 0;
355a901e 3333 struct sk_buff *syn_data;
aab48743 3334
67da22d2 3335 tp->rx_opt.mss_clamp = tp->advmss; /* If MSS is not cached */
065263f4 3336 if (!tcp_fastopen_cookie_check(sk, &tp->rx_opt.mss_clamp, &fo->cookie))
783237e8
YC
3337 goto fallback;
3338
3339 /* MSS for SYN-data is based on cached MSS and bounded by PMTU and
3340 * user-MSS. Reserve maximum option space for middleboxes that add
3341 * private TCP options. The cost is reduced data space in SYN :(
3342 */
3541f9e8
ED
3343 tp->rx_opt.mss_clamp = tcp_mss_clamp(tp, tp->rx_opt.mss_clamp);
3344
1b63edd6 3345 space = __tcp_mtu_to_mss(sk, inet_csk(sk)->icsk_pmtu_cookie) -
783237e8
YC
3346 MAX_TCP_OPTION_SPACE;
3347
f5ddcbbb
ED
3348 space = min_t(size_t, space, fo->size);
3349
3350 /* limit to order-0 allocations */
3351 space = min_t(size_t, space, SKB_MAX_HEAD(MAX_TCP_HEADER));
3352
eb934478 3353 syn_data = sk_stream_alloc_skb(sk, space, sk->sk_allocation, false);
355a901e 3354 if (!syn_data)
783237e8 3355 goto fallback;
355a901e
ED
3356 syn_data->ip_summed = CHECKSUM_PARTIAL;
3357 memcpy(syn_data->cb, syn->cb, sizeof(syn->cb));
07e100f9
ED
3358 if (space) {
3359 int copied = copy_from_iter(skb_put(syn_data, space), space,
3360 &fo->data->msg_iter);
3361 if (unlikely(!copied)) {
3362 kfree_skb(syn_data);
3363 goto fallback;
3364 }
3365 if (copied != space) {
3366 skb_trim(syn_data, copied);
3367 space = copied;
3368 }
57be5bda 3369 }
355a901e
ED
3370 /* No more data pending in inet_wait_for_connect() */
3371 if (space == fo->size)
3372 fo->data = NULL;
3373 fo->copied = space;
783237e8 3374
355a901e 3375 tcp_connect_queue_skb(sk, syn_data);
0f87230d
FY
3376 if (syn_data->len)
3377 tcp_chrono_start(sk, TCP_CHRONO_BUSY);
783237e8 3378
355a901e 3379 err = tcp_transmit_skb(sk, syn_data, 1, sk->sk_allocation);
783237e8 3380
355a901e 3381 syn->skb_mstamp = syn_data->skb_mstamp;
431a9124 3382
355a901e
ED
3383 /* Now full SYN+DATA was cloned and sent (or not),
3384 * remove the SYN from the original skb (syn_data)
3385 * we keep in write queue in case of a retransmit, as we
3386 * also have the SYN packet (with no data) in the same queue.
3387 */
3388 TCP_SKB_CB(syn_data)->seq++;
3389 TCP_SKB_CB(syn_data)->tcp_flags = TCPHDR_ACK | TCPHDR_PSH;
3390 if (!err) {
67da22d2 3391 tp->syn_data = (fo->copied > 0);
f19c29e3 3392 NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPORIGDATASENT);
783237e8
YC
3393 goto done;
3394 }
783237e8 3395
b5b7db8d
ED
3396 /* data was not sent, this is our new send_head */
3397 sk->sk_send_head = syn_data;
3398 tp->packets_out -= tcp_skb_pcount(syn_data);
3399
783237e8
YC
3400fallback:
3401 /* Send a regular SYN with Fast Open cookie request option */
3402 if (fo->cookie.len > 0)
3403 fo->cookie.len = 0;
3404 err = tcp_transmit_skb(sk, syn, 1, sk->sk_allocation);
3405 if (err)
3406 tp->syn_fastopen = 0;
783237e8
YC
3407done:
3408 fo->cookie.len = -1; /* Exclude Fast Open option for SYN retries */
3409 return err;
3410}
3411
67edfef7 3412/* Build a SYN and send it off. */
1da177e4
LT
3413int tcp_connect(struct sock *sk)
3414{
3415 struct tcp_sock *tp = tcp_sk(sk);
3416 struct sk_buff *buff;
ee586811 3417 int err;
1da177e4 3418
9872a4bd 3419 tcp_call_bpf(sk, BPF_SOCK_OPS_TCP_CONNECT_CB);
8ba60924
ED
3420
3421 if (inet_csk(sk)->icsk_af_ops->rebuild_header(sk))
3422 return -EHOSTUNREACH; /* Routing failure or similar. */
3423
1da177e4
LT
3424 tcp_connect_init(sk);
3425
2b916477
AV
3426 if (unlikely(tp->repair)) {
3427 tcp_finish_connect(sk, NULL);
3428 return 0;
3429 }
3430
eb934478 3431 buff = sk_stream_alloc_skb(sk, 0, sk->sk_allocation, true);
355a901e 3432 if (unlikely(!buff))
1da177e4
LT
3433 return -ENOBUFS;
3434
a3433f35 3435 tcp_init_nondata_skb(buff, tp->write_seq++, TCPHDR_SYN);
9a568de4
ED
3436 tcp_mstamp_refresh(tp);
3437 tp->retrans_stamp = tcp_time_stamp(tp);
783237e8 3438 tcp_connect_queue_skb(sk, buff);
735d3831 3439 tcp_ecn_send_syn(sk, buff);
1da177e4 3440
783237e8
YC
3441 /* Send off SYN; include data in Fast Open. */
3442 err = tp->fastopen_req ? tcp_send_syn_data(sk, buff) :
3443 tcp_transmit_skb(sk, buff, 1, sk->sk_allocation);
ee586811
EP
3444 if (err == -ECONNREFUSED)
3445 return err;
bd37a088
WY
3446
3447 /* We change tp->snd_nxt after the tcp_transmit_skb() call
3448 * in order to make this packet get counted in tcpOutSegs.
3449 */
3450 tp->snd_nxt = tp->write_seq;
3451 tp->pushed_seq = tp->write_seq;
b5b7db8d
ED
3452 buff = tcp_send_head(sk);
3453 if (unlikely(buff)) {
3454 tp->snd_nxt = TCP_SKB_CB(buff)->seq;
3455 tp->pushed_seq = TCP_SKB_CB(buff)->seq;
3456 }
81cc8a75 3457 TCP_INC_STATS(sock_net(sk), TCP_MIB_ACTIVEOPENS);
1da177e4
LT
3458
3459 /* Timer for repeating the SYN until an answer. */
3f421baa
ACM
3460 inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS,
3461 inet_csk(sk)->icsk_rto, TCP_RTO_MAX);
1da177e4
LT
3462 return 0;
3463}
4bc2f18b 3464EXPORT_SYMBOL(tcp_connect);
1da177e4
LT
3465
3466/* Send out a delayed ack, the caller does the policy checking
3467 * to see if we should even be here. See tcp_input.c:tcp_ack_snd_check()
3468 * for details.
3469 */
3470void tcp_send_delayed_ack(struct sock *sk)
3471{
463c84b9
ACM
3472 struct inet_connection_sock *icsk = inet_csk(sk);
3473 int ato = icsk->icsk_ack.ato;
1da177e4
LT
3474 unsigned long timeout;
3475
9890092e
FW
3476 tcp_ca_event(sk, CA_EVENT_DELAYED_ACK);
3477
1da177e4 3478 if (ato > TCP_DELACK_MIN) {
463c84b9 3479 const struct tcp_sock *tp = tcp_sk(sk);
056834d9 3480 int max_ato = HZ / 2;
1da177e4 3481
056834d9
IJ
3482 if (icsk->icsk_ack.pingpong ||
3483 (icsk->icsk_ack.pending & ICSK_ACK_PUSHED))
1da177e4
LT
3484 max_ato = TCP_DELACK_MAX;
3485
3486 /* Slow path, intersegment interval is "high". */
3487
3488 /* If some rtt estimate is known, use it to bound delayed ack.
463c84b9 3489 * Do not use inet_csk(sk)->icsk_rto here, use results of rtt measurements
1da177e4
LT
3490 * directly.
3491 */
740b0f18
ED
3492 if (tp->srtt_us) {
3493 int rtt = max_t(int, usecs_to_jiffies(tp->srtt_us >> 3),
3494 TCP_DELACK_MIN);
1da177e4
LT
3495
3496 if (rtt < max_ato)
3497 max_ato = rtt;
3498 }
3499
3500 ato = min(ato, max_ato);
3501 }
3502
3503 /* Stay within the limit we were given */
3504 timeout = jiffies + ato;
3505
3506 /* Use new timeout only if there wasn't a older one earlier. */
463c84b9 3507 if (icsk->icsk_ack.pending & ICSK_ACK_TIMER) {
1da177e4
LT
3508 /* If delack timer was blocked or is about to expire,
3509 * send ACK now.
3510 */
463c84b9
ACM
3511 if (icsk->icsk_ack.blocked ||
3512 time_before_eq(icsk->icsk_ack.timeout, jiffies + (ato >> 2))) {
1da177e4
LT
3513 tcp_send_ack(sk);
3514 return;
3515 }
3516
463c84b9
ACM
3517 if (!time_before(timeout, icsk->icsk_ack.timeout))
3518 timeout = icsk->icsk_ack.timeout;
1da177e4 3519 }
463c84b9
ACM
3520 icsk->icsk_ack.pending |= ICSK_ACK_SCHED | ICSK_ACK_TIMER;
3521 icsk->icsk_ack.timeout = timeout;
3522 sk_reset_timer(sk, &icsk->icsk_delack_timer, timeout);
1da177e4
LT
3523}
3524
3525/* This routine sends an ack and also updates the window. */
3526void tcp_send_ack(struct sock *sk)
3527{
058dc334 3528 struct sk_buff *buff;
1da177e4 3529
058dc334
IJ
3530 /* If we have been reset, we may not send again. */
3531 if (sk->sk_state == TCP_CLOSE)
3532 return;
1da177e4 3533
9890092e
FW
3534 tcp_ca_event(sk, CA_EVENT_NON_DELAYED_ACK);
3535
058dc334
IJ
3536 /* We are not putting this on the write queue, so
3537 * tcp_transmit_skb() will set the ownership to this
3538 * sock.
3539 */
7450aaf6
ED
3540 buff = alloc_skb(MAX_TCP_HEADER,
3541 sk_gfp_mask(sk, GFP_ATOMIC | __GFP_NOWARN));
3542 if (unlikely(!buff)) {
058dc334
IJ
3543 inet_csk_schedule_ack(sk);
3544 inet_csk(sk)->icsk_ack.ato = TCP_ATO_MIN;
3545 inet_csk_reset_xmit_timer(sk, ICSK_TIME_DACK,
3546 TCP_DELACK_MAX, TCP_RTO_MAX);
3547 return;
1da177e4 3548 }
058dc334
IJ
3549
3550 /* Reserve space for headers and prepare control bits. */
3551 skb_reserve(buff, MAX_TCP_HEADER);
a3433f35 3552 tcp_init_nondata_skb(buff, tcp_acceptable_seq(sk), TCPHDR_ACK);
058dc334 3553
98781965
ED
3554 /* We do not want pure acks influencing TCP Small Queues or fq/pacing
3555 * too much.
3556 * SKB_TRUESIZE(max(1 .. 66, MAX_TCP_HEADER)) is unfortunately ~784
98781965
ED
3557 */
3558 skb_set_tcp_pure_ack(buff);
3559
058dc334 3560 /* Send it off, this clears delayed acks for us. */
7450aaf6 3561 tcp_transmit_skb(sk, buff, 0, (__force gfp_t)0);
1da177e4 3562}
e3118e83 3563EXPORT_SYMBOL_GPL(tcp_send_ack);
1da177e4
LT
3564
3565/* This routine sends a packet with an out of date sequence
3566 * number. It assumes the other end will try to ack it.
3567 *
3568 * Question: what should we make while urgent mode?
3569 * 4.4BSD forces sending single byte of data. We cannot send
3570 * out of window data, because we have SND.NXT==SND.MAX...
3571 *
3572 * Current solution: to send TWO zero-length segments in urgent mode:
3573 * one is with SEG.SEQ=SND.UNA to deliver urgent pointer, another is
3574 * out-of-date with SND.UNA-1 to probe window.
3575 */
e520af48 3576static int tcp_xmit_probe_skb(struct sock *sk, int urgent, int mib)
1da177e4
LT
3577{
3578 struct tcp_sock *tp = tcp_sk(sk);
3579 struct sk_buff *skb;
3580
3581 /* We don't queue it, tcp_transmit_skb() sets ownership. */
7450aaf6
ED
3582 skb = alloc_skb(MAX_TCP_HEADER,
3583 sk_gfp_mask(sk, GFP_ATOMIC | __GFP_NOWARN));
51456b29 3584 if (!skb)
1da177e4
LT
3585 return -1;
3586
3587 /* Reserve space for headers and set control bits. */
3588 skb_reserve(skb, MAX_TCP_HEADER);
1da177e4
LT
3589 /* Use a previous sequence. This should cause the other
3590 * end to send an ack. Don't queue or clone SKB, just
3591 * send it.
3592 */
a3433f35 3593 tcp_init_nondata_skb(skb, tp->snd_una - !urgent, TCPHDR_ACK);
e2e8009f 3594 NET_INC_STATS(sock_net(sk), mib);
7450aaf6 3595 return tcp_transmit_skb(sk, skb, 0, (__force gfp_t)0);
1da177e4
LT
3596}
3597
385e2070 3598/* Called from setsockopt( ... TCP_REPAIR ) */
ee995283
PE
3599void tcp_send_window_probe(struct sock *sk)
3600{
3601 if (sk->sk_state == TCP_ESTABLISHED) {
3602 tcp_sk(sk)->snd_wl1 = tcp_sk(sk)->rcv_nxt - 1;
9a568de4 3603 tcp_mstamp_refresh(tcp_sk(sk));
e520af48 3604 tcp_xmit_probe_skb(sk, 0, LINUX_MIB_TCPWINPROBE);
ee995283
PE
3605 }
3606}
3607
67edfef7 3608/* Initiate keepalive or window probe from timer. */
e520af48 3609int tcp_write_wakeup(struct sock *sk, int mib)
1da177e4 3610{
058dc334
IJ
3611 struct tcp_sock *tp = tcp_sk(sk);
3612 struct sk_buff *skb;
1da177e4 3613
058dc334
IJ
3614 if (sk->sk_state == TCP_CLOSE)
3615 return -1;
3616
00db4124
IM
3617 skb = tcp_send_head(sk);
3618 if (skb && before(TCP_SKB_CB(skb)->seq, tcp_wnd_end(tp))) {
058dc334 3619 int err;
0c54b85f 3620 unsigned int mss = tcp_current_mss(sk);
058dc334
IJ
3621 unsigned int seg_size = tcp_wnd_end(tp) - TCP_SKB_CB(skb)->seq;
3622
3623 if (before(tp->pushed_seq, TCP_SKB_CB(skb)->end_seq))
3624 tp->pushed_seq = TCP_SKB_CB(skb)->end_seq;
3625
3626 /* We are probing the opening of a window
3627 * but the window size is != 0
3628 * must have been a result SWS avoidance ( sender )
3629 */
3630 if (seg_size < TCP_SKB_CB(skb)->end_seq - TCP_SKB_CB(skb)->seq ||
3631 skb->len > mss) {
3632 seg_size = min(seg_size, mss);
4de075e0 3633 TCP_SKB_CB(skb)->tcp_flags |= TCPHDR_PSH;
6cc55e09 3634 if (tcp_fragment(sk, skb, seg_size, mss, GFP_ATOMIC))
058dc334
IJ
3635 return -1;
3636 } else if (!tcp_skb_pcount(skb))
5bbb432c 3637 tcp_set_skb_tso_segs(skb, mss);
058dc334 3638
4de075e0 3639 TCP_SKB_CB(skb)->tcp_flags |= TCPHDR_PSH;
058dc334
IJ
3640 err = tcp_transmit_skb(sk, skb, 1, GFP_ATOMIC);
3641 if (!err)
3642 tcp_event_new_data_sent(sk, skb);
3643 return err;
3644 } else {
33f5f57e 3645 if (between(tp->snd_up, tp->snd_una + 1, tp->snd_una + 0xFFFF))
e520af48
ED
3646 tcp_xmit_probe_skb(sk, 1, mib);
3647 return tcp_xmit_probe_skb(sk, 0, mib);
1da177e4 3648 }
1da177e4
LT
3649}
3650
3651/* A window probe timeout has occurred. If window is not closed send
3652 * a partial packet else a zero probe.
3653 */
3654void tcp_send_probe0(struct sock *sk)
3655{
463c84b9 3656 struct inet_connection_sock *icsk = inet_csk(sk);
1da177e4 3657 struct tcp_sock *tp = tcp_sk(sk);
c6214a97 3658 struct net *net = sock_net(sk);
fcdd1cf4 3659 unsigned long probe_max;
1da177e4
LT
3660 int err;
3661
e520af48 3662 err = tcp_write_wakeup(sk, LINUX_MIB_TCPWINPROBE);
1da177e4 3663
fe067e8a 3664 if (tp->packets_out || !tcp_send_head(sk)) {
1da177e4 3665 /* Cancel probe timer, if it is not required. */
6687e988 3666 icsk->icsk_probes_out = 0;
463c84b9 3667 icsk->icsk_backoff = 0;
1da177e4
LT
3668 return;
3669 }
3670
3671 if (err <= 0) {
c6214a97 3672 if (icsk->icsk_backoff < net->ipv4.sysctl_tcp_retries2)
463c84b9 3673 icsk->icsk_backoff++;
6687e988 3674 icsk->icsk_probes_out++;
fcdd1cf4 3675 probe_max = TCP_RTO_MAX;
1da177e4
LT
3676 } else {
3677 /* If packet was not sent due to local congestion,
6687e988 3678 * do not backoff and do not remember icsk_probes_out.
1da177e4
LT
3679 * Let local senders to fight for local resources.
3680 *
3681 * Use accumulated backoff yet.
3682 */
6687e988
ACM
3683 if (!icsk->icsk_probes_out)
3684 icsk->icsk_probes_out = 1;
fcdd1cf4 3685 probe_max = TCP_RESOURCE_PROBE_INTERVAL;
1da177e4 3686 }
fcdd1cf4 3687 inet_csk_reset_xmit_timer(sk, ICSK_TIME_PROBE0,
21c8fe99 3688 tcp_probe0_when(sk, probe_max),
fcdd1cf4 3689 TCP_RTO_MAX);
1da177e4 3690}
5db92c99 3691
ea3bea3a 3692int tcp_rtx_synack(const struct sock *sk, struct request_sock *req)
5db92c99
OP
3693{
3694 const struct tcp_request_sock_ops *af_ops = tcp_rsk(req)->af_specific;
3695 struct flowi fl;
3696 int res;
3697
58d607d3 3698 tcp_rsk(req)->txhash = net_tx_rndhash();
b3d05147 3699 res = af_ops->send_synack(sk, NULL, &fl, req, NULL, TCP_SYNACK_NORMAL);
5db92c99 3700 if (!res) {
90bbcc60 3701 __TCP_INC_STATS(sock_net(sk), TCP_MIB_RETRANSSEGS);
02a1d6e7 3702 __NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPSYNRETRANS);
7e32b443
YC
3703 if (unlikely(tcp_passive_fastopen(sk)))
3704 tcp_sk(sk)->total_retrans++;
5db92c99
OP
3705 }
3706 return res;
3707}
3708EXPORT_SYMBOL(tcp_rtx_synack);