mfd: wm8350-i2c: Make sure the i2c regmap functions are compiled
[linux/fpc-iii.git] / net / ipv4 / tcp_output.c
blobaa72c9d604a00bdd23455d3610cbaf32f10a2c40
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.
6 * Implementation of the Transmission Control Protocol(TCP).
8 * Authors: Ross Biro
9 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
10 * Mark Evans, <evansmp@uhura.aston.ac.uk>
11 * Corey Minyard <wf-rch!minyard@relay.EU.net>
12 * Florian La Roche, <flla@stud.uni-sb.de>
13 * Charles Hedrick, <hedrick@klinzhai.rutgers.edu>
14 * Linus Torvalds, <torvalds@cs.helsinki.fi>
15 * Alan Cox, <gw4pts@gw4pts.ampr.org>
16 * Matthew Dillon, <dillon@apollo.west.oic.com>
17 * Arnt Gulbrandsen, <agulbra@nvg.unit.no>
18 * Jorge Cwik, <jorge@laser.satlink.net>
22 * Changes: Pedro Roque : Retransmit queue handled by TCP.
23 * : Fragmentation on mtu decrease
24 * : Segment collapse on retransmit
25 * : AF independence
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
37 #define pr_fmt(fmt) "TCP: " fmt
39 #include <net/tcp.h>
41 #include <linux/compiler.h>
42 #include <linux/gfp.h>
43 #include <linux/module.h>
45 /* People can turn this off for buggy TCP's found in printers etc. */
46 int sysctl_tcp_retrans_collapse __read_mostly = 1;
48 /* People can turn this on to work with those rare, broken TCPs that
49 * interpret the window field as a signed quantity.
51 int sysctl_tcp_workaround_signed_windows __read_mostly = 0;
53 /* Default TSQ limit of two TSO segments */
54 int sysctl_tcp_limit_output_bytes __read_mostly = 131072;
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.
60 int sysctl_tcp_tso_win_divisor __read_mostly = 3;
62 int sysctl_tcp_mtu_probing __read_mostly = 0;
63 int sysctl_tcp_base_mss __read_mostly = TCP_BASE_MSS;
65 /* By default, RFC2861 behavior. */
66 int sysctl_tcp_slow_start_after_idle __read_mostly = 1;
68 unsigned int sysctl_tcp_notsent_lowat __read_mostly = UINT_MAX;
69 EXPORT_SYMBOL(sysctl_tcp_notsent_lowat);
71 static bool tcp_write_xmit(struct sock *sk, unsigned int mss_now, int nonagle,
72 int push_one, gfp_t gfp);
74 /* Account for new data that has been sent to the network. */
75 static void tcp_event_new_data_sent(struct sock *sk, const struct sk_buff *skb)
77 struct inet_connection_sock *icsk = inet_csk(sk);
78 struct tcp_sock *tp = tcp_sk(sk);
79 unsigned int prior_packets = tp->packets_out;
81 tcp_advance_send_head(sk, skb);
82 tp->snd_nxt = TCP_SKB_CB(skb)->end_seq;
84 tp->packets_out += tcp_skb_pcount(skb);
85 if (!prior_packets || icsk->icsk_pending == ICSK_TIME_EARLY_RETRANS ||
86 icsk->icsk_pending == ICSK_TIME_LOSS_PROBE) {
87 tcp_rearm_rto(sk);
91 /* SND.NXT, if window was not shrunk.
92 * If window has been shrunk, what should we make? It is not clear at all.
93 * Using SND.UNA we will fail to open window, SND.NXT is out of window. :-(
94 * Anything in between SND.UNA...SND.UNA+SND.WND also can be already
95 * invalid. OK, let's make this for now:
97 static inline __u32 tcp_acceptable_seq(const struct sock *sk)
99 const struct tcp_sock *tp = tcp_sk(sk);
101 if (!before(tcp_wnd_end(tp), tp->snd_nxt))
102 return tp->snd_nxt;
103 else
104 return tcp_wnd_end(tp);
107 /* Calculate mss to advertise in SYN segment.
108 * RFC1122, RFC1063, draft-ietf-tcpimpl-pmtud-01 state that:
110 * 1. It is independent of path mtu.
111 * 2. Ideally, it is maximal possible segment size i.e. 65535-40.
112 * 3. For IPv4 it is reasonable to calculate it from maximal MTU of
113 * attached devices, because some buggy hosts are confused by
114 * large MSS.
115 * 4. We do not make 3, we advertise MSS, calculated from first
116 * hop device mtu, but allow to raise it to ip_rt_min_advmss.
117 * This may be overridden via information stored in routing table.
118 * 5. Value 65535 for MSS is valid in IPv6 and means "as large as possible,
119 * probably even Jumbo".
121 static __u16 tcp_advertise_mss(struct sock *sk)
123 struct tcp_sock *tp = tcp_sk(sk);
124 const struct dst_entry *dst = __sk_dst_get(sk);
125 int mss = tp->advmss;
127 if (dst) {
128 unsigned int metric = dst_metric_advmss(dst);
130 if (metric < mss) {
131 mss = metric;
132 tp->advmss = mss;
136 return (__u16)mss;
139 /* RFC2861. Reset CWND after idle period longer RTO to "restart window".
140 * This is the first part of cwnd validation mechanism. */
141 static void tcp_cwnd_restart(struct sock *sk, const struct dst_entry *dst)
143 struct tcp_sock *tp = tcp_sk(sk);
144 s32 delta = tcp_time_stamp - tp->lsndtime;
145 u32 restart_cwnd = tcp_init_cwnd(tp, dst);
146 u32 cwnd = tp->snd_cwnd;
148 tcp_ca_event(sk, CA_EVENT_CWND_RESTART);
150 tp->snd_ssthresh = tcp_current_ssthresh(sk);
151 restart_cwnd = min(restart_cwnd, cwnd);
153 while ((delta -= inet_csk(sk)->icsk_rto) > 0 && cwnd > restart_cwnd)
154 cwnd >>= 1;
155 tp->snd_cwnd = max(cwnd, restart_cwnd);
156 tp->snd_cwnd_stamp = tcp_time_stamp;
157 tp->snd_cwnd_used = 0;
160 /* Congestion state accounting after a packet has been sent. */
161 static void tcp_event_data_sent(struct tcp_sock *tp,
162 struct sock *sk)
164 struct inet_connection_sock *icsk = inet_csk(sk);
165 const u32 now = tcp_time_stamp;
166 const struct dst_entry *dst = __sk_dst_get(sk);
168 if (sysctl_tcp_slow_start_after_idle &&
169 (!tp->packets_out && (s32)(now - tp->lsndtime) > icsk->icsk_rto))
170 tcp_cwnd_restart(sk, __sk_dst_get(sk));
172 tp->lsndtime = now;
174 /* If it is a reply for ato after last received
175 * packet, enter pingpong mode.
177 if ((u32)(now - icsk->icsk_ack.lrcvtime) < icsk->icsk_ack.ato &&
178 (!dst || !dst_metric(dst, RTAX_QUICKACK)))
179 icsk->icsk_ack.pingpong = 1;
182 /* Account for an ACK we sent. */
183 static inline void tcp_event_ack_sent(struct sock *sk, unsigned int pkts)
185 tcp_dec_quickack_mode(sk, pkts);
186 inet_csk_clear_xmit_timer(sk, ICSK_TIME_DACK);
190 u32 tcp_default_init_rwnd(u32 mss)
192 /* Initial receive window should be twice of TCP_INIT_CWND to
193 * enable proper sending of new unsent data during fast recovery
194 * (RFC 3517, Section 4, NextSeg() rule (2)). Further place a
195 * limit when mss is larger than 1460.
197 u32 init_rwnd = TCP_INIT_CWND * 2;
199 if (mss > 1460)
200 init_rwnd = max((1460 * init_rwnd) / mss, 2U);
201 return init_rwnd;
204 /* Determine a window scaling and initial window to offer.
205 * Based on the assumption that the given amount of space
206 * will be offered. Store the results in the tp structure.
207 * NOTE: for smooth operation initial space offering should
208 * be a multiple of mss if possible. We assume here that mss >= 1.
209 * This MUST be enforced by all callers.
211 void tcp_select_initial_window(int __space, __u32 mss,
212 __u32 *rcv_wnd, __u32 *window_clamp,
213 int wscale_ok, __u8 *rcv_wscale,
214 __u32 init_rcv_wnd)
216 unsigned int space = (__space < 0 ? 0 : __space);
218 /* If no clamp set the clamp to the max possible scaled window */
219 if (*window_clamp == 0)
220 (*window_clamp) = (65535 << 14);
221 space = min(*window_clamp, space);
223 /* Quantize space offering to a multiple of mss if possible. */
224 if (space > mss)
225 space = (space / mss) * mss;
227 /* NOTE: offering an initial window larger than 32767
228 * will break some buggy TCP stacks. If the admin tells us
229 * it is likely we could be speaking with such a buggy stack
230 * we will truncate our initial window offering to 32K-1
231 * unless the remote has sent us a window scaling option,
232 * which we interpret as a sign the remote TCP is not
233 * misinterpreting the window field as a signed quantity.
235 if (sysctl_tcp_workaround_signed_windows)
236 (*rcv_wnd) = min(space, MAX_TCP_WINDOW);
237 else
238 (*rcv_wnd) = space;
240 (*rcv_wscale) = 0;
241 if (wscale_ok) {
242 /* Set window scaling on max possible window
243 * See RFC1323 for an explanation of the limit to 14
245 space = max_t(u32, space, sysctl_tcp_rmem[2]);
246 space = max_t(u32, space, sysctl_rmem_max);
247 space = min_t(u32, space, *window_clamp);
248 while (space > 65535 && (*rcv_wscale) < 14) {
249 space >>= 1;
250 (*rcv_wscale)++;
254 if (mss > (1 << *rcv_wscale)) {
255 if (!init_rcv_wnd) /* Use default unless specified otherwise */
256 init_rcv_wnd = tcp_default_init_rwnd(mss);
257 *rcv_wnd = min(*rcv_wnd, init_rcv_wnd * mss);
260 /* Set the clamp no higher than max representable value */
261 (*window_clamp) = min(65535U << (*rcv_wscale), *window_clamp);
263 EXPORT_SYMBOL(tcp_select_initial_window);
265 /* Chose a new window to advertise, update state in tcp_sock for the
266 * socket, and return result with RFC1323 scaling applied. The return
267 * value can be stuffed directly into th->window for an outgoing
268 * frame.
270 static u16 tcp_select_window(struct sock *sk)
272 struct tcp_sock *tp = tcp_sk(sk);
273 u32 cur_win = tcp_receive_window(tp);
274 u32 new_win = __tcp_select_window(sk);
276 /* Never shrink the offered window */
277 if (new_win < cur_win) {
278 /* Danger Will Robinson!
279 * Don't update rcv_wup/rcv_wnd here or else
280 * we will not be able to advertise a zero
281 * window in time. --DaveM
283 * Relax Will Robinson.
285 new_win = ALIGN(cur_win, 1 << tp->rx_opt.rcv_wscale);
287 tp->rcv_wnd = new_win;
288 tp->rcv_wup = tp->rcv_nxt;
290 /* Make sure we do not exceed the maximum possible
291 * scaled window.
293 if (!tp->rx_opt.rcv_wscale && sysctl_tcp_workaround_signed_windows)
294 new_win = min(new_win, MAX_TCP_WINDOW);
295 else
296 new_win = min(new_win, (65535U << tp->rx_opt.rcv_wscale));
298 /* RFC1323 scaling applied */
299 new_win >>= tp->rx_opt.rcv_wscale;
301 /* If we advertise zero window, disable fast path. */
302 if (new_win == 0)
303 tp->pred_flags = 0;
305 return new_win;
308 /* Packet ECN state for a SYN-ACK */
309 static inline void TCP_ECN_send_synack(const struct tcp_sock *tp, struct sk_buff *skb)
311 TCP_SKB_CB(skb)->tcp_flags &= ~TCPHDR_CWR;
312 if (!(tp->ecn_flags & TCP_ECN_OK))
313 TCP_SKB_CB(skb)->tcp_flags &= ~TCPHDR_ECE;
316 /* Packet ECN state for a SYN. */
317 static inline void TCP_ECN_send_syn(struct sock *sk, struct sk_buff *skb)
319 struct tcp_sock *tp = tcp_sk(sk);
321 tp->ecn_flags = 0;
322 if (sock_net(sk)->ipv4.sysctl_tcp_ecn == 1) {
323 TCP_SKB_CB(skb)->tcp_flags |= TCPHDR_ECE | TCPHDR_CWR;
324 tp->ecn_flags = TCP_ECN_OK;
328 static __inline__ void
329 TCP_ECN_make_synack(const struct request_sock *req, struct tcphdr *th)
331 if (inet_rsk(req)->ecn_ok)
332 th->ece = 1;
335 /* Set up ECN state for a packet on a ESTABLISHED socket that is about to
336 * be sent.
338 static inline void TCP_ECN_send(struct sock *sk, struct sk_buff *skb,
339 int tcp_header_len)
341 struct tcp_sock *tp = tcp_sk(sk);
343 if (tp->ecn_flags & TCP_ECN_OK) {
344 /* Not-retransmitted data segment: set ECT and inject CWR. */
345 if (skb->len != tcp_header_len &&
346 !before(TCP_SKB_CB(skb)->seq, tp->snd_nxt)) {
347 INET_ECN_xmit(sk);
348 if (tp->ecn_flags & TCP_ECN_QUEUE_CWR) {
349 tp->ecn_flags &= ~TCP_ECN_QUEUE_CWR;
350 tcp_hdr(skb)->cwr = 1;
351 skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN;
353 } else {
354 /* ACK or retransmitted segment: clear ECT|CE */
355 INET_ECN_dontxmit(sk);
357 if (tp->ecn_flags & TCP_ECN_DEMAND_CWR)
358 tcp_hdr(skb)->ece = 1;
362 /* Constructs common control bits of non-data skb. If SYN/FIN is present,
363 * auto increment end seqno.
365 static void tcp_init_nondata_skb(struct sk_buff *skb, u32 seq, u8 flags)
367 skb->ip_summed = CHECKSUM_PARTIAL;
368 skb->csum = 0;
370 TCP_SKB_CB(skb)->tcp_flags = flags;
371 TCP_SKB_CB(skb)->sacked = 0;
373 skb_shinfo(skb)->gso_segs = 1;
374 skb_shinfo(skb)->gso_size = 0;
375 skb_shinfo(skb)->gso_type = 0;
377 TCP_SKB_CB(skb)->seq = seq;
378 if (flags & (TCPHDR_SYN | TCPHDR_FIN))
379 seq++;
380 TCP_SKB_CB(skb)->end_seq = seq;
383 static inline bool tcp_urg_mode(const struct tcp_sock *tp)
385 return tp->snd_una != tp->snd_up;
388 #define OPTION_SACK_ADVERTISE (1 << 0)
389 #define OPTION_TS (1 << 1)
390 #define OPTION_MD5 (1 << 2)
391 #define OPTION_WSCALE (1 << 3)
392 #define OPTION_FAST_OPEN_COOKIE (1 << 8)
394 struct tcp_out_options {
395 u16 options; /* bit field of OPTION_* */
396 u16 mss; /* 0 to disable */
397 u8 ws; /* window scale, 0 to disable */
398 u8 num_sack_blocks; /* number of SACK blocks to include */
399 u8 hash_size; /* bytes in hash_location */
400 __u8 *hash_location; /* temporary pointer, overloaded */
401 __u32 tsval, tsecr; /* need to include OPTION_TS */
402 struct tcp_fastopen_cookie *fastopen_cookie; /* Fast open cookie */
405 /* Write previously computed TCP options to the packet.
407 * Beware: Something in the Internet is very sensitive to the ordering of
408 * TCP options, we learned this through the hard way, so be careful here.
409 * Luckily we can at least blame others for their non-compliance but from
410 * inter-operatibility perspective it seems that we're somewhat stuck with
411 * the ordering which we have been using if we want to keep working with
412 * those broken things (not that it currently hurts anybody as there isn't
413 * particular reason why the ordering would need to be changed).
415 * At least SACK_PERM as the first option is known to lead to a disaster
416 * (but it may well be that other scenarios fail similarly).
418 static void tcp_options_write(__be32 *ptr, struct tcp_sock *tp,
419 struct tcp_out_options *opts)
421 u16 options = opts->options; /* mungable copy */
423 if (unlikely(OPTION_MD5 & options)) {
424 *ptr++ = htonl((TCPOPT_NOP << 24) | (TCPOPT_NOP << 16) |
425 (TCPOPT_MD5SIG << 8) | TCPOLEN_MD5SIG);
426 /* overload cookie hash location */
427 opts->hash_location = (__u8 *)ptr;
428 ptr += 4;
431 if (unlikely(opts->mss)) {
432 *ptr++ = htonl((TCPOPT_MSS << 24) |
433 (TCPOLEN_MSS << 16) |
434 opts->mss);
437 if (likely(OPTION_TS & options)) {
438 if (unlikely(OPTION_SACK_ADVERTISE & options)) {
439 *ptr++ = htonl((TCPOPT_SACK_PERM << 24) |
440 (TCPOLEN_SACK_PERM << 16) |
441 (TCPOPT_TIMESTAMP << 8) |
442 TCPOLEN_TIMESTAMP);
443 options &= ~OPTION_SACK_ADVERTISE;
444 } else {
445 *ptr++ = htonl((TCPOPT_NOP << 24) |
446 (TCPOPT_NOP << 16) |
447 (TCPOPT_TIMESTAMP << 8) |
448 TCPOLEN_TIMESTAMP);
450 *ptr++ = htonl(opts->tsval);
451 *ptr++ = htonl(opts->tsecr);
454 if (unlikely(OPTION_SACK_ADVERTISE & options)) {
455 *ptr++ = htonl((TCPOPT_NOP << 24) |
456 (TCPOPT_NOP << 16) |
457 (TCPOPT_SACK_PERM << 8) |
458 TCPOLEN_SACK_PERM);
461 if (unlikely(OPTION_WSCALE & options)) {
462 *ptr++ = htonl((TCPOPT_NOP << 24) |
463 (TCPOPT_WINDOW << 16) |
464 (TCPOLEN_WINDOW << 8) |
465 opts->ws);
468 if (unlikely(opts->num_sack_blocks)) {
469 struct tcp_sack_block *sp = tp->rx_opt.dsack ?
470 tp->duplicate_sack : tp->selective_acks;
471 int this_sack;
473 *ptr++ = htonl((TCPOPT_NOP << 24) |
474 (TCPOPT_NOP << 16) |
475 (TCPOPT_SACK << 8) |
476 (TCPOLEN_SACK_BASE + (opts->num_sack_blocks *
477 TCPOLEN_SACK_PERBLOCK)));
479 for (this_sack = 0; this_sack < opts->num_sack_blocks;
480 ++this_sack) {
481 *ptr++ = htonl(sp[this_sack].start_seq);
482 *ptr++ = htonl(sp[this_sack].end_seq);
485 tp->rx_opt.dsack = 0;
488 if (unlikely(OPTION_FAST_OPEN_COOKIE & options)) {
489 struct tcp_fastopen_cookie *foc = opts->fastopen_cookie;
491 *ptr++ = htonl((TCPOPT_EXP << 24) |
492 ((TCPOLEN_EXP_FASTOPEN_BASE + foc->len) << 16) |
493 TCPOPT_FASTOPEN_MAGIC);
495 memcpy(ptr, foc->val, foc->len);
496 if ((foc->len & 3) == 2) {
497 u8 *align = ((u8 *)ptr) + foc->len;
498 align[0] = align[1] = TCPOPT_NOP;
500 ptr += (foc->len + 3) >> 2;
504 /* Compute TCP options for SYN packets. This is not the final
505 * network wire format yet.
507 static unsigned int tcp_syn_options(struct sock *sk, struct sk_buff *skb,
508 struct tcp_out_options *opts,
509 struct tcp_md5sig_key **md5)
511 struct tcp_sock *tp = tcp_sk(sk);
512 unsigned int remaining = MAX_TCP_OPTION_SPACE;
513 struct tcp_fastopen_request *fastopen = tp->fastopen_req;
515 #ifdef CONFIG_TCP_MD5SIG
516 *md5 = tp->af_specific->md5_lookup(sk, sk);
517 if (*md5) {
518 opts->options |= OPTION_MD5;
519 remaining -= TCPOLEN_MD5SIG_ALIGNED;
521 #else
522 *md5 = NULL;
523 #endif
525 /* We always get an MSS option. The option bytes which will be seen in
526 * normal data packets should timestamps be used, must be in the MSS
527 * advertised. But we subtract them from tp->mss_cache so that
528 * calculations in tcp_sendmsg are simpler etc. So account for this
529 * fact here if necessary. If we don't do this correctly, as a
530 * receiver we won't recognize data packets as being full sized when we
531 * should, and thus we won't abide by the delayed ACK rules correctly.
532 * SACKs don't matter, we never delay an ACK when we have any of those
533 * going out. */
534 opts->mss = tcp_advertise_mss(sk);
535 remaining -= TCPOLEN_MSS_ALIGNED;
537 if (likely(sysctl_tcp_timestamps && *md5 == NULL)) {
538 opts->options |= OPTION_TS;
539 opts->tsval = TCP_SKB_CB(skb)->when + tp->tsoffset;
540 opts->tsecr = tp->rx_opt.ts_recent;
541 remaining -= TCPOLEN_TSTAMP_ALIGNED;
543 if (likely(sysctl_tcp_window_scaling)) {
544 opts->ws = tp->rx_opt.rcv_wscale;
545 opts->options |= OPTION_WSCALE;
546 remaining -= TCPOLEN_WSCALE_ALIGNED;
548 if (likely(sysctl_tcp_sack)) {
549 opts->options |= OPTION_SACK_ADVERTISE;
550 if (unlikely(!(OPTION_TS & opts->options)))
551 remaining -= TCPOLEN_SACKPERM_ALIGNED;
554 if (fastopen && fastopen->cookie.len >= 0) {
555 u32 need = TCPOLEN_EXP_FASTOPEN_BASE + fastopen->cookie.len;
556 need = (need + 3) & ~3U; /* Align to 32 bits */
557 if (remaining >= need) {
558 opts->options |= OPTION_FAST_OPEN_COOKIE;
559 opts->fastopen_cookie = &fastopen->cookie;
560 remaining -= need;
561 tp->syn_fastopen = 1;
565 return MAX_TCP_OPTION_SPACE - remaining;
568 /* Set up TCP options for SYN-ACKs. */
569 static unsigned int tcp_synack_options(struct sock *sk,
570 struct request_sock *req,
571 unsigned int mss, struct sk_buff *skb,
572 struct tcp_out_options *opts,
573 struct tcp_md5sig_key **md5,
574 struct tcp_fastopen_cookie *foc)
576 struct inet_request_sock *ireq = inet_rsk(req);
577 unsigned int remaining = MAX_TCP_OPTION_SPACE;
579 #ifdef CONFIG_TCP_MD5SIG
580 *md5 = tcp_rsk(req)->af_specific->md5_lookup(sk, req);
581 if (*md5) {
582 opts->options |= OPTION_MD5;
583 remaining -= TCPOLEN_MD5SIG_ALIGNED;
585 /* We can't fit any SACK blocks in a packet with MD5 + TS
586 * options. There was discussion about disabling SACK
587 * rather than TS in order to fit in better with old,
588 * buggy kernels, but that was deemed to be unnecessary.
590 ireq->tstamp_ok &= !ireq->sack_ok;
592 #else
593 *md5 = NULL;
594 #endif
596 /* We always send an MSS option. */
597 opts->mss = mss;
598 remaining -= TCPOLEN_MSS_ALIGNED;
600 if (likely(ireq->wscale_ok)) {
601 opts->ws = ireq->rcv_wscale;
602 opts->options |= OPTION_WSCALE;
603 remaining -= TCPOLEN_WSCALE_ALIGNED;
605 if (likely(ireq->tstamp_ok)) {
606 opts->options |= OPTION_TS;
607 opts->tsval = TCP_SKB_CB(skb)->when;
608 opts->tsecr = req->ts_recent;
609 remaining -= TCPOLEN_TSTAMP_ALIGNED;
611 if (likely(ireq->sack_ok)) {
612 opts->options |= OPTION_SACK_ADVERTISE;
613 if (unlikely(!ireq->tstamp_ok))
614 remaining -= TCPOLEN_SACKPERM_ALIGNED;
616 if (foc != NULL) {
617 u32 need = TCPOLEN_EXP_FASTOPEN_BASE + foc->len;
618 need = (need + 3) & ~3U; /* Align to 32 bits */
619 if (remaining >= need) {
620 opts->options |= OPTION_FAST_OPEN_COOKIE;
621 opts->fastopen_cookie = foc;
622 remaining -= need;
626 return MAX_TCP_OPTION_SPACE - remaining;
629 /* Compute TCP options for ESTABLISHED sockets. This is not the
630 * final wire format yet.
632 static unsigned int tcp_established_options(struct sock *sk, struct sk_buff *skb,
633 struct tcp_out_options *opts,
634 struct tcp_md5sig_key **md5)
636 struct tcp_skb_cb *tcb = skb ? TCP_SKB_CB(skb) : NULL;
637 struct tcp_sock *tp = tcp_sk(sk);
638 unsigned int size = 0;
639 unsigned int eff_sacks;
641 opts->options = 0;
643 #ifdef CONFIG_TCP_MD5SIG
644 *md5 = tp->af_specific->md5_lookup(sk, sk);
645 if (unlikely(*md5)) {
646 opts->options |= OPTION_MD5;
647 size += TCPOLEN_MD5SIG_ALIGNED;
649 #else
650 *md5 = NULL;
651 #endif
653 if (likely(tp->rx_opt.tstamp_ok)) {
654 opts->options |= OPTION_TS;
655 opts->tsval = tcb ? tcb->when + tp->tsoffset : 0;
656 opts->tsecr = tp->rx_opt.ts_recent;
657 size += TCPOLEN_TSTAMP_ALIGNED;
660 eff_sacks = tp->rx_opt.num_sacks + tp->rx_opt.dsack;
661 if (unlikely(eff_sacks)) {
662 const unsigned int remaining = MAX_TCP_OPTION_SPACE - size;
663 opts->num_sack_blocks =
664 min_t(unsigned int, eff_sacks,
665 (remaining - TCPOLEN_SACK_BASE_ALIGNED) /
666 TCPOLEN_SACK_PERBLOCK);
667 size += TCPOLEN_SACK_BASE_ALIGNED +
668 opts->num_sack_blocks * TCPOLEN_SACK_PERBLOCK;
671 return size;
675 /* TCP SMALL QUEUES (TSQ)
677 * TSQ goal is to keep small amount of skbs per tcp flow in tx queues (qdisc+dev)
678 * to reduce RTT and bufferbloat.
679 * We do this using a special skb destructor (tcp_wfree).
681 * Its important tcp_wfree() can be replaced by sock_wfree() in the event skb
682 * needs to be reallocated in a driver.
683 * The invariant being skb->truesize substracted from sk->sk_wmem_alloc
685 * Since transmit from skb destructor is forbidden, we use a tasklet
686 * to process all sockets that eventually need to send more skbs.
687 * We use one tasklet per cpu, with its own queue of sockets.
689 struct tsq_tasklet {
690 struct tasklet_struct tasklet;
691 struct list_head head; /* queue of tcp sockets */
693 static DEFINE_PER_CPU(struct tsq_tasklet, tsq_tasklet);
695 static void tcp_tsq_handler(struct sock *sk)
697 if ((1 << sk->sk_state) &
698 (TCPF_ESTABLISHED | TCPF_FIN_WAIT1 | TCPF_CLOSING |
699 TCPF_CLOSE_WAIT | TCPF_LAST_ACK))
700 tcp_write_xmit(sk, tcp_current_mss(sk), tcp_sk(sk)->nonagle,
701 0, GFP_ATOMIC);
704 * One tasklest per cpu tries to send more skbs.
705 * We run in tasklet context but need to disable irqs when
706 * transfering tsq->head because tcp_wfree() might
707 * interrupt us (non NAPI drivers)
709 static void tcp_tasklet_func(unsigned long data)
711 struct tsq_tasklet *tsq = (struct tsq_tasklet *)data;
712 LIST_HEAD(list);
713 unsigned long flags;
714 struct list_head *q, *n;
715 struct tcp_sock *tp;
716 struct sock *sk;
718 local_irq_save(flags);
719 list_splice_init(&tsq->head, &list);
720 local_irq_restore(flags);
722 list_for_each_safe(q, n, &list) {
723 tp = list_entry(q, struct tcp_sock, tsq_node);
724 list_del(&tp->tsq_node);
726 sk = (struct sock *)tp;
727 bh_lock_sock(sk);
729 if (!sock_owned_by_user(sk)) {
730 tcp_tsq_handler(sk);
731 } else {
732 /* defer the work to tcp_release_cb() */
733 set_bit(TCP_TSQ_DEFERRED, &tp->tsq_flags);
735 bh_unlock_sock(sk);
737 clear_bit(TSQ_QUEUED, &tp->tsq_flags);
738 sk_free(sk);
742 #define TCP_DEFERRED_ALL ((1UL << TCP_TSQ_DEFERRED) | \
743 (1UL << TCP_WRITE_TIMER_DEFERRED) | \
744 (1UL << TCP_DELACK_TIMER_DEFERRED) | \
745 (1UL << TCP_MTU_REDUCED_DEFERRED))
747 * tcp_release_cb - tcp release_sock() callback
748 * @sk: socket
750 * called from release_sock() to perform protocol dependent
751 * actions before socket release.
753 void tcp_release_cb(struct sock *sk)
755 struct tcp_sock *tp = tcp_sk(sk);
756 unsigned long flags, nflags;
758 /* perform an atomic operation only if at least one flag is set */
759 do {
760 flags = tp->tsq_flags;
761 if (!(flags & TCP_DEFERRED_ALL))
762 return;
763 nflags = flags & ~TCP_DEFERRED_ALL;
764 } while (cmpxchg(&tp->tsq_flags, flags, nflags) != flags);
766 if (flags & (1UL << TCP_TSQ_DEFERRED))
767 tcp_tsq_handler(sk);
769 /* Here begins the tricky part :
770 * We are called from release_sock() with :
771 * 1) BH disabled
772 * 2) sk_lock.slock spinlock held
773 * 3) socket owned by us (sk->sk_lock.owned == 1)
775 * But following code is meant to be called from BH handlers,
776 * so we should keep BH disabled, but early release socket ownership
778 sock_release_ownership(sk);
780 if (flags & (1UL << TCP_WRITE_TIMER_DEFERRED)) {
781 tcp_write_timer_handler(sk);
782 __sock_put(sk);
784 if (flags & (1UL << TCP_DELACK_TIMER_DEFERRED)) {
785 tcp_delack_timer_handler(sk);
786 __sock_put(sk);
788 if (flags & (1UL << TCP_MTU_REDUCED_DEFERRED)) {
789 inet_csk(sk)->icsk_af_ops->mtu_reduced(sk);
790 __sock_put(sk);
793 EXPORT_SYMBOL(tcp_release_cb);
795 void __init tcp_tasklet_init(void)
797 int i;
799 for_each_possible_cpu(i) {
800 struct tsq_tasklet *tsq = &per_cpu(tsq_tasklet, i);
802 INIT_LIST_HEAD(&tsq->head);
803 tasklet_init(&tsq->tasklet,
804 tcp_tasklet_func,
805 (unsigned long)tsq);
810 * Write buffer destructor automatically called from kfree_skb.
811 * We cant xmit new skbs from this context, as we might already
812 * hold qdisc lock.
814 void tcp_wfree(struct sk_buff *skb)
816 struct sock *sk = skb->sk;
817 struct tcp_sock *tp = tcp_sk(sk);
819 if (test_and_clear_bit(TSQ_THROTTLED, &tp->tsq_flags) &&
820 !test_and_set_bit(TSQ_QUEUED, &tp->tsq_flags)) {
821 unsigned long flags;
822 struct tsq_tasklet *tsq;
824 /* Keep a ref on socket.
825 * This last ref will be released in tcp_tasklet_func()
827 atomic_sub(skb->truesize - 1, &sk->sk_wmem_alloc);
829 /* queue this socket to tasklet queue */
830 local_irq_save(flags);
831 tsq = &__get_cpu_var(tsq_tasklet);
832 list_add(&tp->tsq_node, &tsq->head);
833 tasklet_schedule(&tsq->tasklet);
834 local_irq_restore(flags);
835 } else {
836 sock_wfree(skb);
840 /* This routine actually transmits TCP packets queued in by
841 * tcp_do_sendmsg(). This is used by both the initial
842 * transmission and possible later retransmissions.
843 * All SKB's seen here are completely headerless. It is our
844 * job to build the TCP header, and pass the packet down to
845 * IP so it can do the same plus pass the packet off to the
846 * device.
848 * We are working here with either a clone of the original
849 * SKB, or a fresh unique copy made by the retransmit engine.
851 static int tcp_transmit_skb(struct sock *sk, struct sk_buff *skb, int clone_it,
852 gfp_t gfp_mask)
854 const struct inet_connection_sock *icsk = inet_csk(sk);
855 struct inet_sock *inet;
856 struct tcp_sock *tp;
857 struct tcp_skb_cb *tcb;
858 struct tcp_out_options opts;
859 unsigned int tcp_options_size, tcp_header_size;
860 struct tcp_md5sig_key *md5;
861 struct tcphdr *th;
862 int err;
864 BUG_ON(!skb || !tcp_skb_pcount(skb));
866 /* If congestion control is doing timestamping, we must
867 * take such a timestamp before we potentially clone/copy.
869 if (icsk->icsk_ca_ops->flags & TCP_CONG_RTT_STAMP)
870 __net_timestamp(skb);
872 if (likely(clone_it)) {
873 const struct sk_buff *fclone = skb + 1;
875 if (unlikely(skb->fclone == SKB_FCLONE_ORIG &&
876 fclone->fclone == SKB_FCLONE_CLONE))
877 NET_INC_STATS_BH(sock_net(sk),
878 LINUX_MIB_TCPSPURIOUS_RTX_HOSTQUEUES);
880 if (unlikely(skb_cloned(skb)))
881 skb = pskb_copy(skb, gfp_mask);
882 else
883 skb = skb_clone(skb, gfp_mask);
884 if (unlikely(!skb))
885 return -ENOBUFS;
888 inet = inet_sk(sk);
889 tp = tcp_sk(sk);
890 tcb = TCP_SKB_CB(skb);
891 memset(&opts, 0, sizeof(opts));
893 if (unlikely(tcb->tcp_flags & TCPHDR_SYN))
894 tcp_options_size = tcp_syn_options(sk, skb, &opts, &md5);
895 else
896 tcp_options_size = tcp_established_options(sk, skb, &opts,
897 &md5);
898 tcp_header_size = tcp_options_size + sizeof(struct tcphdr);
900 if (tcp_packets_in_flight(tp) == 0)
901 tcp_ca_event(sk, CA_EVENT_TX_START);
903 /* if no packet is in qdisc/device queue, then allow XPS to select
904 * another queue.
906 skb->ooo_okay = sk_wmem_alloc_get(sk) == 0;
908 skb_push(skb, tcp_header_size);
909 skb_reset_transport_header(skb);
911 skb_orphan(skb);
912 skb->sk = sk;
913 skb->destructor = tcp_wfree;
914 atomic_add(skb->truesize, &sk->sk_wmem_alloc);
916 /* Build TCP header and checksum it. */
917 th = tcp_hdr(skb);
918 th->source = inet->inet_sport;
919 th->dest = inet->inet_dport;
920 th->seq = htonl(tcb->seq);
921 th->ack_seq = htonl(tp->rcv_nxt);
922 *(((__be16 *)th) + 6) = htons(((tcp_header_size >> 2) << 12) |
923 tcb->tcp_flags);
925 if (unlikely(tcb->tcp_flags & TCPHDR_SYN)) {
926 /* RFC1323: The window in SYN & SYN/ACK segments
927 * is never scaled.
929 th->window = htons(min(tp->rcv_wnd, 65535U));
930 } else {
931 th->window = htons(tcp_select_window(sk));
933 th->check = 0;
934 th->urg_ptr = 0;
936 /* The urg_mode check is necessary during a below snd_una win probe */
937 if (unlikely(tcp_urg_mode(tp) && before(tcb->seq, tp->snd_up))) {
938 if (before(tp->snd_up, tcb->seq + 0x10000)) {
939 th->urg_ptr = htons(tp->snd_up - tcb->seq);
940 th->urg = 1;
941 } else if (after(tcb->seq + 0xFFFF, tp->snd_nxt)) {
942 th->urg_ptr = htons(0xFFFF);
943 th->urg = 1;
947 tcp_options_write((__be32 *)(th + 1), tp, &opts);
948 if (likely((tcb->tcp_flags & TCPHDR_SYN) == 0))
949 TCP_ECN_send(sk, skb, tcp_header_size);
951 #ifdef CONFIG_TCP_MD5SIG
952 /* Calculate the MD5 hash, as we have all we need now */
953 if (md5) {
954 sk_nocaps_add(sk, NETIF_F_GSO_MASK);
955 tp->af_specific->calc_md5_hash(opts.hash_location,
956 md5, sk, NULL, skb);
958 #endif
960 icsk->icsk_af_ops->send_check(sk, skb);
962 if (likely(tcb->tcp_flags & TCPHDR_ACK))
963 tcp_event_ack_sent(sk, tcp_skb_pcount(skb));
965 if (skb->len != tcp_header_size)
966 tcp_event_data_sent(tp, sk);
968 if (after(tcb->end_seq, tp->snd_nxt) || tcb->seq == tcb->end_seq)
969 TCP_ADD_STATS(sock_net(sk), TCP_MIB_OUTSEGS,
970 tcp_skb_pcount(skb));
972 err = icsk->icsk_af_ops->queue_xmit(skb, &inet->cork.fl);
973 if (likely(err <= 0))
974 return err;
976 tcp_enter_cwr(sk, 1);
978 return net_xmit_eval(err);
981 /* This routine just queues the buffer for sending.
983 * NOTE: probe0 timer is not checked, do not forget tcp_push_pending_frames,
984 * otherwise socket can stall.
986 static void tcp_queue_skb(struct sock *sk, struct sk_buff *skb)
988 struct tcp_sock *tp = tcp_sk(sk);
990 /* Advance write_seq and place onto the write_queue. */
991 tp->write_seq = TCP_SKB_CB(skb)->end_seq;
992 skb_header_release(skb);
993 tcp_add_write_queue_tail(sk, skb);
994 sk->sk_wmem_queued += skb->truesize;
995 sk_mem_charge(sk, skb->truesize);
998 /* Initialize TSO segments for a packet. */
999 static void tcp_set_skb_tso_segs(const struct sock *sk, struct sk_buff *skb,
1000 unsigned int mss_now)
1002 /* Make sure we own this skb before messing gso_size/gso_segs */
1003 WARN_ON_ONCE(skb_cloned(skb));
1005 if (skb->len <= mss_now || skb->ip_summed == CHECKSUM_NONE) {
1006 /* Avoid the costly divide in the normal
1007 * non-TSO case.
1009 skb_shinfo(skb)->gso_segs = 1;
1010 skb_shinfo(skb)->gso_size = 0;
1011 skb_shinfo(skb)->gso_type = 0;
1012 } else {
1013 skb_shinfo(skb)->gso_segs = DIV_ROUND_UP(skb->len, mss_now);
1014 skb_shinfo(skb)->gso_size = mss_now;
1015 skb_shinfo(skb)->gso_type = sk->sk_gso_type;
1019 /* When a modification to fackets out becomes necessary, we need to check
1020 * skb is counted to fackets_out or not.
1022 static void tcp_adjust_fackets_out(struct sock *sk, const struct sk_buff *skb,
1023 int decr)
1025 struct tcp_sock *tp = tcp_sk(sk);
1027 if (!tp->sacked_out || tcp_is_reno(tp))
1028 return;
1030 if (after(tcp_highest_sack_seq(tp), TCP_SKB_CB(skb)->seq))
1031 tp->fackets_out -= decr;
1034 /* Pcount in the middle of the write queue got changed, we need to do various
1035 * tweaks to fix counters
1037 static void tcp_adjust_pcount(struct sock *sk, const struct sk_buff *skb, int decr)
1039 struct tcp_sock *tp = tcp_sk(sk);
1041 tp->packets_out -= decr;
1043 if (TCP_SKB_CB(skb)->sacked & TCPCB_SACKED_ACKED)
1044 tp->sacked_out -= decr;
1045 if (TCP_SKB_CB(skb)->sacked & TCPCB_SACKED_RETRANS)
1046 tp->retrans_out -= decr;
1047 if (TCP_SKB_CB(skb)->sacked & TCPCB_LOST)
1048 tp->lost_out -= decr;
1050 /* Reno case is special. Sigh... */
1051 if (tcp_is_reno(tp) && decr > 0)
1052 tp->sacked_out -= min_t(u32, tp->sacked_out, decr);
1054 tcp_adjust_fackets_out(sk, skb, decr);
1056 if (tp->lost_skb_hint &&
1057 before(TCP_SKB_CB(skb)->seq, TCP_SKB_CB(tp->lost_skb_hint)->seq) &&
1058 (tcp_is_fack(tp) || (TCP_SKB_CB(skb)->sacked & TCPCB_SACKED_ACKED)))
1059 tp->lost_cnt_hint -= decr;
1061 tcp_verify_left_out(tp);
1064 /* Function to create two new TCP segments. Shrinks the given segment
1065 * to the specified size and appends a new segment with the rest of the
1066 * packet to the list. This won't be called frequently, I hope.
1067 * Remember, these are still headerless SKBs at this point.
1069 int tcp_fragment(struct sock *sk, struct sk_buff *skb, u32 len,
1070 unsigned int mss_now)
1072 struct tcp_sock *tp = tcp_sk(sk);
1073 struct sk_buff *buff;
1074 int nsize, old_factor;
1075 int nlen;
1076 u8 flags;
1078 if (WARN_ON(len > skb->len))
1079 return -EINVAL;
1081 nsize = skb_headlen(skb) - len;
1082 if (nsize < 0)
1083 nsize = 0;
1085 if (skb_unclone(skb, GFP_ATOMIC))
1086 return -ENOMEM;
1088 /* Get a new skb... force flag on. */
1089 buff = sk_stream_alloc_skb(sk, nsize, GFP_ATOMIC);
1090 if (buff == NULL)
1091 return -ENOMEM; /* We'll just try again later. */
1093 sk->sk_wmem_queued += buff->truesize;
1094 sk_mem_charge(sk, buff->truesize);
1095 nlen = skb->len - len - nsize;
1096 buff->truesize += nlen;
1097 skb->truesize -= nlen;
1099 /* Correct the sequence numbers. */
1100 TCP_SKB_CB(buff)->seq = TCP_SKB_CB(skb)->seq + len;
1101 TCP_SKB_CB(buff)->end_seq = TCP_SKB_CB(skb)->end_seq;
1102 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(buff)->seq;
1104 /* PSH and FIN should only be set in the second packet. */
1105 flags = TCP_SKB_CB(skb)->tcp_flags;
1106 TCP_SKB_CB(skb)->tcp_flags = flags & ~(TCPHDR_FIN | TCPHDR_PSH);
1107 TCP_SKB_CB(buff)->tcp_flags = flags;
1108 TCP_SKB_CB(buff)->sacked = TCP_SKB_CB(skb)->sacked;
1110 if (!skb_shinfo(skb)->nr_frags && skb->ip_summed != CHECKSUM_PARTIAL) {
1111 /* Copy and checksum data tail into the new buffer. */
1112 buff->csum = csum_partial_copy_nocheck(skb->data + len,
1113 skb_put(buff, nsize),
1114 nsize, 0);
1116 skb_trim(skb, len);
1118 skb->csum = csum_block_sub(skb->csum, buff->csum, len);
1119 } else {
1120 skb->ip_summed = CHECKSUM_PARTIAL;
1121 skb_split(skb, buff, len);
1124 buff->ip_summed = skb->ip_summed;
1126 /* Looks stupid, but our code really uses when of
1127 * skbs, which it never sent before. --ANK
1129 TCP_SKB_CB(buff)->when = TCP_SKB_CB(skb)->when;
1130 buff->tstamp = skb->tstamp;
1132 old_factor = tcp_skb_pcount(skb);
1134 /* Fix up tso_factor for both original and new SKB. */
1135 tcp_set_skb_tso_segs(sk, skb, mss_now);
1136 tcp_set_skb_tso_segs(sk, buff, mss_now);
1138 /* If this packet has been sent out already, we must
1139 * adjust the various packet counters.
1141 if (!before(tp->snd_nxt, TCP_SKB_CB(buff)->end_seq)) {
1142 int diff = old_factor - tcp_skb_pcount(skb) -
1143 tcp_skb_pcount(buff);
1145 if (diff)
1146 tcp_adjust_pcount(sk, skb, diff);
1149 /* Link BUFF into the send queue. */
1150 skb_header_release(buff);
1151 tcp_insert_write_queue_after(skb, buff, sk);
1153 return 0;
1156 /* This is similar to __pskb_pull_head() (it will go to core/skbuff.c
1157 * eventually). The difference is that pulled data not copied, but
1158 * immediately discarded.
1160 static void __pskb_trim_head(struct sk_buff *skb, int len)
1162 int i, k, eat;
1164 eat = min_t(int, len, skb_headlen(skb));
1165 if (eat) {
1166 __skb_pull(skb, eat);
1167 len -= eat;
1168 if (!len)
1169 return;
1171 eat = len;
1172 k = 0;
1173 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
1174 int size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
1176 if (size <= eat) {
1177 skb_frag_unref(skb, i);
1178 eat -= size;
1179 } else {
1180 skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i];
1181 if (eat) {
1182 skb_shinfo(skb)->frags[k].page_offset += eat;
1183 skb_frag_size_sub(&skb_shinfo(skb)->frags[k], eat);
1184 eat = 0;
1186 k++;
1189 skb_shinfo(skb)->nr_frags = k;
1191 skb_reset_tail_pointer(skb);
1192 skb->data_len -= len;
1193 skb->len = skb->data_len;
1196 /* Remove acked data from a packet in the transmit queue. */
1197 int tcp_trim_head(struct sock *sk, struct sk_buff *skb, u32 len)
1199 if (skb_unclone(skb, GFP_ATOMIC))
1200 return -ENOMEM;
1202 __pskb_trim_head(skb, len);
1204 TCP_SKB_CB(skb)->seq += len;
1205 skb->ip_summed = CHECKSUM_PARTIAL;
1207 skb->truesize -= len;
1208 sk->sk_wmem_queued -= len;
1209 sk_mem_uncharge(sk, len);
1210 sock_set_flag(sk, SOCK_QUEUE_SHRUNK);
1212 /* Any change of skb->len requires recalculation of tso factor. */
1213 if (tcp_skb_pcount(skb) > 1)
1214 tcp_set_skb_tso_segs(sk, skb, tcp_skb_mss(skb));
1216 return 0;
1219 /* Calculate MSS not accounting any TCP options. */
1220 static inline int __tcp_mtu_to_mss(struct sock *sk, int pmtu)
1222 const struct tcp_sock *tp = tcp_sk(sk);
1223 const struct inet_connection_sock *icsk = inet_csk(sk);
1224 int mss_now;
1226 /* Calculate base mss without TCP options:
1227 It is MMS_S - sizeof(tcphdr) of rfc1122
1229 mss_now = pmtu - icsk->icsk_af_ops->net_header_len - sizeof(struct tcphdr);
1231 /* IPv6 adds a frag_hdr in case RTAX_FEATURE_ALLFRAG is set */
1232 if (icsk->icsk_af_ops->net_frag_header_len) {
1233 const struct dst_entry *dst = __sk_dst_get(sk);
1235 if (dst && dst_allfrag(dst))
1236 mss_now -= icsk->icsk_af_ops->net_frag_header_len;
1239 /* Clamp it (mss_clamp does not include tcp options) */
1240 if (mss_now > tp->rx_opt.mss_clamp)
1241 mss_now = tp->rx_opt.mss_clamp;
1243 /* Now subtract optional transport overhead */
1244 mss_now -= icsk->icsk_ext_hdr_len;
1246 /* Then reserve room for full set of TCP options and 8 bytes of data */
1247 if (mss_now < 48)
1248 mss_now = 48;
1249 return mss_now;
1252 /* Calculate MSS. Not accounting for SACKs here. */
1253 int tcp_mtu_to_mss(struct sock *sk, int pmtu)
1255 /* Subtract TCP options size, not including SACKs */
1256 return __tcp_mtu_to_mss(sk, pmtu) -
1257 (tcp_sk(sk)->tcp_header_len - sizeof(struct tcphdr));
1260 /* Inverse of above */
1261 int tcp_mss_to_mtu(struct sock *sk, int mss)
1263 const struct tcp_sock *tp = tcp_sk(sk);
1264 const struct inet_connection_sock *icsk = inet_csk(sk);
1265 int mtu;
1267 mtu = mss +
1268 tp->tcp_header_len +
1269 icsk->icsk_ext_hdr_len +
1270 icsk->icsk_af_ops->net_header_len;
1272 /* IPv6 adds a frag_hdr in case RTAX_FEATURE_ALLFRAG is set */
1273 if (icsk->icsk_af_ops->net_frag_header_len) {
1274 const struct dst_entry *dst = __sk_dst_get(sk);
1276 if (dst && dst_allfrag(dst))
1277 mtu += icsk->icsk_af_ops->net_frag_header_len;
1279 return mtu;
1282 /* MTU probing init per socket */
1283 void tcp_mtup_init(struct sock *sk)
1285 struct tcp_sock *tp = tcp_sk(sk);
1286 struct inet_connection_sock *icsk = inet_csk(sk);
1288 icsk->icsk_mtup.enabled = sysctl_tcp_mtu_probing > 1;
1289 icsk->icsk_mtup.search_high = tp->rx_opt.mss_clamp + sizeof(struct tcphdr) +
1290 icsk->icsk_af_ops->net_header_len;
1291 icsk->icsk_mtup.search_low = tcp_mss_to_mtu(sk, sysctl_tcp_base_mss);
1292 icsk->icsk_mtup.probe_size = 0;
1294 EXPORT_SYMBOL(tcp_mtup_init);
1296 /* This function synchronize snd mss to current pmtu/exthdr set.
1298 tp->rx_opt.user_mss is mss set by user by TCP_MAXSEG. It does NOT counts
1299 for TCP options, but includes only bare TCP header.
1301 tp->rx_opt.mss_clamp is mss negotiated at connection setup.
1302 It is minimum of user_mss and mss received with SYN.
1303 It also does not include TCP options.
1305 inet_csk(sk)->icsk_pmtu_cookie is last pmtu, seen by this function.
1307 tp->mss_cache is current effective sending mss, including
1308 all tcp options except for SACKs. It is evaluated,
1309 taking into account current pmtu, but never exceeds
1310 tp->rx_opt.mss_clamp.
1312 NOTE1. rfc1122 clearly states that advertised MSS
1313 DOES NOT include either tcp or ip options.
1315 NOTE2. inet_csk(sk)->icsk_pmtu_cookie and tp->mss_cache
1316 are READ ONLY outside this function. --ANK (980731)
1318 unsigned int tcp_sync_mss(struct sock *sk, u32 pmtu)
1320 struct tcp_sock *tp = tcp_sk(sk);
1321 struct inet_connection_sock *icsk = inet_csk(sk);
1322 int mss_now;
1324 if (icsk->icsk_mtup.search_high > pmtu)
1325 icsk->icsk_mtup.search_high = pmtu;
1327 mss_now = tcp_mtu_to_mss(sk, pmtu);
1328 mss_now = tcp_bound_to_half_wnd(tp, mss_now);
1330 /* And store cached results */
1331 icsk->icsk_pmtu_cookie = pmtu;
1332 if (icsk->icsk_mtup.enabled)
1333 mss_now = min(mss_now, tcp_mtu_to_mss(sk, icsk->icsk_mtup.search_low));
1334 tp->mss_cache = mss_now;
1336 return mss_now;
1338 EXPORT_SYMBOL(tcp_sync_mss);
1340 /* Compute the current effective MSS, taking SACKs and IP options,
1341 * and even PMTU discovery events into account.
1343 unsigned int tcp_current_mss(struct sock *sk)
1345 const struct tcp_sock *tp = tcp_sk(sk);
1346 const struct dst_entry *dst = __sk_dst_get(sk);
1347 u32 mss_now;
1348 unsigned int header_len;
1349 struct tcp_out_options opts;
1350 struct tcp_md5sig_key *md5;
1352 mss_now = tp->mss_cache;
1354 if (dst) {
1355 u32 mtu = dst_mtu(dst);
1356 if (mtu != inet_csk(sk)->icsk_pmtu_cookie)
1357 mss_now = tcp_sync_mss(sk, mtu);
1360 header_len = tcp_established_options(sk, NULL, &opts, &md5) +
1361 sizeof(struct tcphdr);
1362 /* The mss_cache is sized based on tp->tcp_header_len, which assumes
1363 * some common options. If this is an odd packet (because we have SACK
1364 * blocks etc) then our calculated header_len will be different, and
1365 * we have to adjust mss_now correspondingly */
1366 if (header_len != tp->tcp_header_len) {
1367 int delta = (int) header_len - tp->tcp_header_len;
1368 mss_now -= delta;
1371 return mss_now;
1374 /* Congestion window validation. (RFC2861) */
1375 static void tcp_cwnd_validate(struct sock *sk)
1377 struct tcp_sock *tp = tcp_sk(sk);
1379 if (tp->packets_out >= tp->snd_cwnd) {
1380 /* Network is feed fully. */
1381 tp->snd_cwnd_used = 0;
1382 tp->snd_cwnd_stamp = tcp_time_stamp;
1383 } else {
1384 /* Network starves. */
1385 if (tp->packets_out > tp->snd_cwnd_used)
1386 tp->snd_cwnd_used = tp->packets_out;
1388 if (sysctl_tcp_slow_start_after_idle &&
1389 (s32)(tcp_time_stamp - tp->snd_cwnd_stamp) >= inet_csk(sk)->icsk_rto)
1390 tcp_cwnd_application_limited(sk);
1394 /* Returns the portion of skb which can be sent right away without
1395 * introducing MSS oddities to segment boundaries. In rare cases where
1396 * mss_now != mss_cache, we will request caller to create a small skb
1397 * per input skb which could be mostly avoided here (if desired).
1399 * We explicitly want to create a request for splitting write queue tail
1400 * to a small skb for Nagle purposes while avoiding unnecessary modulos,
1401 * thus all the complexity (cwnd_len is always MSS multiple which we
1402 * return whenever allowed by the other factors). Basically we need the
1403 * modulo only when the receiver window alone is the limiting factor or
1404 * when we would be allowed to send the split-due-to-Nagle skb fully.
1406 static unsigned int tcp_mss_split_point(const struct sock *sk, const struct sk_buff *skb,
1407 unsigned int mss_now, unsigned int max_segs)
1409 const struct tcp_sock *tp = tcp_sk(sk);
1410 u32 needed, window, max_len;
1412 window = tcp_wnd_end(tp) - TCP_SKB_CB(skb)->seq;
1413 max_len = mss_now * max_segs;
1415 if (likely(max_len <= window && skb != tcp_write_queue_tail(sk)))
1416 return max_len;
1418 needed = min(skb->len, window);
1420 if (max_len <= needed)
1421 return max_len;
1423 return needed - needed % mss_now;
1426 /* Can at least one segment of SKB be sent right now, according to the
1427 * congestion window rules? If so, return how many segments are allowed.
1429 static inline unsigned int tcp_cwnd_test(const struct tcp_sock *tp,
1430 const struct sk_buff *skb)
1432 u32 in_flight, cwnd;
1434 /* Don't be strict about the congestion window for the final FIN. */
1435 if ((TCP_SKB_CB(skb)->tcp_flags & TCPHDR_FIN) &&
1436 tcp_skb_pcount(skb) == 1)
1437 return 1;
1439 in_flight = tcp_packets_in_flight(tp);
1440 cwnd = tp->snd_cwnd;
1441 if (in_flight < cwnd)
1442 return (cwnd - in_flight);
1444 return 0;
1447 /* Initialize TSO state of a skb.
1448 * This must be invoked the first time we consider transmitting
1449 * SKB onto the wire.
1451 static int tcp_init_tso_segs(const struct sock *sk, struct sk_buff *skb,
1452 unsigned int mss_now)
1454 int tso_segs = tcp_skb_pcount(skb);
1456 if (!tso_segs || (tso_segs > 1 && tcp_skb_mss(skb) != mss_now)) {
1457 tcp_set_skb_tso_segs(sk, skb, mss_now);
1458 tso_segs = tcp_skb_pcount(skb);
1460 return tso_segs;
1463 /* Minshall's variant of the Nagle send check. */
1464 static inline bool tcp_minshall_check(const struct tcp_sock *tp)
1466 return after(tp->snd_sml, tp->snd_una) &&
1467 !after(tp->snd_sml, tp->snd_nxt);
1470 /* Return false, if packet can be sent now without violation Nagle's rules:
1471 * 1. It is full sized.
1472 * 2. Or it contains FIN. (already checked by caller)
1473 * 3. Or TCP_CORK is not set, and TCP_NODELAY is set.
1474 * 4. Or TCP_CORK is not set, and all sent packets are ACKed.
1475 * With Minshall's modification: all sent small packets are ACKed.
1477 static inline bool tcp_nagle_check(const struct tcp_sock *tp,
1478 const struct sk_buff *skb,
1479 unsigned int mss_now, int nonagle)
1481 return skb->len < mss_now &&
1482 ((nonagle & TCP_NAGLE_CORK) ||
1483 (!nonagle && tp->packets_out && tcp_minshall_check(tp)));
1486 /* Return true if the Nagle test allows this packet to be
1487 * sent now.
1489 static inline bool tcp_nagle_test(const struct tcp_sock *tp, const struct sk_buff *skb,
1490 unsigned int cur_mss, int nonagle)
1492 /* Nagle rule does not apply to frames, which sit in the middle of the
1493 * write_queue (they have no chances to get new data).
1495 * This is implemented in the callers, where they modify the 'nonagle'
1496 * argument based upon the location of SKB in the send queue.
1498 if (nonagle & TCP_NAGLE_PUSH)
1499 return true;
1501 /* Don't use the nagle rule for urgent data (or for the final FIN). */
1502 if (tcp_urg_mode(tp) || (TCP_SKB_CB(skb)->tcp_flags & TCPHDR_FIN))
1503 return true;
1505 if (!tcp_nagle_check(tp, skb, cur_mss, nonagle))
1506 return true;
1508 return false;
1511 /* Does at least the first segment of SKB fit into the send window? */
1512 static bool tcp_snd_wnd_test(const struct tcp_sock *tp,
1513 const struct sk_buff *skb,
1514 unsigned int cur_mss)
1516 u32 end_seq = TCP_SKB_CB(skb)->end_seq;
1518 if (skb->len > cur_mss)
1519 end_seq = TCP_SKB_CB(skb)->seq + cur_mss;
1521 return !after(end_seq, tcp_wnd_end(tp));
1524 /* This checks if the data bearing packet SKB (usually tcp_send_head(sk))
1525 * should be put on the wire right now. If so, it returns the number of
1526 * packets allowed by the congestion window.
1528 static unsigned int tcp_snd_test(const struct sock *sk, struct sk_buff *skb,
1529 unsigned int cur_mss, int nonagle)
1531 const struct tcp_sock *tp = tcp_sk(sk);
1532 unsigned int cwnd_quota;
1534 tcp_init_tso_segs(sk, skb, cur_mss);
1536 if (!tcp_nagle_test(tp, skb, cur_mss, nonagle))
1537 return 0;
1539 cwnd_quota = tcp_cwnd_test(tp, skb);
1540 if (cwnd_quota && !tcp_snd_wnd_test(tp, skb, cur_mss))
1541 cwnd_quota = 0;
1543 return cwnd_quota;
1546 /* Test if sending is allowed right now. */
1547 bool tcp_may_send_now(struct sock *sk)
1549 const struct tcp_sock *tp = tcp_sk(sk);
1550 struct sk_buff *skb = tcp_send_head(sk);
1552 return skb &&
1553 tcp_snd_test(sk, skb, tcp_current_mss(sk),
1554 (tcp_skb_is_last(sk, skb) ?
1555 tp->nonagle : TCP_NAGLE_PUSH));
1558 /* Trim TSO SKB to LEN bytes, put the remaining data into a new packet
1559 * which is put after SKB on the list. It is very much like
1560 * tcp_fragment() except that it may make several kinds of assumptions
1561 * in order to speed up the splitting operation. In particular, we
1562 * know that all the data is in scatter-gather pages, and that the
1563 * packet has never been sent out before (and thus is not cloned).
1565 static int tso_fragment(struct sock *sk, struct sk_buff *skb, unsigned int len,
1566 unsigned int mss_now, gfp_t gfp)
1568 struct sk_buff *buff;
1569 int nlen = skb->len - len;
1570 u8 flags;
1572 /* All of a TSO frame must be composed of paged data. */
1573 if (skb->len != skb->data_len)
1574 return tcp_fragment(sk, skb, len, mss_now);
1576 buff = sk_stream_alloc_skb(sk, 0, gfp);
1577 if (unlikely(buff == NULL))
1578 return -ENOMEM;
1580 sk->sk_wmem_queued += buff->truesize;
1581 sk_mem_charge(sk, buff->truesize);
1582 buff->truesize += nlen;
1583 skb->truesize -= nlen;
1585 /* Correct the sequence numbers. */
1586 TCP_SKB_CB(buff)->seq = TCP_SKB_CB(skb)->seq + len;
1587 TCP_SKB_CB(buff)->end_seq = TCP_SKB_CB(skb)->end_seq;
1588 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(buff)->seq;
1590 /* PSH and FIN should only be set in the second packet. */
1591 flags = TCP_SKB_CB(skb)->tcp_flags;
1592 TCP_SKB_CB(skb)->tcp_flags = flags & ~(TCPHDR_FIN | TCPHDR_PSH);
1593 TCP_SKB_CB(buff)->tcp_flags = flags;
1595 /* This packet was never sent out yet, so no SACK bits. */
1596 TCP_SKB_CB(buff)->sacked = 0;
1598 buff->ip_summed = skb->ip_summed = CHECKSUM_PARTIAL;
1599 skb_split(skb, buff, len);
1601 /* Fix up tso_factor for both original and new SKB. */
1602 tcp_set_skb_tso_segs(sk, skb, mss_now);
1603 tcp_set_skb_tso_segs(sk, buff, mss_now);
1605 /* Link BUFF into the send queue. */
1606 skb_header_release(buff);
1607 tcp_insert_write_queue_after(skb, buff, sk);
1609 return 0;
1612 /* Try to defer sending, if possible, in order to minimize the amount
1613 * of TSO splitting we do. View it as a kind of TSO Nagle test.
1615 * This algorithm is from John Heffner.
1617 static bool tcp_tso_should_defer(struct sock *sk, struct sk_buff *skb)
1619 struct tcp_sock *tp = tcp_sk(sk);
1620 const struct inet_connection_sock *icsk = inet_csk(sk);
1621 u32 send_win, cong_win, limit, in_flight;
1622 int win_divisor;
1624 if (TCP_SKB_CB(skb)->tcp_flags & TCPHDR_FIN)
1625 goto send_now;
1627 if (icsk->icsk_ca_state != TCP_CA_Open)
1628 goto send_now;
1630 /* Defer for less than two clock ticks. */
1631 if (tp->tso_deferred &&
1632 (((u32)jiffies << 1) >> 1) - (tp->tso_deferred >> 1) > 1)
1633 goto send_now;
1635 in_flight = tcp_packets_in_flight(tp);
1637 BUG_ON(tcp_skb_pcount(skb) <= 1 || (tp->snd_cwnd <= in_flight));
1639 send_win = tcp_wnd_end(tp) - TCP_SKB_CB(skb)->seq;
1641 /* From in_flight test above, we know that cwnd > in_flight. */
1642 cong_win = (tp->snd_cwnd - in_flight) * tp->mss_cache;
1644 limit = min(send_win, cong_win);
1646 /* If a full-sized TSO skb can be sent, do it. */
1647 if (limit >= min_t(unsigned int, sk->sk_gso_max_size,
1648 tp->xmit_size_goal_segs * tp->mss_cache))
1649 goto send_now;
1651 /* Middle in queue won't get any more data, full sendable already? */
1652 if ((skb != tcp_write_queue_tail(sk)) && (limit >= skb->len))
1653 goto send_now;
1655 win_divisor = ACCESS_ONCE(sysctl_tcp_tso_win_divisor);
1656 if (win_divisor) {
1657 u32 chunk = min(tp->snd_wnd, tp->snd_cwnd * tp->mss_cache);
1659 /* If at least some fraction of a window is available,
1660 * just use it.
1662 chunk /= win_divisor;
1663 if (limit >= chunk)
1664 goto send_now;
1665 } else {
1666 /* Different approach, try not to defer past a single
1667 * ACK. Receiver should ACK every other full sized
1668 * frame, so if we have space for more than 3 frames
1669 * then send now.
1671 if (limit > tcp_max_tso_deferred_mss(tp) * tp->mss_cache)
1672 goto send_now;
1675 /* Ok, it looks like it is advisable to defer.
1676 * Do not rearm the timer if already set to not break TCP ACK clocking.
1678 if (!tp->tso_deferred)
1679 tp->tso_deferred = 1 | (jiffies << 1);
1681 return true;
1683 send_now:
1684 tp->tso_deferred = 0;
1685 return false;
1688 /* Create a new MTU probe if we are ready.
1689 * MTU probe is regularly attempting to increase the path MTU by
1690 * deliberately sending larger packets. This discovers routing
1691 * changes resulting in larger path MTUs.
1693 * Returns 0 if we should wait to probe (no cwnd available),
1694 * 1 if a probe was sent,
1695 * -1 otherwise
1697 static int tcp_mtu_probe(struct sock *sk)
1699 struct tcp_sock *tp = tcp_sk(sk);
1700 struct inet_connection_sock *icsk = inet_csk(sk);
1701 struct sk_buff *skb, *nskb, *next;
1702 int len;
1703 int probe_size;
1704 int size_needed;
1705 int copy;
1706 int mss_now;
1708 /* Not currently probing/verifying,
1709 * not in recovery,
1710 * have enough cwnd, and
1711 * not SACKing (the variable headers throw things off) */
1712 if (!icsk->icsk_mtup.enabled ||
1713 icsk->icsk_mtup.probe_size ||
1714 inet_csk(sk)->icsk_ca_state != TCP_CA_Open ||
1715 tp->snd_cwnd < 11 ||
1716 tp->rx_opt.num_sacks || tp->rx_opt.dsack)
1717 return -1;
1719 /* Very simple search strategy: just double the MSS. */
1720 mss_now = tcp_current_mss(sk);
1721 probe_size = 2 * tp->mss_cache;
1722 size_needed = probe_size + (tp->reordering + 1) * tp->mss_cache;
1723 if (probe_size > tcp_mtu_to_mss(sk, icsk->icsk_mtup.search_high)) {
1724 /* TODO: set timer for probe_converge_event */
1725 return -1;
1728 /* Have enough data in the send queue to probe? */
1729 if (tp->write_seq - tp->snd_nxt < size_needed)
1730 return -1;
1732 if (tp->snd_wnd < size_needed)
1733 return -1;
1734 if (after(tp->snd_nxt + size_needed, tcp_wnd_end(tp)))
1735 return 0;
1737 /* Do we need to wait to drain cwnd? With none in flight, don't stall */
1738 if (tcp_packets_in_flight(tp) + 2 > tp->snd_cwnd) {
1739 if (!tcp_packets_in_flight(tp))
1740 return -1;
1741 else
1742 return 0;
1745 /* We're allowed to probe. Build it now. */
1746 if ((nskb = sk_stream_alloc_skb(sk, probe_size, GFP_ATOMIC)) == NULL)
1747 return -1;
1748 sk->sk_wmem_queued += nskb->truesize;
1749 sk_mem_charge(sk, nskb->truesize);
1751 skb = tcp_send_head(sk);
1753 TCP_SKB_CB(nskb)->seq = TCP_SKB_CB(skb)->seq;
1754 TCP_SKB_CB(nskb)->end_seq = TCP_SKB_CB(skb)->seq + probe_size;
1755 TCP_SKB_CB(nskb)->tcp_flags = TCPHDR_ACK;
1756 TCP_SKB_CB(nskb)->sacked = 0;
1757 nskb->csum = 0;
1758 nskb->ip_summed = skb->ip_summed;
1760 tcp_insert_write_queue_before(nskb, skb, sk);
1762 len = 0;
1763 tcp_for_write_queue_from_safe(skb, next, sk) {
1764 copy = min_t(int, skb->len, probe_size - len);
1765 if (nskb->ip_summed)
1766 skb_copy_bits(skb, 0, skb_put(nskb, copy), copy);
1767 else
1768 nskb->csum = skb_copy_and_csum_bits(skb, 0,
1769 skb_put(nskb, copy),
1770 copy, nskb->csum);
1772 if (skb->len <= copy) {
1773 /* We've eaten all the data from this skb.
1774 * Throw it away. */
1775 TCP_SKB_CB(nskb)->tcp_flags |= TCP_SKB_CB(skb)->tcp_flags;
1776 tcp_unlink_write_queue(skb, sk);
1777 sk_wmem_free_skb(sk, skb);
1778 } else {
1779 TCP_SKB_CB(nskb)->tcp_flags |= TCP_SKB_CB(skb)->tcp_flags &
1780 ~(TCPHDR_FIN|TCPHDR_PSH);
1781 if (!skb_shinfo(skb)->nr_frags) {
1782 skb_pull(skb, copy);
1783 if (skb->ip_summed != CHECKSUM_PARTIAL)
1784 skb->csum = csum_partial(skb->data,
1785 skb->len, 0);
1786 } else {
1787 __pskb_trim_head(skb, copy);
1788 tcp_set_skb_tso_segs(sk, skb, mss_now);
1790 TCP_SKB_CB(skb)->seq += copy;
1793 len += copy;
1795 if (len >= probe_size)
1796 break;
1798 tcp_init_tso_segs(sk, nskb, nskb->len);
1800 /* We're ready to send. If this fails, the probe will
1801 * be resegmented into mss-sized pieces by tcp_write_xmit(). */
1802 TCP_SKB_CB(nskb)->when = tcp_time_stamp;
1803 if (!tcp_transmit_skb(sk, nskb, 1, GFP_ATOMIC)) {
1804 /* Decrement cwnd here because we are sending
1805 * effectively two packets. */
1806 tp->snd_cwnd--;
1807 tcp_event_new_data_sent(sk, nskb);
1809 icsk->icsk_mtup.probe_size = tcp_mss_to_mtu(sk, nskb->len);
1810 tp->mtu_probe.probe_seq_start = TCP_SKB_CB(nskb)->seq;
1811 tp->mtu_probe.probe_seq_end = TCP_SKB_CB(nskb)->end_seq;
1813 return 1;
1816 return -1;
1819 /* This routine writes packets to the network. It advances the
1820 * send_head. This happens as incoming acks open up the remote
1821 * window for us.
1823 * LARGESEND note: !tcp_urg_mode is overkill, only frames between
1824 * snd_up-64k-mss .. snd_up cannot be large. However, taking into
1825 * account rare use of URG, this is not a big flaw.
1827 * Send at most one packet when push_one > 0. Temporarily ignore
1828 * cwnd limit to force at most one packet out when push_one == 2.
1830 * Returns true, if no segments are in flight and we have queued segments,
1831 * but cannot send anything now because of SWS or another problem.
1833 static bool tcp_write_xmit(struct sock *sk, unsigned int mss_now, int nonagle,
1834 int push_one, gfp_t gfp)
1836 struct tcp_sock *tp = tcp_sk(sk);
1837 struct sk_buff *skb;
1838 unsigned int tso_segs, sent_pkts;
1839 int cwnd_quota;
1840 int result;
1842 sent_pkts = 0;
1844 if (!push_one) {
1845 /* Do MTU probing. */
1846 result = tcp_mtu_probe(sk);
1847 if (!result) {
1848 return false;
1849 } else if (result > 0) {
1850 sent_pkts = 1;
1854 while ((skb = tcp_send_head(sk))) {
1855 unsigned int limit;
1857 tso_segs = tcp_init_tso_segs(sk, skb, mss_now);
1858 BUG_ON(!tso_segs);
1860 if (unlikely(tp->repair) && tp->repair_queue == TCP_SEND_QUEUE)
1861 goto repair; /* Skip network transmission */
1863 cwnd_quota = tcp_cwnd_test(tp, skb);
1864 if (!cwnd_quota) {
1865 if (push_one == 2)
1866 /* Force out a loss probe pkt. */
1867 cwnd_quota = 1;
1868 else
1869 break;
1872 if (unlikely(!tcp_snd_wnd_test(tp, skb, mss_now)))
1873 break;
1875 if (tso_segs == 1 || !sk->sk_gso_max_segs) {
1876 if (unlikely(!tcp_nagle_test(tp, skb, mss_now,
1877 (tcp_skb_is_last(sk, skb) ?
1878 nonagle : TCP_NAGLE_PUSH))))
1879 break;
1880 } else {
1881 if (!push_one && tcp_tso_should_defer(sk, skb))
1882 break;
1885 /* TCP Small Queues :
1886 * Control number of packets in qdisc/devices to two packets / or ~1 ms.
1887 * This allows for :
1888 * - better RTT estimation and ACK scheduling
1889 * - faster recovery
1890 * - high rates
1891 * Alas, some drivers / subsystems require a fair amount
1892 * of queued bytes to ensure line rate.
1893 * One example is wifi aggregation (802.11 AMPDU)
1895 limit = max_t(unsigned int, sysctl_tcp_limit_output_bytes,
1896 sk->sk_pacing_rate >> 10);
1898 if (atomic_read(&sk->sk_wmem_alloc) > limit) {
1899 set_bit(TSQ_THROTTLED, &tp->tsq_flags);
1900 /* It is possible TX completion already happened
1901 * before we set TSQ_THROTTLED, so we must
1902 * test again the condition.
1903 * We abuse smp_mb__after_clear_bit() because
1904 * there is no smp_mb__after_set_bit() yet
1906 smp_mb__after_clear_bit();
1907 if (atomic_read(&sk->sk_wmem_alloc) > limit)
1908 break;
1911 limit = mss_now;
1912 if (tso_segs > 1 && sk->sk_gso_max_segs && !tcp_urg_mode(tp))
1913 limit = tcp_mss_split_point(sk, skb, mss_now,
1914 min_t(unsigned int,
1915 cwnd_quota,
1916 sk->sk_gso_max_segs));
1918 if (skb->len > limit &&
1919 unlikely(tso_fragment(sk, skb, limit, mss_now, gfp)))
1920 break;
1922 TCP_SKB_CB(skb)->when = tcp_time_stamp;
1924 if (unlikely(tcp_transmit_skb(sk, skb, 1, gfp)))
1925 break;
1927 repair:
1928 /* Advance the send_head. This one is sent out.
1929 * This call will increment packets_out.
1931 tcp_event_new_data_sent(sk, skb);
1933 tcp_minshall_update(tp, mss_now, skb);
1934 sent_pkts += tcp_skb_pcount(skb);
1936 if (push_one)
1937 break;
1940 if (likely(sent_pkts)) {
1941 if (tcp_in_cwnd_reduction(sk))
1942 tp->prr_out += sent_pkts;
1944 /* Send one loss probe per tail loss episode. */
1945 if (push_one != 2)
1946 tcp_schedule_loss_probe(sk);
1947 tcp_cwnd_validate(sk);
1948 return false;
1950 return (push_one == 2) || (!tp->packets_out && tcp_send_head(sk));
1953 bool tcp_schedule_loss_probe(struct sock *sk)
1955 struct inet_connection_sock *icsk = inet_csk(sk);
1956 struct tcp_sock *tp = tcp_sk(sk);
1957 u32 timeout, tlp_time_stamp, rto_time_stamp;
1958 u32 rtt = tp->srtt >> 3;
1960 if (WARN_ON(icsk->icsk_pending == ICSK_TIME_EARLY_RETRANS))
1961 return false;
1962 /* No consecutive loss probes. */
1963 if (WARN_ON(icsk->icsk_pending == ICSK_TIME_LOSS_PROBE)) {
1964 tcp_rearm_rto(sk);
1965 return false;
1967 /* Don't do any loss probe on a Fast Open connection before 3WHS
1968 * finishes.
1970 if (sk->sk_state == TCP_SYN_RECV)
1971 return false;
1973 /* TLP is only scheduled when next timer event is RTO. */
1974 if (icsk->icsk_pending != ICSK_TIME_RETRANS)
1975 return false;
1977 /* Schedule a loss probe in 2*RTT for SACK capable connections
1978 * in Open state, that are either limited by cwnd or application.
1980 if (sysctl_tcp_early_retrans < 3 || !rtt || !tp->packets_out ||
1981 !tcp_is_sack(tp) || inet_csk(sk)->icsk_ca_state != TCP_CA_Open)
1982 return false;
1984 if ((tp->snd_cwnd > tcp_packets_in_flight(tp)) &&
1985 tcp_send_head(sk))
1986 return false;
1988 /* Probe timeout is at least 1.5*rtt + TCP_DELACK_MAX to account
1989 * for delayed ack when there's one outstanding packet.
1991 timeout = rtt << 1;
1992 if (tp->packets_out == 1)
1993 timeout = max_t(u32, timeout,
1994 (rtt + (rtt >> 1) + TCP_DELACK_MAX));
1995 timeout = max_t(u32, timeout, msecs_to_jiffies(10));
1997 /* If RTO is shorter, just schedule TLP in its place. */
1998 tlp_time_stamp = tcp_time_stamp + timeout;
1999 rto_time_stamp = (u32)inet_csk(sk)->icsk_timeout;
2000 if ((s32)(tlp_time_stamp - rto_time_stamp) > 0) {
2001 s32 delta = rto_time_stamp - tcp_time_stamp;
2002 if (delta > 0)
2003 timeout = delta;
2006 inet_csk_reset_xmit_timer(sk, ICSK_TIME_LOSS_PROBE, timeout,
2007 TCP_RTO_MAX);
2008 return true;
2011 /* When probe timeout (PTO) fires, send a new segment if one exists, else
2012 * retransmit the last segment.
2014 void tcp_send_loss_probe(struct sock *sk)
2016 struct tcp_sock *tp = tcp_sk(sk);
2017 struct sk_buff *skb;
2018 int pcount;
2019 int mss = tcp_current_mss(sk);
2020 int err = -1;
2022 if (tcp_send_head(sk) != NULL) {
2023 err = tcp_write_xmit(sk, mss, TCP_NAGLE_OFF, 2, GFP_ATOMIC);
2024 goto rearm_timer;
2027 /* At most one outstanding TLP retransmission. */
2028 if (tp->tlp_high_seq)
2029 goto rearm_timer;
2031 /* Retransmit last segment. */
2032 skb = tcp_write_queue_tail(sk);
2033 if (WARN_ON(!skb))
2034 goto rearm_timer;
2036 pcount = tcp_skb_pcount(skb);
2037 if (WARN_ON(!pcount))
2038 goto rearm_timer;
2040 if ((pcount > 1) && (skb->len > (pcount - 1) * mss)) {
2041 if (unlikely(tcp_fragment(sk, skb, (pcount - 1) * mss, mss)))
2042 goto rearm_timer;
2043 skb = tcp_write_queue_tail(sk);
2046 if (WARN_ON(!skb || !tcp_skb_pcount(skb)))
2047 goto rearm_timer;
2049 err = __tcp_retransmit_skb(sk, skb);
2051 /* Record snd_nxt for loss detection. */
2052 if (likely(!err))
2053 tp->tlp_high_seq = tp->snd_nxt;
2055 rearm_timer:
2056 inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS,
2057 inet_csk(sk)->icsk_rto,
2058 TCP_RTO_MAX);
2060 if (likely(!err))
2061 NET_INC_STATS_BH(sock_net(sk),
2062 LINUX_MIB_TCPLOSSPROBES);
2063 return;
2066 /* Push out any pending frames which were held back due to
2067 * TCP_CORK or attempt at coalescing tiny packets.
2068 * The socket must be locked by the caller.
2070 void __tcp_push_pending_frames(struct sock *sk, unsigned int cur_mss,
2071 int nonagle)
2073 /* If we are closed, the bytes will have to remain here.
2074 * In time closedown will finish, we empty the write queue and
2075 * all will be happy.
2077 if (unlikely(sk->sk_state == TCP_CLOSE))
2078 return;
2080 if (tcp_write_xmit(sk, cur_mss, nonagle, 0,
2081 sk_gfp_atomic(sk, GFP_ATOMIC)))
2082 tcp_check_probe_timer(sk);
2085 /* Send _single_ skb sitting at the send head. This function requires
2086 * true push pending frames to setup probe timer etc.
2088 void tcp_push_one(struct sock *sk, unsigned int mss_now)
2090 struct sk_buff *skb = tcp_send_head(sk);
2092 BUG_ON(!skb || skb->len < mss_now);
2094 tcp_write_xmit(sk, mss_now, TCP_NAGLE_PUSH, 1, sk->sk_allocation);
2097 /* This function returns the amount that we can raise the
2098 * usable window based on the following constraints
2100 * 1. The window can never be shrunk once it is offered (RFC 793)
2101 * 2. We limit memory per socket
2103 * RFC 1122:
2104 * "the suggested [SWS] avoidance algorithm for the receiver is to keep
2105 * RECV.NEXT + RCV.WIN fixed until:
2106 * RCV.BUFF - RCV.USER - RCV.WINDOW >= min(1/2 RCV.BUFF, MSS)"
2108 * i.e. don't raise the right edge of the window until you can raise
2109 * it at least MSS bytes.
2111 * Unfortunately, the recommended algorithm breaks header prediction,
2112 * since header prediction assumes th->window stays fixed.
2114 * Strictly speaking, keeping th->window fixed violates the receiver
2115 * side SWS prevention criteria. The problem is that under this rule
2116 * a stream of single byte packets will cause the right side of the
2117 * window to always advance by a single byte.
2119 * Of course, if the sender implements sender side SWS prevention
2120 * then this will not be a problem.
2122 * BSD seems to make the following compromise:
2124 * If the free space is less than the 1/4 of the maximum
2125 * space available and the free space is less than 1/2 mss,
2126 * then set the window to 0.
2127 * [ Actually, bsd uses MSS and 1/4 of maximal _window_ ]
2128 * Otherwise, just prevent the window from shrinking
2129 * and from being larger than the largest representable value.
2131 * This prevents incremental opening of the window in the regime
2132 * where TCP is limited by the speed of the reader side taking
2133 * data out of the TCP receive queue. It does nothing about
2134 * those cases where the window is constrained on the sender side
2135 * because the pipeline is full.
2137 * BSD also seems to "accidentally" limit itself to windows that are a
2138 * multiple of MSS, at least until the free space gets quite small.
2139 * This would appear to be a side effect of the mbuf implementation.
2140 * Combining these two algorithms results in the observed behavior
2141 * of having a fixed window size at almost all times.
2143 * Below we obtain similar behavior by forcing the offered window to
2144 * a multiple of the mss when it is feasible to do so.
2146 * Note, we don't "adjust" for TIMESTAMP or SACK option bytes.
2147 * Regular options like TIMESTAMP are taken into account.
2149 u32 __tcp_select_window(struct sock *sk)
2151 struct inet_connection_sock *icsk = inet_csk(sk);
2152 struct tcp_sock *tp = tcp_sk(sk);
2153 /* MSS for the peer's data. Previous versions used mss_clamp
2154 * here. I don't know if the value based on our guesses
2155 * of peer's MSS is better for the performance. It's more correct
2156 * but may be worse for the performance because of rcv_mss
2157 * fluctuations. --SAW 1998/11/1
2159 int mss = icsk->icsk_ack.rcv_mss;
2160 int free_space = tcp_space(sk);
2161 int full_space = min_t(int, tp->window_clamp, tcp_full_space(sk));
2162 int window;
2164 if (mss > full_space)
2165 mss = full_space;
2167 if (free_space < (full_space >> 1)) {
2168 icsk->icsk_ack.quick = 0;
2170 if (sk_under_memory_pressure(sk))
2171 tp->rcv_ssthresh = min(tp->rcv_ssthresh,
2172 4U * tp->advmss);
2174 if (free_space < mss)
2175 return 0;
2178 if (free_space > tp->rcv_ssthresh)
2179 free_space = tp->rcv_ssthresh;
2181 /* Don't do rounding if we are using window scaling, since the
2182 * scaled window will not line up with the MSS boundary anyway.
2184 window = tp->rcv_wnd;
2185 if (tp->rx_opt.rcv_wscale) {
2186 window = free_space;
2188 /* Advertise enough space so that it won't get scaled away.
2189 * Import case: prevent zero window announcement if
2190 * 1<<rcv_wscale > mss.
2192 if (((window >> tp->rx_opt.rcv_wscale) << tp->rx_opt.rcv_wscale) != window)
2193 window = (((window >> tp->rx_opt.rcv_wscale) + 1)
2194 << tp->rx_opt.rcv_wscale);
2195 } else {
2196 /* Get the largest window that is a nice multiple of mss.
2197 * Window clamp already applied above.
2198 * If our current window offering is within 1 mss of the
2199 * free space we just keep it. This prevents the divide
2200 * and multiply from happening most of the time.
2201 * We also don't do any window rounding when the free space
2202 * is too small.
2204 if (window <= free_space - mss || window > free_space)
2205 window = (free_space / mss) * mss;
2206 else if (mss == full_space &&
2207 free_space > window + (full_space >> 1))
2208 window = free_space;
2211 return window;
2214 /* Collapses two adjacent SKB's during retransmission. */
2215 static void tcp_collapse_retrans(struct sock *sk, struct sk_buff *skb)
2217 struct tcp_sock *tp = tcp_sk(sk);
2218 struct sk_buff *next_skb = tcp_write_queue_next(sk, skb);
2219 int skb_size, next_skb_size;
2221 skb_size = skb->len;
2222 next_skb_size = next_skb->len;
2224 BUG_ON(tcp_skb_pcount(skb) != 1 || tcp_skb_pcount(next_skb) != 1);
2226 tcp_highest_sack_combine(sk, next_skb, skb);
2228 tcp_unlink_write_queue(next_skb, sk);
2230 skb_copy_from_linear_data(next_skb, skb_put(skb, next_skb_size),
2231 next_skb_size);
2233 if (next_skb->ip_summed == CHECKSUM_PARTIAL)
2234 skb->ip_summed = CHECKSUM_PARTIAL;
2236 if (skb->ip_summed != CHECKSUM_PARTIAL)
2237 skb->csum = csum_block_add(skb->csum, next_skb->csum, skb_size);
2239 /* Update sequence range on original skb. */
2240 TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(next_skb)->end_seq;
2242 /* Merge over control information. This moves PSH/FIN etc. over */
2243 TCP_SKB_CB(skb)->tcp_flags |= TCP_SKB_CB(next_skb)->tcp_flags;
2245 /* All done, get rid of second SKB and account for it so
2246 * packet counting does not break.
2248 TCP_SKB_CB(skb)->sacked |= TCP_SKB_CB(next_skb)->sacked & TCPCB_EVER_RETRANS;
2250 /* changed transmit queue under us so clear hints */
2251 tcp_clear_retrans_hints_partial(tp);
2252 if (next_skb == tp->retransmit_skb_hint)
2253 tp->retransmit_skb_hint = skb;
2255 tcp_adjust_pcount(sk, next_skb, tcp_skb_pcount(next_skb));
2257 sk_wmem_free_skb(sk, next_skb);
2260 /* Check if coalescing SKBs is legal. */
2261 static bool tcp_can_collapse(const struct sock *sk, const struct sk_buff *skb)
2263 if (tcp_skb_pcount(skb) > 1)
2264 return false;
2265 /* TODO: SACK collapsing could be used to remove this condition */
2266 if (skb_shinfo(skb)->nr_frags != 0)
2267 return false;
2268 if (skb_cloned(skb))
2269 return false;
2270 if (skb == tcp_send_head(sk))
2271 return false;
2272 /* Some heurestics for collapsing over SACK'd could be invented */
2273 if (TCP_SKB_CB(skb)->sacked & TCPCB_SACKED_ACKED)
2274 return false;
2276 return true;
2279 /* Collapse packets in the retransmit queue to make to create
2280 * less packets on the wire. This is only done on retransmission.
2282 static void tcp_retrans_try_collapse(struct sock *sk, struct sk_buff *to,
2283 int space)
2285 struct tcp_sock *tp = tcp_sk(sk);
2286 struct sk_buff *skb = to, *tmp;
2287 bool first = true;
2289 if (!sysctl_tcp_retrans_collapse)
2290 return;
2291 if (TCP_SKB_CB(skb)->tcp_flags & TCPHDR_SYN)
2292 return;
2294 tcp_for_write_queue_from_safe(skb, tmp, sk) {
2295 if (!tcp_can_collapse(sk, skb))
2296 break;
2298 space -= skb->len;
2300 if (first) {
2301 first = false;
2302 continue;
2305 if (space < 0)
2306 break;
2307 /* Punt if not enough space exists in the first SKB for
2308 * the data in the second
2310 if (skb->len > skb_availroom(to))
2311 break;
2313 if (after(TCP_SKB_CB(skb)->end_seq, tcp_wnd_end(tp)))
2314 break;
2316 tcp_collapse_retrans(sk, to);
2320 /* This retransmits one SKB. Policy decisions and retransmit queue
2321 * state updates are done by the caller. Returns non-zero if an
2322 * error occurred which prevented the send.
2324 int __tcp_retransmit_skb(struct sock *sk, struct sk_buff *skb)
2326 struct tcp_sock *tp = tcp_sk(sk);
2327 struct inet_connection_sock *icsk = inet_csk(sk);
2328 unsigned int cur_mss;
2330 /* Inconslusive MTU probe */
2331 if (icsk->icsk_mtup.probe_size) {
2332 icsk->icsk_mtup.probe_size = 0;
2335 /* Do not sent more than we queued. 1/4 is reserved for possible
2336 * copying overhead: fragmentation, tunneling, mangling etc.
2338 if (atomic_read(&sk->sk_wmem_alloc) >
2339 min(sk->sk_wmem_queued + (sk->sk_wmem_queued >> 2), sk->sk_sndbuf))
2340 return -EAGAIN;
2342 if (before(TCP_SKB_CB(skb)->seq, tp->snd_una)) {
2343 if (before(TCP_SKB_CB(skb)->end_seq, tp->snd_una))
2344 BUG();
2345 if (tcp_trim_head(sk, skb, tp->snd_una - TCP_SKB_CB(skb)->seq))
2346 return -ENOMEM;
2349 if (inet_csk(sk)->icsk_af_ops->rebuild_header(sk))
2350 return -EHOSTUNREACH; /* Routing failure or similar. */
2352 cur_mss = tcp_current_mss(sk);
2354 /* If receiver has shrunk his window, and skb is out of
2355 * new window, do not retransmit it. The exception is the
2356 * case, when window is shrunk to zero. In this case
2357 * our retransmit serves as a zero window probe.
2359 if (!before(TCP_SKB_CB(skb)->seq, tcp_wnd_end(tp)) &&
2360 TCP_SKB_CB(skb)->seq != tp->snd_una)
2361 return -EAGAIN;
2363 if (skb->len > cur_mss) {
2364 if (tcp_fragment(sk, skb, cur_mss, cur_mss))
2365 return -ENOMEM; /* We'll try again later. */
2366 } else {
2367 int oldpcount = tcp_skb_pcount(skb);
2369 if (unlikely(oldpcount > 1)) {
2370 if (skb_unclone(skb, GFP_ATOMIC))
2371 return -ENOMEM;
2372 tcp_init_tso_segs(sk, skb, cur_mss);
2373 tcp_adjust_pcount(sk, skb, oldpcount - tcp_skb_pcount(skb));
2377 tcp_retrans_try_collapse(sk, skb, cur_mss);
2379 /* Some Solaris stacks overoptimize and ignore the FIN on a
2380 * retransmit when old data is attached. So strip it off
2381 * since it is cheap to do so and saves bytes on the network.
2383 if (skb->len > 0 &&
2384 (TCP_SKB_CB(skb)->tcp_flags & TCPHDR_FIN) &&
2385 tp->snd_una == (TCP_SKB_CB(skb)->end_seq - 1)) {
2386 if (!pskb_trim(skb, 0)) {
2387 /* Reuse, even though it does some unnecessary work */
2388 tcp_init_nondata_skb(skb, TCP_SKB_CB(skb)->end_seq - 1,
2389 TCP_SKB_CB(skb)->tcp_flags);
2390 skb->ip_summed = CHECKSUM_NONE;
2394 /* Make a copy, if the first transmission SKB clone we made
2395 * is still in somebody's hands, else make a clone.
2397 TCP_SKB_CB(skb)->when = tcp_time_stamp;
2399 /* make sure skb->data is aligned on arches that require it
2400 * and check if ack-trimming & collapsing extended the headroom
2401 * beyond what csum_start can cover.
2403 if (unlikely((NET_IP_ALIGN && ((unsigned long)skb->data & 3)) ||
2404 skb_headroom(skb) >= 0xFFFF)) {
2405 struct sk_buff *nskb = __pskb_copy(skb, MAX_TCP_HEADER,
2406 GFP_ATOMIC);
2407 return nskb ? tcp_transmit_skb(sk, nskb, 0, GFP_ATOMIC) :
2408 -ENOBUFS;
2409 } else {
2410 return tcp_transmit_skb(sk, skb, 1, GFP_ATOMIC);
2414 int tcp_retransmit_skb(struct sock *sk, struct sk_buff *skb)
2416 struct tcp_sock *tp = tcp_sk(sk);
2417 int err = __tcp_retransmit_skb(sk, skb);
2419 if (err == 0) {
2420 /* Update global TCP statistics. */
2421 TCP_INC_STATS(sock_net(sk), TCP_MIB_RETRANSSEGS);
2423 tp->total_retrans++;
2425 #if FASTRETRANS_DEBUG > 0
2426 if (TCP_SKB_CB(skb)->sacked & TCPCB_SACKED_RETRANS) {
2427 net_dbg_ratelimited("retrans_out leaked\n");
2429 #endif
2430 if (!tp->retrans_out)
2431 tp->lost_retrans_low = tp->snd_nxt;
2432 TCP_SKB_CB(skb)->sacked |= TCPCB_RETRANS;
2433 tp->retrans_out += tcp_skb_pcount(skb);
2435 /* Save stamp of the first retransmit. */
2436 if (!tp->retrans_stamp)
2437 tp->retrans_stamp = TCP_SKB_CB(skb)->when;
2439 /* snd_nxt is stored to detect loss of retransmitted segment,
2440 * see tcp_input.c tcp_sacktag_write_queue().
2442 TCP_SKB_CB(skb)->ack_seq = tp->snd_nxt;
2443 } else {
2444 NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_TCPRETRANSFAIL);
2447 if (tp->undo_retrans < 0)
2448 tp->undo_retrans = 0;
2449 tp->undo_retrans += tcp_skb_pcount(skb);
2450 return err;
2453 /* Check if we forward retransmits are possible in the current
2454 * window/congestion state.
2456 static bool tcp_can_forward_retransmit(struct sock *sk)
2458 const struct inet_connection_sock *icsk = inet_csk(sk);
2459 const struct tcp_sock *tp = tcp_sk(sk);
2461 /* Forward retransmissions are possible only during Recovery. */
2462 if (icsk->icsk_ca_state != TCP_CA_Recovery)
2463 return false;
2465 /* No forward retransmissions in Reno are possible. */
2466 if (tcp_is_reno(tp))
2467 return false;
2469 /* Yeah, we have to make difficult choice between forward transmission
2470 * and retransmission... Both ways have their merits...
2472 * For now we do not retransmit anything, while we have some new
2473 * segments to send. In the other cases, follow rule 3 for
2474 * NextSeg() specified in RFC3517.
2477 if (tcp_may_send_now(sk))
2478 return false;
2480 return true;
2483 /* This gets called after a retransmit timeout, and the initially
2484 * retransmitted data is acknowledged. It tries to continue
2485 * resending the rest of the retransmit queue, until either
2486 * we've sent it all or the congestion window limit is reached.
2487 * If doing SACK, the first ACK which comes back for a timeout
2488 * based retransmit packet might feed us FACK information again.
2489 * If so, we use it to avoid unnecessarily retransmissions.
2491 void tcp_xmit_retransmit_queue(struct sock *sk)
2493 const struct inet_connection_sock *icsk = inet_csk(sk);
2494 struct tcp_sock *tp = tcp_sk(sk);
2495 struct sk_buff *skb;
2496 struct sk_buff *hole = NULL;
2497 u32 last_lost;
2498 int mib_idx;
2499 int fwd_rexmitting = 0;
2501 if (!tp->packets_out)
2502 return;
2504 if (!tp->lost_out)
2505 tp->retransmit_high = tp->snd_una;
2507 if (tp->retransmit_skb_hint) {
2508 skb = tp->retransmit_skb_hint;
2509 last_lost = TCP_SKB_CB(skb)->end_seq;
2510 if (after(last_lost, tp->retransmit_high))
2511 last_lost = tp->retransmit_high;
2512 } else {
2513 skb = tcp_write_queue_head(sk);
2514 last_lost = tp->snd_una;
2517 tcp_for_write_queue_from(skb, sk) {
2518 __u8 sacked = TCP_SKB_CB(skb)->sacked;
2520 if (skb == tcp_send_head(sk))
2521 break;
2522 /* we could do better than to assign each time */
2523 if (hole == NULL)
2524 tp->retransmit_skb_hint = skb;
2526 /* Assume this retransmit will generate
2527 * only one packet for congestion window
2528 * calculation purposes. This works because
2529 * tcp_retransmit_skb() will chop up the
2530 * packet to be MSS sized and all the
2531 * packet counting works out.
2533 if (tcp_packets_in_flight(tp) >= tp->snd_cwnd)
2534 return;
2536 if (fwd_rexmitting) {
2537 begin_fwd:
2538 if (!before(TCP_SKB_CB(skb)->seq, tcp_highest_sack_seq(tp)))
2539 break;
2540 mib_idx = LINUX_MIB_TCPFORWARDRETRANS;
2542 } else if (!before(TCP_SKB_CB(skb)->seq, tp->retransmit_high)) {
2543 tp->retransmit_high = last_lost;
2544 if (!tcp_can_forward_retransmit(sk))
2545 break;
2546 /* Backtrack if necessary to non-L'ed skb */
2547 if (hole != NULL) {
2548 skb = hole;
2549 hole = NULL;
2551 fwd_rexmitting = 1;
2552 goto begin_fwd;
2554 } else if (!(sacked & TCPCB_LOST)) {
2555 if (hole == NULL && !(sacked & (TCPCB_SACKED_RETRANS|TCPCB_SACKED_ACKED)))
2556 hole = skb;
2557 continue;
2559 } else {
2560 last_lost = TCP_SKB_CB(skb)->end_seq;
2561 if (icsk->icsk_ca_state != TCP_CA_Loss)
2562 mib_idx = LINUX_MIB_TCPFASTRETRANS;
2563 else
2564 mib_idx = LINUX_MIB_TCPSLOWSTARTRETRANS;
2567 if (sacked & (TCPCB_SACKED_ACKED|TCPCB_SACKED_RETRANS))
2568 continue;
2570 if (tcp_retransmit_skb(sk, skb))
2571 return;
2573 NET_INC_STATS_BH(sock_net(sk), mib_idx);
2575 if (tcp_in_cwnd_reduction(sk))
2576 tp->prr_out += tcp_skb_pcount(skb);
2578 if (skb == tcp_write_queue_head(sk))
2579 inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS,
2580 inet_csk(sk)->icsk_rto,
2581 TCP_RTO_MAX);
2585 /* We allow to exceed memory limits for FIN packets to expedite
2586 * connection tear down and (memory) recovery.
2587 * Otherwise tcp_send_fin() could be tempted to either delay FIN
2588 * or even be forced to close flow without any FIN.
2590 static void sk_forced_wmem_schedule(struct sock *sk, int size)
2592 int amt, status;
2594 if (size <= sk->sk_forward_alloc)
2595 return;
2596 amt = sk_mem_pages(size);
2597 sk->sk_forward_alloc += amt * SK_MEM_QUANTUM;
2598 sk_memory_allocated_add(sk, amt, &status);
2601 /* Send a FIN. The caller locks the socket for us.
2602 * We should try to send a FIN packet really hard, but eventually give up.
2604 void tcp_send_fin(struct sock *sk)
2606 struct sk_buff *skb, *tskb = tcp_write_queue_tail(sk);
2607 struct tcp_sock *tp = tcp_sk(sk);
2609 /* Optimization, tack on the FIN if we have one skb in write queue and
2610 * this skb was not yet sent, or we are under memory pressure.
2611 * Note: in the latter case, FIN packet will be sent after a timeout,
2612 * as TCP stack thinks it has already been transmitted.
2614 if (tskb && (tcp_send_head(sk) || sk_under_memory_pressure(sk))) {
2615 coalesce:
2616 TCP_SKB_CB(tskb)->tcp_flags |= TCPHDR_FIN;
2617 TCP_SKB_CB(tskb)->end_seq++;
2618 tp->write_seq++;
2619 if (!tcp_send_head(sk)) {
2620 /* This means tskb was already sent.
2621 * Pretend we included the FIN on previous transmit.
2622 * We need to set tp->snd_nxt to the value it would have
2623 * if FIN had been sent. This is because retransmit path
2624 * does not change tp->snd_nxt.
2626 tp->snd_nxt++;
2627 return;
2629 } else {
2630 skb = alloc_skb_fclone(MAX_TCP_HEADER, sk->sk_allocation);
2631 if (unlikely(!skb)) {
2632 if (tskb)
2633 goto coalesce;
2634 return;
2636 skb_reserve(skb, MAX_TCP_HEADER);
2637 sk_forced_wmem_schedule(sk, skb->truesize);
2638 /* FIN eats a sequence byte, write_seq advanced by tcp_queue_skb(). */
2639 tcp_init_nondata_skb(skb, tp->write_seq,
2640 TCPHDR_ACK | TCPHDR_FIN);
2641 tcp_queue_skb(sk, skb);
2643 __tcp_push_pending_frames(sk, tcp_current_mss(sk), TCP_NAGLE_OFF);
2646 /* We get here when a process closes a file descriptor (either due to
2647 * an explicit close() or as a byproduct of exit()'ing) and there
2648 * was unread data in the receive queue. This behavior is recommended
2649 * by RFC 2525, section 2.17. -DaveM
2651 void tcp_send_active_reset(struct sock *sk, gfp_t priority)
2653 struct sk_buff *skb;
2655 /* NOTE: No TCP options attached and we never retransmit this. */
2656 skb = alloc_skb(MAX_TCP_HEADER, priority);
2657 if (!skb) {
2658 NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPABORTFAILED);
2659 return;
2662 /* Reserve space for headers and prepare control bits. */
2663 skb_reserve(skb, MAX_TCP_HEADER);
2664 tcp_init_nondata_skb(skb, tcp_acceptable_seq(sk),
2665 TCPHDR_ACK | TCPHDR_RST);
2666 /* Send it off. */
2667 TCP_SKB_CB(skb)->when = tcp_time_stamp;
2668 if (tcp_transmit_skb(sk, skb, 0, priority))
2669 NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPABORTFAILED);
2671 TCP_INC_STATS(sock_net(sk), TCP_MIB_OUTRSTS);
2674 /* Send a crossed SYN-ACK during socket establishment.
2675 * WARNING: This routine must only be called when we have already sent
2676 * a SYN packet that crossed the incoming SYN that caused this routine
2677 * to get called. If this assumption fails then the initial rcv_wnd
2678 * and rcv_wscale values will not be correct.
2680 int tcp_send_synack(struct sock *sk)
2682 struct sk_buff *skb;
2684 skb = tcp_write_queue_head(sk);
2685 if (skb == NULL || !(TCP_SKB_CB(skb)->tcp_flags & TCPHDR_SYN)) {
2686 pr_debug("%s: wrong queue state\n", __func__);
2687 return -EFAULT;
2689 if (!(TCP_SKB_CB(skb)->tcp_flags & TCPHDR_ACK)) {
2690 if (skb_cloned(skb)) {
2691 struct sk_buff *nskb = skb_copy(skb, GFP_ATOMIC);
2692 if (nskb == NULL)
2693 return -ENOMEM;
2694 tcp_unlink_write_queue(skb, sk);
2695 skb_header_release(nskb);
2696 __tcp_add_write_queue_head(sk, nskb);
2697 sk_wmem_free_skb(sk, skb);
2698 sk->sk_wmem_queued += nskb->truesize;
2699 sk_mem_charge(sk, nskb->truesize);
2700 skb = nskb;
2703 TCP_SKB_CB(skb)->tcp_flags |= TCPHDR_ACK;
2704 TCP_ECN_send_synack(tcp_sk(sk), skb);
2706 TCP_SKB_CB(skb)->when = tcp_time_stamp;
2707 return tcp_transmit_skb(sk, skb, 1, GFP_ATOMIC);
2711 * tcp_make_synack - Prepare a SYN-ACK.
2712 * sk: listener socket
2713 * dst: dst entry attached to the SYNACK
2714 * req: request_sock pointer
2716 * Allocate one skb and build a SYNACK packet.
2717 * @dst is consumed : Caller should not use it again.
2719 struct sk_buff *tcp_make_synack(struct sock *sk, struct dst_entry *dst,
2720 struct request_sock *req,
2721 struct tcp_fastopen_cookie *foc)
2723 struct tcp_out_options opts;
2724 struct inet_request_sock *ireq = inet_rsk(req);
2725 struct tcp_sock *tp = tcp_sk(sk);
2726 struct tcphdr *th;
2727 struct sk_buff *skb;
2728 struct tcp_md5sig_key *md5;
2729 int tcp_header_size;
2730 int mss;
2732 skb = sock_wmalloc(sk, MAX_TCP_HEADER + 15, 1, GFP_ATOMIC);
2733 if (unlikely(!skb)) {
2734 dst_release(dst);
2735 return NULL;
2737 /* Reserve space for headers. */
2738 skb_reserve(skb, MAX_TCP_HEADER);
2740 skb_dst_set(skb, dst);
2741 security_skb_owned_by(skb, sk);
2743 mss = dst_metric_advmss(dst);
2744 if (tp->rx_opt.user_mss && tp->rx_opt.user_mss < mss)
2745 mss = tp->rx_opt.user_mss;
2747 if (req->rcv_wnd == 0) { /* ignored for retransmitted syns */
2748 __u8 rcv_wscale;
2749 /* Set this up on the first call only */
2750 req->window_clamp = tp->window_clamp ? : dst_metric(dst, RTAX_WINDOW);
2752 /* limit the window selection if the user enforce a smaller rx buffer */
2753 if (sk->sk_userlocks & SOCK_RCVBUF_LOCK &&
2754 (req->window_clamp > tcp_full_space(sk) || req->window_clamp == 0))
2755 req->window_clamp = tcp_full_space(sk);
2757 /* tcp_full_space because it is guaranteed to be the first packet */
2758 tcp_select_initial_window(tcp_full_space(sk),
2759 mss - (ireq->tstamp_ok ? TCPOLEN_TSTAMP_ALIGNED : 0),
2760 &req->rcv_wnd,
2761 &req->window_clamp,
2762 ireq->wscale_ok,
2763 &rcv_wscale,
2764 dst_metric(dst, RTAX_INITRWND));
2765 ireq->rcv_wscale = rcv_wscale;
2768 memset(&opts, 0, sizeof(opts));
2769 #ifdef CONFIG_SYN_COOKIES
2770 if (unlikely(req->cookie_ts))
2771 TCP_SKB_CB(skb)->when = cookie_init_timestamp(req);
2772 else
2773 #endif
2774 TCP_SKB_CB(skb)->when = tcp_time_stamp;
2775 tcp_header_size = tcp_synack_options(sk, req, mss, skb, &opts, &md5,
2776 foc) + sizeof(*th);
2778 skb_push(skb, tcp_header_size);
2779 skb_reset_transport_header(skb);
2781 th = tcp_hdr(skb);
2782 memset(th, 0, sizeof(struct tcphdr));
2783 th->syn = 1;
2784 th->ack = 1;
2785 TCP_ECN_make_synack(req, th);
2786 th->source = ireq->loc_port;
2787 th->dest = ireq->rmt_port;
2788 /* Setting of flags are superfluous here for callers (and ECE is
2789 * not even correctly set)
2791 tcp_init_nondata_skb(skb, tcp_rsk(req)->snt_isn,
2792 TCPHDR_SYN | TCPHDR_ACK);
2794 th->seq = htonl(TCP_SKB_CB(skb)->seq);
2795 /* XXX data is queued and acked as is. No buffer/window check */
2796 th->ack_seq = htonl(tcp_rsk(req)->rcv_nxt);
2798 /* RFC1323: The window in SYN & SYN/ACK segments is never scaled. */
2799 th->window = htons(min(req->rcv_wnd, 65535U));
2800 tcp_options_write((__be32 *)(th + 1), tp, &opts);
2801 th->doff = (tcp_header_size >> 2);
2802 TCP_ADD_STATS(sock_net(sk), TCP_MIB_OUTSEGS, tcp_skb_pcount(skb));
2804 #ifdef CONFIG_TCP_MD5SIG
2805 /* Okay, we have all we need - do the md5 hash if needed */
2806 if (md5) {
2807 tcp_rsk(req)->af_specific->calc_md5_hash(opts.hash_location,
2808 md5, NULL, req, skb);
2810 #endif
2812 /* Do not fool tcpdump (if any), clean our debris */
2813 skb->tstamp.tv64 = 0;
2814 return skb;
2816 EXPORT_SYMBOL(tcp_make_synack);
2818 /* Do all connect socket setups that can be done AF independent. */
2819 void tcp_connect_init(struct sock *sk)
2821 const struct dst_entry *dst = __sk_dst_get(sk);
2822 struct tcp_sock *tp = tcp_sk(sk);
2823 __u8 rcv_wscale;
2825 /* We'll fix this up when we get a response from the other end.
2826 * See tcp_input.c:tcp_rcv_state_process case TCP_SYN_SENT.
2828 tp->tcp_header_len = sizeof(struct tcphdr) +
2829 (sysctl_tcp_timestamps ? TCPOLEN_TSTAMP_ALIGNED : 0);
2831 #ifdef CONFIG_TCP_MD5SIG
2832 if (tp->af_specific->md5_lookup(sk, sk) != NULL)
2833 tp->tcp_header_len += TCPOLEN_MD5SIG_ALIGNED;
2834 #endif
2836 /* If user gave his TCP_MAXSEG, record it to clamp */
2837 if (tp->rx_opt.user_mss)
2838 tp->rx_opt.mss_clamp = tp->rx_opt.user_mss;
2839 tp->max_window = 0;
2840 tcp_mtup_init(sk);
2841 tcp_sync_mss(sk, dst_mtu(dst));
2843 if (!tp->window_clamp)
2844 tp->window_clamp = dst_metric(dst, RTAX_WINDOW);
2845 tp->advmss = dst_metric_advmss(dst);
2846 if (tp->rx_opt.user_mss && tp->rx_opt.user_mss < tp->advmss)
2847 tp->advmss = tp->rx_opt.user_mss;
2849 tcp_initialize_rcv_mss(sk);
2851 /* limit the window selection if the user enforce a smaller rx buffer */
2852 if (sk->sk_userlocks & SOCK_RCVBUF_LOCK &&
2853 (tp->window_clamp > tcp_full_space(sk) || tp->window_clamp == 0))
2854 tp->window_clamp = tcp_full_space(sk);
2856 tcp_select_initial_window(tcp_full_space(sk),
2857 tp->advmss - (tp->rx_opt.ts_recent_stamp ? tp->tcp_header_len - sizeof(struct tcphdr) : 0),
2858 &tp->rcv_wnd,
2859 &tp->window_clamp,
2860 sysctl_tcp_window_scaling,
2861 &rcv_wscale,
2862 dst_metric(dst, RTAX_INITRWND));
2864 tp->rx_opt.rcv_wscale = rcv_wscale;
2865 tp->rcv_ssthresh = tp->rcv_wnd;
2867 sk->sk_err = 0;
2868 sock_reset_flag(sk, SOCK_DONE);
2869 tp->snd_wnd = 0;
2870 tcp_init_wl(tp, 0);
2871 tp->snd_una = tp->write_seq;
2872 tp->snd_sml = tp->write_seq;
2873 tp->snd_up = tp->write_seq;
2874 tp->snd_nxt = tp->write_seq;
2876 if (likely(!tp->repair))
2877 tp->rcv_nxt = 0;
2878 else
2879 tp->rcv_tstamp = tcp_time_stamp;
2880 tp->rcv_wup = tp->rcv_nxt;
2881 tp->copied_seq = tp->rcv_nxt;
2883 inet_csk(sk)->icsk_rto = TCP_TIMEOUT_INIT;
2884 inet_csk(sk)->icsk_retransmits = 0;
2885 tcp_clear_retrans(tp);
2888 static void tcp_connect_queue_skb(struct sock *sk, struct sk_buff *skb)
2890 struct tcp_sock *tp = tcp_sk(sk);
2891 struct tcp_skb_cb *tcb = TCP_SKB_CB(skb);
2893 tcb->end_seq += skb->len;
2894 skb_header_release(skb);
2895 __tcp_add_write_queue_tail(sk, skb);
2896 sk->sk_wmem_queued += skb->truesize;
2897 sk_mem_charge(sk, skb->truesize);
2898 tp->write_seq = tcb->end_seq;
2899 tp->packets_out += tcp_skb_pcount(skb);
2902 /* Build and send a SYN with data and (cached) Fast Open cookie. However,
2903 * queue a data-only packet after the regular SYN, such that regular SYNs
2904 * are retransmitted on timeouts. Also if the remote SYN-ACK acknowledges
2905 * only the SYN sequence, the data are retransmitted in the first ACK.
2906 * If cookie is not cached or other error occurs, falls back to send a
2907 * regular SYN with Fast Open cookie request option.
2909 static int tcp_send_syn_data(struct sock *sk, struct sk_buff *syn)
2911 struct tcp_sock *tp = tcp_sk(sk);
2912 struct tcp_fastopen_request *fo = tp->fastopen_req;
2913 int syn_loss = 0, space, err = 0;
2914 unsigned long last_syn_loss = 0;
2915 struct sk_buff *syn_data;
2917 tp->rx_opt.mss_clamp = tp->advmss; /* If MSS is not cached */
2918 tcp_fastopen_cache_get(sk, &tp->rx_opt.mss_clamp, &fo->cookie,
2919 &syn_loss, &last_syn_loss);
2920 /* Recurring FO SYN losses: revert to regular handshake temporarily */
2921 if (syn_loss > 1 &&
2922 time_before(jiffies, last_syn_loss + (60*HZ << syn_loss))) {
2923 fo->cookie.len = -1;
2924 goto fallback;
2927 if (sysctl_tcp_fastopen & TFO_CLIENT_NO_COOKIE)
2928 fo->cookie.len = -1;
2929 else if (fo->cookie.len <= 0)
2930 goto fallback;
2932 /* MSS for SYN-data is based on cached MSS and bounded by PMTU and
2933 * user-MSS. Reserve maximum option space for middleboxes that add
2934 * private TCP options. The cost is reduced data space in SYN :(
2936 if (tp->rx_opt.user_mss && tp->rx_opt.user_mss < tp->rx_opt.mss_clamp)
2937 tp->rx_opt.mss_clamp = tp->rx_opt.user_mss;
2938 space = __tcp_mtu_to_mss(sk, inet_csk(sk)->icsk_pmtu_cookie) -
2939 MAX_TCP_OPTION_SPACE;
2941 space = min_t(size_t, space, fo->size);
2943 /* limit to order-0 allocations */
2944 space = min_t(size_t, space, SKB_MAX_HEAD(MAX_TCP_HEADER));
2946 syn_data = sk_stream_alloc_skb(sk, space, sk->sk_allocation);
2947 if (!syn_data)
2948 goto fallback;
2949 syn_data->ip_summed = CHECKSUM_PARTIAL;
2950 memcpy(syn_data->cb, syn->cb, sizeof(syn->cb));
2951 skb_shinfo(syn_data)->gso_segs = 1;
2952 if (unlikely(memcpy_fromiovecend(skb_put(syn_data, space),
2953 fo->data->msg_iov, 0, space))) {
2954 kfree_skb(syn_data);
2955 goto fallback;
2958 /* No more data pending in inet_wait_for_connect() */
2959 if (space == fo->size)
2960 fo->data = NULL;
2961 fo->copied = space;
2963 tcp_connect_queue_skb(sk, syn_data);
2965 err = tcp_transmit_skb(sk, syn_data, 1, sk->sk_allocation);
2967 /* Now full SYN+DATA was cloned and sent (or not),
2968 * remove the SYN from the original skb (syn_data)
2969 * we keep in write queue in case of a retransmit, as we
2970 * also have the SYN packet (with no data) in the same queue.
2972 TCP_SKB_CB(syn_data)->seq++;
2973 TCP_SKB_CB(syn_data)->tcp_flags = TCPHDR_ACK | TCPHDR_PSH;
2974 if (!err) {
2975 tp->syn_data = (fo->copied > 0);
2976 NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPFASTOPENACTIVE);
2977 goto done;
2980 fallback:
2981 /* Send a regular SYN with Fast Open cookie request option */
2982 if (fo->cookie.len > 0)
2983 fo->cookie.len = 0;
2984 err = tcp_transmit_skb(sk, syn, 1, sk->sk_allocation);
2985 if (err)
2986 tp->syn_fastopen = 0;
2987 done:
2988 fo->cookie.len = -1; /* Exclude Fast Open option for SYN retries */
2989 return err;
2992 /* Build a SYN and send it off. */
2993 int tcp_connect(struct sock *sk)
2995 struct tcp_sock *tp = tcp_sk(sk);
2996 struct sk_buff *buff;
2997 int err;
2999 tcp_connect_init(sk);
3001 if (unlikely(tp->repair)) {
3002 tcp_finish_connect(sk, NULL);
3003 return 0;
3006 buff = sk_stream_alloc_skb(sk, 0, sk->sk_allocation);
3007 if (unlikely(!buff))
3008 return -ENOBUFS;
3010 tcp_init_nondata_skb(buff, tp->write_seq++, TCPHDR_SYN);
3011 tp->retrans_stamp = TCP_SKB_CB(buff)->when = tcp_time_stamp;
3012 tcp_connect_queue_skb(sk, buff);
3013 TCP_ECN_send_syn(sk, buff);
3015 /* Send off SYN; include data in Fast Open. */
3016 err = tp->fastopen_req ? tcp_send_syn_data(sk, buff) :
3017 tcp_transmit_skb(sk, buff, 1, sk->sk_allocation);
3018 if (err == -ECONNREFUSED)
3019 return err;
3021 /* We change tp->snd_nxt after the tcp_transmit_skb() call
3022 * in order to make this packet get counted in tcpOutSegs.
3024 tp->snd_nxt = tp->write_seq;
3025 tp->pushed_seq = tp->write_seq;
3026 TCP_INC_STATS(sock_net(sk), TCP_MIB_ACTIVEOPENS);
3028 /* Timer for repeating the SYN until an answer. */
3029 inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS,
3030 inet_csk(sk)->icsk_rto, TCP_RTO_MAX);
3031 return 0;
3033 EXPORT_SYMBOL(tcp_connect);
3035 /* Send out a delayed ack, the caller does the policy checking
3036 * to see if we should even be here. See tcp_input.c:tcp_ack_snd_check()
3037 * for details.
3039 void tcp_send_delayed_ack(struct sock *sk)
3041 struct inet_connection_sock *icsk = inet_csk(sk);
3042 int ato = icsk->icsk_ack.ato;
3043 unsigned long timeout;
3045 if (ato > TCP_DELACK_MIN) {
3046 const struct tcp_sock *tp = tcp_sk(sk);
3047 int max_ato = HZ / 2;
3049 if (icsk->icsk_ack.pingpong ||
3050 (icsk->icsk_ack.pending & ICSK_ACK_PUSHED))
3051 max_ato = TCP_DELACK_MAX;
3053 /* Slow path, intersegment interval is "high". */
3055 /* If some rtt estimate is known, use it to bound delayed ack.
3056 * Do not use inet_csk(sk)->icsk_rto here, use results of rtt measurements
3057 * directly.
3059 if (tp->srtt) {
3060 int rtt = max(tp->srtt >> 3, TCP_DELACK_MIN);
3062 if (rtt < max_ato)
3063 max_ato = rtt;
3066 ato = min(ato, max_ato);
3069 /* Stay within the limit we were given */
3070 timeout = jiffies + ato;
3072 /* Use new timeout only if there wasn't a older one earlier. */
3073 if (icsk->icsk_ack.pending & ICSK_ACK_TIMER) {
3074 /* If delack timer was blocked or is about to expire,
3075 * send ACK now.
3077 if (icsk->icsk_ack.blocked ||
3078 time_before_eq(icsk->icsk_ack.timeout, jiffies + (ato >> 2))) {
3079 tcp_send_ack(sk);
3080 return;
3083 if (!time_before(timeout, icsk->icsk_ack.timeout))
3084 timeout = icsk->icsk_ack.timeout;
3086 icsk->icsk_ack.pending |= ICSK_ACK_SCHED | ICSK_ACK_TIMER;
3087 icsk->icsk_ack.timeout = timeout;
3088 sk_reset_timer(sk, &icsk->icsk_delack_timer, timeout);
3091 /* This routine sends an ack and also updates the window. */
3092 void tcp_send_ack(struct sock *sk)
3094 struct sk_buff *buff;
3096 /* If we have been reset, we may not send again. */
3097 if (sk->sk_state == TCP_CLOSE)
3098 return;
3100 /* We are not putting this on the write queue, so
3101 * tcp_transmit_skb() will set the ownership to this
3102 * sock.
3104 buff = alloc_skb(MAX_TCP_HEADER, sk_gfp_atomic(sk, GFP_ATOMIC));
3105 if (buff == NULL) {
3106 inet_csk_schedule_ack(sk);
3107 inet_csk(sk)->icsk_ack.ato = TCP_ATO_MIN;
3108 inet_csk_reset_xmit_timer(sk, ICSK_TIME_DACK,
3109 TCP_DELACK_MAX, TCP_RTO_MAX);
3110 return;
3113 /* Reserve space for headers and prepare control bits. */
3114 skb_reserve(buff, MAX_TCP_HEADER);
3115 tcp_init_nondata_skb(buff, tcp_acceptable_seq(sk), TCPHDR_ACK);
3117 /* Send it off, this clears delayed acks for us. */
3118 TCP_SKB_CB(buff)->when = tcp_time_stamp;
3119 tcp_transmit_skb(sk, buff, 0, sk_gfp_atomic(sk, GFP_ATOMIC));
3122 /* This routine sends a packet with an out of date sequence
3123 * number. It assumes the other end will try to ack it.
3125 * Question: what should we make while urgent mode?
3126 * 4.4BSD forces sending single byte of data. We cannot send
3127 * out of window data, because we have SND.NXT==SND.MAX...
3129 * Current solution: to send TWO zero-length segments in urgent mode:
3130 * one is with SEG.SEQ=SND.UNA to deliver urgent pointer, another is
3131 * out-of-date with SND.UNA-1 to probe window.
3133 static int tcp_xmit_probe_skb(struct sock *sk, int urgent)
3135 struct tcp_sock *tp = tcp_sk(sk);
3136 struct sk_buff *skb;
3138 /* We don't queue it, tcp_transmit_skb() sets ownership. */
3139 skb = alloc_skb(MAX_TCP_HEADER, sk_gfp_atomic(sk, GFP_ATOMIC));
3140 if (skb == NULL)
3141 return -1;
3143 /* Reserve space for headers and set control bits. */
3144 skb_reserve(skb, MAX_TCP_HEADER);
3145 /* Use a previous sequence. This should cause the other
3146 * end to send an ack. Don't queue or clone SKB, just
3147 * send it.
3149 tcp_init_nondata_skb(skb, tp->snd_una - !urgent, TCPHDR_ACK);
3150 TCP_SKB_CB(skb)->when = tcp_time_stamp;
3151 return tcp_transmit_skb(sk, skb, 0, GFP_ATOMIC);
3154 void tcp_send_window_probe(struct sock *sk)
3156 if (sk->sk_state == TCP_ESTABLISHED) {
3157 tcp_sk(sk)->snd_wl1 = tcp_sk(sk)->rcv_nxt - 1;
3158 tcp_xmit_probe_skb(sk, 0);
3162 /* Initiate keepalive or window probe from timer. */
3163 int tcp_write_wakeup(struct sock *sk)
3165 struct tcp_sock *tp = tcp_sk(sk);
3166 struct sk_buff *skb;
3168 if (sk->sk_state == TCP_CLOSE)
3169 return -1;
3171 if ((skb = tcp_send_head(sk)) != NULL &&
3172 before(TCP_SKB_CB(skb)->seq, tcp_wnd_end(tp))) {
3173 int err;
3174 unsigned int mss = tcp_current_mss(sk);
3175 unsigned int seg_size = tcp_wnd_end(tp) - TCP_SKB_CB(skb)->seq;
3177 if (before(tp->pushed_seq, TCP_SKB_CB(skb)->end_seq))
3178 tp->pushed_seq = TCP_SKB_CB(skb)->end_seq;
3180 /* We are probing the opening of a window
3181 * but the window size is != 0
3182 * must have been a result SWS avoidance ( sender )
3184 if (seg_size < TCP_SKB_CB(skb)->end_seq - TCP_SKB_CB(skb)->seq ||
3185 skb->len > mss) {
3186 seg_size = min(seg_size, mss);
3187 TCP_SKB_CB(skb)->tcp_flags |= TCPHDR_PSH;
3188 if (tcp_fragment(sk, skb, seg_size, mss))
3189 return -1;
3190 } else if (!tcp_skb_pcount(skb))
3191 tcp_set_skb_tso_segs(sk, skb, mss);
3193 TCP_SKB_CB(skb)->tcp_flags |= TCPHDR_PSH;
3194 TCP_SKB_CB(skb)->when = tcp_time_stamp;
3195 err = tcp_transmit_skb(sk, skb, 1, GFP_ATOMIC);
3196 if (!err)
3197 tcp_event_new_data_sent(sk, skb);
3198 return err;
3199 } else {
3200 if (between(tp->snd_up, tp->snd_una + 1, tp->snd_una + 0xFFFF))
3201 tcp_xmit_probe_skb(sk, 1);
3202 return tcp_xmit_probe_skb(sk, 0);
3206 /* A window probe timeout has occurred. If window is not closed send
3207 * a partial packet else a zero probe.
3209 void tcp_send_probe0(struct sock *sk)
3211 struct inet_connection_sock *icsk = inet_csk(sk);
3212 struct tcp_sock *tp = tcp_sk(sk);
3213 int err;
3215 err = tcp_write_wakeup(sk);
3217 if (tp->packets_out || !tcp_send_head(sk)) {
3218 /* Cancel probe timer, if it is not required. */
3219 icsk->icsk_probes_out = 0;
3220 icsk->icsk_backoff = 0;
3221 return;
3224 if (err <= 0) {
3225 if (icsk->icsk_backoff < sysctl_tcp_retries2)
3226 icsk->icsk_backoff++;
3227 icsk->icsk_probes_out++;
3228 inet_csk_reset_xmit_timer(sk, ICSK_TIME_PROBE0,
3229 min(icsk->icsk_rto << icsk->icsk_backoff, TCP_RTO_MAX),
3230 TCP_RTO_MAX);
3231 } else {
3232 /* If packet was not sent due to local congestion,
3233 * do not backoff and do not remember icsk_probes_out.
3234 * Let local senders to fight for local resources.
3236 * Use accumulated backoff yet.
3238 if (!icsk->icsk_probes_out)
3239 icsk->icsk_probes_out = 1;
3240 inet_csk_reset_xmit_timer(sk, ICSK_TIME_PROBE0,
3241 min(icsk->icsk_rto << icsk->icsk_backoff,
3242 TCP_RESOURCE_PROBE_INTERVAL),
3243 TCP_RTO_MAX);