11da177e4SLinus Torvalds /* 21da177e4SLinus Torvalds * INET An implementation of the TCP/IP protocol suite for the LINUX 31da177e4SLinus Torvalds * operating system. INET is implemented using the BSD Socket 41da177e4SLinus Torvalds * interface as the means of communication with the user level. 51da177e4SLinus Torvalds * 61da177e4SLinus Torvalds * Implementation of the Transmission Control Protocol(TCP). 71da177e4SLinus Torvalds * 802c30a84SJesper Juhl * Authors: Ross Biro 91da177e4SLinus Torvalds * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG> 101da177e4SLinus Torvalds * Mark Evans, <evansmp@uhura.aston.ac.uk> 111da177e4SLinus Torvalds * Corey Minyard <wf-rch!minyard@relay.EU.net> 121da177e4SLinus Torvalds * Florian La Roche, <flla@stud.uni-sb.de> 131da177e4SLinus Torvalds * Charles Hedrick, <hedrick@klinzhai.rutgers.edu> 141da177e4SLinus Torvalds * Linus Torvalds, <torvalds@cs.helsinki.fi> 151da177e4SLinus Torvalds * Alan Cox, <gw4pts@gw4pts.ampr.org> 161da177e4SLinus Torvalds * Matthew Dillon, <dillon@apollo.west.oic.com> 171da177e4SLinus Torvalds * Arnt Gulbrandsen, <agulbra@nvg.unit.no> 181da177e4SLinus Torvalds * Jorge Cwik, <jorge@laser.satlink.net> 191da177e4SLinus Torvalds */ 201da177e4SLinus Torvalds 211da177e4SLinus Torvalds /* 221da177e4SLinus Torvalds * Changes: Pedro Roque : Retransmit queue handled by TCP. 231da177e4SLinus Torvalds * : Fragmentation on mtu decrease 241da177e4SLinus Torvalds * : Segment collapse on retransmit 251da177e4SLinus Torvalds * : AF independence 261da177e4SLinus Torvalds * 271da177e4SLinus Torvalds * Linus Torvalds : send_delayed_ack 281da177e4SLinus Torvalds * David S. Miller : Charge memory using the right skb 291da177e4SLinus Torvalds * during syn/ack processing. 301da177e4SLinus Torvalds * David S. Miller : Output engine completely rewritten. 311da177e4SLinus Torvalds * Andrea Arcangeli: SYNACK carry ts_recent in tsecr. 321da177e4SLinus Torvalds * Cacophonix Gaul : draft-minshall-nagle-01 331da177e4SLinus Torvalds * J Hadi Salim : ECN support 341da177e4SLinus Torvalds * 351da177e4SLinus Torvalds */ 361da177e4SLinus Torvalds 371da177e4SLinus Torvalds #include <net/tcp.h> 381da177e4SLinus Torvalds 391da177e4SLinus Torvalds #include <linux/compiler.h> 401da177e4SLinus Torvalds #include <linux/module.h> 411da177e4SLinus Torvalds 421da177e4SLinus Torvalds /* People can turn this off for buggy TCP's found in printers etc. */ 43ab32ea5dSBrian Haley int sysctl_tcp_retrans_collapse __read_mostly = 1; 441da177e4SLinus Torvalds 4515d99e02SRick Jones /* People can turn this on to work with those rare, broken TCPs that 4615d99e02SRick Jones * interpret the window field as a signed quantity. 4715d99e02SRick Jones */ 48ab32ea5dSBrian Haley int sysctl_tcp_workaround_signed_windows __read_mostly = 0; 4915d99e02SRick Jones 501da177e4SLinus Torvalds /* This limits the percentage of the congestion window which we 511da177e4SLinus Torvalds * will allow a single TSO frame to consume. Building TSO frames 521da177e4SLinus Torvalds * which are too large can cause TCP streams to be bursty. 531da177e4SLinus Torvalds */ 54ab32ea5dSBrian Haley int sysctl_tcp_tso_win_divisor __read_mostly = 3; 551da177e4SLinus Torvalds 56ab32ea5dSBrian Haley int sysctl_tcp_mtu_probing __read_mostly = 0; 57ab32ea5dSBrian Haley int sysctl_tcp_base_mss __read_mostly = 512; 585d424d5aSJohn Heffner 5935089bb2SDavid S. Miller /* By default, RFC2861 behavior. */ 60ab32ea5dSBrian Haley int sysctl_tcp_slow_start_after_idle __read_mostly = 1; 6135089bb2SDavid S. Miller 6267edfef7SAndi Kleen /* Account for new data that has been sent to the network. */ 6366f5fe62SIlpo Järvinen static void tcp_event_new_data_sent(struct sock *sk, struct sk_buff *skb) 646ff03ac3SIlpo Järvinen { 656ff03ac3SIlpo Järvinen struct tcp_sock *tp = tcp_sk(sk); 6666f5fe62SIlpo Järvinen unsigned int prior_packets = tp->packets_out; 679e412ba7SIlpo Järvinen 68fe067e8aSDavid S. Miller tcp_advance_send_head(sk, skb); 691da177e4SLinus Torvalds tp->snd_nxt = TCP_SKB_CB(skb)->end_seq; 708512430eSIlpo Järvinen 718512430eSIlpo Järvinen /* Don't override Nagle indefinately with F-RTO */ 728512430eSIlpo Järvinen if (tp->frto_counter == 2) 738512430eSIlpo Järvinen tp->frto_counter = 3; 7466f5fe62SIlpo Järvinen 7566f5fe62SIlpo Järvinen tp->packets_out += tcp_skb_pcount(skb); 7666f5fe62SIlpo Järvinen if (!prior_packets) 7766f5fe62SIlpo Järvinen inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS, 7866f5fe62SIlpo Järvinen inet_csk(sk)->icsk_rto, TCP_RTO_MAX); 791da177e4SLinus Torvalds } 801da177e4SLinus Torvalds 811da177e4SLinus Torvalds /* SND.NXT, if window was not shrunk. 821da177e4SLinus Torvalds * If window has been shrunk, what should we make? It is not clear at all. 831da177e4SLinus Torvalds * Using SND.UNA we will fail to open window, SND.NXT is out of window. :-( 841da177e4SLinus Torvalds * Anything in between SND.UNA...SND.UNA+SND.WND also can be already 851da177e4SLinus Torvalds * invalid. OK, let's make this for now: 861da177e4SLinus Torvalds */ 879e412ba7SIlpo Järvinen static inline __u32 tcp_acceptable_seq(struct sock *sk) 881da177e4SLinus Torvalds { 899e412ba7SIlpo Järvinen struct tcp_sock *tp = tcp_sk(sk); 909e412ba7SIlpo Järvinen 9190840defSIlpo Järvinen if (!before(tcp_wnd_end(tp), tp->snd_nxt)) 921da177e4SLinus Torvalds return tp->snd_nxt; 931da177e4SLinus Torvalds else 9490840defSIlpo Järvinen return tcp_wnd_end(tp); 951da177e4SLinus Torvalds } 961da177e4SLinus Torvalds 971da177e4SLinus Torvalds /* Calculate mss to advertise in SYN segment. 981da177e4SLinus Torvalds * RFC1122, RFC1063, draft-ietf-tcpimpl-pmtud-01 state that: 991da177e4SLinus Torvalds * 1001da177e4SLinus Torvalds * 1. It is independent of path mtu. 1011da177e4SLinus Torvalds * 2. Ideally, it is maximal possible segment size i.e. 65535-40. 1021da177e4SLinus Torvalds * 3. For IPv4 it is reasonable to calculate it from maximal MTU of 1031da177e4SLinus Torvalds * attached devices, because some buggy hosts are confused by 1041da177e4SLinus Torvalds * large MSS. 1051da177e4SLinus Torvalds * 4. We do not make 3, we advertise MSS, calculated from first 1061da177e4SLinus Torvalds * hop device mtu, but allow to raise it to ip_rt_min_advmss. 1071da177e4SLinus Torvalds * This may be overridden via information stored in routing table. 1081da177e4SLinus Torvalds * 5. Value 65535 for MSS is valid in IPv6 and means "as large as possible, 1091da177e4SLinus Torvalds * probably even Jumbo". 1101da177e4SLinus Torvalds */ 1111da177e4SLinus Torvalds static __u16 tcp_advertise_mss(struct sock *sk) 1121da177e4SLinus Torvalds { 1131da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 1141da177e4SLinus Torvalds struct dst_entry *dst = __sk_dst_get(sk); 1151da177e4SLinus Torvalds int mss = tp->advmss; 1161da177e4SLinus Torvalds 1171da177e4SLinus Torvalds if (dst && dst_metric(dst, RTAX_ADVMSS) < mss) { 1181da177e4SLinus Torvalds mss = dst_metric(dst, RTAX_ADVMSS); 1191da177e4SLinus Torvalds tp->advmss = mss; 1201da177e4SLinus Torvalds } 1211da177e4SLinus Torvalds 1221da177e4SLinus Torvalds return (__u16)mss; 1231da177e4SLinus Torvalds } 1241da177e4SLinus Torvalds 1251da177e4SLinus Torvalds /* RFC2861. Reset CWND after idle period longer RTO to "restart window". 1261da177e4SLinus Torvalds * This is the first part of cwnd validation mechanism. */ 127463c84b9SArnaldo Carvalho de Melo static void tcp_cwnd_restart(struct sock *sk, struct dst_entry *dst) 1281da177e4SLinus Torvalds { 129463c84b9SArnaldo Carvalho de Melo struct tcp_sock *tp = tcp_sk(sk); 1301da177e4SLinus Torvalds s32 delta = tcp_time_stamp - tp->lsndtime; 1311da177e4SLinus Torvalds u32 restart_cwnd = tcp_init_cwnd(tp, dst); 1321da177e4SLinus Torvalds u32 cwnd = tp->snd_cwnd; 1331da177e4SLinus Torvalds 1346687e988SArnaldo Carvalho de Melo tcp_ca_event(sk, CA_EVENT_CWND_RESTART); 1351da177e4SLinus Torvalds 1366687e988SArnaldo Carvalho de Melo tp->snd_ssthresh = tcp_current_ssthresh(sk); 1371da177e4SLinus Torvalds restart_cwnd = min(restart_cwnd, cwnd); 1381da177e4SLinus Torvalds 139463c84b9SArnaldo Carvalho de Melo while ((delta -= inet_csk(sk)->icsk_rto) > 0 && cwnd > restart_cwnd) 1401da177e4SLinus Torvalds cwnd >>= 1; 1411da177e4SLinus Torvalds tp->snd_cwnd = max(cwnd, restart_cwnd); 1421da177e4SLinus Torvalds tp->snd_cwnd_stamp = tcp_time_stamp; 1431da177e4SLinus Torvalds tp->snd_cwnd_used = 0; 1441da177e4SLinus Torvalds } 1451da177e4SLinus Torvalds 14667edfef7SAndi Kleen /* Congestion state accounting after a packet has been sent. */ 14740efc6faSStephen Hemminger static void tcp_event_data_sent(struct tcp_sock *tp, 1481da177e4SLinus Torvalds struct sk_buff *skb, struct sock *sk) 1491da177e4SLinus Torvalds { 150463c84b9SArnaldo Carvalho de Melo struct inet_connection_sock *icsk = inet_csk(sk); 151463c84b9SArnaldo Carvalho de Melo const u32 now = tcp_time_stamp; 1521da177e4SLinus Torvalds 15335089bb2SDavid S. Miller if (sysctl_tcp_slow_start_after_idle && 15435089bb2SDavid S. Miller (!tp->packets_out && (s32)(now - tp->lsndtime) > icsk->icsk_rto)) 155463c84b9SArnaldo Carvalho de Melo tcp_cwnd_restart(sk, __sk_dst_get(sk)); 1561da177e4SLinus Torvalds 1571da177e4SLinus Torvalds tp->lsndtime = now; 1581da177e4SLinus Torvalds 1591da177e4SLinus Torvalds /* If it is a reply for ato after last received 1601da177e4SLinus Torvalds * packet, enter pingpong mode. 1611da177e4SLinus Torvalds */ 162463c84b9SArnaldo Carvalho de Melo if ((u32)(now - icsk->icsk_ack.lrcvtime) < icsk->icsk_ack.ato) 163463c84b9SArnaldo Carvalho de Melo icsk->icsk_ack.pingpong = 1; 1641da177e4SLinus Torvalds } 1651da177e4SLinus Torvalds 16667edfef7SAndi Kleen /* Account for an ACK we sent. */ 16740efc6faSStephen Hemminger static inline void tcp_event_ack_sent(struct sock *sk, unsigned int pkts) 1681da177e4SLinus Torvalds { 169463c84b9SArnaldo Carvalho de Melo tcp_dec_quickack_mode(sk, pkts); 170463c84b9SArnaldo Carvalho de Melo inet_csk_clear_xmit_timer(sk, ICSK_TIME_DACK); 1711da177e4SLinus Torvalds } 1721da177e4SLinus Torvalds 1731da177e4SLinus Torvalds /* Determine a window scaling and initial window to offer. 1741da177e4SLinus Torvalds * Based on the assumption that the given amount of space 1751da177e4SLinus Torvalds * will be offered. Store the results in the tp structure. 1761da177e4SLinus Torvalds * NOTE: for smooth operation initial space offering should 1771da177e4SLinus Torvalds * be a multiple of mss if possible. We assume here that mss >= 1. 1781da177e4SLinus Torvalds * This MUST be enforced by all callers. 1791da177e4SLinus Torvalds */ 1801da177e4SLinus Torvalds void tcp_select_initial_window(int __space, __u32 mss, 1811da177e4SLinus Torvalds __u32 *rcv_wnd, __u32 *window_clamp, 1821da177e4SLinus Torvalds int wscale_ok, __u8 *rcv_wscale) 1831da177e4SLinus Torvalds { 1841da177e4SLinus Torvalds unsigned int space = (__space < 0 ? 0 : __space); 1851da177e4SLinus Torvalds 1861da177e4SLinus Torvalds /* If no clamp set the clamp to the max possible scaled window */ 1871da177e4SLinus Torvalds if (*window_clamp == 0) 1881da177e4SLinus Torvalds (*window_clamp) = (65535 << 14); 1891da177e4SLinus Torvalds space = min(*window_clamp, space); 1901da177e4SLinus Torvalds 1911da177e4SLinus Torvalds /* Quantize space offering to a multiple of mss if possible. */ 1921da177e4SLinus Torvalds if (space > mss) 1931da177e4SLinus Torvalds space = (space / mss) * mss; 1941da177e4SLinus Torvalds 1951da177e4SLinus Torvalds /* NOTE: offering an initial window larger than 32767 19615d99e02SRick Jones * will break some buggy TCP stacks. If the admin tells us 19715d99e02SRick Jones * it is likely we could be speaking with such a buggy stack 19815d99e02SRick Jones * we will truncate our initial window offering to 32K-1 19915d99e02SRick Jones * unless the remote has sent us a window scaling option, 20015d99e02SRick Jones * which we interpret as a sign the remote TCP is not 20115d99e02SRick Jones * misinterpreting the window field as a signed quantity. 2021da177e4SLinus Torvalds */ 20315d99e02SRick Jones if (sysctl_tcp_workaround_signed_windows) 2041da177e4SLinus Torvalds (*rcv_wnd) = min(space, MAX_TCP_WINDOW); 20515d99e02SRick Jones else 20615d99e02SRick Jones (*rcv_wnd) = space; 20715d99e02SRick Jones 2081da177e4SLinus Torvalds (*rcv_wscale) = 0; 2091da177e4SLinus Torvalds if (wscale_ok) { 2101da177e4SLinus Torvalds /* Set window scaling on max possible window 2111da177e4SLinus Torvalds * See RFC1323 for an explanation of the limit to 14 2121da177e4SLinus Torvalds */ 2131da177e4SLinus Torvalds space = max_t(u32, sysctl_tcp_rmem[2], sysctl_rmem_max); 214316c1592SStephen Hemminger space = min_t(u32, space, *window_clamp); 2151da177e4SLinus Torvalds while (space > 65535 && (*rcv_wscale) < 14) { 2161da177e4SLinus Torvalds space >>= 1; 2171da177e4SLinus Torvalds (*rcv_wscale)++; 2181da177e4SLinus Torvalds } 2191da177e4SLinus Torvalds } 2201da177e4SLinus Torvalds 2211da177e4SLinus Torvalds /* Set initial window to value enough for senders, 2226b251858SDavid S. Miller * following RFC2414. Senders, not following this RFC, 2231da177e4SLinus Torvalds * will be satisfied with 2. 2241da177e4SLinus Torvalds */ 2251da177e4SLinus Torvalds if (mss > (1 << *rcv_wscale)) { 22601ff367eSDavid S. Miller int init_cwnd = 4; 22701ff367eSDavid S. Miller if (mss > 1460 * 3) 2281da177e4SLinus Torvalds init_cwnd = 2; 22901ff367eSDavid S. Miller else if (mss > 1460) 23001ff367eSDavid S. Miller init_cwnd = 3; 2311da177e4SLinus Torvalds if (*rcv_wnd > init_cwnd * mss) 2321da177e4SLinus Torvalds *rcv_wnd = init_cwnd * mss; 2331da177e4SLinus Torvalds } 2341da177e4SLinus Torvalds 2351da177e4SLinus Torvalds /* Set the clamp no higher than max representable value */ 2361da177e4SLinus Torvalds (*window_clamp) = min(65535U << (*rcv_wscale), *window_clamp); 2371da177e4SLinus Torvalds } 2381da177e4SLinus Torvalds 2391da177e4SLinus Torvalds /* Chose a new window to advertise, update state in tcp_sock for the 2401da177e4SLinus Torvalds * socket, and return result with RFC1323 scaling applied. The return 2411da177e4SLinus Torvalds * value can be stuffed directly into th->window for an outgoing 2421da177e4SLinus Torvalds * frame. 2431da177e4SLinus Torvalds */ 24440efc6faSStephen Hemminger static u16 tcp_select_window(struct sock *sk) 2451da177e4SLinus Torvalds { 2461da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 2471da177e4SLinus Torvalds u32 cur_win = tcp_receive_window(tp); 2481da177e4SLinus Torvalds u32 new_win = __tcp_select_window(sk); 2491da177e4SLinus Torvalds 2501da177e4SLinus Torvalds /* Never shrink the offered window */ 2511da177e4SLinus Torvalds if (new_win < cur_win) { 2521da177e4SLinus Torvalds /* Danger Will Robinson! 2531da177e4SLinus Torvalds * Don't update rcv_wup/rcv_wnd here or else 2541da177e4SLinus Torvalds * we will not be able to advertise a zero 2551da177e4SLinus Torvalds * window in time. --DaveM 2561da177e4SLinus Torvalds * 2571da177e4SLinus Torvalds * Relax Will Robinson. 2581da177e4SLinus Torvalds */ 259607bfbf2SPatrick McHardy new_win = ALIGN(cur_win, 1 << tp->rx_opt.rcv_wscale); 2601da177e4SLinus Torvalds } 2611da177e4SLinus Torvalds tp->rcv_wnd = new_win; 2621da177e4SLinus Torvalds tp->rcv_wup = tp->rcv_nxt; 2631da177e4SLinus Torvalds 2641da177e4SLinus Torvalds /* Make sure we do not exceed the maximum possible 2651da177e4SLinus Torvalds * scaled window. 2661da177e4SLinus Torvalds */ 26715d99e02SRick Jones if (!tp->rx_opt.rcv_wscale && sysctl_tcp_workaround_signed_windows) 2681da177e4SLinus Torvalds new_win = min(new_win, MAX_TCP_WINDOW); 2691da177e4SLinus Torvalds else 2701da177e4SLinus Torvalds new_win = min(new_win, (65535U << tp->rx_opt.rcv_wscale)); 2711da177e4SLinus Torvalds 2721da177e4SLinus Torvalds /* RFC1323 scaling applied */ 2731da177e4SLinus Torvalds new_win >>= tp->rx_opt.rcv_wscale; 2741da177e4SLinus Torvalds 2751da177e4SLinus Torvalds /* If we advertise zero window, disable fast path. */ 2761da177e4SLinus Torvalds if (new_win == 0) 2771da177e4SLinus Torvalds tp->pred_flags = 0; 2781da177e4SLinus Torvalds 2791da177e4SLinus Torvalds return new_win; 2801da177e4SLinus Torvalds } 2811da177e4SLinus Torvalds 28267edfef7SAndi Kleen /* Packet ECN state for a SYN-ACK */ 283056834d9SIlpo Järvinen static inline void TCP_ECN_send_synack(struct tcp_sock *tp, struct sk_buff *skb) 284bdf1ee5dSIlpo Järvinen { 285bdf1ee5dSIlpo Järvinen TCP_SKB_CB(skb)->flags &= ~TCPCB_FLAG_CWR; 286bdf1ee5dSIlpo Järvinen if (!(tp->ecn_flags & TCP_ECN_OK)) 287bdf1ee5dSIlpo Järvinen TCP_SKB_CB(skb)->flags &= ~TCPCB_FLAG_ECE; 288bdf1ee5dSIlpo Järvinen } 289bdf1ee5dSIlpo Järvinen 29067edfef7SAndi Kleen /* Packet ECN state for a SYN. */ 291bdf1ee5dSIlpo Järvinen static inline void TCP_ECN_send_syn(struct sock *sk, struct sk_buff *skb) 292bdf1ee5dSIlpo Järvinen { 293bdf1ee5dSIlpo Järvinen struct tcp_sock *tp = tcp_sk(sk); 294bdf1ee5dSIlpo Järvinen 295bdf1ee5dSIlpo Järvinen tp->ecn_flags = 0; 296255cac91SIlpo Järvinen if (sysctl_tcp_ecn == 1) { 297bdf1ee5dSIlpo Järvinen TCP_SKB_CB(skb)->flags |= TCPCB_FLAG_ECE | TCPCB_FLAG_CWR; 298bdf1ee5dSIlpo Järvinen tp->ecn_flags = TCP_ECN_OK; 299bdf1ee5dSIlpo Järvinen } 300bdf1ee5dSIlpo Järvinen } 301bdf1ee5dSIlpo Järvinen 302bdf1ee5dSIlpo Järvinen static __inline__ void 303bdf1ee5dSIlpo Järvinen TCP_ECN_make_synack(struct request_sock *req, struct tcphdr *th) 304bdf1ee5dSIlpo Järvinen { 305bdf1ee5dSIlpo Järvinen if (inet_rsk(req)->ecn_ok) 306bdf1ee5dSIlpo Järvinen th->ece = 1; 307bdf1ee5dSIlpo Järvinen } 308bdf1ee5dSIlpo Järvinen 30967edfef7SAndi Kleen /* Set up ECN state for a packet on a ESTABLISHED socket that is about to 31067edfef7SAndi Kleen * be sent. 31167edfef7SAndi Kleen */ 312bdf1ee5dSIlpo Järvinen static inline void TCP_ECN_send(struct sock *sk, struct sk_buff *skb, 313bdf1ee5dSIlpo Järvinen int tcp_header_len) 314bdf1ee5dSIlpo Järvinen { 315bdf1ee5dSIlpo Järvinen struct tcp_sock *tp = tcp_sk(sk); 316bdf1ee5dSIlpo Järvinen 317bdf1ee5dSIlpo Järvinen if (tp->ecn_flags & TCP_ECN_OK) { 318bdf1ee5dSIlpo Järvinen /* Not-retransmitted data segment: set ECT and inject CWR. */ 319bdf1ee5dSIlpo Järvinen if (skb->len != tcp_header_len && 320bdf1ee5dSIlpo Järvinen !before(TCP_SKB_CB(skb)->seq, tp->snd_nxt)) { 321bdf1ee5dSIlpo Järvinen INET_ECN_xmit(sk); 322bdf1ee5dSIlpo Järvinen if (tp->ecn_flags & TCP_ECN_QUEUE_CWR) { 323bdf1ee5dSIlpo Järvinen tp->ecn_flags &= ~TCP_ECN_QUEUE_CWR; 324bdf1ee5dSIlpo Järvinen tcp_hdr(skb)->cwr = 1; 325bdf1ee5dSIlpo Järvinen skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN; 326bdf1ee5dSIlpo Järvinen } 327bdf1ee5dSIlpo Järvinen } else { 328bdf1ee5dSIlpo Järvinen /* ACK or retransmitted segment: clear ECT|CE */ 329bdf1ee5dSIlpo Järvinen INET_ECN_dontxmit(sk); 330bdf1ee5dSIlpo Järvinen } 331bdf1ee5dSIlpo Järvinen if (tp->ecn_flags & TCP_ECN_DEMAND_CWR) 332bdf1ee5dSIlpo Järvinen tcp_hdr(skb)->ece = 1; 333bdf1ee5dSIlpo Järvinen } 334bdf1ee5dSIlpo Järvinen } 335bdf1ee5dSIlpo Järvinen 336e870a8efSIlpo Järvinen /* Constructs common control bits of non-data skb. If SYN/FIN is present, 337e870a8efSIlpo Järvinen * auto increment end seqno. 338e870a8efSIlpo Järvinen */ 339e870a8efSIlpo Järvinen static void tcp_init_nondata_skb(struct sk_buff *skb, u32 seq, u8 flags) 340e870a8efSIlpo Järvinen { 341e870a8efSIlpo Järvinen skb->csum = 0; 342e870a8efSIlpo Järvinen 343e870a8efSIlpo Järvinen TCP_SKB_CB(skb)->flags = flags; 344e870a8efSIlpo Järvinen TCP_SKB_CB(skb)->sacked = 0; 345e870a8efSIlpo Järvinen 346e870a8efSIlpo Järvinen skb_shinfo(skb)->gso_segs = 1; 347e870a8efSIlpo Järvinen skb_shinfo(skb)->gso_size = 0; 348e870a8efSIlpo Järvinen skb_shinfo(skb)->gso_type = 0; 349e870a8efSIlpo Järvinen 350e870a8efSIlpo Järvinen TCP_SKB_CB(skb)->seq = seq; 351e870a8efSIlpo Järvinen if (flags & (TCPCB_FLAG_SYN | TCPCB_FLAG_FIN)) 352e870a8efSIlpo Järvinen seq++; 353e870a8efSIlpo Järvinen TCP_SKB_CB(skb)->end_seq = seq; 354e870a8efSIlpo Järvinen } 355e870a8efSIlpo Järvinen 35633f5f57eSIlpo Järvinen static inline int tcp_urg_mode(const struct tcp_sock *tp) 35733f5f57eSIlpo Järvinen { 35833f5f57eSIlpo Järvinen return tp->snd_una != tp->snd_up; 35933f5f57eSIlpo Järvinen } 36033f5f57eSIlpo Järvinen 36133ad798cSAdam Langley #define OPTION_SACK_ADVERTISE (1 << 0) 36233ad798cSAdam Langley #define OPTION_TS (1 << 1) 36333ad798cSAdam Langley #define OPTION_MD5 (1 << 2) 36489e95a61SOri Finkelman #define OPTION_WSCALE (1 << 3) 36533ad798cSAdam Langley 36633ad798cSAdam Langley struct tcp_out_options { 36733ad798cSAdam Langley u8 options; /* bit field of OPTION_* */ 36833ad798cSAdam Langley u8 ws; /* window scale, 0 to disable */ 36933ad798cSAdam Langley u8 num_sack_blocks; /* number of SACK blocks to include */ 37033ad798cSAdam Langley u16 mss; /* 0 to disable */ 37133ad798cSAdam Langley __u32 tsval, tsecr; /* need to include OPTION_TS */ 37233ad798cSAdam Langley }; 37333ad798cSAdam Langley 37467edfef7SAndi Kleen /* Write previously computed TCP options to the packet. 37567edfef7SAndi Kleen * 37667edfef7SAndi Kleen * Beware: Something in the Internet is very sensitive to the ordering of 377fd6149d3SIlpo Järvinen * TCP options, we learned this through the hard way, so be careful here. 378fd6149d3SIlpo Järvinen * Luckily we can at least blame others for their non-compliance but from 379fd6149d3SIlpo Järvinen * inter-operatibility perspective it seems that we're somewhat stuck with 380fd6149d3SIlpo Järvinen * the ordering which we have been using if we want to keep working with 381fd6149d3SIlpo Järvinen * those broken things (not that it currently hurts anybody as there isn't 382fd6149d3SIlpo Järvinen * particular reason why the ordering would need to be changed). 383fd6149d3SIlpo Järvinen * 384fd6149d3SIlpo Järvinen * At least SACK_PERM as the first option is known to lead to a disaster 385fd6149d3SIlpo Järvinen * (but it may well be that other scenarios fail similarly). 386fd6149d3SIlpo Järvinen */ 38733ad798cSAdam Langley static void tcp_options_write(__be32 *ptr, struct tcp_sock *tp, 38833ad798cSAdam Langley const struct tcp_out_options *opts, 38933ad798cSAdam Langley __u8 **md5_hash) { 39033ad798cSAdam Langley if (unlikely(OPTION_MD5 & opts->options)) { 39133ad798cSAdam Langley *ptr++ = htonl((TCPOPT_NOP << 24) | 39233ad798cSAdam Langley (TCPOPT_NOP << 16) | 39333ad798cSAdam Langley (TCPOPT_MD5SIG << 8) | 39433ad798cSAdam Langley TCPOLEN_MD5SIG); 39533ad798cSAdam Langley *md5_hash = (__u8 *)ptr; 39633ad798cSAdam Langley ptr += 4; 39733ad798cSAdam Langley } else { 39833ad798cSAdam Langley *md5_hash = NULL; 39933ad798cSAdam Langley } 40033ad798cSAdam Langley 401fd6149d3SIlpo Järvinen if (unlikely(opts->mss)) { 402fd6149d3SIlpo Järvinen *ptr++ = htonl((TCPOPT_MSS << 24) | 403fd6149d3SIlpo Järvinen (TCPOLEN_MSS << 16) | 404fd6149d3SIlpo Järvinen opts->mss); 405fd6149d3SIlpo Järvinen } 406fd6149d3SIlpo Järvinen 40733ad798cSAdam Langley if (likely(OPTION_TS & opts->options)) { 40833ad798cSAdam Langley if (unlikely(OPTION_SACK_ADVERTISE & opts->options)) { 40933ad798cSAdam Langley *ptr++ = htonl((TCPOPT_SACK_PERM << 24) | 41033ad798cSAdam Langley (TCPOLEN_SACK_PERM << 16) | 41133ad798cSAdam Langley (TCPOPT_TIMESTAMP << 8) | 41233ad798cSAdam Langley TCPOLEN_TIMESTAMP); 41333ad798cSAdam Langley } else { 414496c98dfSYOSHIFUJI Hideaki *ptr++ = htonl((TCPOPT_NOP << 24) | 41540efc6faSStephen Hemminger (TCPOPT_NOP << 16) | 41640efc6faSStephen Hemminger (TCPOPT_TIMESTAMP << 8) | 41740efc6faSStephen Hemminger TCPOLEN_TIMESTAMP); 41840efc6faSStephen Hemminger } 41933ad798cSAdam Langley *ptr++ = htonl(opts->tsval); 42033ad798cSAdam Langley *ptr++ = htonl(opts->tsecr); 42133ad798cSAdam Langley } 42233ad798cSAdam Langley 42333ad798cSAdam Langley if (unlikely(OPTION_SACK_ADVERTISE & opts->options && 42433ad798cSAdam Langley !(OPTION_TS & opts->options))) { 42533ad798cSAdam Langley *ptr++ = htonl((TCPOPT_NOP << 24) | 42633ad798cSAdam Langley (TCPOPT_NOP << 16) | 42733ad798cSAdam Langley (TCPOPT_SACK_PERM << 8) | 42833ad798cSAdam Langley TCPOLEN_SACK_PERM); 42933ad798cSAdam Langley } 43033ad798cSAdam Langley 43189e95a61SOri Finkelman if (unlikely(OPTION_WSCALE & opts->options)) { 43233ad798cSAdam Langley *ptr++ = htonl((TCPOPT_NOP << 24) | 43333ad798cSAdam Langley (TCPOPT_WINDOW << 16) | 43433ad798cSAdam Langley (TCPOLEN_WINDOW << 8) | 43533ad798cSAdam Langley opts->ws); 43633ad798cSAdam Langley } 43733ad798cSAdam Langley 43833ad798cSAdam Langley if (unlikely(opts->num_sack_blocks)) { 43933ad798cSAdam Langley struct tcp_sack_block *sp = tp->rx_opt.dsack ? 44033ad798cSAdam Langley tp->duplicate_sack : tp->selective_acks; 44140efc6faSStephen Hemminger int this_sack; 44240efc6faSStephen Hemminger 44340efc6faSStephen Hemminger *ptr++ = htonl((TCPOPT_NOP << 24) | 44440efc6faSStephen Hemminger (TCPOPT_NOP << 16) | 44540efc6faSStephen Hemminger (TCPOPT_SACK << 8) | 44633ad798cSAdam Langley (TCPOLEN_SACK_BASE + (opts->num_sack_blocks * 44740efc6faSStephen Hemminger TCPOLEN_SACK_PERBLOCK))); 4482de979bdSStephen Hemminger 44933ad798cSAdam Langley for (this_sack = 0; this_sack < opts->num_sack_blocks; 45033ad798cSAdam Langley ++this_sack) { 45140efc6faSStephen Hemminger *ptr++ = htonl(sp[this_sack].start_seq); 45240efc6faSStephen Hemminger *ptr++ = htonl(sp[this_sack].end_seq); 45340efc6faSStephen Hemminger } 4542de979bdSStephen Hemminger 45540efc6faSStephen Hemminger tp->rx_opt.dsack = 0; 45640efc6faSStephen Hemminger } 45740efc6faSStephen Hemminger } 45840efc6faSStephen Hemminger 45967edfef7SAndi Kleen /* Compute TCP options for SYN packets. This is not the final 46067edfef7SAndi Kleen * network wire format yet. 46167edfef7SAndi Kleen */ 46233ad798cSAdam Langley static unsigned tcp_syn_options(struct sock *sk, struct sk_buff *skb, 46333ad798cSAdam Langley struct tcp_out_options *opts, 46433ad798cSAdam Langley struct tcp_md5sig_key **md5) { 46533ad798cSAdam Langley struct tcp_sock *tp = tcp_sk(sk); 46633ad798cSAdam Langley unsigned size = 0; 4671aba721eSGilad Ben-Yossef struct dst_entry *dst = __sk_dst_get(sk); 46833ad798cSAdam Langley 469cfb6eeb4SYOSHIFUJI Hideaki #ifdef CONFIG_TCP_MD5SIG 47033ad798cSAdam Langley *md5 = tp->af_specific->md5_lookup(sk, sk); 47133ad798cSAdam Langley if (*md5) { 47233ad798cSAdam Langley opts->options |= OPTION_MD5; 47333ad798cSAdam Langley size += TCPOLEN_MD5SIG_ALIGNED; 474cfb6eeb4SYOSHIFUJI Hideaki } 47533ad798cSAdam Langley #else 47633ad798cSAdam Langley *md5 = NULL; 477cfb6eeb4SYOSHIFUJI Hideaki #endif 47833ad798cSAdam Langley 47933ad798cSAdam Langley /* We always get an MSS option. The option bytes which will be seen in 48033ad798cSAdam Langley * normal data packets should timestamps be used, must be in the MSS 48133ad798cSAdam Langley * advertised. But we subtract them from tp->mss_cache so that 48233ad798cSAdam Langley * calculations in tcp_sendmsg are simpler etc. So account for this 48333ad798cSAdam Langley * fact here if necessary. If we don't do this correctly, as a 48433ad798cSAdam Langley * receiver we won't recognize data packets as being full sized when we 48533ad798cSAdam Langley * should, and thus we won't abide by the delayed ACK rules correctly. 48633ad798cSAdam Langley * SACKs don't matter, we never delay an ACK when we have any of those 48733ad798cSAdam Langley * going out. */ 48833ad798cSAdam Langley opts->mss = tcp_advertise_mss(sk); 48933ad798cSAdam Langley size += TCPOLEN_MSS_ALIGNED; 49033ad798cSAdam Langley 491cda42ebdSGilad Ben-Yossef if (likely(sysctl_tcp_timestamps && 492cda42ebdSGilad Ben-Yossef !dst_feature(dst, RTAX_FEATURE_NO_TSTAMP) && 493cda42ebdSGilad Ben-Yossef *md5 == NULL)) { 49433ad798cSAdam Langley opts->options |= OPTION_TS; 49533ad798cSAdam Langley opts->tsval = TCP_SKB_CB(skb)->when; 49633ad798cSAdam Langley opts->tsecr = tp->rx_opt.ts_recent; 49733ad798cSAdam Langley size += TCPOLEN_TSTAMP_ALIGNED; 49833ad798cSAdam Langley } 499345cda2fSGilad Ben-Yossef if (likely(sysctl_tcp_window_scaling && 500345cda2fSGilad Ben-Yossef !dst_feature(dst, RTAX_FEATURE_NO_WSCALE))) { 50133ad798cSAdam Langley opts->ws = tp->rx_opt.rcv_wscale; 50289e95a61SOri Finkelman opts->options |= OPTION_WSCALE; 50333ad798cSAdam Langley size += TCPOLEN_WSCALE_ALIGNED; 50433ad798cSAdam Langley } 5051aba721eSGilad Ben-Yossef if (likely(sysctl_tcp_sack && 5061aba721eSGilad Ben-Yossef !dst_feature(dst, RTAX_FEATURE_NO_SACK))) { 50733ad798cSAdam Langley opts->options |= OPTION_SACK_ADVERTISE; 508b32d1310SDavid S. Miller if (unlikely(!(OPTION_TS & opts->options))) 50933ad798cSAdam Langley size += TCPOLEN_SACKPERM_ALIGNED; 51033ad798cSAdam Langley } 51133ad798cSAdam Langley 51233ad798cSAdam Langley return size; 51333ad798cSAdam Langley } 51433ad798cSAdam Langley 51567edfef7SAndi Kleen /* Set up TCP options for SYN-ACKs. */ 51633ad798cSAdam Langley static unsigned tcp_synack_options(struct sock *sk, 51733ad798cSAdam Langley struct request_sock *req, 51833ad798cSAdam Langley unsigned mss, struct sk_buff *skb, 51933ad798cSAdam Langley struct tcp_out_options *opts, 52033ad798cSAdam Langley struct tcp_md5sig_key **md5) { 52133ad798cSAdam Langley unsigned size = 0; 52233ad798cSAdam Langley struct inet_request_sock *ireq = inet_rsk(req); 52333ad798cSAdam Langley char doing_ts; 52433ad798cSAdam Langley 52533ad798cSAdam Langley #ifdef CONFIG_TCP_MD5SIG 52633ad798cSAdam Langley *md5 = tcp_rsk(req)->af_specific->md5_lookup(sk, req); 52733ad798cSAdam Langley if (*md5) { 52833ad798cSAdam Langley opts->options |= OPTION_MD5; 52933ad798cSAdam Langley size += TCPOLEN_MD5SIG_ALIGNED; 53033ad798cSAdam Langley } 53133ad798cSAdam Langley #else 53233ad798cSAdam Langley *md5 = NULL; 53333ad798cSAdam Langley #endif 53433ad798cSAdam Langley 53533ad798cSAdam Langley /* we can't fit any SACK blocks in a packet with MD5 + TS 53633ad798cSAdam Langley options. There was discussion about disabling SACK rather than TS in 53733ad798cSAdam Langley order to fit in better with old, buggy kernels, but that was deemed 53833ad798cSAdam Langley to be unnecessary. */ 53933ad798cSAdam Langley doing_ts = ireq->tstamp_ok && !(*md5 && ireq->sack_ok); 54033ad798cSAdam Langley 54133ad798cSAdam Langley opts->mss = mss; 54233ad798cSAdam Langley size += TCPOLEN_MSS_ALIGNED; 54333ad798cSAdam Langley 54433ad798cSAdam Langley if (likely(ireq->wscale_ok)) { 54533ad798cSAdam Langley opts->ws = ireq->rcv_wscale; 54689e95a61SOri Finkelman opts->options |= OPTION_WSCALE; 54733ad798cSAdam Langley size += TCPOLEN_WSCALE_ALIGNED; 54833ad798cSAdam Langley } 54933ad798cSAdam Langley if (likely(doing_ts)) { 55033ad798cSAdam Langley opts->options |= OPTION_TS; 55133ad798cSAdam Langley opts->tsval = TCP_SKB_CB(skb)->when; 55233ad798cSAdam Langley opts->tsecr = req->ts_recent; 55333ad798cSAdam Langley size += TCPOLEN_TSTAMP_ALIGNED; 55433ad798cSAdam Langley } 55533ad798cSAdam Langley if (likely(ireq->sack_ok)) { 55633ad798cSAdam Langley opts->options |= OPTION_SACK_ADVERTISE; 55733ad798cSAdam Langley if (unlikely(!doing_ts)) 55833ad798cSAdam Langley size += TCPOLEN_SACKPERM_ALIGNED; 55933ad798cSAdam Langley } 56033ad798cSAdam Langley 56133ad798cSAdam Langley return size; 56233ad798cSAdam Langley } 56333ad798cSAdam Langley 56467edfef7SAndi Kleen /* Compute TCP options for ESTABLISHED sockets. This is not the 56567edfef7SAndi Kleen * final wire format yet. 56667edfef7SAndi Kleen */ 56733ad798cSAdam Langley static unsigned tcp_established_options(struct sock *sk, struct sk_buff *skb, 56833ad798cSAdam Langley struct tcp_out_options *opts, 56933ad798cSAdam Langley struct tcp_md5sig_key **md5) { 57033ad798cSAdam Langley struct tcp_skb_cb *tcb = skb ? TCP_SKB_CB(skb) : NULL; 57133ad798cSAdam Langley struct tcp_sock *tp = tcp_sk(sk); 57233ad798cSAdam Langley unsigned size = 0; 573cabeccbdSIlpo Järvinen unsigned int eff_sacks; 57433ad798cSAdam Langley 57533ad798cSAdam Langley #ifdef CONFIG_TCP_MD5SIG 57633ad798cSAdam Langley *md5 = tp->af_specific->md5_lookup(sk, sk); 57733ad798cSAdam Langley if (unlikely(*md5)) { 57833ad798cSAdam Langley opts->options |= OPTION_MD5; 57933ad798cSAdam Langley size += TCPOLEN_MD5SIG_ALIGNED; 58033ad798cSAdam Langley } 58133ad798cSAdam Langley #else 58233ad798cSAdam Langley *md5 = NULL; 58333ad798cSAdam Langley #endif 58433ad798cSAdam Langley 58533ad798cSAdam Langley if (likely(tp->rx_opt.tstamp_ok)) { 58633ad798cSAdam Langley opts->options |= OPTION_TS; 58733ad798cSAdam Langley opts->tsval = tcb ? tcb->when : 0; 58833ad798cSAdam Langley opts->tsecr = tp->rx_opt.ts_recent; 58933ad798cSAdam Langley size += TCPOLEN_TSTAMP_ALIGNED; 59033ad798cSAdam Langley } 59133ad798cSAdam Langley 592cabeccbdSIlpo Järvinen eff_sacks = tp->rx_opt.num_sacks + tp->rx_opt.dsack; 593cabeccbdSIlpo Järvinen if (unlikely(eff_sacks)) { 59433ad798cSAdam Langley const unsigned remaining = MAX_TCP_OPTION_SPACE - size; 59533ad798cSAdam Langley opts->num_sack_blocks = 596cabeccbdSIlpo Järvinen min_t(unsigned, eff_sacks, 59733ad798cSAdam Langley (remaining - TCPOLEN_SACK_BASE_ALIGNED) / 59833ad798cSAdam Langley TCPOLEN_SACK_PERBLOCK); 59933ad798cSAdam Langley size += TCPOLEN_SACK_BASE_ALIGNED + 60033ad798cSAdam Langley opts->num_sack_blocks * TCPOLEN_SACK_PERBLOCK; 60133ad798cSAdam Langley } 60233ad798cSAdam Langley 60333ad798cSAdam Langley return size; 60440efc6faSStephen Hemminger } 6051da177e4SLinus Torvalds 6061da177e4SLinus Torvalds /* This routine actually transmits TCP packets queued in by 6071da177e4SLinus Torvalds * tcp_do_sendmsg(). This is used by both the initial 6081da177e4SLinus Torvalds * transmission and possible later retransmissions. 6091da177e4SLinus Torvalds * All SKB's seen here are completely headerless. It is our 6101da177e4SLinus Torvalds * job to build the TCP header, and pass the packet down to 6111da177e4SLinus Torvalds * IP so it can do the same plus pass the packet off to the 6121da177e4SLinus Torvalds * device. 6131da177e4SLinus Torvalds * 6141da177e4SLinus Torvalds * We are working here with either a clone of the original 6151da177e4SLinus Torvalds * SKB, or a fresh unique copy made by the retransmit engine. 6161da177e4SLinus Torvalds */ 617056834d9SIlpo Järvinen static int tcp_transmit_skb(struct sock *sk, struct sk_buff *skb, int clone_it, 618056834d9SIlpo Järvinen gfp_t gfp_mask) 6191da177e4SLinus Torvalds { 6206687e988SArnaldo Carvalho de Melo const struct inet_connection_sock *icsk = inet_csk(sk); 621dfb4b9dcSDavid S. Miller struct inet_sock *inet; 622dfb4b9dcSDavid S. Miller struct tcp_sock *tp; 623dfb4b9dcSDavid S. Miller struct tcp_skb_cb *tcb; 62433ad798cSAdam Langley struct tcp_out_options opts; 62533ad798cSAdam Langley unsigned tcp_options_size, tcp_header_size; 626cfb6eeb4SYOSHIFUJI Hideaki struct tcp_md5sig_key *md5; 627cfb6eeb4SYOSHIFUJI Hideaki __u8 *md5_hash_location; 6281da177e4SLinus Torvalds struct tcphdr *th; 6291da177e4SLinus Torvalds int err; 6301da177e4SLinus Torvalds 631dfb4b9dcSDavid S. Miller BUG_ON(!skb || !tcp_skb_pcount(skb)); 632dfb4b9dcSDavid S. Miller 633dfb4b9dcSDavid S. Miller /* If congestion control is doing timestamping, we must 634dfb4b9dcSDavid S. Miller * take such a timestamp before we potentially clone/copy. 635dfb4b9dcSDavid S. Miller */ 636164891aaSStephen Hemminger if (icsk->icsk_ca_ops->flags & TCP_CONG_RTT_STAMP) 637dfb4b9dcSDavid S. Miller __net_timestamp(skb); 638dfb4b9dcSDavid S. Miller 639dfb4b9dcSDavid S. Miller if (likely(clone_it)) { 640dfb4b9dcSDavid S. Miller if (unlikely(skb_cloned(skb))) 641dfb4b9dcSDavid S. Miller skb = pskb_copy(skb, gfp_mask); 642dfb4b9dcSDavid S. Miller else 643dfb4b9dcSDavid S. Miller skb = skb_clone(skb, gfp_mask); 644dfb4b9dcSDavid S. Miller if (unlikely(!skb)) 645dfb4b9dcSDavid S. Miller return -ENOBUFS; 646dfb4b9dcSDavid S. Miller } 647dfb4b9dcSDavid S. Miller 648dfb4b9dcSDavid S. Miller inet = inet_sk(sk); 649dfb4b9dcSDavid S. Miller tp = tcp_sk(sk); 650dfb4b9dcSDavid S. Miller tcb = TCP_SKB_CB(skb); 65133ad798cSAdam Langley memset(&opts, 0, sizeof(opts)); 6521da177e4SLinus Torvalds 65333ad798cSAdam Langley if (unlikely(tcb->flags & TCPCB_FLAG_SYN)) 65433ad798cSAdam Langley tcp_options_size = tcp_syn_options(sk, skb, &opts, &md5); 65533ad798cSAdam Langley else 65633ad798cSAdam Langley tcp_options_size = tcp_established_options(sk, skb, &opts, 65733ad798cSAdam Langley &md5); 65833ad798cSAdam Langley tcp_header_size = tcp_options_size + sizeof(struct tcphdr); 6591da177e4SLinus Torvalds 660317a76f9SStephen Hemminger if (tcp_packets_in_flight(tp) == 0) 6616687e988SArnaldo Carvalho de Melo tcp_ca_event(sk, CA_EVENT_TX_START); 6621da177e4SLinus Torvalds 663aa8223c7SArnaldo Carvalho de Melo skb_push(skb, tcp_header_size); 664aa8223c7SArnaldo Carvalho de Melo skb_reset_transport_header(skb); 665e89862f4SDavid S. Miller skb_set_owner_w(skb, sk); 6661da177e4SLinus Torvalds 6671da177e4SLinus Torvalds /* Build TCP header and checksum it. */ 668aa8223c7SArnaldo Carvalho de Melo th = tcp_hdr(skb); 669c720c7e8SEric Dumazet th->source = inet->inet_sport; 670c720c7e8SEric Dumazet th->dest = inet->inet_dport; 6711da177e4SLinus Torvalds th->seq = htonl(tcb->seq); 6721da177e4SLinus Torvalds th->ack_seq = htonl(tp->rcv_nxt); 673df7a3b07SAl Viro *(((__be16 *)th) + 6) = htons(((tcp_header_size >> 2) << 12) | 674dfb4b9dcSDavid S. Miller tcb->flags); 675dfb4b9dcSDavid S. Miller 676dfb4b9dcSDavid S. Miller if (unlikely(tcb->flags & TCPCB_FLAG_SYN)) { 6771da177e4SLinus Torvalds /* RFC1323: The window in SYN & SYN/ACK segments 6781da177e4SLinus Torvalds * is never scaled. 6791da177e4SLinus Torvalds */ 680600ff0c2SIlpo Järvinen th->window = htons(min(tp->rcv_wnd, 65535U)); 6811da177e4SLinus Torvalds } else { 6821da177e4SLinus Torvalds th->window = htons(tcp_select_window(sk)); 6831da177e4SLinus Torvalds } 6841da177e4SLinus Torvalds th->check = 0; 6851da177e4SLinus Torvalds th->urg_ptr = 0; 6861da177e4SLinus Torvalds 68733f5f57eSIlpo Järvinen /* The urg_mode check is necessary during a below snd_una win probe */ 6887691367dSHerbert Xu if (unlikely(tcp_urg_mode(tp) && before(tcb->seq, tp->snd_up))) { 6897691367dSHerbert Xu if (before(tp->snd_up, tcb->seq + 0x10000)) { 6901da177e4SLinus Torvalds th->urg_ptr = htons(tp->snd_up - tcb->seq); 6911da177e4SLinus Torvalds th->urg = 1; 6927691367dSHerbert Xu } else if (after(tcb->seq + 0xFFFF, tp->snd_nxt)) { 6937691367dSHerbert Xu th->urg_ptr = 0xFFFF; 6947691367dSHerbert Xu th->urg = 1; 6957691367dSHerbert Xu } 6961da177e4SLinus Torvalds } 6971da177e4SLinus Torvalds 69833ad798cSAdam Langley tcp_options_write((__be32 *)(th + 1), tp, &opts, &md5_hash_location); 69933ad798cSAdam Langley if (likely((tcb->flags & TCPCB_FLAG_SYN) == 0)) 7009e412ba7SIlpo Järvinen TCP_ECN_send(sk, skb, tcp_header_size); 701dfb4b9dcSDavid S. Miller 702cfb6eeb4SYOSHIFUJI Hideaki #ifdef CONFIG_TCP_MD5SIG 703cfb6eeb4SYOSHIFUJI Hideaki /* Calculate the MD5 hash, as we have all we need now */ 704cfb6eeb4SYOSHIFUJI Hideaki if (md5) { 70533ad798cSAdam Langley sk->sk_route_caps &= ~NETIF_F_GSO_MASK; 706cfb6eeb4SYOSHIFUJI Hideaki tp->af_specific->calc_md5_hash(md5_hash_location, 70749a72dfbSAdam Langley md5, sk, NULL, skb); 708cfb6eeb4SYOSHIFUJI Hideaki } 709cfb6eeb4SYOSHIFUJI Hideaki #endif 710cfb6eeb4SYOSHIFUJI Hideaki 7118292a17aSArnaldo Carvalho de Melo icsk->icsk_af_ops->send_check(sk, skb->len, skb); 7121da177e4SLinus Torvalds 713dfb4b9dcSDavid S. Miller if (likely(tcb->flags & TCPCB_FLAG_ACK)) 714fc6415bcSDavid S. Miller tcp_event_ack_sent(sk, tcp_skb_pcount(skb)); 7151da177e4SLinus Torvalds 7161da177e4SLinus Torvalds if (skb->len != tcp_header_size) 7171da177e4SLinus Torvalds tcp_event_data_sent(tp, skb, sk); 7181da177e4SLinus Torvalds 719bd37a088SWei Yongjun if (after(tcb->end_seq, tp->snd_nxt) || tcb->seq == tcb->end_seq) 72081cc8a75SPavel Emelyanov TCP_INC_STATS(sock_net(sk), TCP_MIB_OUTSEGS); 7211da177e4SLinus Torvalds 722e89862f4SDavid S. Miller err = icsk->icsk_af_ops->queue_xmit(skb, 0); 72383de47cdSHua Zhong if (likely(err <= 0)) 7241da177e4SLinus Torvalds return err; 7251da177e4SLinus Torvalds 7263cfe3baaSIlpo Järvinen tcp_enter_cwr(sk, 1); 7271da177e4SLinus Torvalds 728b9df3cb8SGerrit Renker return net_xmit_eval(err); 7291da177e4SLinus Torvalds } 7301da177e4SLinus Torvalds 73167edfef7SAndi Kleen /* This routine just queues the buffer for sending. 7321da177e4SLinus Torvalds * 7331da177e4SLinus Torvalds * NOTE: probe0 timer is not checked, do not forget tcp_push_pending_frames, 7341da177e4SLinus Torvalds * otherwise socket can stall. 7351da177e4SLinus Torvalds */ 7361da177e4SLinus Torvalds static void tcp_queue_skb(struct sock *sk, struct sk_buff *skb) 7371da177e4SLinus Torvalds { 7381da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 7391da177e4SLinus Torvalds 7401da177e4SLinus Torvalds /* Advance write_seq and place onto the write_queue. */ 7411da177e4SLinus Torvalds tp->write_seq = TCP_SKB_CB(skb)->end_seq; 7421da177e4SLinus Torvalds skb_header_release(skb); 743fe067e8aSDavid S. Miller tcp_add_write_queue_tail(sk, skb); 7443ab224beSHideo Aoki sk->sk_wmem_queued += skb->truesize; 7453ab224beSHideo Aoki sk_mem_charge(sk, skb->truesize); 7461da177e4SLinus Torvalds } 7471da177e4SLinus Torvalds 74867edfef7SAndi Kleen /* Initialize TSO segments for a packet. */ 749056834d9SIlpo Järvinen static void tcp_set_skb_tso_segs(struct sock *sk, struct sk_buff *skb, 750056834d9SIlpo Järvinen unsigned int mss_now) 751f6302d1dSDavid S. Miller { 7528e5b9ddaSHerbert Xu if (skb->len <= mss_now || !sk_can_gso(sk) || 7538e5b9ddaSHerbert Xu skb->ip_summed == CHECKSUM_NONE) { 754f6302d1dSDavid S. Miller /* Avoid the costly divide in the normal 755f6302d1dSDavid S. Miller * non-TSO case. 756f6302d1dSDavid S. Miller */ 7577967168cSHerbert Xu skb_shinfo(skb)->gso_segs = 1; 7587967168cSHerbert Xu skb_shinfo(skb)->gso_size = 0; 7597967168cSHerbert Xu skb_shinfo(skb)->gso_type = 0; 760f6302d1dSDavid S. Miller } else { 761356f89e1SIlpo Järvinen skb_shinfo(skb)->gso_segs = DIV_ROUND_UP(skb->len, mss_now); 7627967168cSHerbert Xu skb_shinfo(skb)->gso_size = mss_now; 763bcd76111SHerbert Xu skb_shinfo(skb)->gso_type = sk->sk_gso_type; 7641da177e4SLinus Torvalds } 7651da177e4SLinus Torvalds } 7661da177e4SLinus Torvalds 76791fed7a1SIlpo Järvinen /* When a modification to fackets out becomes necessary, we need to check 76868f8353bSIlpo Järvinen * skb is counted to fackets_out or not. 76991fed7a1SIlpo Järvinen */ 770a47e5a98SIlpo Järvinen static void tcp_adjust_fackets_out(struct sock *sk, struct sk_buff *skb, 77191fed7a1SIlpo Järvinen int decr) 77291fed7a1SIlpo Järvinen { 773a47e5a98SIlpo Järvinen struct tcp_sock *tp = tcp_sk(sk); 774a47e5a98SIlpo Järvinen 775dc86967bSIlpo Järvinen if (!tp->sacked_out || tcp_is_reno(tp)) 77691fed7a1SIlpo Järvinen return; 77791fed7a1SIlpo Järvinen 7786859d494SIlpo Järvinen if (after(tcp_highest_sack_seq(tp), TCP_SKB_CB(skb)->seq)) 77991fed7a1SIlpo Järvinen tp->fackets_out -= decr; 78091fed7a1SIlpo Järvinen } 78191fed7a1SIlpo Järvinen 782797108d1SIlpo Järvinen /* Pcount in the middle of the write queue got changed, we need to do various 783797108d1SIlpo Järvinen * tweaks to fix counters 784797108d1SIlpo Järvinen */ 785797108d1SIlpo Järvinen static void tcp_adjust_pcount(struct sock *sk, struct sk_buff *skb, int decr) 786797108d1SIlpo Järvinen { 787797108d1SIlpo Järvinen struct tcp_sock *tp = tcp_sk(sk); 788797108d1SIlpo Järvinen 789797108d1SIlpo Järvinen tp->packets_out -= decr; 790797108d1SIlpo Järvinen 791797108d1SIlpo Järvinen if (TCP_SKB_CB(skb)->sacked & TCPCB_SACKED_ACKED) 792797108d1SIlpo Järvinen tp->sacked_out -= decr; 793797108d1SIlpo Järvinen if (TCP_SKB_CB(skb)->sacked & TCPCB_SACKED_RETRANS) 794797108d1SIlpo Järvinen tp->retrans_out -= decr; 795797108d1SIlpo Järvinen if (TCP_SKB_CB(skb)->sacked & TCPCB_LOST) 796797108d1SIlpo Järvinen tp->lost_out -= decr; 797797108d1SIlpo Järvinen 798797108d1SIlpo Järvinen /* Reno case is special. Sigh... */ 799797108d1SIlpo Järvinen if (tcp_is_reno(tp) && decr > 0) 800797108d1SIlpo Järvinen tp->sacked_out -= min_t(u32, tp->sacked_out, decr); 801797108d1SIlpo Järvinen 802797108d1SIlpo Järvinen tcp_adjust_fackets_out(sk, skb, decr); 803797108d1SIlpo Järvinen 804797108d1SIlpo Järvinen if (tp->lost_skb_hint && 805797108d1SIlpo Järvinen before(TCP_SKB_CB(skb)->seq, TCP_SKB_CB(tp->lost_skb_hint)->seq) && 80652cf3cc8SIlpo Järvinen (tcp_is_fack(tp) || (TCP_SKB_CB(skb)->sacked & TCPCB_SACKED_ACKED))) 807797108d1SIlpo Järvinen tp->lost_cnt_hint -= decr; 808797108d1SIlpo Järvinen 809797108d1SIlpo Järvinen tcp_verify_left_out(tp); 810797108d1SIlpo Järvinen } 811797108d1SIlpo Järvinen 8121da177e4SLinus Torvalds /* Function to create two new TCP segments. Shrinks the given segment 8131da177e4SLinus Torvalds * to the specified size and appends a new segment with the rest of the 8141da177e4SLinus Torvalds * packet to the list. This won't be called frequently, I hope. 8151da177e4SLinus Torvalds * Remember, these are still headerless SKBs at this point. 8161da177e4SLinus Torvalds */ 817056834d9SIlpo Järvinen int tcp_fragment(struct sock *sk, struct sk_buff *skb, u32 len, 818056834d9SIlpo Järvinen unsigned int mss_now) 8191da177e4SLinus Torvalds { 8201da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 8211da177e4SLinus Torvalds struct sk_buff *buff; 8226475be16SDavid S. Miller int nsize, old_factor; 823b60b49eaSHerbert Xu int nlen; 8249ce01461SIlpo Järvinen u8 flags; 8251da177e4SLinus Torvalds 826b2cc99f0SHerbert Xu BUG_ON(len > skb->len); 8276a438bbeSStephen Hemminger 8281da177e4SLinus Torvalds nsize = skb_headlen(skb) - len; 8291da177e4SLinus Torvalds if (nsize < 0) 8301da177e4SLinus Torvalds nsize = 0; 8311da177e4SLinus Torvalds 8321da177e4SLinus Torvalds if (skb_cloned(skb) && 8331da177e4SLinus Torvalds skb_is_nonlinear(skb) && 8341da177e4SLinus Torvalds pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) 8351da177e4SLinus Torvalds return -ENOMEM; 8361da177e4SLinus Torvalds 8371da177e4SLinus Torvalds /* Get a new skb... force flag on. */ 8381da177e4SLinus Torvalds buff = sk_stream_alloc_skb(sk, nsize, GFP_ATOMIC); 8391da177e4SLinus Torvalds if (buff == NULL) 8401da177e4SLinus Torvalds return -ENOMEM; /* We'll just try again later. */ 841ef5cb973SHerbert Xu 8423ab224beSHideo Aoki sk->sk_wmem_queued += buff->truesize; 8433ab224beSHideo Aoki sk_mem_charge(sk, buff->truesize); 844b60b49eaSHerbert Xu nlen = skb->len - len - nsize; 845b60b49eaSHerbert Xu buff->truesize += nlen; 846b60b49eaSHerbert Xu skb->truesize -= nlen; 8471da177e4SLinus Torvalds 8481da177e4SLinus Torvalds /* Correct the sequence numbers. */ 8491da177e4SLinus Torvalds TCP_SKB_CB(buff)->seq = TCP_SKB_CB(skb)->seq + len; 8501da177e4SLinus Torvalds TCP_SKB_CB(buff)->end_seq = TCP_SKB_CB(skb)->end_seq; 8511da177e4SLinus Torvalds TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(buff)->seq; 8521da177e4SLinus Torvalds 8531da177e4SLinus Torvalds /* PSH and FIN should only be set in the second packet. */ 8541da177e4SLinus Torvalds flags = TCP_SKB_CB(skb)->flags; 8551da177e4SLinus Torvalds TCP_SKB_CB(skb)->flags = flags & ~(TCPCB_FLAG_FIN | TCPCB_FLAG_PSH); 8561da177e4SLinus Torvalds TCP_SKB_CB(buff)->flags = flags; 857e14c3cafSHerbert Xu TCP_SKB_CB(buff)->sacked = TCP_SKB_CB(skb)->sacked; 8581da177e4SLinus Torvalds 85984fa7933SPatrick McHardy if (!skb_shinfo(skb)->nr_frags && skb->ip_summed != CHECKSUM_PARTIAL) { 8601da177e4SLinus Torvalds /* Copy and checksum data tail into the new buffer. */ 861056834d9SIlpo Järvinen buff->csum = csum_partial_copy_nocheck(skb->data + len, 862056834d9SIlpo Järvinen skb_put(buff, nsize), 8631da177e4SLinus Torvalds nsize, 0); 8641da177e4SLinus Torvalds 8651da177e4SLinus Torvalds skb_trim(skb, len); 8661da177e4SLinus Torvalds 8671da177e4SLinus Torvalds skb->csum = csum_block_sub(skb->csum, buff->csum, len); 8681da177e4SLinus Torvalds } else { 86984fa7933SPatrick McHardy skb->ip_summed = CHECKSUM_PARTIAL; 8701da177e4SLinus Torvalds skb_split(skb, buff, len); 8711da177e4SLinus Torvalds } 8721da177e4SLinus Torvalds 8731da177e4SLinus Torvalds buff->ip_summed = skb->ip_summed; 8741da177e4SLinus Torvalds 8751da177e4SLinus Torvalds /* Looks stupid, but our code really uses when of 8761da177e4SLinus Torvalds * skbs, which it never sent before. --ANK 8771da177e4SLinus Torvalds */ 8781da177e4SLinus Torvalds TCP_SKB_CB(buff)->when = TCP_SKB_CB(skb)->when; 879a61bbcf2SPatrick McHardy buff->tstamp = skb->tstamp; 8801da177e4SLinus Torvalds 8816475be16SDavid S. Miller old_factor = tcp_skb_pcount(skb); 8826475be16SDavid S. Miller 8831da177e4SLinus Torvalds /* Fix up tso_factor for both original and new SKB. */ 884846998aeSDavid S. Miller tcp_set_skb_tso_segs(sk, skb, mss_now); 885846998aeSDavid S. Miller tcp_set_skb_tso_segs(sk, buff, mss_now); 8861da177e4SLinus Torvalds 8876475be16SDavid S. Miller /* If this packet has been sent out already, we must 8886475be16SDavid S. Miller * adjust the various packet counters. 8896475be16SDavid S. Miller */ 890cf0b450cSHerbert Xu if (!before(tp->snd_nxt, TCP_SKB_CB(buff)->end_seq)) { 8916475be16SDavid S. Miller int diff = old_factor - tcp_skb_pcount(skb) - 8926475be16SDavid S. Miller tcp_skb_pcount(buff); 8931da177e4SLinus Torvalds 894797108d1SIlpo Järvinen if (diff) 895797108d1SIlpo Järvinen tcp_adjust_pcount(sk, skb, diff); 8961da177e4SLinus Torvalds } 8971da177e4SLinus Torvalds 8981da177e4SLinus Torvalds /* Link BUFF into the send queue. */ 899f44b5271SDavid S. Miller skb_header_release(buff); 900fe067e8aSDavid S. Miller tcp_insert_write_queue_after(skb, buff, sk); 9011da177e4SLinus Torvalds 9021da177e4SLinus Torvalds return 0; 9031da177e4SLinus Torvalds } 9041da177e4SLinus Torvalds 9051da177e4SLinus Torvalds /* This is similar to __pskb_pull_head() (it will go to core/skbuff.c 9061da177e4SLinus Torvalds * eventually). The difference is that pulled data not copied, but 9071da177e4SLinus Torvalds * immediately discarded. 9081da177e4SLinus Torvalds */ 909f2911969SHerbert Xu ~{PmVHI~} static void __pskb_trim_head(struct sk_buff *skb, int len) 9101da177e4SLinus Torvalds { 9111da177e4SLinus Torvalds int i, k, eat; 9121da177e4SLinus Torvalds 9131da177e4SLinus Torvalds eat = len; 9141da177e4SLinus Torvalds k = 0; 9151da177e4SLinus Torvalds for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) { 9161da177e4SLinus Torvalds if (skb_shinfo(skb)->frags[i].size <= eat) { 9171da177e4SLinus Torvalds put_page(skb_shinfo(skb)->frags[i].page); 9181da177e4SLinus Torvalds eat -= skb_shinfo(skb)->frags[i].size; 9191da177e4SLinus Torvalds } else { 9201da177e4SLinus Torvalds skb_shinfo(skb)->frags[k] = skb_shinfo(skb)->frags[i]; 9211da177e4SLinus Torvalds if (eat) { 9221da177e4SLinus Torvalds skb_shinfo(skb)->frags[k].page_offset += eat; 9231da177e4SLinus Torvalds skb_shinfo(skb)->frags[k].size -= eat; 9241da177e4SLinus Torvalds eat = 0; 9251da177e4SLinus Torvalds } 9261da177e4SLinus Torvalds k++; 9271da177e4SLinus Torvalds } 9281da177e4SLinus Torvalds } 9291da177e4SLinus Torvalds skb_shinfo(skb)->nr_frags = k; 9301da177e4SLinus Torvalds 93127a884dcSArnaldo Carvalho de Melo skb_reset_tail_pointer(skb); 9321da177e4SLinus Torvalds skb->data_len -= len; 9331da177e4SLinus Torvalds skb->len = skb->data_len; 9341da177e4SLinus Torvalds } 9351da177e4SLinus Torvalds 93667edfef7SAndi Kleen /* Remove acked data from a packet in the transmit queue. */ 9371da177e4SLinus Torvalds int tcp_trim_head(struct sock *sk, struct sk_buff *skb, u32 len) 9381da177e4SLinus Torvalds { 939056834d9SIlpo Järvinen if (skb_cloned(skb) && pskb_expand_head(skb, 0, 0, GFP_ATOMIC)) 9401da177e4SLinus Torvalds return -ENOMEM; 9411da177e4SLinus Torvalds 942f2911969SHerbert Xu ~{PmVHI~} /* If len == headlen, we avoid __skb_pull to preserve alignment. */ 943f2911969SHerbert Xu ~{PmVHI~} if (unlikely(len < skb_headlen(skb))) 9441da177e4SLinus Torvalds __skb_pull(skb, len); 945f2911969SHerbert Xu ~{PmVHI~} else 946f2911969SHerbert Xu ~{PmVHI~} __pskb_trim_head(skb, len - skb_headlen(skb)); 9471da177e4SLinus Torvalds 9481da177e4SLinus Torvalds TCP_SKB_CB(skb)->seq += len; 94984fa7933SPatrick McHardy skb->ip_summed = CHECKSUM_PARTIAL; 9501da177e4SLinus Torvalds 9511da177e4SLinus Torvalds skb->truesize -= len; 9521da177e4SLinus Torvalds sk->sk_wmem_queued -= len; 9533ab224beSHideo Aoki sk_mem_uncharge(sk, len); 9541da177e4SLinus Torvalds sock_set_flag(sk, SOCK_QUEUE_SHRUNK); 9551da177e4SLinus Torvalds 9561da177e4SLinus Torvalds /* Any change of skb->len requires recalculation of tso 9571da177e4SLinus Torvalds * factor and mss. 9581da177e4SLinus Torvalds */ 9591da177e4SLinus Torvalds if (tcp_skb_pcount(skb) > 1) 9600c54b85fSIlpo Järvinen tcp_set_skb_tso_segs(sk, skb, tcp_current_mss(sk)); 9611da177e4SLinus Torvalds 9621da177e4SLinus Torvalds return 0; 9631da177e4SLinus Torvalds } 9641da177e4SLinus Torvalds 96567edfef7SAndi Kleen /* Calculate MSS. Not accounting for SACKs here. */ 9665d424d5aSJohn Heffner int tcp_mtu_to_mss(struct sock *sk, int pmtu) 9675d424d5aSJohn Heffner { 9685d424d5aSJohn Heffner struct tcp_sock *tp = tcp_sk(sk); 9695d424d5aSJohn Heffner struct inet_connection_sock *icsk = inet_csk(sk); 9705d424d5aSJohn Heffner int mss_now; 9715d424d5aSJohn Heffner 9725d424d5aSJohn Heffner /* Calculate base mss without TCP options: 9735d424d5aSJohn Heffner It is MMS_S - sizeof(tcphdr) of rfc1122 9745d424d5aSJohn Heffner */ 9755d424d5aSJohn Heffner mss_now = pmtu - icsk->icsk_af_ops->net_header_len - sizeof(struct tcphdr); 9765d424d5aSJohn Heffner 9775d424d5aSJohn Heffner /* Clamp it (mss_clamp does not include tcp options) */ 9785d424d5aSJohn Heffner if (mss_now > tp->rx_opt.mss_clamp) 9795d424d5aSJohn Heffner mss_now = tp->rx_opt.mss_clamp; 9805d424d5aSJohn Heffner 9815d424d5aSJohn Heffner /* Now subtract optional transport overhead */ 9825d424d5aSJohn Heffner mss_now -= icsk->icsk_ext_hdr_len; 9835d424d5aSJohn Heffner 9845d424d5aSJohn Heffner /* Then reserve room for full set of TCP options and 8 bytes of data */ 9855d424d5aSJohn Heffner if (mss_now < 48) 9865d424d5aSJohn Heffner mss_now = 48; 9875d424d5aSJohn Heffner 9885d424d5aSJohn Heffner /* Now subtract TCP options size, not including SACKs */ 9895d424d5aSJohn Heffner mss_now -= tp->tcp_header_len - sizeof(struct tcphdr); 9905d424d5aSJohn Heffner 9915d424d5aSJohn Heffner return mss_now; 9925d424d5aSJohn Heffner } 9935d424d5aSJohn Heffner 9945d424d5aSJohn Heffner /* Inverse of above */ 9955d424d5aSJohn Heffner int tcp_mss_to_mtu(struct sock *sk, int mss) 9965d424d5aSJohn Heffner { 9975d424d5aSJohn Heffner struct tcp_sock *tp = tcp_sk(sk); 9985d424d5aSJohn Heffner struct inet_connection_sock *icsk = inet_csk(sk); 9995d424d5aSJohn Heffner int mtu; 10005d424d5aSJohn Heffner 10015d424d5aSJohn Heffner mtu = mss + 10025d424d5aSJohn Heffner tp->tcp_header_len + 10035d424d5aSJohn Heffner icsk->icsk_ext_hdr_len + 10045d424d5aSJohn Heffner icsk->icsk_af_ops->net_header_len; 10055d424d5aSJohn Heffner 10065d424d5aSJohn Heffner return mtu; 10075d424d5aSJohn Heffner } 10085d424d5aSJohn Heffner 100967edfef7SAndi Kleen /* MTU probing init per socket */ 10105d424d5aSJohn Heffner void tcp_mtup_init(struct sock *sk) 10115d424d5aSJohn Heffner { 10125d424d5aSJohn Heffner struct tcp_sock *tp = tcp_sk(sk); 10135d424d5aSJohn Heffner struct inet_connection_sock *icsk = inet_csk(sk); 10145d424d5aSJohn Heffner 10155d424d5aSJohn Heffner icsk->icsk_mtup.enabled = sysctl_tcp_mtu_probing > 1; 10165d424d5aSJohn Heffner icsk->icsk_mtup.search_high = tp->rx_opt.mss_clamp + sizeof(struct tcphdr) + 10175d424d5aSJohn Heffner icsk->icsk_af_ops->net_header_len; 10185d424d5aSJohn Heffner icsk->icsk_mtup.search_low = tcp_mss_to_mtu(sk, sysctl_tcp_base_mss); 10195d424d5aSJohn Heffner icsk->icsk_mtup.probe_size = 0; 10205d424d5aSJohn Heffner } 10215d424d5aSJohn Heffner 10221da177e4SLinus Torvalds /* This function synchronize snd mss to current pmtu/exthdr set. 10231da177e4SLinus Torvalds 10241da177e4SLinus Torvalds tp->rx_opt.user_mss is mss set by user by TCP_MAXSEG. It does NOT counts 10251da177e4SLinus Torvalds for TCP options, but includes only bare TCP header. 10261da177e4SLinus Torvalds 10271da177e4SLinus Torvalds tp->rx_opt.mss_clamp is mss negotiated at connection setup. 1028caa20d9aSStephen Hemminger It is minimum of user_mss and mss received with SYN. 10291da177e4SLinus Torvalds It also does not include TCP options. 10301da177e4SLinus Torvalds 1031d83d8461SArnaldo Carvalho de Melo inet_csk(sk)->icsk_pmtu_cookie is last pmtu, seen by this function. 10321da177e4SLinus Torvalds 10331da177e4SLinus Torvalds tp->mss_cache is current effective sending mss, including 10341da177e4SLinus Torvalds all tcp options except for SACKs. It is evaluated, 10351da177e4SLinus Torvalds taking into account current pmtu, but never exceeds 10361da177e4SLinus Torvalds tp->rx_opt.mss_clamp. 10371da177e4SLinus Torvalds 10381da177e4SLinus Torvalds NOTE1. rfc1122 clearly states that advertised MSS 10391da177e4SLinus Torvalds DOES NOT include either tcp or ip options. 10401da177e4SLinus Torvalds 1041d83d8461SArnaldo Carvalho de Melo NOTE2. inet_csk(sk)->icsk_pmtu_cookie and tp->mss_cache 1042d83d8461SArnaldo Carvalho de Melo are READ ONLY outside this function. --ANK (980731) 10431da177e4SLinus Torvalds */ 10441da177e4SLinus Torvalds unsigned int tcp_sync_mss(struct sock *sk, u32 pmtu) 10451da177e4SLinus Torvalds { 10461da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 1047d83d8461SArnaldo Carvalho de Melo struct inet_connection_sock *icsk = inet_csk(sk); 10485d424d5aSJohn Heffner int mss_now; 10491da177e4SLinus Torvalds 10505d424d5aSJohn Heffner if (icsk->icsk_mtup.search_high > pmtu) 10515d424d5aSJohn Heffner icsk->icsk_mtup.search_high = pmtu; 10521da177e4SLinus Torvalds 10535d424d5aSJohn Heffner mss_now = tcp_mtu_to_mss(sk, pmtu); 1054409d22b4SIlpo Järvinen mss_now = tcp_bound_to_half_wnd(tp, mss_now); 10551da177e4SLinus Torvalds 10561da177e4SLinus Torvalds /* And store cached results */ 1057d83d8461SArnaldo Carvalho de Melo icsk->icsk_pmtu_cookie = pmtu; 10585d424d5aSJohn Heffner if (icsk->icsk_mtup.enabled) 10595d424d5aSJohn Heffner mss_now = min(mss_now, tcp_mtu_to_mss(sk, icsk->icsk_mtup.search_low)); 1060c1b4a7e6SDavid S. Miller tp->mss_cache = mss_now; 10611da177e4SLinus Torvalds 10621da177e4SLinus Torvalds return mss_now; 10631da177e4SLinus Torvalds } 10641da177e4SLinus Torvalds 10651da177e4SLinus Torvalds /* Compute the current effective MSS, taking SACKs and IP options, 10661da177e4SLinus Torvalds * and even PMTU discovery events into account. 10671da177e4SLinus Torvalds */ 10680c54b85fSIlpo Järvinen unsigned int tcp_current_mss(struct sock *sk) 10691da177e4SLinus Torvalds { 10701da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 10711da177e4SLinus Torvalds struct dst_entry *dst = __sk_dst_get(sk); 1072c1b4a7e6SDavid S. Miller u32 mss_now; 107333ad798cSAdam Langley unsigned header_len; 107433ad798cSAdam Langley struct tcp_out_options opts; 107533ad798cSAdam Langley struct tcp_md5sig_key *md5; 10761da177e4SLinus Torvalds 1077c1b4a7e6SDavid S. Miller mss_now = tp->mss_cache; 1078c1b4a7e6SDavid S. Miller 10791da177e4SLinus Torvalds if (dst) { 10801da177e4SLinus Torvalds u32 mtu = dst_mtu(dst); 1081d83d8461SArnaldo Carvalho de Melo if (mtu != inet_csk(sk)->icsk_pmtu_cookie) 10821da177e4SLinus Torvalds mss_now = tcp_sync_mss(sk, mtu); 10831da177e4SLinus Torvalds } 10841da177e4SLinus Torvalds 108533ad798cSAdam Langley header_len = tcp_established_options(sk, NULL, &opts, &md5) + 108633ad798cSAdam Langley sizeof(struct tcphdr); 108733ad798cSAdam Langley /* The mss_cache is sized based on tp->tcp_header_len, which assumes 108833ad798cSAdam Langley * some common options. If this is an odd packet (because we have SACK 108933ad798cSAdam Langley * blocks etc) then our calculated header_len will be different, and 109033ad798cSAdam Langley * we have to adjust mss_now correspondingly */ 109133ad798cSAdam Langley if (header_len != tp->tcp_header_len) { 109233ad798cSAdam Langley int delta = (int) header_len - tp->tcp_header_len; 109333ad798cSAdam Langley mss_now -= delta; 109433ad798cSAdam Langley } 1095cfb6eeb4SYOSHIFUJI Hideaki 10961da177e4SLinus Torvalds return mss_now; 10971da177e4SLinus Torvalds } 10981da177e4SLinus Torvalds 1099a762a980SDavid S. Miller /* Congestion window validation. (RFC2861) */ 11009e412ba7SIlpo Järvinen static void tcp_cwnd_validate(struct sock *sk) 1101a762a980SDavid S. Miller { 11029e412ba7SIlpo Järvinen struct tcp_sock *tp = tcp_sk(sk); 1103a762a980SDavid S. Miller 1104d436d686SIlpo Järvinen if (tp->packets_out >= tp->snd_cwnd) { 1105a762a980SDavid S. Miller /* Network is feed fully. */ 1106a762a980SDavid S. Miller tp->snd_cwnd_used = 0; 1107a762a980SDavid S. Miller tp->snd_cwnd_stamp = tcp_time_stamp; 1108a762a980SDavid S. Miller } else { 1109a762a980SDavid S. Miller /* Network starves. */ 1110a762a980SDavid S. Miller if (tp->packets_out > tp->snd_cwnd_used) 1111a762a980SDavid S. Miller tp->snd_cwnd_used = tp->packets_out; 1112a762a980SDavid S. Miller 111315d33c07SDavid S. Miller if (sysctl_tcp_slow_start_after_idle && 111415d33c07SDavid S. Miller (s32)(tcp_time_stamp - tp->snd_cwnd_stamp) >= inet_csk(sk)->icsk_rto) 1115a762a980SDavid S. Miller tcp_cwnd_application_limited(sk); 1116a762a980SDavid S. Miller } 1117a762a980SDavid S. Miller } 1118a762a980SDavid S. Miller 11190e3a4803SIlpo Järvinen /* Returns the portion of skb which can be sent right away without 11200e3a4803SIlpo Järvinen * introducing MSS oddities to segment boundaries. In rare cases where 11210e3a4803SIlpo Järvinen * mss_now != mss_cache, we will request caller to create a small skb 11220e3a4803SIlpo Järvinen * per input skb which could be mostly avoided here (if desired). 11235ea3a748SIlpo Järvinen * 11245ea3a748SIlpo Järvinen * We explicitly want to create a request for splitting write queue tail 11255ea3a748SIlpo Järvinen * to a small skb for Nagle purposes while avoiding unnecessary modulos, 11265ea3a748SIlpo Järvinen * thus all the complexity (cwnd_len is always MSS multiple which we 11275ea3a748SIlpo Järvinen * return whenever allowed by the other factors). Basically we need the 11285ea3a748SIlpo Järvinen * modulo only when the receiver window alone is the limiting factor or 11295ea3a748SIlpo Järvinen * when we would be allowed to send the split-due-to-Nagle skb fully. 11300e3a4803SIlpo Järvinen */ 11310e3a4803SIlpo Järvinen static unsigned int tcp_mss_split_point(struct sock *sk, struct sk_buff *skb, 1132056834d9SIlpo Järvinen unsigned int mss_now, unsigned int cwnd) 1133c1b4a7e6SDavid S. Miller { 11340e3a4803SIlpo Järvinen struct tcp_sock *tp = tcp_sk(sk); 11350e3a4803SIlpo Järvinen u32 needed, window, cwnd_len; 1136c1b4a7e6SDavid S. Miller 113790840defSIlpo Järvinen window = tcp_wnd_end(tp) - TCP_SKB_CB(skb)->seq; 1138c1b4a7e6SDavid S. Miller cwnd_len = mss_now * cwnd; 11390e3a4803SIlpo Järvinen 11400e3a4803SIlpo Järvinen if (likely(cwnd_len <= window && skb != tcp_write_queue_tail(sk))) 11410e3a4803SIlpo Järvinen return cwnd_len; 11420e3a4803SIlpo Järvinen 11435ea3a748SIlpo Järvinen needed = min(skb->len, window); 11445ea3a748SIlpo Järvinen 114517515408SIlpo Järvinen if (cwnd_len <= needed) 11460e3a4803SIlpo Järvinen return cwnd_len; 11470e3a4803SIlpo Järvinen 11480e3a4803SIlpo Järvinen return needed - needed % mss_now; 1149c1b4a7e6SDavid S. Miller } 1150c1b4a7e6SDavid S. Miller 1151c1b4a7e6SDavid S. Miller /* Can at least one segment of SKB be sent right now, according to the 1152c1b4a7e6SDavid S. Miller * congestion window rules? If so, return how many segments are allowed. 1153c1b4a7e6SDavid S. Miller */ 1154056834d9SIlpo Järvinen static inline unsigned int tcp_cwnd_test(struct tcp_sock *tp, 1155056834d9SIlpo Järvinen struct sk_buff *skb) 1156c1b4a7e6SDavid S. Miller { 1157c1b4a7e6SDavid S. Miller u32 in_flight, cwnd; 1158c1b4a7e6SDavid S. Miller 1159c1b4a7e6SDavid S. Miller /* Don't be strict about the congestion window for the final FIN. */ 1160104439a8SJohn Heffner if ((TCP_SKB_CB(skb)->flags & TCPCB_FLAG_FIN) && 1161104439a8SJohn Heffner tcp_skb_pcount(skb) == 1) 1162c1b4a7e6SDavid S. Miller return 1; 1163c1b4a7e6SDavid S. Miller 1164c1b4a7e6SDavid S. Miller in_flight = tcp_packets_in_flight(tp); 1165c1b4a7e6SDavid S. Miller cwnd = tp->snd_cwnd; 1166c1b4a7e6SDavid S. Miller if (in_flight < cwnd) 1167c1b4a7e6SDavid S. Miller return (cwnd - in_flight); 1168c1b4a7e6SDavid S. Miller 1169c1b4a7e6SDavid S. Miller return 0; 1170c1b4a7e6SDavid S. Miller } 1171c1b4a7e6SDavid S. Miller 117267edfef7SAndi Kleen /* Intialize TSO state of a skb. 117367edfef7SAndi Kleen * This must be invoked the first time we consider transmitting 1174c1b4a7e6SDavid S. Miller * SKB onto the wire. 1175c1b4a7e6SDavid S. Miller */ 1176056834d9SIlpo Järvinen static int tcp_init_tso_segs(struct sock *sk, struct sk_buff *skb, 1177056834d9SIlpo Järvinen unsigned int mss_now) 1178c1b4a7e6SDavid S. Miller { 1179c1b4a7e6SDavid S. Miller int tso_segs = tcp_skb_pcount(skb); 1180c1b4a7e6SDavid S. Miller 1181f8269a49SIlpo Järvinen if (!tso_segs || (tso_segs > 1 && tcp_skb_mss(skb) != mss_now)) { 1182846998aeSDavid S. Miller tcp_set_skb_tso_segs(sk, skb, mss_now); 1183c1b4a7e6SDavid S. Miller tso_segs = tcp_skb_pcount(skb); 1184c1b4a7e6SDavid S. Miller } 1185c1b4a7e6SDavid S. Miller return tso_segs; 1186c1b4a7e6SDavid S. Miller } 1187c1b4a7e6SDavid S. Miller 118867edfef7SAndi Kleen /* Minshall's variant of the Nagle send check. */ 1189c1b4a7e6SDavid S. Miller static inline int tcp_minshall_check(const struct tcp_sock *tp) 1190c1b4a7e6SDavid S. Miller { 1191c1b4a7e6SDavid S. Miller return after(tp->snd_sml, tp->snd_una) && 1192c1b4a7e6SDavid S. Miller !after(tp->snd_sml, tp->snd_nxt); 1193c1b4a7e6SDavid S. Miller } 1194c1b4a7e6SDavid S. Miller 1195c1b4a7e6SDavid S. Miller /* Return 0, if packet can be sent now without violation Nagle's rules: 1196c1b4a7e6SDavid S. Miller * 1. It is full sized. 1197c1b4a7e6SDavid S. Miller * 2. Or it contains FIN. (already checked by caller) 1198c1b4a7e6SDavid S. Miller * 3. Or TCP_NODELAY was set. 1199c1b4a7e6SDavid S. Miller * 4. Or TCP_CORK is not set, and all sent packets are ACKed. 1200c1b4a7e6SDavid S. Miller * With Minshall's modification: all sent small packets are ACKed. 1201c1b4a7e6SDavid S. Miller */ 1202c1b4a7e6SDavid S. Miller static inline int tcp_nagle_check(const struct tcp_sock *tp, 1203c1b4a7e6SDavid S. Miller const struct sk_buff *skb, 1204c1b4a7e6SDavid S. Miller unsigned mss_now, int nonagle) 1205c1b4a7e6SDavid S. Miller { 1206c1b4a7e6SDavid S. Miller return (skb->len < mss_now && 1207c1b4a7e6SDavid S. Miller ((nonagle & TCP_NAGLE_CORK) || 1208056834d9SIlpo Järvinen (!nonagle && tp->packets_out && tcp_minshall_check(tp)))); 1209c1b4a7e6SDavid S. Miller } 1210c1b4a7e6SDavid S. Miller 1211c1b4a7e6SDavid S. Miller /* Return non-zero if the Nagle test allows this packet to be 1212c1b4a7e6SDavid S. Miller * sent now. 1213c1b4a7e6SDavid S. Miller */ 1214c1b4a7e6SDavid S. Miller static inline int tcp_nagle_test(struct tcp_sock *tp, struct sk_buff *skb, 1215c1b4a7e6SDavid S. Miller unsigned int cur_mss, int nonagle) 1216c1b4a7e6SDavid S. Miller { 1217c1b4a7e6SDavid S. Miller /* Nagle rule does not apply to frames, which sit in the middle of the 1218c1b4a7e6SDavid S. Miller * write_queue (they have no chances to get new data). 1219c1b4a7e6SDavid S. Miller * 1220c1b4a7e6SDavid S. Miller * This is implemented in the callers, where they modify the 'nonagle' 1221c1b4a7e6SDavid S. Miller * argument based upon the location of SKB in the send queue. 1222c1b4a7e6SDavid S. Miller */ 1223c1b4a7e6SDavid S. Miller if (nonagle & TCP_NAGLE_PUSH) 1224c1b4a7e6SDavid S. Miller return 1; 1225c1b4a7e6SDavid S. Miller 1226d551e454SIlpo Järvinen /* Don't use the nagle rule for urgent data (or for the final FIN). 1227d551e454SIlpo Järvinen * Nagle can be ignored during F-RTO too (see RFC4138). 1228d551e454SIlpo Järvinen */ 122933f5f57eSIlpo Järvinen if (tcp_urg_mode(tp) || (tp->frto_counter == 2) || 1230c1b4a7e6SDavid S. Miller (TCP_SKB_CB(skb)->flags & TCPCB_FLAG_FIN)) 1231c1b4a7e6SDavid S. Miller return 1; 1232c1b4a7e6SDavid S. Miller 1233c1b4a7e6SDavid S. Miller if (!tcp_nagle_check(tp, skb, cur_mss, nonagle)) 1234c1b4a7e6SDavid S. Miller return 1; 1235c1b4a7e6SDavid S. Miller 1236c1b4a7e6SDavid S. Miller return 0; 1237c1b4a7e6SDavid S. Miller } 1238c1b4a7e6SDavid S. Miller 1239c1b4a7e6SDavid S. Miller /* Does at least the first segment of SKB fit into the send window? */ 1240056834d9SIlpo Järvinen static inline int tcp_snd_wnd_test(struct tcp_sock *tp, struct sk_buff *skb, 1241056834d9SIlpo Järvinen unsigned int cur_mss) 1242c1b4a7e6SDavid S. Miller { 1243c1b4a7e6SDavid S. Miller u32 end_seq = TCP_SKB_CB(skb)->end_seq; 1244c1b4a7e6SDavid S. Miller 1245c1b4a7e6SDavid S. Miller if (skb->len > cur_mss) 1246c1b4a7e6SDavid S. Miller end_seq = TCP_SKB_CB(skb)->seq + cur_mss; 1247c1b4a7e6SDavid S. Miller 124890840defSIlpo Järvinen return !after(end_seq, tcp_wnd_end(tp)); 1249c1b4a7e6SDavid S. Miller } 1250c1b4a7e6SDavid S. Miller 1251fe067e8aSDavid S. Miller /* This checks if the data bearing packet SKB (usually tcp_send_head(sk)) 1252c1b4a7e6SDavid S. Miller * should be put on the wire right now. If so, it returns the number of 1253c1b4a7e6SDavid S. Miller * packets allowed by the congestion window. 1254c1b4a7e6SDavid S. Miller */ 1255c1b4a7e6SDavid S. Miller static unsigned int tcp_snd_test(struct sock *sk, struct sk_buff *skb, 1256c1b4a7e6SDavid S. Miller unsigned int cur_mss, int nonagle) 1257c1b4a7e6SDavid S. Miller { 1258c1b4a7e6SDavid S. Miller struct tcp_sock *tp = tcp_sk(sk); 1259c1b4a7e6SDavid S. Miller unsigned int cwnd_quota; 1260c1b4a7e6SDavid S. Miller 1261846998aeSDavid S. Miller tcp_init_tso_segs(sk, skb, cur_mss); 1262c1b4a7e6SDavid S. Miller 1263c1b4a7e6SDavid S. Miller if (!tcp_nagle_test(tp, skb, cur_mss, nonagle)) 1264c1b4a7e6SDavid S. Miller return 0; 1265c1b4a7e6SDavid S. Miller 1266c1b4a7e6SDavid S. Miller cwnd_quota = tcp_cwnd_test(tp, skb); 1267056834d9SIlpo Järvinen if (cwnd_quota && !tcp_snd_wnd_test(tp, skb, cur_mss)) 1268c1b4a7e6SDavid S. Miller cwnd_quota = 0; 1269c1b4a7e6SDavid S. Miller 1270c1b4a7e6SDavid S. Miller return cwnd_quota; 1271c1b4a7e6SDavid S. Miller } 1272c1b4a7e6SDavid S. Miller 127367edfef7SAndi Kleen /* Test if sending is allowed right now. */ 12749e412ba7SIlpo Järvinen int tcp_may_send_now(struct sock *sk) 1275c1b4a7e6SDavid S. Miller { 12769e412ba7SIlpo Järvinen struct tcp_sock *tp = tcp_sk(sk); 1277fe067e8aSDavid S. Miller struct sk_buff *skb = tcp_send_head(sk); 1278c1b4a7e6SDavid S. Miller 1279c1b4a7e6SDavid S. Miller return (skb && 12800c54b85fSIlpo Järvinen tcp_snd_test(sk, skb, tcp_current_mss(sk), 1281c1b4a7e6SDavid S. Miller (tcp_skb_is_last(sk, skb) ? 12824e67d876SIlpo Järvinen tp->nonagle : TCP_NAGLE_PUSH))); 1283c1b4a7e6SDavid S. Miller } 1284c1b4a7e6SDavid S. Miller 1285c1b4a7e6SDavid S. Miller /* Trim TSO SKB to LEN bytes, put the remaining data into a new packet 1286c1b4a7e6SDavid S. Miller * which is put after SKB on the list. It is very much like 1287c1b4a7e6SDavid S. Miller * tcp_fragment() except that it may make several kinds of assumptions 1288c1b4a7e6SDavid S. Miller * in order to speed up the splitting operation. In particular, we 1289c1b4a7e6SDavid S. Miller * know that all the data is in scatter-gather pages, and that the 1290c1b4a7e6SDavid S. Miller * packet has never been sent out before (and thus is not cloned). 1291c1b4a7e6SDavid S. Miller */ 1292056834d9SIlpo Järvinen static int tso_fragment(struct sock *sk, struct sk_buff *skb, unsigned int len, 1293056834d9SIlpo Järvinen unsigned int mss_now) 1294c1b4a7e6SDavid S. Miller { 1295c1b4a7e6SDavid S. Miller struct sk_buff *buff; 1296c1b4a7e6SDavid S. Miller int nlen = skb->len - len; 12979ce01461SIlpo Järvinen u8 flags; 1298c1b4a7e6SDavid S. Miller 1299c1b4a7e6SDavid S. Miller /* All of a TSO frame must be composed of paged data. */ 1300c8ac3774SHerbert Xu if (skb->len != skb->data_len) 1301c8ac3774SHerbert Xu return tcp_fragment(sk, skb, len, mss_now); 1302c1b4a7e6SDavid S. Miller 1303df97c708SPavel Emelyanov buff = sk_stream_alloc_skb(sk, 0, GFP_ATOMIC); 1304c1b4a7e6SDavid S. Miller if (unlikely(buff == NULL)) 1305c1b4a7e6SDavid S. Miller return -ENOMEM; 1306c1b4a7e6SDavid S. Miller 13073ab224beSHideo Aoki sk->sk_wmem_queued += buff->truesize; 13083ab224beSHideo Aoki sk_mem_charge(sk, buff->truesize); 1309b60b49eaSHerbert Xu buff->truesize += nlen; 1310c1b4a7e6SDavid S. Miller skb->truesize -= nlen; 1311c1b4a7e6SDavid S. Miller 1312c1b4a7e6SDavid S. Miller /* Correct the sequence numbers. */ 1313c1b4a7e6SDavid S. Miller TCP_SKB_CB(buff)->seq = TCP_SKB_CB(skb)->seq + len; 1314c1b4a7e6SDavid S. Miller TCP_SKB_CB(buff)->end_seq = TCP_SKB_CB(skb)->end_seq; 1315c1b4a7e6SDavid S. Miller TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(buff)->seq; 1316c1b4a7e6SDavid S. Miller 1317c1b4a7e6SDavid S. Miller /* PSH and FIN should only be set in the second packet. */ 1318c1b4a7e6SDavid S. Miller flags = TCP_SKB_CB(skb)->flags; 1319c1b4a7e6SDavid S. Miller TCP_SKB_CB(skb)->flags = flags & ~(TCPCB_FLAG_FIN | TCPCB_FLAG_PSH); 1320c1b4a7e6SDavid S. Miller TCP_SKB_CB(buff)->flags = flags; 1321c1b4a7e6SDavid S. Miller 1322c1b4a7e6SDavid S. Miller /* This packet was never sent out yet, so no SACK bits. */ 1323c1b4a7e6SDavid S. Miller TCP_SKB_CB(buff)->sacked = 0; 1324c1b4a7e6SDavid S. Miller 132584fa7933SPatrick McHardy buff->ip_summed = skb->ip_summed = CHECKSUM_PARTIAL; 1326c1b4a7e6SDavid S. Miller skb_split(skb, buff, len); 1327c1b4a7e6SDavid S. Miller 1328c1b4a7e6SDavid S. Miller /* Fix up tso_factor for both original and new SKB. */ 1329846998aeSDavid S. Miller tcp_set_skb_tso_segs(sk, skb, mss_now); 1330846998aeSDavid S. Miller tcp_set_skb_tso_segs(sk, buff, mss_now); 1331c1b4a7e6SDavid S. Miller 1332c1b4a7e6SDavid S. Miller /* Link BUFF into the send queue. */ 1333c1b4a7e6SDavid S. Miller skb_header_release(buff); 1334fe067e8aSDavid S. Miller tcp_insert_write_queue_after(skb, buff, sk); 1335c1b4a7e6SDavid S. Miller 1336c1b4a7e6SDavid S. Miller return 0; 1337c1b4a7e6SDavid S. Miller } 1338c1b4a7e6SDavid S. Miller 1339c1b4a7e6SDavid S. Miller /* Try to defer sending, if possible, in order to minimize the amount 1340c1b4a7e6SDavid S. Miller * of TSO splitting we do. View it as a kind of TSO Nagle test. 1341c1b4a7e6SDavid S. Miller * 1342c1b4a7e6SDavid S. Miller * This algorithm is from John Heffner. 1343c1b4a7e6SDavid S. Miller */ 13449e412ba7SIlpo Järvinen static int tcp_tso_should_defer(struct sock *sk, struct sk_buff *skb) 1345c1b4a7e6SDavid S. Miller { 13469e412ba7SIlpo Järvinen struct tcp_sock *tp = tcp_sk(sk); 13476687e988SArnaldo Carvalho de Melo const struct inet_connection_sock *icsk = inet_csk(sk); 1348c1b4a7e6SDavid S. Miller u32 send_win, cong_win, limit, in_flight; 1349c1b4a7e6SDavid S. Miller 1350c1b4a7e6SDavid S. Miller if (TCP_SKB_CB(skb)->flags & TCPCB_FLAG_FIN) 1351ae8064acSJohn Heffner goto send_now; 1352c1b4a7e6SDavid S. Miller 13536687e988SArnaldo Carvalho de Melo if (icsk->icsk_ca_state != TCP_CA_Open) 1354ae8064acSJohn Heffner goto send_now; 1355ae8064acSJohn Heffner 1356ae8064acSJohn Heffner /* Defer for less than two clock ticks. */ 1357bd515c3eSIlpo Järvinen if (tp->tso_deferred && 1358a2acde07SIlpo Järvinen (((u32)jiffies << 1) >> 1) - (tp->tso_deferred >> 1) > 1) 1359ae8064acSJohn Heffner goto send_now; 1360908a75c1SDavid S. Miller 1361c1b4a7e6SDavid S. Miller in_flight = tcp_packets_in_flight(tp); 1362c1b4a7e6SDavid S. Miller 1363056834d9SIlpo Järvinen BUG_ON(tcp_skb_pcount(skb) <= 1 || (tp->snd_cwnd <= in_flight)); 1364c1b4a7e6SDavid S. Miller 136590840defSIlpo Järvinen send_win = tcp_wnd_end(tp) - TCP_SKB_CB(skb)->seq; 1366c1b4a7e6SDavid S. Miller 1367c1b4a7e6SDavid S. Miller /* From in_flight test above, we know that cwnd > in_flight. */ 1368c1b4a7e6SDavid S. Miller cong_win = (tp->snd_cwnd - in_flight) * tp->mss_cache; 1369c1b4a7e6SDavid S. Miller 1370c1b4a7e6SDavid S. Miller limit = min(send_win, cong_win); 1371c1b4a7e6SDavid S. Miller 1372ba244fe9SDavid S. Miller /* If a full-sized TSO skb can be sent, do it. */ 137382cc1a7aSPeter P Waskiewicz Jr if (limit >= sk->sk_gso_max_size) 1374ae8064acSJohn Heffner goto send_now; 1375ba244fe9SDavid S. Miller 137662ad2761SIlpo Järvinen /* Middle in queue won't get any more data, full sendable already? */ 137762ad2761SIlpo Järvinen if ((skb != tcp_write_queue_tail(sk)) && (limit >= skb->len)) 137862ad2761SIlpo Järvinen goto send_now; 137962ad2761SIlpo Järvinen 1380c1b4a7e6SDavid S. Miller if (sysctl_tcp_tso_win_divisor) { 1381c1b4a7e6SDavid S. Miller u32 chunk = min(tp->snd_wnd, tp->snd_cwnd * tp->mss_cache); 1382c1b4a7e6SDavid S. Miller 1383c1b4a7e6SDavid S. Miller /* If at least some fraction of a window is available, 1384c1b4a7e6SDavid S. Miller * just use it. 1385c1b4a7e6SDavid S. Miller */ 1386c1b4a7e6SDavid S. Miller chunk /= sysctl_tcp_tso_win_divisor; 1387c1b4a7e6SDavid S. Miller if (limit >= chunk) 1388ae8064acSJohn Heffner goto send_now; 1389c1b4a7e6SDavid S. Miller } else { 1390c1b4a7e6SDavid S. Miller /* Different approach, try not to defer past a single 1391c1b4a7e6SDavid S. Miller * ACK. Receiver should ACK every other full sized 1392c1b4a7e6SDavid S. Miller * frame, so if we have space for more than 3 frames 1393c1b4a7e6SDavid S. Miller * then send now. 1394c1b4a7e6SDavid S. Miller */ 1395c1b4a7e6SDavid S. Miller if (limit > tcp_max_burst(tp) * tp->mss_cache) 1396ae8064acSJohn Heffner goto send_now; 1397c1b4a7e6SDavid S. Miller } 1398c1b4a7e6SDavid S. Miller 1399c1b4a7e6SDavid S. Miller /* Ok, it looks like it is advisable to defer. */ 1400ae8064acSJohn Heffner tp->tso_deferred = 1 | (jiffies << 1); 1401ae8064acSJohn Heffner 1402c1b4a7e6SDavid S. Miller return 1; 1403ae8064acSJohn Heffner 1404ae8064acSJohn Heffner send_now: 1405ae8064acSJohn Heffner tp->tso_deferred = 0; 1406ae8064acSJohn Heffner return 0; 1407c1b4a7e6SDavid S. Miller } 1408c1b4a7e6SDavid S. Miller 14095d424d5aSJohn Heffner /* Create a new MTU probe if we are ready. 141067edfef7SAndi Kleen * MTU probe is regularly attempting to increase the path MTU by 141167edfef7SAndi Kleen * deliberately sending larger packets. This discovers routing 141267edfef7SAndi Kleen * changes resulting in larger path MTUs. 141367edfef7SAndi Kleen * 14145d424d5aSJohn Heffner * Returns 0 if we should wait to probe (no cwnd available), 14155d424d5aSJohn Heffner * 1 if a probe was sent, 1416056834d9SIlpo Järvinen * -1 otherwise 1417056834d9SIlpo Järvinen */ 14185d424d5aSJohn Heffner static int tcp_mtu_probe(struct sock *sk) 14195d424d5aSJohn Heffner { 14205d424d5aSJohn Heffner struct tcp_sock *tp = tcp_sk(sk); 14215d424d5aSJohn Heffner struct inet_connection_sock *icsk = inet_csk(sk); 14225d424d5aSJohn Heffner struct sk_buff *skb, *nskb, *next; 14235d424d5aSJohn Heffner int len; 14245d424d5aSJohn Heffner int probe_size; 142591cc17c0SIlpo Järvinen int size_needed; 14265d424d5aSJohn Heffner int copy; 14275d424d5aSJohn Heffner int mss_now; 14285d424d5aSJohn Heffner 14295d424d5aSJohn Heffner /* Not currently probing/verifying, 14305d424d5aSJohn Heffner * not in recovery, 14315d424d5aSJohn Heffner * have enough cwnd, and 14325d424d5aSJohn Heffner * not SACKing (the variable headers throw things off) */ 14335d424d5aSJohn Heffner if (!icsk->icsk_mtup.enabled || 14345d424d5aSJohn Heffner icsk->icsk_mtup.probe_size || 14355d424d5aSJohn Heffner inet_csk(sk)->icsk_ca_state != TCP_CA_Open || 14365d424d5aSJohn Heffner tp->snd_cwnd < 11 || 1437cabeccbdSIlpo Järvinen tp->rx_opt.num_sacks || tp->rx_opt.dsack) 14385d424d5aSJohn Heffner return -1; 14395d424d5aSJohn Heffner 14405d424d5aSJohn Heffner /* Very simple search strategy: just double the MSS. */ 14410c54b85fSIlpo Järvinen mss_now = tcp_current_mss(sk); 14425d424d5aSJohn Heffner probe_size = 2 * tp->mss_cache; 144391cc17c0SIlpo Järvinen size_needed = probe_size + (tp->reordering + 1) * tp->mss_cache; 14445d424d5aSJohn Heffner if (probe_size > tcp_mtu_to_mss(sk, icsk->icsk_mtup.search_high)) { 14455d424d5aSJohn Heffner /* TODO: set timer for probe_converge_event */ 14465d424d5aSJohn Heffner return -1; 14475d424d5aSJohn Heffner } 14485d424d5aSJohn Heffner 14495d424d5aSJohn Heffner /* Have enough data in the send queue to probe? */ 14507f9c33e5SIlpo Järvinen if (tp->write_seq - tp->snd_nxt < size_needed) 14515d424d5aSJohn Heffner return -1; 14525d424d5aSJohn Heffner 145391cc17c0SIlpo Järvinen if (tp->snd_wnd < size_needed) 14545d424d5aSJohn Heffner return -1; 145590840defSIlpo Järvinen if (after(tp->snd_nxt + size_needed, tcp_wnd_end(tp))) 14565d424d5aSJohn Heffner return 0; 14575d424d5aSJohn Heffner 1458d67c58e9SIlpo Järvinen /* Do we need to wait to drain cwnd? With none in flight, don't stall */ 1459d67c58e9SIlpo Järvinen if (tcp_packets_in_flight(tp) + 2 > tp->snd_cwnd) { 1460d67c58e9SIlpo Järvinen if (!tcp_packets_in_flight(tp)) 14615d424d5aSJohn Heffner return -1; 14625d424d5aSJohn Heffner else 14635d424d5aSJohn Heffner return 0; 14645d424d5aSJohn Heffner } 14655d424d5aSJohn Heffner 14665d424d5aSJohn Heffner /* We're allowed to probe. Build it now. */ 14675d424d5aSJohn Heffner if ((nskb = sk_stream_alloc_skb(sk, probe_size, GFP_ATOMIC)) == NULL) 14685d424d5aSJohn Heffner return -1; 14693ab224beSHideo Aoki sk->sk_wmem_queued += nskb->truesize; 14703ab224beSHideo Aoki sk_mem_charge(sk, nskb->truesize); 14715d424d5aSJohn Heffner 1472fe067e8aSDavid S. Miller skb = tcp_send_head(sk); 14735d424d5aSJohn Heffner 14745d424d5aSJohn Heffner TCP_SKB_CB(nskb)->seq = TCP_SKB_CB(skb)->seq; 14755d424d5aSJohn Heffner TCP_SKB_CB(nskb)->end_seq = TCP_SKB_CB(skb)->seq + probe_size; 14765d424d5aSJohn Heffner TCP_SKB_CB(nskb)->flags = TCPCB_FLAG_ACK; 14775d424d5aSJohn Heffner TCP_SKB_CB(nskb)->sacked = 0; 14785d424d5aSJohn Heffner nskb->csum = 0; 147984fa7933SPatrick McHardy nskb->ip_summed = skb->ip_summed; 14805d424d5aSJohn Heffner 148150c4817eSIlpo Järvinen tcp_insert_write_queue_before(nskb, skb, sk); 148250c4817eSIlpo Järvinen 14835d424d5aSJohn Heffner len = 0; 1484234b6860SIlpo Järvinen tcp_for_write_queue_from_safe(skb, next, sk) { 14855d424d5aSJohn Heffner copy = min_t(int, skb->len, probe_size - len); 14865d424d5aSJohn Heffner if (nskb->ip_summed) 14875d424d5aSJohn Heffner skb_copy_bits(skb, 0, skb_put(nskb, copy), copy); 14885d424d5aSJohn Heffner else 14895d424d5aSJohn Heffner nskb->csum = skb_copy_and_csum_bits(skb, 0, 1490056834d9SIlpo Järvinen skb_put(nskb, copy), 1491056834d9SIlpo Järvinen copy, nskb->csum); 14925d424d5aSJohn Heffner 14935d424d5aSJohn Heffner if (skb->len <= copy) { 14945d424d5aSJohn Heffner /* We've eaten all the data from this skb. 14955d424d5aSJohn Heffner * Throw it away. */ 14965d424d5aSJohn Heffner TCP_SKB_CB(nskb)->flags |= TCP_SKB_CB(skb)->flags; 1497fe067e8aSDavid S. Miller tcp_unlink_write_queue(skb, sk); 14983ab224beSHideo Aoki sk_wmem_free_skb(sk, skb); 14995d424d5aSJohn Heffner } else { 15005d424d5aSJohn Heffner TCP_SKB_CB(nskb)->flags |= TCP_SKB_CB(skb)->flags & 15015d424d5aSJohn Heffner ~(TCPCB_FLAG_FIN|TCPCB_FLAG_PSH); 15025d424d5aSJohn Heffner if (!skb_shinfo(skb)->nr_frags) { 15035d424d5aSJohn Heffner skb_pull(skb, copy); 150484fa7933SPatrick McHardy if (skb->ip_summed != CHECKSUM_PARTIAL) 1505056834d9SIlpo Järvinen skb->csum = csum_partial(skb->data, 1506056834d9SIlpo Järvinen skb->len, 0); 15075d424d5aSJohn Heffner } else { 15085d424d5aSJohn Heffner __pskb_trim_head(skb, copy); 15095d424d5aSJohn Heffner tcp_set_skb_tso_segs(sk, skb, mss_now); 15105d424d5aSJohn Heffner } 15115d424d5aSJohn Heffner TCP_SKB_CB(skb)->seq += copy; 15125d424d5aSJohn Heffner } 15135d424d5aSJohn Heffner 15145d424d5aSJohn Heffner len += copy; 1515234b6860SIlpo Järvinen 1516234b6860SIlpo Järvinen if (len >= probe_size) 1517234b6860SIlpo Järvinen break; 15185d424d5aSJohn Heffner } 15195d424d5aSJohn Heffner tcp_init_tso_segs(sk, nskb, nskb->len); 15205d424d5aSJohn Heffner 15215d424d5aSJohn Heffner /* We're ready to send. If this fails, the probe will 15225d424d5aSJohn Heffner * be resegmented into mss-sized pieces by tcp_write_xmit(). */ 15235d424d5aSJohn Heffner TCP_SKB_CB(nskb)->when = tcp_time_stamp; 15245d424d5aSJohn Heffner if (!tcp_transmit_skb(sk, nskb, 1, GFP_ATOMIC)) { 15255d424d5aSJohn Heffner /* Decrement cwnd here because we are sending 15265d424d5aSJohn Heffner * effectively two packets. */ 15275d424d5aSJohn Heffner tp->snd_cwnd--; 152866f5fe62SIlpo Järvinen tcp_event_new_data_sent(sk, nskb); 15295d424d5aSJohn Heffner 15305d424d5aSJohn Heffner icsk->icsk_mtup.probe_size = tcp_mss_to_mtu(sk, nskb->len); 15310e7b1368SJohn Heffner tp->mtu_probe.probe_seq_start = TCP_SKB_CB(nskb)->seq; 15320e7b1368SJohn Heffner tp->mtu_probe.probe_seq_end = TCP_SKB_CB(nskb)->end_seq; 15335d424d5aSJohn Heffner 15345d424d5aSJohn Heffner return 1; 15355d424d5aSJohn Heffner } 15365d424d5aSJohn Heffner 15375d424d5aSJohn Heffner return -1; 15385d424d5aSJohn Heffner } 15395d424d5aSJohn Heffner 15401da177e4SLinus Torvalds /* This routine writes packets to the network. It advances the 15411da177e4SLinus Torvalds * send_head. This happens as incoming acks open up the remote 15421da177e4SLinus Torvalds * window for us. 15431da177e4SLinus Torvalds * 1544f8269a49SIlpo Järvinen * LARGESEND note: !tcp_urg_mode is overkill, only frames between 1545f8269a49SIlpo Järvinen * snd_up-64k-mss .. snd_up cannot be large. However, taking into 1546f8269a49SIlpo Järvinen * account rare use of URG, this is not a big flaw. 1547f8269a49SIlpo Järvinen * 15481da177e4SLinus Torvalds * Returns 1, if no segments are in flight and we have queued segments, but 15491da177e4SLinus Torvalds * cannot send anything now because of SWS or another problem. 15501da177e4SLinus Torvalds */ 1551d5dd9175SIlpo Järvinen static int tcp_write_xmit(struct sock *sk, unsigned int mss_now, int nonagle, 1552d5dd9175SIlpo Järvinen int push_one, gfp_t gfp) 15531da177e4SLinus Torvalds { 15541da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 155592df7b51SDavid S. Miller struct sk_buff *skb; 1556c1b4a7e6SDavid S. Miller unsigned int tso_segs, sent_pkts; 1557c1b4a7e6SDavid S. Miller int cwnd_quota; 15585d424d5aSJohn Heffner int result; 15591da177e4SLinus Torvalds 1560c1b4a7e6SDavid S. Miller sent_pkts = 0; 15615d424d5aSJohn Heffner 1562d5dd9175SIlpo Järvinen if (!push_one) { 15635d424d5aSJohn Heffner /* Do MTU probing. */ 1564d5dd9175SIlpo Järvinen result = tcp_mtu_probe(sk); 1565d5dd9175SIlpo Järvinen if (!result) { 15665d424d5aSJohn Heffner return 0; 15675d424d5aSJohn Heffner } else if (result > 0) { 15685d424d5aSJohn Heffner sent_pkts = 1; 15695d424d5aSJohn Heffner } 1570d5dd9175SIlpo Järvinen } 15715d424d5aSJohn Heffner 1572fe067e8aSDavid S. Miller while ((skb = tcp_send_head(sk))) { 1573c8ac3774SHerbert Xu unsigned int limit; 1574c8ac3774SHerbert Xu 1575b68e9f85SHerbert Xu tso_segs = tcp_init_tso_segs(sk, skb, mss_now); 1576c1b4a7e6SDavid S. Miller BUG_ON(!tso_segs); 1577c1b4a7e6SDavid S. Miller 1578b68e9f85SHerbert Xu cwnd_quota = tcp_cwnd_test(tp, skb); 1579b68e9f85SHerbert Xu if (!cwnd_quota) 1580b68e9f85SHerbert Xu break; 1581b68e9f85SHerbert Xu 1582b68e9f85SHerbert Xu if (unlikely(!tcp_snd_wnd_test(tp, skb, mss_now))) 1583b68e9f85SHerbert Xu break; 1584b68e9f85SHerbert Xu 1585c1b4a7e6SDavid S. Miller if (tso_segs == 1) { 1586aa93466bSDavid S. Miller if (unlikely(!tcp_nagle_test(tp, skb, mss_now, 1587aa93466bSDavid S. Miller (tcp_skb_is_last(sk, skb) ? 1588aa93466bSDavid S. Miller nonagle : TCP_NAGLE_PUSH)))) 1589aa93466bSDavid S. Miller break; 1590c1b4a7e6SDavid S. Miller } else { 1591d5dd9175SIlpo Järvinen if (!push_one && tcp_tso_should_defer(sk, skb)) 1592aa93466bSDavid S. Miller break; 1593c1b4a7e6SDavid S. Miller } 1594aa93466bSDavid S. Miller 1595c8ac3774SHerbert Xu limit = mss_now; 1596f8269a49SIlpo Järvinen if (tso_segs > 1 && !tcp_urg_mode(tp)) 15970e3a4803SIlpo Järvinen limit = tcp_mss_split_point(sk, skb, mss_now, 15980e3a4803SIlpo Järvinen cwnd_quota); 1599c8ac3774SHerbert Xu 1600c8ac3774SHerbert Xu if (skb->len > limit && 1601c8ac3774SHerbert Xu unlikely(tso_fragment(sk, skb, limit, mss_now))) 16021da177e4SLinus Torvalds break; 16031da177e4SLinus Torvalds 16041da177e4SLinus Torvalds TCP_SKB_CB(skb)->when = tcp_time_stamp; 1605c1b4a7e6SDavid S. Miller 1606d5dd9175SIlpo Järvinen if (unlikely(tcp_transmit_skb(sk, skb, 1, gfp))) 16071da177e4SLinus Torvalds break; 16081da177e4SLinus Torvalds 16091da177e4SLinus Torvalds /* Advance the send_head. This one is sent out. 16101da177e4SLinus Torvalds * This call will increment packets_out. 16111da177e4SLinus Torvalds */ 161266f5fe62SIlpo Järvinen tcp_event_new_data_sent(sk, skb); 16131da177e4SLinus Torvalds 16141da177e4SLinus Torvalds tcp_minshall_update(tp, mss_now, skb); 1615aa93466bSDavid S. Miller sent_pkts++; 1616d5dd9175SIlpo Järvinen 1617d5dd9175SIlpo Järvinen if (push_one) 1618d5dd9175SIlpo Järvinen break; 16191da177e4SLinus Torvalds } 16201da177e4SLinus Torvalds 1621aa93466bSDavid S. Miller if (likely(sent_pkts)) { 16229e412ba7SIlpo Järvinen tcp_cwnd_validate(sk); 16231da177e4SLinus Torvalds return 0; 16241da177e4SLinus Torvalds } 1625fe067e8aSDavid S. Miller return !tp->packets_out && tcp_send_head(sk); 16261da177e4SLinus Torvalds } 16271da177e4SLinus Torvalds 1628a762a980SDavid S. Miller /* Push out any pending frames which were held back due to 1629a762a980SDavid S. Miller * TCP_CORK or attempt at coalescing tiny packets. 1630a762a980SDavid S. Miller * The socket must be locked by the caller. 1631a762a980SDavid S. Miller */ 16329e412ba7SIlpo Järvinen void __tcp_push_pending_frames(struct sock *sk, unsigned int cur_mss, 16339e412ba7SIlpo Järvinen int nonagle) 1634a762a980SDavid S. Miller { 1635fe067e8aSDavid S. Miller struct sk_buff *skb = tcp_send_head(sk); 1636a762a980SDavid S. Miller 1637726e07a8SIlpo Järvinen if (!skb) 1638726e07a8SIlpo Järvinen return; 1639726e07a8SIlpo Järvinen 1640726e07a8SIlpo Järvinen /* If we are closed, the bytes will have to remain here. 1641726e07a8SIlpo Järvinen * In time closedown will finish, we empty the write queue and 1642726e07a8SIlpo Järvinen * all will be happy. 1643726e07a8SIlpo Järvinen */ 1644726e07a8SIlpo Järvinen if (unlikely(sk->sk_state == TCP_CLOSE)) 1645726e07a8SIlpo Järvinen return; 1646726e07a8SIlpo Järvinen 1647d5dd9175SIlpo Järvinen if (tcp_write_xmit(sk, cur_mss, nonagle, 0, GFP_ATOMIC)) 16489e412ba7SIlpo Järvinen tcp_check_probe_timer(sk); 1649a762a980SDavid S. Miller } 1650a762a980SDavid S. Miller 1651c1b4a7e6SDavid S. Miller /* Send _single_ skb sitting at the send head. This function requires 1652c1b4a7e6SDavid S. Miller * true push pending frames to setup probe timer etc. 1653c1b4a7e6SDavid S. Miller */ 1654c1b4a7e6SDavid S. Miller void tcp_push_one(struct sock *sk, unsigned int mss_now) 1655c1b4a7e6SDavid S. Miller { 1656fe067e8aSDavid S. Miller struct sk_buff *skb = tcp_send_head(sk); 1657c1b4a7e6SDavid S. Miller 1658c1b4a7e6SDavid S. Miller BUG_ON(!skb || skb->len < mss_now); 1659c1b4a7e6SDavid S. Miller 1660d5dd9175SIlpo Järvinen tcp_write_xmit(sk, mss_now, TCP_NAGLE_PUSH, 1, sk->sk_allocation); 1661c1b4a7e6SDavid S. Miller } 1662c1b4a7e6SDavid S. Miller 16631da177e4SLinus Torvalds /* This function returns the amount that we can raise the 16641da177e4SLinus Torvalds * usable window based on the following constraints 16651da177e4SLinus Torvalds * 16661da177e4SLinus Torvalds * 1. The window can never be shrunk once it is offered (RFC 793) 16671da177e4SLinus Torvalds * 2. We limit memory per socket 16681da177e4SLinus Torvalds * 16691da177e4SLinus Torvalds * RFC 1122: 16701da177e4SLinus Torvalds * "the suggested [SWS] avoidance algorithm for the receiver is to keep 16711da177e4SLinus Torvalds * RECV.NEXT + RCV.WIN fixed until: 16721da177e4SLinus Torvalds * RCV.BUFF - RCV.USER - RCV.WINDOW >= min(1/2 RCV.BUFF, MSS)" 16731da177e4SLinus Torvalds * 16741da177e4SLinus Torvalds * i.e. don't raise the right edge of the window until you can raise 16751da177e4SLinus Torvalds * it at least MSS bytes. 16761da177e4SLinus Torvalds * 16771da177e4SLinus Torvalds * Unfortunately, the recommended algorithm breaks header prediction, 16781da177e4SLinus Torvalds * since header prediction assumes th->window stays fixed. 16791da177e4SLinus Torvalds * 16801da177e4SLinus Torvalds * Strictly speaking, keeping th->window fixed violates the receiver 16811da177e4SLinus Torvalds * side SWS prevention criteria. The problem is that under this rule 16821da177e4SLinus Torvalds * a stream of single byte packets will cause the right side of the 16831da177e4SLinus Torvalds * window to always advance by a single byte. 16841da177e4SLinus Torvalds * 16851da177e4SLinus Torvalds * Of course, if the sender implements sender side SWS prevention 16861da177e4SLinus Torvalds * then this will not be a problem. 16871da177e4SLinus Torvalds * 16881da177e4SLinus Torvalds * BSD seems to make the following compromise: 16891da177e4SLinus Torvalds * 16901da177e4SLinus Torvalds * If the free space is less than the 1/4 of the maximum 16911da177e4SLinus Torvalds * space available and the free space is less than 1/2 mss, 16921da177e4SLinus Torvalds * then set the window to 0. 16931da177e4SLinus Torvalds * [ Actually, bsd uses MSS and 1/4 of maximal _window_ ] 16941da177e4SLinus Torvalds * Otherwise, just prevent the window from shrinking 16951da177e4SLinus Torvalds * and from being larger than the largest representable value. 16961da177e4SLinus Torvalds * 16971da177e4SLinus Torvalds * This prevents incremental opening of the window in the regime 16981da177e4SLinus Torvalds * where TCP is limited by the speed of the reader side taking 16991da177e4SLinus Torvalds * data out of the TCP receive queue. It does nothing about 17001da177e4SLinus Torvalds * those cases where the window is constrained on the sender side 17011da177e4SLinus Torvalds * because the pipeline is full. 17021da177e4SLinus Torvalds * 17031da177e4SLinus Torvalds * BSD also seems to "accidentally" limit itself to windows that are a 17041da177e4SLinus Torvalds * multiple of MSS, at least until the free space gets quite small. 17051da177e4SLinus Torvalds * This would appear to be a side effect of the mbuf implementation. 17061da177e4SLinus Torvalds * Combining these two algorithms results in the observed behavior 17071da177e4SLinus Torvalds * of having a fixed window size at almost all times. 17081da177e4SLinus Torvalds * 17091da177e4SLinus Torvalds * Below we obtain similar behavior by forcing the offered window to 17101da177e4SLinus Torvalds * a multiple of the mss when it is feasible to do so. 17111da177e4SLinus Torvalds * 17121da177e4SLinus Torvalds * Note, we don't "adjust" for TIMESTAMP or SACK option bytes. 17131da177e4SLinus Torvalds * Regular options like TIMESTAMP are taken into account. 17141da177e4SLinus Torvalds */ 17151da177e4SLinus Torvalds u32 __tcp_select_window(struct sock *sk) 17161da177e4SLinus Torvalds { 1717463c84b9SArnaldo Carvalho de Melo struct inet_connection_sock *icsk = inet_csk(sk); 17181da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 1719caa20d9aSStephen Hemminger /* MSS for the peer's data. Previous versions used mss_clamp 17201da177e4SLinus Torvalds * here. I don't know if the value based on our guesses 17211da177e4SLinus Torvalds * of peer's MSS is better for the performance. It's more correct 17221da177e4SLinus Torvalds * but may be worse for the performance because of rcv_mss 17231da177e4SLinus Torvalds * fluctuations. --SAW 1998/11/1 17241da177e4SLinus Torvalds */ 1725463c84b9SArnaldo Carvalho de Melo int mss = icsk->icsk_ack.rcv_mss; 17261da177e4SLinus Torvalds int free_space = tcp_space(sk); 17271da177e4SLinus Torvalds int full_space = min_t(int, tp->window_clamp, tcp_full_space(sk)); 17281da177e4SLinus Torvalds int window; 17291da177e4SLinus Torvalds 17301da177e4SLinus Torvalds if (mss > full_space) 17311da177e4SLinus Torvalds mss = full_space; 17321da177e4SLinus Torvalds 1733b92edbe0SEric Dumazet if (free_space < (full_space >> 1)) { 1734463c84b9SArnaldo Carvalho de Melo icsk->icsk_ack.quick = 0; 17351da177e4SLinus Torvalds 17361da177e4SLinus Torvalds if (tcp_memory_pressure) 1737056834d9SIlpo Järvinen tp->rcv_ssthresh = min(tp->rcv_ssthresh, 1738056834d9SIlpo Järvinen 4U * tp->advmss); 17391da177e4SLinus Torvalds 17401da177e4SLinus Torvalds if (free_space < mss) 17411da177e4SLinus Torvalds return 0; 17421da177e4SLinus Torvalds } 17431da177e4SLinus Torvalds 17441da177e4SLinus Torvalds if (free_space > tp->rcv_ssthresh) 17451da177e4SLinus Torvalds free_space = tp->rcv_ssthresh; 17461da177e4SLinus Torvalds 17471da177e4SLinus Torvalds /* Don't do rounding if we are using window scaling, since the 17481da177e4SLinus Torvalds * scaled window will not line up with the MSS boundary anyway. 17491da177e4SLinus Torvalds */ 17501da177e4SLinus Torvalds window = tp->rcv_wnd; 17511da177e4SLinus Torvalds if (tp->rx_opt.rcv_wscale) { 17521da177e4SLinus Torvalds window = free_space; 17531da177e4SLinus Torvalds 17541da177e4SLinus Torvalds /* Advertise enough space so that it won't get scaled away. 17551da177e4SLinus Torvalds * Import case: prevent zero window announcement if 17561da177e4SLinus Torvalds * 1<<rcv_wscale > mss. 17571da177e4SLinus Torvalds */ 17581da177e4SLinus Torvalds if (((window >> tp->rx_opt.rcv_wscale) << tp->rx_opt.rcv_wscale) != window) 17591da177e4SLinus Torvalds window = (((window >> tp->rx_opt.rcv_wscale) + 1) 17601da177e4SLinus Torvalds << tp->rx_opt.rcv_wscale); 17611da177e4SLinus Torvalds } else { 17621da177e4SLinus Torvalds /* Get the largest window that is a nice multiple of mss. 17631da177e4SLinus Torvalds * Window clamp already applied above. 17641da177e4SLinus Torvalds * If our current window offering is within 1 mss of the 17651da177e4SLinus Torvalds * free space we just keep it. This prevents the divide 17661da177e4SLinus Torvalds * and multiply from happening most of the time. 17671da177e4SLinus Torvalds * We also don't do any window rounding when the free space 17681da177e4SLinus Torvalds * is too small. 17691da177e4SLinus Torvalds */ 17701da177e4SLinus Torvalds if (window <= free_space - mss || window > free_space) 17711da177e4SLinus Torvalds window = (free_space / mss) * mss; 177284565070SJohn Heffner else if (mss == full_space && 1773b92edbe0SEric Dumazet free_space > window + (full_space >> 1)) 177484565070SJohn Heffner window = free_space; 17751da177e4SLinus Torvalds } 17761da177e4SLinus Torvalds 17771da177e4SLinus Torvalds return window; 17781da177e4SLinus Torvalds } 17791da177e4SLinus Torvalds 17804a17fc3aSIlpo Järvinen /* Collapses two adjacent SKB's during retransmission. */ 17814a17fc3aSIlpo Järvinen static void tcp_collapse_retrans(struct sock *sk, struct sk_buff *skb) 17821da177e4SLinus Torvalds { 17831da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 1784fe067e8aSDavid S. Miller struct sk_buff *next_skb = tcp_write_queue_next(sk, skb); 1785058dc334SIlpo Järvinen int skb_size, next_skb_size; 17861da177e4SLinus Torvalds 1787058dc334SIlpo Järvinen skb_size = skb->len; 1788058dc334SIlpo Järvinen next_skb_size = next_skb->len; 17891da177e4SLinus Torvalds 1790058dc334SIlpo Järvinen BUG_ON(tcp_skb_pcount(skb) != 1 || tcp_skb_pcount(next_skb) != 1); 17911da177e4SLinus Torvalds 17926859d494SIlpo Järvinen tcp_highest_sack_combine(sk, next_skb, skb); 1793a6963a6bSIlpo Järvinen 1794fe067e8aSDavid S. Miller tcp_unlink_write_queue(next_skb, sk); 17951da177e4SLinus Torvalds 1796058dc334SIlpo Järvinen skb_copy_from_linear_data(next_skb, skb_put(skb, next_skb_size), 17971a4e2d09SArnaldo Carvalho de Melo next_skb_size); 17981da177e4SLinus Torvalds 179952d570aaSJarek Poplawski if (next_skb->ip_summed == CHECKSUM_PARTIAL) 180052d570aaSJarek Poplawski skb->ip_summed = CHECKSUM_PARTIAL; 18011da177e4SLinus Torvalds 180284fa7933SPatrick McHardy if (skb->ip_summed != CHECKSUM_PARTIAL) 18031da177e4SLinus Torvalds skb->csum = csum_block_add(skb->csum, next_skb->csum, skb_size); 18041da177e4SLinus Torvalds 18051da177e4SLinus Torvalds /* Update sequence range on original skb. */ 18061da177e4SLinus Torvalds TCP_SKB_CB(skb)->end_seq = TCP_SKB_CB(next_skb)->end_seq; 18071da177e4SLinus Torvalds 1808e6c7d085SIlpo Järvinen /* Merge over control information. This moves PSH/FIN etc. over */ 1809e6c7d085SIlpo Järvinen TCP_SKB_CB(skb)->flags |= TCP_SKB_CB(next_skb)->flags; 18101da177e4SLinus Torvalds 18111da177e4SLinus Torvalds /* All done, get rid of second SKB and account for it so 18121da177e4SLinus Torvalds * packet counting does not break. 18131da177e4SLinus Torvalds */ 18144828e7f4SIlpo Järvinen TCP_SKB_CB(skb)->sacked |= TCP_SKB_CB(next_skb)->sacked & TCPCB_EVER_RETRANS; 1815b7689205SIlpo Järvinen 1816b7689205SIlpo Järvinen /* changed transmit queue under us so clear hints */ 1817ef9da47cSIlpo Järvinen tcp_clear_retrans_hints_partial(tp); 1818ef9da47cSIlpo Järvinen if (next_skb == tp->retransmit_skb_hint) 1819ef9da47cSIlpo Järvinen tp->retransmit_skb_hint = skb; 1820b7689205SIlpo Järvinen 1821797108d1SIlpo Järvinen tcp_adjust_pcount(sk, next_skb, tcp_skb_pcount(next_skb)); 1822797108d1SIlpo Järvinen 18233ab224beSHideo Aoki sk_wmem_free_skb(sk, next_skb); 18241da177e4SLinus Torvalds } 18251da177e4SLinus Torvalds 182667edfef7SAndi Kleen /* Check if coalescing SKBs is legal. */ 18274a17fc3aSIlpo Järvinen static int tcp_can_collapse(struct sock *sk, struct sk_buff *skb) 18284a17fc3aSIlpo Järvinen { 18294a17fc3aSIlpo Järvinen if (tcp_skb_pcount(skb) > 1) 18304a17fc3aSIlpo Järvinen return 0; 18314a17fc3aSIlpo Järvinen /* TODO: SACK collapsing could be used to remove this condition */ 18324a17fc3aSIlpo Järvinen if (skb_shinfo(skb)->nr_frags != 0) 18334a17fc3aSIlpo Järvinen return 0; 18344a17fc3aSIlpo Järvinen if (skb_cloned(skb)) 18354a17fc3aSIlpo Järvinen return 0; 18364a17fc3aSIlpo Järvinen if (skb == tcp_send_head(sk)) 18374a17fc3aSIlpo Järvinen return 0; 18384a17fc3aSIlpo Järvinen /* Some heurestics for collapsing over SACK'd could be invented */ 18394a17fc3aSIlpo Järvinen if (TCP_SKB_CB(skb)->sacked & TCPCB_SACKED_ACKED) 18404a17fc3aSIlpo Järvinen return 0; 18414a17fc3aSIlpo Järvinen 18424a17fc3aSIlpo Järvinen return 1; 18434a17fc3aSIlpo Järvinen } 18444a17fc3aSIlpo Järvinen 184567edfef7SAndi Kleen /* Collapse packets in the retransmit queue to make to create 184667edfef7SAndi Kleen * less packets on the wire. This is only done on retransmission. 184767edfef7SAndi Kleen */ 18484a17fc3aSIlpo Järvinen static void tcp_retrans_try_collapse(struct sock *sk, struct sk_buff *to, 18494a17fc3aSIlpo Järvinen int space) 18504a17fc3aSIlpo Järvinen { 18514a17fc3aSIlpo Järvinen struct tcp_sock *tp = tcp_sk(sk); 18524a17fc3aSIlpo Järvinen struct sk_buff *skb = to, *tmp; 18534a17fc3aSIlpo Järvinen int first = 1; 18544a17fc3aSIlpo Järvinen 18554a17fc3aSIlpo Järvinen if (!sysctl_tcp_retrans_collapse) 18564a17fc3aSIlpo Järvinen return; 18574a17fc3aSIlpo Järvinen if (TCP_SKB_CB(skb)->flags & TCPCB_FLAG_SYN) 18584a17fc3aSIlpo Järvinen return; 18594a17fc3aSIlpo Järvinen 18604a17fc3aSIlpo Järvinen tcp_for_write_queue_from_safe(skb, tmp, sk) { 18614a17fc3aSIlpo Järvinen if (!tcp_can_collapse(sk, skb)) 18624a17fc3aSIlpo Järvinen break; 18634a17fc3aSIlpo Järvinen 18644a17fc3aSIlpo Järvinen space -= skb->len; 18654a17fc3aSIlpo Järvinen 18664a17fc3aSIlpo Järvinen if (first) { 18674a17fc3aSIlpo Järvinen first = 0; 18684a17fc3aSIlpo Järvinen continue; 18694a17fc3aSIlpo Järvinen } 18704a17fc3aSIlpo Järvinen 18714a17fc3aSIlpo Järvinen if (space < 0) 18724a17fc3aSIlpo Järvinen break; 18734a17fc3aSIlpo Järvinen /* Punt if not enough space exists in the first SKB for 18744a17fc3aSIlpo Järvinen * the data in the second 18754a17fc3aSIlpo Järvinen */ 18764a17fc3aSIlpo Järvinen if (skb->len > skb_tailroom(to)) 18774a17fc3aSIlpo Järvinen break; 18784a17fc3aSIlpo Järvinen 18794a17fc3aSIlpo Järvinen if (after(TCP_SKB_CB(skb)->end_seq, tcp_wnd_end(tp))) 18804a17fc3aSIlpo Järvinen break; 18814a17fc3aSIlpo Järvinen 18824a17fc3aSIlpo Järvinen tcp_collapse_retrans(sk, to); 18834a17fc3aSIlpo Järvinen } 18844a17fc3aSIlpo Järvinen } 18854a17fc3aSIlpo Järvinen 18861da177e4SLinus Torvalds /* This retransmits one SKB. Policy decisions and retransmit queue 18871da177e4SLinus Torvalds * state updates are done by the caller. Returns non-zero if an 18881da177e4SLinus Torvalds * error occurred which prevented the send. 18891da177e4SLinus Torvalds */ 18901da177e4SLinus Torvalds int tcp_retransmit_skb(struct sock *sk, struct sk_buff *skb) 18911da177e4SLinus Torvalds { 18921da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 18935d424d5aSJohn Heffner struct inet_connection_sock *icsk = inet_csk(sk); 18947d227cd2SSridhar Samudrala unsigned int cur_mss; 18951da177e4SLinus Torvalds int err; 18961da177e4SLinus Torvalds 18975d424d5aSJohn Heffner /* Inconslusive MTU probe */ 18985d424d5aSJohn Heffner if (icsk->icsk_mtup.probe_size) { 18995d424d5aSJohn Heffner icsk->icsk_mtup.probe_size = 0; 19005d424d5aSJohn Heffner } 19015d424d5aSJohn Heffner 19021da177e4SLinus Torvalds /* Do not sent more than we queued. 1/4 is reserved for possible 1903caa20d9aSStephen Hemminger * copying overhead: fragmentation, tunneling, mangling etc. 19041da177e4SLinus Torvalds */ 19051da177e4SLinus Torvalds if (atomic_read(&sk->sk_wmem_alloc) > 19061da177e4SLinus Torvalds min(sk->sk_wmem_queued + (sk->sk_wmem_queued >> 2), sk->sk_sndbuf)) 19071da177e4SLinus Torvalds return -EAGAIN; 19081da177e4SLinus Torvalds 19091da177e4SLinus Torvalds if (before(TCP_SKB_CB(skb)->seq, tp->snd_una)) { 19101da177e4SLinus Torvalds if (before(TCP_SKB_CB(skb)->end_seq, tp->snd_una)) 19111da177e4SLinus Torvalds BUG(); 19121da177e4SLinus Torvalds if (tcp_trim_head(sk, skb, tp->snd_una - TCP_SKB_CB(skb)->seq)) 19131da177e4SLinus Torvalds return -ENOMEM; 19141da177e4SLinus Torvalds } 19151da177e4SLinus Torvalds 19167d227cd2SSridhar Samudrala if (inet_csk(sk)->icsk_af_ops->rebuild_header(sk)) 19177d227cd2SSridhar Samudrala return -EHOSTUNREACH; /* Routing failure or similar. */ 19187d227cd2SSridhar Samudrala 19190c54b85fSIlpo Järvinen cur_mss = tcp_current_mss(sk); 19207d227cd2SSridhar Samudrala 19211da177e4SLinus Torvalds /* If receiver has shrunk his window, and skb is out of 19221da177e4SLinus Torvalds * new window, do not retransmit it. The exception is the 19231da177e4SLinus Torvalds * case, when window is shrunk to zero. In this case 19241da177e4SLinus Torvalds * our retransmit serves as a zero window probe. 19251da177e4SLinus Torvalds */ 1926*9d4fb27dSJoe Perches if (!before(TCP_SKB_CB(skb)->seq, tcp_wnd_end(tp)) && 1927*9d4fb27dSJoe Perches TCP_SKB_CB(skb)->seq != tp->snd_una) 19281da177e4SLinus Torvalds return -EAGAIN; 19291da177e4SLinus Torvalds 19301da177e4SLinus Torvalds if (skb->len > cur_mss) { 1931846998aeSDavid S. Miller if (tcp_fragment(sk, skb, cur_mss, cur_mss)) 19321da177e4SLinus Torvalds return -ENOMEM; /* We'll try again later. */ 193302276f3cSIlpo Järvinen } else { 19349eb9362eSIlpo Järvinen int oldpcount = tcp_skb_pcount(skb); 19359eb9362eSIlpo Järvinen 19369eb9362eSIlpo Järvinen if (unlikely(oldpcount > 1)) { 193702276f3cSIlpo Järvinen tcp_init_tso_segs(sk, skb, cur_mss); 19389eb9362eSIlpo Järvinen tcp_adjust_pcount(sk, skb, oldpcount - tcp_skb_pcount(skb)); 19399eb9362eSIlpo Järvinen } 19401da177e4SLinus Torvalds } 19411da177e4SLinus Torvalds 19421da177e4SLinus Torvalds tcp_retrans_try_collapse(sk, skb, cur_mss); 19431da177e4SLinus Torvalds 19441da177e4SLinus Torvalds /* Some Solaris stacks overoptimize and ignore the FIN on a 19451da177e4SLinus Torvalds * retransmit when old data is attached. So strip it off 19461da177e4SLinus Torvalds * since it is cheap to do so and saves bytes on the network. 19471da177e4SLinus Torvalds */ 19481da177e4SLinus Torvalds if (skb->len > 0 && 19491da177e4SLinus Torvalds (TCP_SKB_CB(skb)->flags & TCPCB_FLAG_FIN) && 19501da177e4SLinus Torvalds tp->snd_una == (TCP_SKB_CB(skb)->end_seq - 1)) { 19511da177e4SLinus Torvalds if (!pskb_trim(skb, 0)) { 1952e870a8efSIlpo Järvinen /* Reuse, even though it does some unnecessary work */ 1953e870a8efSIlpo Järvinen tcp_init_nondata_skb(skb, TCP_SKB_CB(skb)->end_seq - 1, 1954e870a8efSIlpo Järvinen TCP_SKB_CB(skb)->flags); 19551da177e4SLinus Torvalds skb->ip_summed = CHECKSUM_NONE; 19561da177e4SLinus Torvalds } 19571da177e4SLinus Torvalds } 19581da177e4SLinus Torvalds 19591da177e4SLinus Torvalds /* Make a copy, if the first transmission SKB clone we made 19601da177e4SLinus Torvalds * is still in somebody's hands, else make a clone. 19611da177e4SLinus Torvalds */ 19621da177e4SLinus Torvalds TCP_SKB_CB(skb)->when = tcp_time_stamp; 19631da177e4SLinus Torvalds 1964dfb4b9dcSDavid S. Miller err = tcp_transmit_skb(sk, skb, 1, GFP_ATOMIC); 19651da177e4SLinus Torvalds 19661da177e4SLinus Torvalds if (err == 0) { 19671da177e4SLinus Torvalds /* Update global TCP statistics. */ 196881cc8a75SPavel Emelyanov TCP_INC_STATS(sock_net(sk), TCP_MIB_RETRANSSEGS); 19691da177e4SLinus Torvalds 19701da177e4SLinus Torvalds tp->total_retrans++; 19711da177e4SLinus Torvalds 19721da177e4SLinus Torvalds #if FASTRETRANS_DEBUG > 0 19731da177e4SLinus Torvalds if (TCP_SKB_CB(skb)->sacked & TCPCB_SACKED_RETRANS) { 19741da177e4SLinus Torvalds if (net_ratelimit()) 19751da177e4SLinus Torvalds printk(KERN_DEBUG "retrans_out leaked.\n"); 19761da177e4SLinus Torvalds } 19771da177e4SLinus Torvalds #endif 1978b08d6cb2SIlpo Järvinen if (!tp->retrans_out) 1979b08d6cb2SIlpo Järvinen tp->lost_retrans_low = tp->snd_nxt; 19801da177e4SLinus Torvalds TCP_SKB_CB(skb)->sacked |= TCPCB_RETRANS; 19811da177e4SLinus Torvalds tp->retrans_out += tcp_skb_pcount(skb); 19821da177e4SLinus Torvalds 19831da177e4SLinus Torvalds /* Save stamp of the first retransmit. */ 19841da177e4SLinus Torvalds if (!tp->retrans_stamp) 19851da177e4SLinus Torvalds tp->retrans_stamp = TCP_SKB_CB(skb)->when; 19861da177e4SLinus Torvalds 19871da177e4SLinus Torvalds tp->undo_retrans++; 19881da177e4SLinus Torvalds 19891da177e4SLinus Torvalds /* snd_nxt is stored to detect loss of retransmitted segment, 19901da177e4SLinus Torvalds * see tcp_input.c tcp_sacktag_write_queue(). 19911da177e4SLinus Torvalds */ 19921da177e4SLinus Torvalds TCP_SKB_CB(skb)->ack_seq = tp->snd_nxt; 19931da177e4SLinus Torvalds } 19941da177e4SLinus Torvalds return err; 19951da177e4SLinus Torvalds } 19961da177e4SLinus Torvalds 199767edfef7SAndi Kleen /* Check if we forward retransmits are possible in the current 199867edfef7SAndi Kleen * window/congestion state. 199967edfef7SAndi Kleen */ 2000b5afe7bcSIlpo Järvinen static int tcp_can_forward_retransmit(struct sock *sk) 2001b5afe7bcSIlpo Järvinen { 2002b5afe7bcSIlpo Järvinen const struct inet_connection_sock *icsk = inet_csk(sk); 2003b5afe7bcSIlpo Järvinen struct tcp_sock *tp = tcp_sk(sk); 2004b5afe7bcSIlpo Järvinen 2005b5afe7bcSIlpo Järvinen /* Forward retransmissions are possible only during Recovery. */ 2006b5afe7bcSIlpo Järvinen if (icsk->icsk_ca_state != TCP_CA_Recovery) 2007b5afe7bcSIlpo Järvinen return 0; 2008b5afe7bcSIlpo Järvinen 2009b5afe7bcSIlpo Järvinen /* No forward retransmissions in Reno are possible. */ 2010b5afe7bcSIlpo Järvinen if (tcp_is_reno(tp)) 2011b5afe7bcSIlpo Järvinen return 0; 2012b5afe7bcSIlpo Järvinen 2013b5afe7bcSIlpo Järvinen /* Yeah, we have to make difficult choice between forward transmission 2014b5afe7bcSIlpo Järvinen * and retransmission... Both ways have their merits... 2015b5afe7bcSIlpo Järvinen * 2016b5afe7bcSIlpo Järvinen * For now we do not retransmit anything, while we have some new 2017b5afe7bcSIlpo Järvinen * segments to send. In the other cases, follow rule 3 for 2018b5afe7bcSIlpo Järvinen * NextSeg() specified in RFC3517. 2019b5afe7bcSIlpo Järvinen */ 2020b5afe7bcSIlpo Järvinen 2021b5afe7bcSIlpo Järvinen if (tcp_may_send_now(sk)) 2022b5afe7bcSIlpo Järvinen return 0; 2023b5afe7bcSIlpo Järvinen 2024b5afe7bcSIlpo Järvinen return 1; 2025b5afe7bcSIlpo Järvinen } 2026b5afe7bcSIlpo Järvinen 20271da177e4SLinus Torvalds /* This gets called after a retransmit timeout, and the initially 20281da177e4SLinus Torvalds * retransmitted data is acknowledged. It tries to continue 20291da177e4SLinus Torvalds * resending the rest of the retransmit queue, until either 20301da177e4SLinus Torvalds * we've sent it all or the congestion window limit is reached. 20311da177e4SLinus Torvalds * If doing SACK, the first ACK which comes back for a timeout 20321da177e4SLinus Torvalds * based retransmit packet might feed us FACK information again. 20331da177e4SLinus Torvalds * If so, we use it to avoid unnecessarily retransmissions. 20341da177e4SLinus Torvalds */ 20351da177e4SLinus Torvalds void tcp_xmit_retransmit_queue(struct sock *sk) 20361da177e4SLinus Torvalds { 20376687e988SArnaldo Carvalho de Melo const struct inet_connection_sock *icsk = inet_csk(sk); 20381da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 20391da177e4SLinus Torvalds struct sk_buff *skb; 20400e1c54c2SIlpo Järvinen struct sk_buff *hole = NULL; 2041618d9f25SIlpo Järvinen u32 last_lost; 204261eb55f4SIlpo Järvinen int mib_idx; 20430e1c54c2SIlpo Järvinen int fwd_rexmitting = 0; 20446a438bbeSStephen Hemminger 204508ebd172SIlpo Järvinen if (!tp->lost_out) 204608ebd172SIlpo Järvinen tp->retransmit_high = tp->snd_una; 204708ebd172SIlpo Järvinen 2048618d9f25SIlpo Järvinen if (tp->retransmit_skb_hint) { 20496a438bbeSStephen Hemminger skb = tp->retransmit_skb_hint; 2050618d9f25SIlpo Järvinen last_lost = TCP_SKB_CB(skb)->end_seq; 2051618d9f25SIlpo Järvinen if (after(last_lost, tp->retransmit_high)) 2052618d9f25SIlpo Järvinen last_lost = tp->retransmit_high; 2053618d9f25SIlpo Järvinen } else { 2054fe067e8aSDavid S. Miller skb = tcp_write_queue_head(sk); 2055618d9f25SIlpo Järvinen last_lost = tp->snd_una; 2056618d9f25SIlpo Järvinen } 20571da177e4SLinus Torvalds 2058fe067e8aSDavid S. Miller tcp_for_write_queue_from(skb, sk) { 20591da177e4SLinus Torvalds __u8 sacked = TCP_SKB_CB(skb)->sacked; 20601da177e4SLinus Torvalds 2061fe067e8aSDavid S. Miller if (skb == tcp_send_head(sk)) 2062fe067e8aSDavid S. Miller break; 20636a438bbeSStephen Hemminger /* we could do better than to assign each time */ 20640e1c54c2SIlpo Järvinen if (hole == NULL) 20656a438bbeSStephen Hemminger tp->retransmit_skb_hint = skb; 20666a438bbeSStephen Hemminger 20671da177e4SLinus Torvalds /* Assume this retransmit will generate 20681da177e4SLinus Torvalds * only one packet for congestion window 20691da177e4SLinus Torvalds * calculation purposes. This works because 20701da177e4SLinus Torvalds * tcp_retransmit_skb() will chop up the 20711da177e4SLinus Torvalds * packet to be MSS sized and all the 20721da177e4SLinus Torvalds * packet counting works out. 20731da177e4SLinus Torvalds */ 20741da177e4SLinus Torvalds if (tcp_packets_in_flight(tp) >= tp->snd_cwnd) 20751da177e4SLinus Torvalds return; 20760e1c54c2SIlpo Järvinen 20770e1c54c2SIlpo Järvinen if (fwd_rexmitting) { 20780e1c54c2SIlpo Järvinen begin_fwd: 20790e1c54c2SIlpo Järvinen if (!before(TCP_SKB_CB(skb)->seq, tcp_highest_sack_seq(tp))) 2080006f582cSIlpo Järvinen break; 20810e1c54c2SIlpo Järvinen mib_idx = LINUX_MIB_TCPFORWARDRETRANS; 20820e1c54c2SIlpo Järvinen 20830e1c54c2SIlpo Järvinen } else if (!before(TCP_SKB_CB(skb)->seq, tp->retransmit_high)) { 2084618d9f25SIlpo Järvinen tp->retransmit_high = last_lost; 20850e1c54c2SIlpo Järvinen if (!tcp_can_forward_retransmit(sk)) 20860e1c54c2SIlpo Järvinen break; 20870e1c54c2SIlpo Järvinen /* Backtrack if necessary to non-L'ed skb */ 20880e1c54c2SIlpo Järvinen if (hole != NULL) { 20890e1c54c2SIlpo Järvinen skb = hole; 20900e1c54c2SIlpo Järvinen hole = NULL; 20910e1c54c2SIlpo Järvinen } 20920e1c54c2SIlpo Järvinen fwd_rexmitting = 1; 20930e1c54c2SIlpo Järvinen goto begin_fwd; 20940e1c54c2SIlpo Järvinen 20950e1c54c2SIlpo Järvinen } else if (!(sacked & TCPCB_LOST)) { 2096ac11ba75SIlpo Järvinen if (hole == NULL && !(sacked & (TCPCB_SACKED_RETRANS|TCPCB_SACKED_ACKED))) 20970e1c54c2SIlpo Järvinen hole = skb; 209861eb55f4SIlpo Järvinen continue; 20991da177e4SLinus Torvalds 21000e1c54c2SIlpo Järvinen } else { 2101618d9f25SIlpo Järvinen last_lost = TCP_SKB_CB(skb)->end_seq; 21020e1c54c2SIlpo Järvinen if (icsk->icsk_ca_state != TCP_CA_Loss) 21030e1c54c2SIlpo Järvinen mib_idx = LINUX_MIB_TCPFASTRETRANS; 21040e1c54c2SIlpo Järvinen else 21050e1c54c2SIlpo Järvinen mib_idx = LINUX_MIB_TCPSLOWSTARTRETRANS; 21060e1c54c2SIlpo Järvinen } 21070e1c54c2SIlpo Järvinen 21080e1c54c2SIlpo Järvinen if (sacked & (TCPCB_SACKED_ACKED|TCPCB_SACKED_RETRANS)) 210961eb55f4SIlpo Järvinen continue; 211040b215e5SPavel Emelyanov 2111f0ceb0edSIlpo Järvinen if (tcp_retransmit_skb(sk, skb)) 21121da177e4SLinus Torvalds return; 2113de0744afSPavel Emelyanov NET_INC_STATS_BH(sock_net(sk), mib_idx); 21141da177e4SLinus Torvalds 2115fe067e8aSDavid S. Miller if (skb == tcp_write_queue_head(sk)) 2116463c84b9SArnaldo Carvalho de Melo inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS, 21173f421baaSArnaldo Carvalho de Melo inet_csk(sk)->icsk_rto, 21183f421baaSArnaldo Carvalho de Melo TCP_RTO_MAX); 21191da177e4SLinus Torvalds } 21201da177e4SLinus Torvalds } 21211da177e4SLinus Torvalds 21221da177e4SLinus Torvalds /* Send a fin. The caller locks the socket for us. This cannot be 21231da177e4SLinus Torvalds * allowed to fail queueing a FIN frame under any circumstances. 21241da177e4SLinus Torvalds */ 21251da177e4SLinus Torvalds void tcp_send_fin(struct sock *sk) 21261da177e4SLinus Torvalds { 21271da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 2128fe067e8aSDavid S. Miller struct sk_buff *skb = tcp_write_queue_tail(sk); 21291da177e4SLinus Torvalds int mss_now; 21301da177e4SLinus Torvalds 21311da177e4SLinus Torvalds /* Optimization, tack on the FIN if we have a queue of 21321da177e4SLinus Torvalds * unsent frames. But be careful about outgoing SACKS 21331da177e4SLinus Torvalds * and IP options. 21341da177e4SLinus Torvalds */ 21350c54b85fSIlpo Järvinen mss_now = tcp_current_mss(sk); 21361da177e4SLinus Torvalds 2137fe067e8aSDavid S. Miller if (tcp_send_head(sk) != NULL) { 21381da177e4SLinus Torvalds TCP_SKB_CB(skb)->flags |= TCPCB_FLAG_FIN; 21391da177e4SLinus Torvalds TCP_SKB_CB(skb)->end_seq++; 21401da177e4SLinus Torvalds tp->write_seq++; 21411da177e4SLinus Torvalds } else { 21421da177e4SLinus Torvalds /* Socket is locked, keep trying until memory is available. */ 21431da177e4SLinus Torvalds for (;;) { 2144aa133076SWu Fengguang skb = alloc_skb_fclone(MAX_TCP_HEADER, 2145aa133076SWu Fengguang sk->sk_allocation); 21461da177e4SLinus Torvalds if (skb) 21471da177e4SLinus Torvalds break; 21481da177e4SLinus Torvalds yield(); 21491da177e4SLinus Torvalds } 21501da177e4SLinus Torvalds 21511da177e4SLinus Torvalds /* Reserve space for headers and prepare control bits. */ 21521da177e4SLinus Torvalds skb_reserve(skb, MAX_TCP_HEADER); 21531da177e4SLinus Torvalds /* FIN eats a sequence byte, write_seq advanced by tcp_queue_skb(). */ 2154e870a8efSIlpo Järvinen tcp_init_nondata_skb(skb, tp->write_seq, 2155e870a8efSIlpo Järvinen TCPCB_FLAG_ACK | TCPCB_FLAG_FIN); 21561da177e4SLinus Torvalds tcp_queue_skb(sk, skb); 21571da177e4SLinus Torvalds } 21589e412ba7SIlpo Järvinen __tcp_push_pending_frames(sk, mss_now, TCP_NAGLE_OFF); 21591da177e4SLinus Torvalds } 21601da177e4SLinus Torvalds 21611da177e4SLinus Torvalds /* We get here when a process closes a file descriptor (either due to 21621da177e4SLinus Torvalds * an explicit close() or as a byproduct of exit()'ing) and there 21631da177e4SLinus Torvalds * was unread data in the receive queue. This behavior is recommended 216465bb723cSGerrit Renker * by RFC 2525, section 2.17. -DaveM 21651da177e4SLinus Torvalds */ 2166dd0fc66fSAl Viro void tcp_send_active_reset(struct sock *sk, gfp_t priority) 21671da177e4SLinus Torvalds { 21681da177e4SLinus Torvalds struct sk_buff *skb; 21691da177e4SLinus Torvalds 21701da177e4SLinus Torvalds /* NOTE: No TCP options attached and we never retransmit this. */ 21711da177e4SLinus Torvalds skb = alloc_skb(MAX_TCP_HEADER, priority); 21721da177e4SLinus Torvalds if (!skb) { 21734e673444SPavel Emelyanov NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPABORTFAILED); 21741da177e4SLinus Torvalds return; 21751da177e4SLinus Torvalds } 21761da177e4SLinus Torvalds 21771da177e4SLinus Torvalds /* Reserve space for headers and prepare control bits. */ 21781da177e4SLinus Torvalds skb_reserve(skb, MAX_TCP_HEADER); 2179e870a8efSIlpo Järvinen tcp_init_nondata_skb(skb, tcp_acceptable_seq(sk), 2180e870a8efSIlpo Järvinen TCPCB_FLAG_ACK | TCPCB_FLAG_RST); 21811da177e4SLinus Torvalds /* Send it off. */ 21821da177e4SLinus Torvalds TCP_SKB_CB(skb)->when = tcp_time_stamp; 2183dfb4b9dcSDavid S. Miller if (tcp_transmit_skb(sk, skb, 0, priority)) 21844e673444SPavel Emelyanov NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPABORTFAILED); 218526af65cbSSridhar Samudrala 218681cc8a75SPavel Emelyanov TCP_INC_STATS(sock_net(sk), TCP_MIB_OUTRSTS); 21871da177e4SLinus Torvalds } 21881da177e4SLinus Torvalds 218967edfef7SAndi Kleen /* Send a crossed SYN-ACK during socket establishment. 219067edfef7SAndi Kleen * WARNING: This routine must only be called when we have already sent 21911da177e4SLinus Torvalds * a SYN packet that crossed the incoming SYN that caused this routine 21921da177e4SLinus Torvalds * to get called. If this assumption fails then the initial rcv_wnd 21931da177e4SLinus Torvalds * and rcv_wscale values will not be correct. 21941da177e4SLinus Torvalds */ 21951da177e4SLinus Torvalds int tcp_send_synack(struct sock *sk) 21961da177e4SLinus Torvalds { 21971da177e4SLinus Torvalds struct sk_buff *skb; 21981da177e4SLinus Torvalds 2199fe067e8aSDavid S. Miller skb = tcp_write_queue_head(sk); 22001da177e4SLinus Torvalds if (skb == NULL || !(TCP_SKB_CB(skb)->flags & TCPCB_FLAG_SYN)) { 22011da177e4SLinus Torvalds printk(KERN_DEBUG "tcp_send_synack: wrong queue state\n"); 22021da177e4SLinus Torvalds return -EFAULT; 22031da177e4SLinus Torvalds } 22041da177e4SLinus Torvalds if (!(TCP_SKB_CB(skb)->flags & TCPCB_FLAG_ACK)) { 22051da177e4SLinus Torvalds if (skb_cloned(skb)) { 22061da177e4SLinus Torvalds struct sk_buff *nskb = skb_copy(skb, GFP_ATOMIC); 22071da177e4SLinus Torvalds if (nskb == NULL) 22081da177e4SLinus Torvalds return -ENOMEM; 2209fe067e8aSDavid S. Miller tcp_unlink_write_queue(skb, sk); 22101da177e4SLinus Torvalds skb_header_release(nskb); 2211fe067e8aSDavid S. Miller __tcp_add_write_queue_head(sk, nskb); 22123ab224beSHideo Aoki sk_wmem_free_skb(sk, skb); 22133ab224beSHideo Aoki sk->sk_wmem_queued += nskb->truesize; 22143ab224beSHideo Aoki sk_mem_charge(sk, nskb->truesize); 22151da177e4SLinus Torvalds skb = nskb; 22161da177e4SLinus Torvalds } 22171da177e4SLinus Torvalds 22181da177e4SLinus Torvalds TCP_SKB_CB(skb)->flags |= TCPCB_FLAG_ACK; 22191da177e4SLinus Torvalds TCP_ECN_send_synack(tcp_sk(sk), skb); 22201da177e4SLinus Torvalds } 22211da177e4SLinus Torvalds TCP_SKB_CB(skb)->when = tcp_time_stamp; 2222dfb4b9dcSDavid S. Miller return tcp_transmit_skb(sk, skb, 1, GFP_ATOMIC); 22231da177e4SLinus Torvalds } 22241da177e4SLinus Torvalds 222567edfef7SAndi Kleen /* Prepare a SYN-ACK. */ 22261da177e4SLinus Torvalds struct sk_buff *tcp_make_synack(struct sock *sk, struct dst_entry *dst, 222760236fddSArnaldo Carvalho de Melo struct request_sock *req) 22281da177e4SLinus Torvalds { 22292e6599cbSArnaldo Carvalho de Melo struct inet_request_sock *ireq = inet_rsk(req); 22301da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 22311da177e4SLinus Torvalds struct tcphdr *th; 22321da177e4SLinus Torvalds int tcp_header_size; 223333ad798cSAdam Langley struct tcp_out_options opts; 22341da177e4SLinus Torvalds struct sk_buff *skb; 2235cfb6eeb4SYOSHIFUJI Hideaki struct tcp_md5sig_key *md5; 2236cfb6eeb4SYOSHIFUJI Hideaki __u8 *md5_hash_location; 2237f5fff5dcSTom Quetchenbach int mss; 22381da177e4SLinus Torvalds 22391da177e4SLinus Torvalds skb = sock_wmalloc(sk, MAX_TCP_HEADER + 15, 1, GFP_ATOMIC); 22401da177e4SLinus Torvalds if (skb == NULL) 22411da177e4SLinus Torvalds return NULL; 22421da177e4SLinus Torvalds 22431da177e4SLinus Torvalds /* Reserve space for headers. */ 22441da177e4SLinus Torvalds skb_reserve(skb, MAX_TCP_HEADER); 22451da177e4SLinus Torvalds 2246adf30907SEric Dumazet skb_dst_set(skb, dst_clone(dst)); 22471da177e4SLinus Torvalds 2248f5fff5dcSTom Quetchenbach mss = dst_metric(dst, RTAX_ADVMSS); 2249f5fff5dcSTom Quetchenbach if (tp->rx_opt.user_mss && tp->rx_opt.user_mss < mss) 2250f5fff5dcSTom Quetchenbach mss = tp->rx_opt.user_mss; 2251f5fff5dcSTom Quetchenbach 225233ad798cSAdam Langley if (req->rcv_wnd == 0) { /* ignored for retransmitted syns */ 225333ad798cSAdam Langley __u8 rcv_wscale; 225433ad798cSAdam Langley /* Set this up on the first call only */ 225533ad798cSAdam Langley req->window_clamp = tp->window_clamp ? : dst_metric(dst, RTAX_WINDOW); 225633ad798cSAdam Langley /* tcp_full_space because it is guaranteed to be the first packet */ 225733ad798cSAdam Langley tcp_select_initial_window(tcp_full_space(sk), 2258f5fff5dcSTom Quetchenbach mss - (ireq->tstamp_ok ? TCPOLEN_TSTAMP_ALIGNED : 0), 225933ad798cSAdam Langley &req->rcv_wnd, 226033ad798cSAdam Langley &req->window_clamp, 226133ad798cSAdam Langley ireq->wscale_ok, 226233ad798cSAdam Langley &rcv_wscale); 226333ad798cSAdam Langley ireq->rcv_wscale = rcv_wscale; 226433ad798cSAdam Langley } 2265cfb6eeb4SYOSHIFUJI Hideaki 226633ad798cSAdam Langley memset(&opts, 0, sizeof(opts)); 22678b5f12d0SFlorian Westphal #ifdef CONFIG_SYN_COOKIES 22688b5f12d0SFlorian Westphal if (unlikely(req->cookie_ts)) 22698b5f12d0SFlorian Westphal TCP_SKB_CB(skb)->when = cookie_init_timestamp(req); 22708b5f12d0SFlorian Westphal else 22718b5f12d0SFlorian Westphal #endif 227233ad798cSAdam Langley TCP_SKB_CB(skb)->when = tcp_time_stamp; 2273f5fff5dcSTom Quetchenbach tcp_header_size = tcp_synack_options(sk, req, mss, 227433ad798cSAdam Langley skb, &opts, &md5) + 227533ad798cSAdam Langley sizeof(struct tcphdr); 227633ad798cSAdam Langley 2277aa8223c7SArnaldo Carvalho de Melo skb_push(skb, tcp_header_size); 2278aa8223c7SArnaldo Carvalho de Melo skb_reset_transport_header(skb); 22791da177e4SLinus Torvalds 2280aa8223c7SArnaldo Carvalho de Melo th = tcp_hdr(skb); 22811da177e4SLinus Torvalds memset(th, 0, sizeof(struct tcphdr)); 22821da177e4SLinus Torvalds th->syn = 1; 22831da177e4SLinus Torvalds th->ack = 1; 22841da177e4SLinus Torvalds TCP_ECN_make_synack(req, th); 2285a3116ac5SKOVACS Krisztian th->source = ireq->loc_port; 22862e6599cbSArnaldo Carvalho de Melo th->dest = ireq->rmt_port; 2287e870a8efSIlpo Järvinen /* Setting of flags are superfluous here for callers (and ECE is 2288e870a8efSIlpo Järvinen * not even correctly set) 2289e870a8efSIlpo Järvinen */ 2290e870a8efSIlpo Järvinen tcp_init_nondata_skb(skb, tcp_rsk(req)->snt_isn, 2291e870a8efSIlpo Järvinen TCPCB_FLAG_SYN | TCPCB_FLAG_ACK); 22921da177e4SLinus Torvalds th->seq = htonl(TCP_SKB_CB(skb)->seq); 22932e6599cbSArnaldo Carvalho de Melo th->ack_seq = htonl(tcp_rsk(req)->rcv_isn + 1); 22941da177e4SLinus Torvalds 22951da177e4SLinus Torvalds /* RFC1323: The window in SYN & SYN/ACK segments is never scaled. */ 2296600ff0c2SIlpo Järvinen th->window = htons(min(req->rcv_wnd, 65535U)); 229733ad798cSAdam Langley tcp_options_write((__be32 *)(th + 1), tp, &opts, &md5_hash_location); 22981da177e4SLinus Torvalds th->doff = (tcp_header_size >> 2); 229981cc8a75SPavel Emelyanov TCP_INC_STATS(sock_net(sk), TCP_MIB_OUTSEGS); 2300cfb6eeb4SYOSHIFUJI Hideaki 2301cfb6eeb4SYOSHIFUJI Hideaki #ifdef CONFIG_TCP_MD5SIG 2302cfb6eeb4SYOSHIFUJI Hideaki /* Okay, we have all we need - do the md5 hash if needed */ 2303cfb6eeb4SYOSHIFUJI Hideaki if (md5) { 2304e3afe7b7SJohn Dykstra tcp_rsk(req)->af_specific->calc_md5_hash(md5_hash_location, 230549a72dfbSAdam Langley md5, NULL, req, skb); 2306cfb6eeb4SYOSHIFUJI Hideaki } 2307cfb6eeb4SYOSHIFUJI Hideaki #endif 2308cfb6eeb4SYOSHIFUJI Hideaki 23091da177e4SLinus Torvalds return skb; 23101da177e4SLinus Torvalds } 23111da177e4SLinus Torvalds 231267edfef7SAndi Kleen /* Do all connect socket setups that can be done AF independent. */ 231340efc6faSStephen Hemminger static void tcp_connect_init(struct sock *sk) 23141da177e4SLinus Torvalds { 23151da177e4SLinus Torvalds struct dst_entry *dst = __sk_dst_get(sk); 23161da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 23171da177e4SLinus Torvalds __u8 rcv_wscale; 23181da177e4SLinus Torvalds 23191da177e4SLinus Torvalds /* We'll fix this up when we get a response from the other end. 23201da177e4SLinus Torvalds * See tcp_input.c:tcp_rcv_state_process case TCP_SYN_SENT. 23211da177e4SLinus Torvalds */ 23221da177e4SLinus Torvalds tp->tcp_header_len = sizeof(struct tcphdr) + 2323cda42ebdSGilad Ben-Yossef (sysctl_tcp_timestamps && 2324cda42ebdSGilad Ben-Yossef (!dst_feature(dst, RTAX_FEATURE_NO_TSTAMP) ? 2325cda42ebdSGilad Ben-Yossef TCPOLEN_TSTAMP_ALIGNED : 0)); 23261da177e4SLinus Torvalds 2327cfb6eeb4SYOSHIFUJI Hideaki #ifdef CONFIG_TCP_MD5SIG 2328cfb6eeb4SYOSHIFUJI Hideaki if (tp->af_specific->md5_lookup(sk, sk) != NULL) 2329cfb6eeb4SYOSHIFUJI Hideaki tp->tcp_header_len += TCPOLEN_MD5SIG_ALIGNED; 2330cfb6eeb4SYOSHIFUJI Hideaki #endif 2331cfb6eeb4SYOSHIFUJI Hideaki 23321da177e4SLinus Torvalds /* If user gave his TCP_MAXSEG, record it to clamp */ 23331da177e4SLinus Torvalds if (tp->rx_opt.user_mss) 23341da177e4SLinus Torvalds tp->rx_opt.mss_clamp = tp->rx_opt.user_mss; 23351da177e4SLinus Torvalds tp->max_window = 0; 23365d424d5aSJohn Heffner tcp_mtup_init(sk); 23371da177e4SLinus Torvalds tcp_sync_mss(sk, dst_mtu(dst)); 23381da177e4SLinus Torvalds 23391da177e4SLinus Torvalds if (!tp->window_clamp) 23401da177e4SLinus Torvalds tp->window_clamp = dst_metric(dst, RTAX_WINDOW); 23411da177e4SLinus Torvalds tp->advmss = dst_metric(dst, RTAX_ADVMSS); 2342f5fff5dcSTom Quetchenbach if (tp->rx_opt.user_mss && tp->rx_opt.user_mss < tp->advmss) 2343f5fff5dcSTom Quetchenbach tp->advmss = tp->rx_opt.user_mss; 2344f5fff5dcSTom Quetchenbach 23451da177e4SLinus Torvalds tcp_initialize_rcv_mss(sk); 23461da177e4SLinus Torvalds 23471da177e4SLinus Torvalds tcp_select_initial_window(tcp_full_space(sk), 23481da177e4SLinus Torvalds tp->advmss - (tp->rx_opt.ts_recent_stamp ? tp->tcp_header_len - sizeof(struct tcphdr) : 0), 23491da177e4SLinus Torvalds &tp->rcv_wnd, 23501da177e4SLinus Torvalds &tp->window_clamp, 2351345cda2fSGilad Ben-Yossef (sysctl_tcp_window_scaling && 2352345cda2fSGilad Ben-Yossef !dst_feature(dst, RTAX_FEATURE_NO_WSCALE)), 23531da177e4SLinus Torvalds &rcv_wscale); 23541da177e4SLinus Torvalds 23551da177e4SLinus Torvalds tp->rx_opt.rcv_wscale = rcv_wscale; 23561da177e4SLinus Torvalds tp->rcv_ssthresh = tp->rcv_wnd; 23571da177e4SLinus Torvalds 23581da177e4SLinus Torvalds sk->sk_err = 0; 23591da177e4SLinus Torvalds sock_reset_flag(sk, SOCK_DONE); 23601da177e4SLinus Torvalds tp->snd_wnd = 0; 2361ee7537b6SHantzis Fotis tcp_init_wl(tp, 0); 23621da177e4SLinus Torvalds tp->snd_una = tp->write_seq; 23631da177e4SLinus Torvalds tp->snd_sml = tp->write_seq; 236433f5f57eSIlpo Järvinen tp->snd_up = tp->write_seq; 23651da177e4SLinus Torvalds tp->rcv_nxt = 0; 23661da177e4SLinus Torvalds tp->rcv_wup = 0; 23671da177e4SLinus Torvalds tp->copied_seq = 0; 23681da177e4SLinus Torvalds 2369463c84b9SArnaldo Carvalho de Melo inet_csk(sk)->icsk_rto = TCP_TIMEOUT_INIT; 2370463c84b9SArnaldo Carvalho de Melo inet_csk(sk)->icsk_retransmits = 0; 23711da177e4SLinus Torvalds tcp_clear_retrans(tp); 23721da177e4SLinus Torvalds } 23731da177e4SLinus Torvalds 237467edfef7SAndi Kleen /* Build a SYN and send it off. */ 23751da177e4SLinus Torvalds int tcp_connect(struct sock *sk) 23761da177e4SLinus Torvalds { 23771da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 23781da177e4SLinus Torvalds struct sk_buff *buff; 23791da177e4SLinus Torvalds 23801da177e4SLinus Torvalds tcp_connect_init(sk); 23811da177e4SLinus Torvalds 2382d179cd12SDavid S. Miller buff = alloc_skb_fclone(MAX_TCP_HEADER + 15, sk->sk_allocation); 23831da177e4SLinus Torvalds if (unlikely(buff == NULL)) 23841da177e4SLinus Torvalds return -ENOBUFS; 23851da177e4SLinus Torvalds 23861da177e4SLinus Torvalds /* Reserve space for headers. */ 23871da177e4SLinus Torvalds skb_reserve(buff, MAX_TCP_HEADER); 23881da177e4SLinus Torvalds 2389bd37a088SWei Yongjun tp->snd_nxt = tp->write_seq; 2390e870a8efSIlpo Järvinen tcp_init_nondata_skb(buff, tp->write_seq++, TCPCB_FLAG_SYN); 2391e870a8efSIlpo Järvinen TCP_ECN_send_syn(sk, buff); 23921da177e4SLinus Torvalds 23931da177e4SLinus Torvalds /* Send it off. */ 23941da177e4SLinus Torvalds TCP_SKB_CB(buff)->when = tcp_time_stamp; 23951da177e4SLinus Torvalds tp->retrans_stamp = TCP_SKB_CB(buff)->when; 23961da177e4SLinus Torvalds skb_header_release(buff); 2397fe067e8aSDavid S. Miller __tcp_add_write_queue_tail(sk, buff); 23983ab224beSHideo Aoki sk->sk_wmem_queued += buff->truesize; 23993ab224beSHideo Aoki sk_mem_charge(sk, buff->truesize); 24001da177e4SLinus Torvalds tp->packets_out += tcp_skb_pcount(buff); 2401aa133076SWu Fengguang tcp_transmit_skb(sk, buff, 1, sk->sk_allocation); 2402bd37a088SWei Yongjun 2403bd37a088SWei Yongjun /* We change tp->snd_nxt after the tcp_transmit_skb() call 2404bd37a088SWei Yongjun * in order to make this packet get counted in tcpOutSegs. 2405bd37a088SWei Yongjun */ 2406bd37a088SWei Yongjun tp->snd_nxt = tp->write_seq; 2407bd37a088SWei Yongjun tp->pushed_seq = tp->write_seq; 240881cc8a75SPavel Emelyanov TCP_INC_STATS(sock_net(sk), TCP_MIB_ACTIVEOPENS); 24091da177e4SLinus Torvalds 24101da177e4SLinus Torvalds /* Timer for repeating the SYN until an answer. */ 24113f421baaSArnaldo Carvalho de Melo inet_csk_reset_xmit_timer(sk, ICSK_TIME_RETRANS, 24123f421baaSArnaldo Carvalho de Melo inet_csk(sk)->icsk_rto, TCP_RTO_MAX); 24131da177e4SLinus Torvalds return 0; 24141da177e4SLinus Torvalds } 24151da177e4SLinus Torvalds 24161da177e4SLinus Torvalds /* Send out a delayed ack, the caller does the policy checking 24171da177e4SLinus Torvalds * to see if we should even be here. See tcp_input.c:tcp_ack_snd_check() 24181da177e4SLinus Torvalds * for details. 24191da177e4SLinus Torvalds */ 24201da177e4SLinus Torvalds void tcp_send_delayed_ack(struct sock *sk) 24211da177e4SLinus Torvalds { 2422463c84b9SArnaldo Carvalho de Melo struct inet_connection_sock *icsk = inet_csk(sk); 2423463c84b9SArnaldo Carvalho de Melo int ato = icsk->icsk_ack.ato; 24241da177e4SLinus Torvalds unsigned long timeout; 24251da177e4SLinus Torvalds 24261da177e4SLinus Torvalds if (ato > TCP_DELACK_MIN) { 2427463c84b9SArnaldo Carvalho de Melo const struct tcp_sock *tp = tcp_sk(sk); 24281da177e4SLinus Torvalds int max_ato = HZ / 2; 24291da177e4SLinus Torvalds 2430056834d9SIlpo Järvinen if (icsk->icsk_ack.pingpong || 2431056834d9SIlpo Järvinen (icsk->icsk_ack.pending & ICSK_ACK_PUSHED)) 24321da177e4SLinus Torvalds max_ato = TCP_DELACK_MAX; 24331da177e4SLinus Torvalds 24341da177e4SLinus Torvalds /* Slow path, intersegment interval is "high". */ 24351da177e4SLinus Torvalds 24361da177e4SLinus Torvalds /* If some rtt estimate is known, use it to bound delayed ack. 2437463c84b9SArnaldo Carvalho de Melo * Do not use inet_csk(sk)->icsk_rto here, use results of rtt measurements 24381da177e4SLinus Torvalds * directly. 24391da177e4SLinus Torvalds */ 24401da177e4SLinus Torvalds if (tp->srtt) { 24411da177e4SLinus Torvalds int rtt = max(tp->srtt >> 3, TCP_DELACK_MIN); 24421da177e4SLinus Torvalds 24431da177e4SLinus Torvalds if (rtt < max_ato) 24441da177e4SLinus Torvalds max_ato = rtt; 24451da177e4SLinus Torvalds } 24461da177e4SLinus Torvalds 24471da177e4SLinus Torvalds ato = min(ato, max_ato); 24481da177e4SLinus Torvalds } 24491da177e4SLinus Torvalds 24501da177e4SLinus Torvalds /* Stay within the limit we were given */ 24511da177e4SLinus Torvalds timeout = jiffies + ato; 24521da177e4SLinus Torvalds 24531da177e4SLinus Torvalds /* Use new timeout only if there wasn't a older one earlier. */ 2454463c84b9SArnaldo Carvalho de Melo if (icsk->icsk_ack.pending & ICSK_ACK_TIMER) { 24551da177e4SLinus Torvalds /* If delack timer was blocked or is about to expire, 24561da177e4SLinus Torvalds * send ACK now. 24571da177e4SLinus Torvalds */ 2458463c84b9SArnaldo Carvalho de Melo if (icsk->icsk_ack.blocked || 2459463c84b9SArnaldo Carvalho de Melo time_before_eq(icsk->icsk_ack.timeout, jiffies + (ato >> 2))) { 24601da177e4SLinus Torvalds tcp_send_ack(sk); 24611da177e4SLinus Torvalds return; 24621da177e4SLinus Torvalds } 24631da177e4SLinus Torvalds 2464463c84b9SArnaldo Carvalho de Melo if (!time_before(timeout, icsk->icsk_ack.timeout)) 2465463c84b9SArnaldo Carvalho de Melo timeout = icsk->icsk_ack.timeout; 24661da177e4SLinus Torvalds } 2467463c84b9SArnaldo Carvalho de Melo icsk->icsk_ack.pending |= ICSK_ACK_SCHED | ICSK_ACK_TIMER; 2468463c84b9SArnaldo Carvalho de Melo icsk->icsk_ack.timeout = timeout; 2469463c84b9SArnaldo Carvalho de Melo sk_reset_timer(sk, &icsk->icsk_delack_timer, timeout); 24701da177e4SLinus Torvalds } 24711da177e4SLinus Torvalds 24721da177e4SLinus Torvalds /* This routine sends an ack and also updates the window. */ 24731da177e4SLinus Torvalds void tcp_send_ack(struct sock *sk) 24741da177e4SLinus Torvalds { 24751da177e4SLinus Torvalds struct sk_buff *buff; 24761da177e4SLinus Torvalds 2477058dc334SIlpo Järvinen /* If we have been reset, we may not send again. */ 2478058dc334SIlpo Järvinen if (sk->sk_state == TCP_CLOSE) 2479058dc334SIlpo Järvinen return; 2480058dc334SIlpo Järvinen 24811da177e4SLinus Torvalds /* We are not putting this on the write queue, so 24821da177e4SLinus Torvalds * tcp_transmit_skb() will set the ownership to this 24831da177e4SLinus Torvalds * sock. 24841da177e4SLinus Torvalds */ 24851da177e4SLinus Torvalds buff = alloc_skb(MAX_TCP_HEADER, GFP_ATOMIC); 24861da177e4SLinus Torvalds if (buff == NULL) { 2487463c84b9SArnaldo Carvalho de Melo inet_csk_schedule_ack(sk); 2488463c84b9SArnaldo Carvalho de Melo inet_csk(sk)->icsk_ack.ato = TCP_ATO_MIN; 24893f421baaSArnaldo Carvalho de Melo inet_csk_reset_xmit_timer(sk, ICSK_TIME_DACK, 24903f421baaSArnaldo Carvalho de Melo TCP_DELACK_MAX, TCP_RTO_MAX); 24911da177e4SLinus Torvalds return; 24921da177e4SLinus Torvalds } 24931da177e4SLinus Torvalds 24941da177e4SLinus Torvalds /* Reserve space for headers and prepare control bits. */ 24951da177e4SLinus Torvalds skb_reserve(buff, MAX_TCP_HEADER); 2496e870a8efSIlpo Järvinen tcp_init_nondata_skb(buff, tcp_acceptable_seq(sk), TCPCB_FLAG_ACK); 24971da177e4SLinus Torvalds 24981da177e4SLinus Torvalds /* Send it off, this clears delayed acks for us. */ 24991da177e4SLinus Torvalds TCP_SKB_CB(buff)->when = tcp_time_stamp; 2500dfb4b9dcSDavid S. Miller tcp_transmit_skb(sk, buff, 0, GFP_ATOMIC); 25011da177e4SLinus Torvalds } 25021da177e4SLinus Torvalds 25031da177e4SLinus Torvalds /* This routine sends a packet with an out of date sequence 25041da177e4SLinus Torvalds * number. It assumes the other end will try to ack it. 25051da177e4SLinus Torvalds * 25061da177e4SLinus Torvalds * Question: what should we make while urgent mode? 25071da177e4SLinus Torvalds * 4.4BSD forces sending single byte of data. We cannot send 25081da177e4SLinus Torvalds * out of window data, because we have SND.NXT==SND.MAX... 25091da177e4SLinus Torvalds * 25101da177e4SLinus Torvalds * Current solution: to send TWO zero-length segments in urgent mode: 25111da177e4SLinus Torvalds * one is with SEG.SEQ=SND.UNA to deliver urgent pointer, another is 25121da177e4SLinus Torvalds * out-of-date with SND.UNA-1 to probe window. 25131da177e4SLinus Torvalds */ 25141da177e4SLinus Torvalds static int tcp_xmit_probe_skb(struct sock *sk, int urgent) 25151da177e4SLinus Torvalds { 25161da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 25171da177e4SLinus Torvalds struct sk_buff *skb; 25181da177e4SLinus Torvalds 25191da177e4SLinus Torvalds /* We don't queue it, tcp_transmit_skb() sets ownership. */ 25201da177e4SLinus Torvalds skb = alloc_skb(MAX_TCP_HEADER, GFP_ATOMIC); 25211da177e4SLinus Torvalds if (skb == NULL) 25221da177e4SLinus Torvalds return -1; 25231da177e4SLinus Torvalds 25241da177e4SLinus Torvalds /* Reserve space for headers and set control bits. */ 25251da177e4SLinus Torvalds skb_reserve(skb, MAX_TCP_HEADER); 25261da177e4SLinus Torvalds /* Use a previous sequence. This should cause the other 25271da177e4SLinus Torvalds * end to send an ack. Don't queue or clone SKB, just 25281da177e4SLinus Torvalds * send it. 25291da177e4SLinus Torvalds */ 2530e870a8efSIlpo Järvinen tcp_init_nondata_skb(skb, tp->snd_una - !urgent, TCPCB_FLAG_ACK); 25311da177e4SLinus Torvalds TCP_SKB_CB(skb)->when = tcp_time_stamp; 2532dfb4b9dcSDavid S. Miller return tcp_transmit_skb(sk, skb, 0, GFP_ATOMIC); 25331da177e4SLinus Torvalds } 25341da177e4SLinus Torvalds 253567edfef7SAndi Kleen /* Initiate keepalive or window probe from timer. */ 25361da177e4SLinus Torvalds int tcp_write_wakeup(struct sock *sk) 25371da177e4SLinus Torvalds { 25381da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 25391da177e4SLinus Torvalds struct sk_buff *skb; 25401da177e4SLinus Torvalds 2541058dc334SIlpo Järvinen if (sk->sk_state == TCP_CLOSE) 2542058dc334SIlpo Järvinen return -1; 2543058dc334SIlpo Järvinen 2544fe067e8aSDavid S. Miller if ((skb = tcp_send_head(sk)) != NULL && 254590840defSIlpo Järvinen before(TCP_SKB_CB(skb)->seq, tcp_wnd_end(tp))) { 25461da177e4SLinus Torvalds int err; 25470c54b85fSIlpo Järvinen unsigned int mss = tcp_current_mss(sk); 254890840defSIlpo Järvinen unsigned int seg_size = tcp_wnd_end(tp) - TCP_SKB_CB(skb)->seq; 25491da177e4SLinus Torvalds 25501da177e4SLinus Torvalds if (before(tp->pushed_seq, TCP_SKB_CB(skb)->end_seq)) 25511da177e4SLinus Torvalds tp->pushed_seq = TCP_SKB_CB(skb)->end_seq; 25521da177e4SLinus Torvalds 25531da177e4SLinus Torvalds /* We are probing the opening of a window 25541da177e4SLinus Torvalds * but the window size is != 0 25551da177e4SLinus Torvalds * must have been a result SWS avoidance ( sender ) 25561da177e4SLinus Torvalds */ 25571da177e4SLinus Torvalds if (seg_size < TCP_SKB_CB(skb)->end_seq - TCP_SKB_CB(skb)->seq || 25581da177e4SLinus Torvalds skb->len > mss) { 25591da177e4SLinus Torvalds seg_size = min(seg_size, mss); 25601da177e4SLinus Torvalds TCP_SKB_CB(skb)->flags |= TCPCB_FLAG_PSH; 2561846998aeSDavid S. Miller if (tcp_fragment(sk, skb, seg_size, mss)) 25621da177e4SLinus Torvalds return -1; 25631da177e4SLinus Torvalds } else if (!tcp_skb_pcount(skb)) 2564846998aeSDavid S. Miller tcp_set_skb_tso_segs(sk, skb, mss); 25651da177e4SLinus Torvalds 25661da177e4SLinus Torvalds TCP_SKB_CB(skb)->flags |= TCPCB_FLAG_PSH; 25671da177e4SLinus Torvalds TCP_SKB_CB(skb)->when = tcp_time_stamp; 2568dfb4b9dcSDavid S. Miller err = tcp_transmit_skb(sk, skb, 1, GFP_ATOMIC); 256966f5fe62SIlpo Järvinen if (!err) 257066f5fe62SIlpo Järvinen tcp_event_new_data_sent(sk, skb); 25711da177e4SLinus Torvalds return err; 25721da177e4SLinus Torvalds } else { 257333f5f57eSIlpo Järvinen if (between(tp->snd_up, tp->snd_una + 1, tp->snd_una + 0xFFFF)) 25744828e7f4SIlpo Järvinen tcp_xmit_probe_skb(sk, 1); 25751da177e4SLinus Torvalds return tcp_xmit_probe_skb(sk, 0); 25761da177e4SLinus Torvalds } 25771da177e4SLinus Torvalds } 25781da177e4SLinus Torvalds 25791da177e4SLinus Torvalds /* A window probe timeout has occurred. If window is not closed send 25801da177e4SLinus Torvalds * a partial packet else a zero probe. 25811da177e4SLinus Torvalds */ 25821da177e4SLinus Torvalds void tcp_send_probe0(struct sock *sk) 25831da177e4SLinus Torvalds { 2584463c84b9SArnaldo Carvalho de Melo struct inet_connection_sock *icsk = inet_csk(sk); 25851da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 25861da177e4SLinus Torvalds int err; 25871da177e4SLinus Torvalds 25881da177e4SLinus Torvalds err = tcp_write_wakeup(sk); 25891da177e4SLinus Torvalds 2590fe067e8aSDavid S. Miller if (tp->packets_out || !tcp_send_head(sk)) { 25911da177e4SLinus Torvalds /* Cancel probe timer, if it is not required. */ 25926687e988SArnaldo Carvalho de Melo icsk->icsk_probes_out = 0; 2593463c84b9SArnaldo Carvalho de Melo icsk->icsk_backoff = 0; 25941da177e4SLinus Torvalds return; 25951da177e4SLinus Torvalds } 25961da177e4SLinus Torvalds 25971da177e4SLinus Torvalds if (err <= 0) { 2598463c84b9SArnaldo Carvalho de Melo if (icsk->icsk_backoff < sysctl_tcp_retries2) 2599463c84b9SArnaldo Carvalho de Melo icsk->icsk_backoff++; 26006687e988SArnaldo Carvalho de Melo icsk->icsk_probes_out++; 2601463c84b9SArnaldo Carvalho de Melo inet_csk_reset_xmit_timer(sk, ICSK_TIME_PROBE0, 26023f421baaSArnaldo Carvalho de Melo min(icsk->icsk_rto << icsk->icsk_backoff, TCP_RTO_MAX), 26033f421baaSArnaldo Carvalho de Melo TCP_RTO_MAX); 26041da177e4SLinus Torvalds } else { 26051da177e4SLinus Torvalds /* If packet was not sent due to local congestion, 26066687e988SArnaldo Carvalho de Melo * do not backoff and do not remember icsk_probes_out. 26071da177e4SLinus Torvalds * Let local senders to fight for local resources. 26081da177e4SLinus Torvalds * 26091da177e4SLinus Torvalds * Use accumulated backoff yet. 26101da177e4SLinus Torvalds */ 26116687e988SArnaldo Carvalho de Melo if (!icsk->icsk_probes_out) 26126687e988SArnaldo Carvalho de Melo icsk->icsk_probes_out = 1; 2613463c84b9SArnaldo Carvalho de Melo inet_csk_reset_xmit_timer(sk, ICSK_TIME_PROBE0, 2614463c84b9SArnaldo Carvalho de Melo min(icsk->icsk_rto << icsk->icsk_backoff, 26153f421baaSArnaldo Carvalho de Melo TCP_RESOURCE_PROBE_INTERVAL), 26163f421baaSArnaldo Carvalho de Melo TCP_RTO_MAX); 26171da177e4SLinus Torvalds } 26181da177e4SLinus Torvalds } 26191da177e4SLinus Torvalds 2620c6aefafbSGlenn Griffin EXPORT_SYMBOL(tcp_select_initial_window); 26211da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_connect); 26221da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_make_synack); 26231da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_simple_retransmit); 26241da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_sync_mss); 26255d424d5aSJohn Heffner EXPORT_SYMBOL(tcp_mtup_init); 2626