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 #include <linux/mm.h> 221da177e4SLinus Torvalds #include <linux/module.h> 235a0e3ad6STejun Heo #include <linux/slab.h> 241da177e4SLinus Torvalds #include <linux/sysctl.h> 251da177e4SLinus Torvalds #include <linux/workqueue.h> 2660e2a778SUrsula Braun #include <linux/static_key.h> 271da177e4SLinus Torvalds #include <net/tcp.h> 281da177e4SLinus Torvalds #include <net/inet_common.h> 291da177e4SLinus Torvalds #include <net/xfrm.h> 30e5907459SAlexander Duyck #include <net/busy_poll.h> 311da177e4SLinus Torvalds 32a2a385d6SEric Dumazet static bool tcp_in_window(u32 seq, u32 end_seq, u32 s_win, u32 e_win) 331da177e4SLinus Torvalds { 341da177e4SLinus Torvalds if (seq == s_win) 35a2a385d6SEric Dumazet return true; 361da177e4SLinus Torvalds if (after(end_seq, s_win) && before(seq, e_win)) 37a2a385d6SEric Dumazet return true; 38a02cec21SEric Dumazet return seq == e_win && seq == end_seq; 391da177e4SLinus Torvalds } 401da177e4SLinus Torvalds 414fb17a60SNeal Cardwell static enum tcp_tw_status 424fb17a60SNeal Cardwell tcp_timewait_check_oow_rate_limit(struct inet_timewait_sock *tw, 434fb17a60SNeal Cardwell const struct sk_buff *skb, int mib_idx) 444fb17a60SNeal Cardwell { 454fb17a60SNeal Cardwell struct tcp_timewait_sock *tcptw = tcp_twsk((struct sock *)tw); 464fb17a60SNeal Cardwell 474fb17a60SNeal Cardwell if (!tcp_oow_rate_limited(twsk_net(tw), skb, mib_idx, 484fb17a60SNeal Cardwell &tcptw->tw_last_oow_ack_time)) { 494fb17a60SNeal Cardwell /* Send ACK. Note, we do not put the bucket, 504fb17a60SNeal Cardwell * it will be released by caller. 514fb17a60SNeal Cardwell */ 524fb17a60SNeal Cardwell return TCP_TW_ACK; 534fb17a60SNeal Cardwell } 544fb17a60SNeal Cardwell 554fb17a60SNeal Cardwell /* We are rate-limiting, so just release the tw sock and drop skb. */ 564fb17a60SNeal Cardwell inet_twsk_put(tw); 574fb17a60SNeal Cardwell return TCP_TW_SUCCESS; 584fb17a60SNeal Cardwell } 594fb17a60SNeal Cardwell 601da177e4SLinus Torvalds /* 611da177e4SLinus Torvalds * * Main purpose of TIME-WAIT state is to close connection gracefully, 621da177e4SLinus Torvalds * when one of ends sits in LAST-ACK or CLOSING retransmitting FIN 631da177e4SLinus Torvalds * (and, probably, tail of data) and one or more our ACKs are lost. 641da177e4SLinus Torvalds * * What is TIME-WAIT timeout? It is associated with maximal packet 651da177e4SLinus Torvalds * lifetime in the internet, which results in wrong conclusion, that 661da177e4SLinus Torvalds * it is set to catch "old duplicate segments" wandering out of their path. 671da177e4SLinus Torvalds * It is not quite correct. This timeout is calculated so that it exceeds 681da177e4SLinus Torvalds * maximal retransmission timeout enough to allow to lose one (or more) 691da177e4SLinus Torvalds * segments sent by peer and our ACKs. This time may be calculated from RTO. 701da177e4SLinus Torvalds * * When TIME-WAIT socket receives RST, it means that another end 711da177e4SLinus Torvalds * finally closed and we are allowed to kill TIME-WAIT too. 721da177e4SLinus Torvalds * * Second purpose of TIME-WAIT is catching old duplicate segments. 731da177e4SLinus Torvalds * Well, certainly it is pure paranoia, but if we load TIME-WAIT 741da177e4SLinus Torvalds * with this semantics, we MUST NOT kill TIME-WAIT state with RSTs. 751da177e4SLinus Torvalds * * If we invented some more clever way to catch duplicates 761da177e4SLinus Torvalds * (f.e. based on PAWS), we could truncate TIME-WAIT to several RTOs. 771da177e4SLinus Torvalds * 781da177e4SLinus Torvalds * The algorithm below is based on FORMAL INTERPRETATION of RFCs. 791da177e4SLinus Torvalds * When you compare it to RFCs, please, read section SEGMENT ARRIVES 801da177e4SLinus Torvalds * from the very beginning. 811da177e4SLinus Torvalds * 821da177e4SLinus Torvalds * NOTE. With recycling (and later with fin-wait-2) TW bucket 831da177e4SLinus Torvalds * is _not_ stateless. It means, that strictly speaking we must 841da177e4SLinus Torvalds * spinlock it. I do not want! Well, probability of misbehaviour 851da177e4SLinus Torvalds * is ridiculously low and, seems, we could use some mb() tricks 861da177e4SLinus Torvalds * to avoid misread sequence numbers, states etc. --ANK 874308fc58SAlan Cox * 884308fc58SAlan Cox * We don't need to initialize tmp_out.sack_ok as we don't use the results 891da177e4SLinus Torvalds */ 901da177e4SLinus Torvalds enum tcp_tw_status 918feaf0c0SArnaldo Carvalho de Melo tcp_timewait_state_process(struct inet_timewait_sock *tw, struct sk_buff *skb, 928feaf0c0SArnaldo Carvalho de Melo const struct tcphdr *th) 931da177e4SLinus Torvalds { 941da177e4SLinus Torvalds struct tcp_options_received tmp_opt; 954957faadSWilliam Allen Simpson struct tcp_timewait_sock *tcptw = tcp_twsk((struct sock *)tw); 96a2a385d6SEric Dumazet bool paws_reject = false; 971da177e4SLinus Torvalds 98bb5b7c11SDavid S. Miller tmp_opt.saw_tstamp = 0; 998feaf0c0SArnaldo Carvalho de Melo if (th->doff > (sizeof(*th) >> 2) && tcptw->tw_ts_recent_stamp) { 100eed29f17SEric Dumazet tcp_parse_options(twsk_net(tw), skb, &tmp_opt, 0, NULL); 1011da177e4SLinus Torvalds 1021da177e4SLinus Torvalds if (tmp_opt.saw_tstamp) { 103eee2faabSAlexey Kodanev if (tmp_opt.rcv_tsecr) 104ee684b6fSAndrey Vagin tmp_opt.rcv_tsecr -= tcptw->tw_ts_offset; 1058feaf0c0SArnaldo Carvalho de Melo tmp_opt.ts_recent = tcptw->tw_ts_recent; 1068feaf0c0SArnaldo Carvalho de Melo tmp_opt.ts_recent_stamp = tcptw->tw_ts_recent_stamp; 107c887e6d2SIlpo Järvinen paws_reject = tcp_paws_reject(&tmp_opt, th->rst); 1081da177e4SLinus Torvalds } 1091da177e4SLinus Torvalds } 1101da177e4SLinus Torvalds 1111da177e4SLinus Torvalds if (tw->tw_substate == TCP_FIN_WAIT2) { 1121da177e4SLinus Torvalds /* Just repeat all the checks of tcp_rcv_state_process() */ 1131da177e4SLinus Torvalds 1141da177e4SLinus Torvalds /* Out of window, send ACK */ 1151da177e4SLinus Torvalds if (paws_reject || 1161da177e4SLinus Torvalds !tcp_in_window(TCP_SKB_CB(skb)->seq, TCP_SKB_CB(skb)->end_seq, 1178feaf0c0SArnaldo Carvalho de Melo tcptw->tw_rcv_nxt, 1188feaf0c0SArnaldo Carvalho de Melo tcptw->tw_rcv_nxt + tcptw->tw_rcv_wnd)) 1194fb17a60SNeal Cardwell return tcp_timewait_check_oow_rate_limit( 1204fb17a60SNeal Cardwell tw, skb, LINUX_MIB_TCPACKSKIPPEDFINWAIT2); 1211da177e4SLinus Torvalds 1221da177e4SLinus Torvalds if (th->rst) 1231da177e4SLinus Torvalds goto kill; 1241da177e4SLinus Torvalds 1258feaf0c0SArnaldo Carvalho de Melo if (th->syn && !before(TCP_SKB_CB(skb)->seq, tcptw->tw_rcv_nxt)) 126271c3b9bSFlorian Westphal return TCP_TW_RST; 1271da177e4SLinus Torvalds 1281da177e4SLinus Torvalds /* Dup ACK? */ 1291ac530b3SWei Yongjun if (!th->ack || 1301ac530b3SWei Yongjun !after(TCP_SKB_CB(skb)->end_seq, tcptw->tw_rcv_nxt) || 1311da177e4SLinus Torvalds TCP_SKB_CB(skb)->end_seq == TCP_SKB_CB(skb)->seq) { 1328feaf0c0SArnaldo Carvalho de Melo inet_twsk_put(tw); 1331da177e4SLinus Torvalds return TCP_TW_SUCCESS; 1341da177e4SLinus Torvalds } 1351da177e4SLinus Torvalds 1361da177e4SLinus Torvalds /* New data or FIN. If new data arrive after half-duplex close, 1371da177e4SLinus Torvalds * reset. 1381da177e4SLinus Torvalds */ 1391da177e4SLinus Torvalds if (!th->fin || 140271c3b9bSFlorian Westphal TCP_SKB_CB(skb)->end_seq != tcptw->tw_rcv_nxt + 1) 1411da177e4SLinus Torvalds return TCP_TW_RST; 1421da177e4SLinus Torvalds 1431da177e4SLinus Torvalds /* FIN arrived, enter true time-wait state. */ 1441da177e4SLinus Torvalds tw->tw_substate = TCP_TIME_WAIT; 1458feaf0c0SArnaldo Carvalho de Melo tcptw->tw_rcv_nxt = TCP_SKB_CB(skb)->end_seq; 1461da177e4SLinus Torvalds if (tmp_opt.saw_tstamp) { 147cca9bab1SArnd Bergmann tcptw->tw_ts_recent_stamp = ktime_get_seconds(); 1488feaf0c0SArnaldo Carvalho de Melo tcptw->tw_ts_recent = tmp_opt.rcv_tsval; 1491da177e4SLinus Torvalds } 1501da177e4SLinus Torvalds 151ed2e9239SEric Dumazet inet_twsk_reschedule(tw, TCP_TIMEWAIT_LEN); 1521da177e4SLinus Torvalds return TCP_TW_ACK; 1531da177e4SLinus Torvalds } 1541da177e4SLinus Torvalds 1551da177e4SLinus Torvalds /* 1561da177e4SLinus Torvalds * Now real TIME-WAIT state. 1571da177e4SLinus Torvalds * 1581da177e4SLinus Torvalds * RFC 1122: 1591da177e4SLinus Torvalds * "When a connection is [...] on TIME-WAIT state [...] 1601da177e4SLinus Torvalds * [a TCP] MAY accept a new SYN from the remote TCP to 1611da177e4SLinus Torvalds * reopen the connection directly, if it: 1621da177e4SLinus Torvalds * 1631da177e4SLinus Torvalds * (1) assigns its initial sequence number for the new 1641da177e4SLinus Torvalds * connection to be larger than the largest sequence 1651da177e4SLinus Torvalds * number it used on the previous connection incarnation, 1661da177e4SLinus Torvalds * and 1671da177e4SLinus Torvalds * 1681da177e4SLinus Torvalds * (2) returns to TIME-WAIT state if the SYN turns out 1691da177e4SLinus Torvalds * to be an old duplicate". 1701da177e4SLinus Torvalds */ 1711da177e4SLinus Torvalds 1721da177e4SLinus Torvalds if (!paws_reject && 1738feaf0c0SArnaldo Carvalho de Melo (TCP_SKB_CB(skb)->seq == tcptw->tw_rcv_nxt && 1741da177e4SLinus Torvalds (TCP_SKB_CB(skb)->seq == TCP_SKB_CB(skb)->end_seq || th->rst))) { 1751da177e4SLinus Torvalds /* In window segment, it may be only reset or bare ack. */ 1761da177e4SLinus Torvalds 1771da177e4SLinus Torvalds if (th->rst) { 178caa20d9aSStephen Hemminger /* This is TIME_WAIT assassination, in two flavors. 1791da177e4SLinus Torvalds * Oh well... nobody has a sufficient solution to this 1801da177e4SLinus Torvalds * protocol bug yet. 1811da177e4SLinus Torvalds */ 182625357aaSEric Dumazet if (twsk_net(tw)->ipv4.sysctl_tcp_rfc1337 == 0) { 1831da177e4SLinus Torvalds kill: 184dbe7faa4SEric Dumazet inet_twsk_deschedule_put(tw); 1851da177e4SLinus Torvalds return TCP_TW_SUCCESS; 1861da177e4SLinus Torvalds } 18763cc357fSFlorian Westphal } else { 188ed2e9239SEric Dumazet inet_twsk_reschedule(tw, TCP_TIMEWAIT_LEN); 18963cc357fSFlorian Westphal } 1901da177e4SLinus Torvalds 1911da177e4SLinus Torvalds if (tmp_opt.saw_tstamp) { 1928feaf0c0SArnaldo Carvalho de Melo tcptw->tw_ts_recent = tmp_opt.rcv_tsval; 193cca9bab1SArnd Bergmann tcptw->tw_ts_recent_stamp = ktime_get_seconds(); 1941da177e4SLinus Torvalds } 1951da177e4SLinus Torvalds 1968feaf0c0SArnaldo Carvalho de Melo inet_twsk_put(tw); 1971da177e4SLinus Torvalds return TCP_TW_SUCCESS; 1981da177e4SLinus Torvalds } 1991da177e4SLinus Torvalds 2001da177e4SLinus Torvalds /* Out of window segment. 2011da177e4SLinus Torvalds 2021da177e4SLinus Torvalds All the segments are ACKed immediately. 2031da177e4SLinus Torvalds 2041da177e4SLinus Torvalds The only exception is new SYN. We accept it, if it is 2051da177e4SLinus Torvalds not old duplicate and we are not in danger to be killed 2061da177e4SLinus Torvalds by delayed old duplicates. RFC check is that it has 2071da177e4SLinus Torvalds newer sequence number works at rates <40Mbit/sec. 2081da177e4SLinus Torvalds However, if paws works, it is reliable AND even more, 2091da177e4SLinus Torvalds we even may relax silly seq space cutoff. 2101da177e4SLinus Torvalds 2111da177e4SLinus Torvalds RED-PEN: we violate main RFC requirement, if this SYN will appear 2121da177e4SLinus Torvalds old duplicate (i.e. we receive RST in reply to SYN-ACK), 2131da177e4SLinus Torvalds we must return socket to time-wait state. It is not good, 2141da177e4SLinus Torvalds but not fatal yet. 2151da177e4SLinus Torvalds */ 2161da177e4SLinus Torvalds 2171da177e4SLinus Torvalds if (th->syn && !th->rst && !th->ack && !paws_reject && 2188feaf0c0SArnaldo Carvalho de Melo (after(TCP_SKB_CB(skb)->seq, tcptw->tw_rcv_nxt) || 2198feaf0c0SArnaldo Carvalho de Melo (tmp_opt.saw_tstamp && 2208feaf0c0SArnaldo Carvalho de Melo (s32)(tcptw->tw_ts_recent - tmp_opt.rcv_tsval) < 0))) { 2218feaf0c0SArnaldo Carvalho de Melo u32 isn = tcptw->tw_snd_nxt + 65535 + 2; 2221da177e4SLinus Torvalds if (isn == 0) 2231da177e4SLinus Torvalds isn++; 22404317dafSEric Dumazet TCP_SKB_CB(skb)->tcp_tw_isn = isn; 2251da177e4SLinus Torvalds return TCP_TW_SYN; 2261da177e4SLinus Torvalds } 2271da177e4SLinus Torvalds 2281da177e4SLinus Torvalds if (paws_reject) 22902a1d6e7SEric Dumazet __NET_INC_STATS(twsk_net(tw), LINUX_MIB_PAWSESTABREJECTED); 2301da177e4SLinus Torvalds 2311da177e4SLinus Torvalds if (!th->rst) { 2321da177e4SLinus Torvalds /* In this case we must reset the TIMEWAIT timer. 2331da177e4SLinus Torvalds * 2341da177e4SLinus Torvalds * If it is ACKless SYN it may be both old duplicate 2351da177e4SLinus Torvalds * and new good SYN with random sequence number <rcv_nxt. 2361da177e4SLinus Torvalds * Do not reschedule in the last case. 2371da177e4SLinus Torvalds */ 2381da177e4SLinus Torvalds if (paws_reject || th->ack) 239ed2e9239SEric Dumazet inet_twsk_reschedule(tw, TCP_TIMEWAIT_LEN); 2401da177e4SLinus Torvalds 2414fb17a60SNeal Cardwell return tcp_timewait_check_oow_rate_limit( 2424fb17a60SNeal Cardwell tw, skb, LINUX_MIB_TCPACKSKIPPEDTIMEWAIT); 2431da177e4SLinus Torvalds } 2448feaf0c0SArnaldo Carvalho de Melo inet_twsk_put(tw); 2451da177e4SLinus Torvalds return TCP_TW_SUCCESS; 2461da177e4SLinus Torvalds } 2474bc2f18bSEric Dumazet EXPORT_SYMBOL(tcp_timewait_state_process); 2481da177e4SLinus Torvalds 2491da177e4SLinus Torvalds /* 2501da177e4SLinus Torvalds * Move a socket to time-wait or dead fin-wait-2 state. 2511da177e4SLinus Torvalds */ 2521da177e4SLinus Torvalds void tcp_time_wait(struct sock *sk, int state, int timeo) 2531da177e4SLinus Torvalds { 2548292a17aSArnaldo Carvalho de Melo const struct inet_connection_sock *icsk = inet_csk(sk); 2558feaf0c0SArnaldo Carvalho de Melo const struct tcp_sock *tp = tcp_sk(sk); 256789f558cSEric Dumazet struct inet_timewait_sock *tw; 2571946e672SHaishuang Yan struct inet_timewait_death_row *tcp_death_row = &sock_net(sk)->ipv4.tcp_death_row; 2581da177e4SLinus Torvalds 2591946e672SHaishuang Yan tw = inet_twsk_alloc(sk, tcp_death_row, state); 2601da177e4SLinus Torvalds 26100db4124SIan Morris if (tw) { 2628feaf0c0SArnaldo Carvalho de Melo struct tcp_timewait_sock *tcptw = tcp_twsk((struct sock *)tw); 263463c84b9SArnaldo Carvalho de Melo const int rto = (icsk->icsk_rto << 2) - (icsk->icsk_rto >> 1); 2642397849bSDavid S. Miller struct inet_sock *inet = inet_sk(sk); 2658feaf0c0SArnaldo Carvalho de Melo 2662397849bSDavid S. Miller tw->tw_transparent = inet->transparent; 26700483690SJon Maxwell tw->tw_mark = sk->sk_mark; 2681da177e4SLinus Torvalds tw->tw_rcv_wscale = tp->rx_opt.rcv_wscale; 2698feaf0c0SArnaldo Carvalho de Melo tcptw->tw_rcv_nxt = tp->rcv_nxt; 2708feaf0c0SArnaldo Carvalho de Melo tcptw->tw_snd_nxt = tp->snd_nxt; 2718feaf0c0SArnaldo Carvalho de Melo tcptw->tw_rcv_wnd = tcp_receive_window(tp); 2728feaf0c0SArnaldo Carvalho de Melo tcptw->tw_ts_recent = tp->rx_opt.ts_recent; 2738feaf0c0SArnaldo Carvalho de Melo tcptw->tw_ts_recent_stamp = tp->rx_opt.ts_recent_stamp; 274ceaa1fefSAndrey Vagin tcptw->tw_ts_offset = tp->tsoffset; 2754fb17a60SNeal Cardwell tcptw->tw_last_oow_ack_time = 0; 2761da177e4SLinus Torvalds 277dfd56b8bSEric Dumazet #if IS_ENABLED(CONFIG_IPV6) 2781da177e4SLinus Torvalds if (tw->tw_family == PF_INET6) { 2791da177e4SLinus Torvalds struct ipv6_pinfo *np = inet6_sk(sk); 2801da177e4SLinus Torvalds 281efe4208fSEric Dumazet tw->tw_v6_daddr = sk->sk_v6_daddr; 282efe4208fSEric Dumazet tw->tw_v6_rcv_saddr = sk->sk_v6_rcv_saddr; 283b903d324SEric Dumazet tw->tw_tclass = np->tclass; 28421858cd0SFlorent Fourcot tw->tw_flowlabel = be32_to_cpu(np->flow_label & IPV6_FLOWLABEL_MASK); 2859fe516baSEric Dumazet tw->tw_ipv6only = sk->sk_ipv6only; 286c676270bSArnaldo Carvalho de Melo } 2871da177e4SLinus Torvalds #endif 288cfb6eeb4SYOSHIFUJI Hideaki 289cfb6eeb4SYOSHIFUJI Hideaki #ifdef CONFIG_TCP_MD5SIG 290cfb6eeb4SYOSHIFUJI Hideaki /* 291cfb6eeb4SYOSHIFUJI Hideaki * The timewait bucket does not have the key DB from the 292cfb6eeb4SYOSHIFUJI Hideaki * sock structure. We just make a quick copy of the 293cfb6eeb4SYOSHIFUJI Hideaki * md5 key being used (if indeed we are using one) 294cfb6eeb4SYOSHIFUJI Hideaki * so the timewait ack generating code has the key. 295cfb6eeb4SYOSHIFUJI Hideaki */ 296cfb6eeb4SYOSHIFUJI Hideaki do { 297a915da9bSEric Dumazet tcptw->tw_md5_key = NULL; 298*6aedbf98SEric Dumazet if (static_branch_unlikely(&tcp_md5_needed)) { 299*6aedbf98SEric Dumazet struct tcp_md5sig_key *key; 300*6aedbf98SEric Dumazet 301cfb6eeb4SYOSHIFUJI Hideaki key = tp->af_specific->md5_lookup(sk, sk); 30200db4124SIan Morris if (key) { 303a915da9bSEric Dumazet tcptw->tw_md5_key = kmemdup(key, sizeof(*key), GFP_ATOMIC); 30449ca1943SGustavo A. R. Silva BUG_ON(tcptw->tw_md5_key && !tcp_alloc_md5sig_pool()); 305cfb6eeb4SYOSHIFUJI Hideaki } 306*6aedbf98SEric Dumazet } 307cfb6eeb4SYOSHIFUJI Hideaki } while (0); 308cfb6eeb4SYOSHIFUJI Hideaki #endif 309cfb6eeb4SYOSHIFUJI Hideaki 3101da177e4SLinus Torvalds /* Get the TIME_WAIT timeout firing. */ 3111da177e4SLinus Torvalds if (timeo < rto) 3121da177e4SLinus Torvalds timeo = rto; 3131da177e4SLinus Torvalds 3141da177e4SLinus Torvalds if (state == TCP_TIME_WAIT) 3151da177e4SLinus Torvalds timeo = TCP_TIMEWAIT_LEN; 3161da177e4SLinus Torvalds 317cfac7f83SEric Dumazet /* tw_timer is pinned, so we need to make sure BH are disabled 318cfac7f83SEric Dumazet * in following section, otherwise timer handler could run before 319cfac7f83SEric Dumazet * we complete the initialization. 320cfac7f83SEric Dumazet */ 321cfac7f83SEric Dumazet local_bh_disable(); 322789f558cSEric Dumazet inet_twsk_schedule(tw, timeo); 323ec94c269SEric Dumazet /* Linkage updates. 324ec94c269SEric Dumazet * Note that access to tw after this point is illegal. 325ec94c269SEric Dumazet */ 326ec94c269SEric Dumazet inet_twsk_hashdance(tw, sk, &tcp_hashinfo); 327cfac7f83SEric Dumazet local_bh_enable(); 3281da177e4SLinus Torvalds } else { 3291da177e4SLinus Torvalds /* Sorry, if we're out of memory, just CLOSE this 3301da177e4SLinus Torvalds * socket up. We've got bigger problems than 3311da177e4SLinus Torvalds * non-graceful socket closings. 3321da177e4SLinus Torvalds */ 333c10d9310SEric Dumazet NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPTIMEWAITOVERFLOW); 3341da177e4SLinus Torvalds } 3351da177e4SLinus Torvalds 3361da177e4SLinus Torvalds tcp_update_metrics(sk); 3371da177e4SLinus Torvalds tcp_done(sk); 3381da177e4SLinus Torvalds } 339cc35c88aSAtul Gupta EXPORT_SYMBOL(tcp_time_wait); 3401da177e4SLinus Torvalds 341cfb6eeb4SYOSHIFUJI Hideaki void tcp_twsk_destructor(struct sock *sk) 342cfb6eeb4SYOSHIFUJI Hideaki { 343b6242b9bSDavid S. Miller #ifdef CONFIG_TCP_MD5SIG 344*6aedbf98SEric Dumazet if (static_branch_unlikely(&tcp_md5_needed)) { 345a928630aSDavid S. Miller struct tcp_timewait_sock *twsk = tcp_twsk(sk); 3462397849bSDavid S. Miller 34771cea17eSEric Dumazet if (twsk->tw_md5_key) 348a915da9bSEric Dumazet kfree_rcu(twsk->tw_md5_key, rcu); 349*6aedbf98SEric Dumazet } 350cfb6eeb4SYOSHIFUJI Hideaki #endif 351cfb6eeb4SYOSHIFUJI Hideaki } 352cfb6eeb4SYOSHIFUJI Hideaki EXPORT_SYMBOL_GPL(tcp_twsk_destructor); 353cfb6eeb4SYOSHIFUJI Hideaki 354b1964b5fSEric Dumazet /* Warning : This function is called without sk_listener being locked. 355b1964b5fSEric Dumazet * Be sure to read socket fields once, as their value could change under us. 356b1964b5fSEric Dumazet */ 357843f4a55SYuchung Cheng void tcp_openreq_init_rwin(struct request_sock *req, 358b1964b5fSEric Dumazet const struct sock *sk_listener, 359b1964b5fSEric Dumazet const struct dst_entry *dst) 360843f4a55SYuchung Cheng { 361843f4a55SYuchung Cheng struct inet_request_sock *ireq = inet_rsk(req); 362b1964b5fSEric Dumazet const struct tcp_sock *tp = tcp_sk(sk_listener); 363b1964b5fSEric Dumazet int full_space = tcp_full_space(sk_listener); 364b1964b5fSEric Dumazet u32 window_clamp; 365b1964b5fSEric Dumazet __u8 rcv_wscale; 36613d3b1ebSLawrence Brakmo u32 rcv_wnd; 3673541f9e8SEric Dumazet int mss; 368843f4a55SYuchung Cheng 3693541f9e8SEric Dumazet mss = tcp_mss_clamp(tp, dst_metric_advmss(dst)); 370b1964b5fSEric Dumazet window_clamp = READ_ONCE(tp->window_clamp); 371843f4a55SYuchung Cheng /* Set this up on the first call only */ 372ed53d0abSEric Dumazet req->rsk_window_clamp = window_clamp ? : dst_metric(dst, RTAX_WINDOW); 373843f4a55SYuchung Cheng 374843f4a55SYuchung Cheng /* limit the window selection if the user enforce a smaller rx buffer */ 375b1964b5fSEric Dumazet if (sk_listener->sk_userlocks & SOCK_RCVBUF_LOCK && 376ed53d0abSEric Dumazet (req->rsk_window_clamp > full_space || req->rsk_window_clamp == 0)) 377ed53d0abSEric Dumazet req->rsk_window_clamp = full_space; 378843f4a55SYuchung Cheng 37913d3b1ebSLawrence Brakmo rcv_wnd = tcp_rwnd_init_bpf((struct sock *)req); 38013d3b1ebSLawrence Brakmo if (rcv_wnd == 0) 38113d3b1ebSLawrence Brakmo rcv_wnd = dst_metric(dst, RTAX_INITRWND); 38213d3b1ebSLawrence Brakmo else if (full_space < rcv_wnd * mss) 38313d3b1ebSLawrence Brakmo full_space = rcv_wnd * mss; 38413d3b1ebSLawrence Brakmo 385843f4a55SYuchung Cheng /* tcp_full_space because it is guaranteed to be the first packet */ 386ceef9ab6SEric Dumazet tcp_select_initial_window(sk_listener, full_space, 387843f4a55SYuchung Cheng mss - (ireq->tstamp_ok ? TCPOLEN_TSTAMP_ALIGNED : 0), 388ed53d0abSEric Dumazet &req->rsk_rcv_wnd, 389ed53d0abSEric Dumazet &req->rsk_window_clamp, 390843f4a55SYuchung Cheng ireq->wscale_ok, 391843f4a55SYuchung Cheng &rcv_wscale, 39213d3b1ebSLawrence Brakmo rcv_wnd); 393843f4a55SYuchung Cheng ireq->rcv_wscale = rcv_wscale; 394843f4a55SYuchung Cheng } 395843f4a55SYuchung Cheng EXPORT_SYMBOL(tcp_openreq_init_rwin); 396843f4a55SYuchung Cheng 397735d3831SFlorian Westphal static void tcp_ecn_openreq_child(struct tcp_sock *tp, 398735d3831SFlorian Westphal const struct request_sock *req) 399bdf1ee5dSIlpo Järvinen { 400bdf1ee5dSIlpo Järvinen tp->ecn_flags = inet_rsk(req)->ecn_ok ? TCP_ECN_OK : 0; 401bdf1ee5dSIlpo Järvinen } 402bdf1ee5dSIlpo Järvinen 40381164413SDaniel Borkmann void tcp_ca_openreq_child(struct sock *sk, const struct dst_entry *dst) 40481164413SDaniel Borkmann { 40581164413SDaniel Borkmann struct inet_connection_sock *icsk = inet_csk(sk); 40681164413SDaniel Borkmann u32 ca_key = dst_metric(dst, RTAX_CC_ALGO); 40781164413SDaniel Borkmann bool ca_got_dst = false; 40881164413SDaniel Borkmann 40981164413SDaniel Borkmann if (ca_key != TCP_CA_UNSPEC) { 41081164413SDaniel Borkmann const struct tcp_congestion_ops *ca; 41181164413SDaniel Borkmann 41281164413SDaniel Borkmann rcu_read_lock(); 41381164413SDaniel Borkmann ca = tcp_ca_find_key(ca_key); 41481164413SDaniel Borkmann if (likely(ca && try_module_get(ca->owner))) { 41581164413SDaniel Borkmann icsk->icsk_ca_dst_locked = tcp_ca_dst_locked(dst); 41681164413SDaniel Borkmann icsk->icsk_ca_ops = ca; 41781164413SDaniel Borkmann ca_got_dst = true; 41881164413SDaniel Borkmann } 41981164413SDaniel Borkmann rcu_read_unlock(); 42081164413SDaniel Borkmann } 42181164413SDaniel Borkmann 4229f950415SNeal Cardwell /* If no valid choice made yet, assign current system default ca. */ 4239f950415SNeal Cardwell if (!ca_got_dst && 4249f950415SNeal Cardwell (!icsk->icsk_ca_setsockopt || 4259f950415SNeal Cardwell !try_module_get(icsk->icsk_ca_ops->owner))) 42681164413SDaniel Borkmann tcp_assign_congestion_control(sk); 42781164413SDaniel Borkmann 42881164413SDaniel Borkmann tcp_set_ca_state(sk, TCP_CA_Open); 42981164413SDaniel Borkmann } 43081164413SDaniel Borkmann EXPORT_SYMBOL_GPL(tcp_ca_openreq_child); 43181164413SDaniel Borkmann 43260e2a778SUrsula Braun static void smc_check_reset_syn_req(struct tcp_sock *oldtp, 43360e2a778SUrsula Braun struct request_sock *req, 43460e2a778SUrsula Braun struct tcp_sock *newtp) 43560e2a778SUrsula Braun { 43660e2a778SUrsula Braun #if IS_ENABLED(CONFIG_SMC) 43760e2a778SUrsula Braun struct inet_request_sock *ireq; 43860e2a778SUrsula Braun 43960e2a778SUrsula Braun if (static_branch_unlikely(&tcp_have_smc)) { 44060e2a778SUrsula Braun ireq = inet_rsk(req); 44160e2a778SUrsula Braun if (oldtp->syn_smc && !ireq->smc_ok) 44260e2a778SUrsula Braun newtp->syn_smc = 0; 44360e2a778SUrsula Braun } 44460e2a778SUrsula Braun #endif 44560e2a778SUrsula Braun } 44660e2a778SUrsula Braun 4471da177e4SLinus Torvalds /* This is not only more efficient than what we used to do, it eliminates 4481da177e4SLinus Torvalds * a lot of code duplication between IPv4/IPv6 SYN recv processing. -DaveM 4491da177e4SLinus Torvalds * 4501da177e4SLinus Torvalds * Actually, we could lots of memory writes here. tp of listening 4511da177e4SLinus Torvalds * socket contains all necessary default parameters. 4521da177e4SLinus Torvalds */ 453c28c6f04SEric Dumazet struct sock *tcp_create_openreq_child(const struct sock *sk, 454c28c6f04SEric Dumazet struct request_sock *req, 455c28c6f04SEric Dumazet struct sk_buff *skb) 4561da177e4SLinus Torvalds { 457e56c57d0SEric Dumazet struct sock *newsk = inet_csk_clone_lock(sk, req, GFP_ATOMIC); 4589f1d2604SArnaldo Carvalho de Melo const struct inet_request_sock *ireq = inet_rsk(req); 4592e6599cbSArnaldo Carvalho de Melo struct tcp_request_sock *treq = tcp_rsk(req); 460242b1bbeSEric Dumazet struct inet_connection_sock *newicsk; 461242b1bbeSEric Dumazet struct tcp_sock *oldtp, *newtp; 462242b1bbeSEric Dumazet 463242b1bbeSEric Dumazet if (!newsk) 464242b1bbeSEric Dumazet return NULL; 465242b1bbeSEric Dumazet 466242b1bbeSEric Dumazet newicsk = inet_csk(newsk); 467242b1bbeSEric Dumazet newtp = tcp_sk(newsk); 468242b1bbeSEric Dumazet oldtp = tcp_sk(sk); 46960e2a778SUrsula Braun 47060e2a778SUrsula Braun smc_check_reset_syn_req(oldtp, req, newtp); 4711da177e4SLinus Torvalds 4721da177e4SLinus Torvalds /* Now setup tcp_sock */ 47331770e34SFlorian Westphal newtp->pred_flags = 0; 47431770e34SFlorian Westphal 475435cf559SWilliam Allen Simpson newtp->rcv_wup = newtp->copied_seq = 476435cf559SWilliam Allen Simpson newtp->rcv_nxt = treq->rcv_isn + 1; 477a9d99ce2SEric Dumazet newtp->segs_in = 1; 478435cf559SWilliam Allen Simpson 479435cf559SWilliam Allen Simpson newtp->snd_sml = newtp->snd_una = 4801a2c6181SChristoph Paasch newtp->snd_nxt = newtp->snd_up = treq->snt_isn + 1; 4811da177e4SLinus Torvalds 48246d3ceabSEric Dumazet INIT_LIST_HEAD(&newtp->tsq_node); 483e2080072SEric Dumazet INIT_LIST_HEAD(&newtp->tsorted_sent_queue); 4841da177e4SLinus Torvalds 485ee7537b6SHantzis Fotis tcp_init_wl(newtp, treq->rcv_isn); 4861da177e4SLinus Torvalds 487ac9517fcSEric Dumazet minmax_reset(&newtp->rtt_min, tcp_jiffies32, ~0U); 48870eabf0eSEric Dumazet newicsk->icsk_ack.lrcvtime = tcp_jiffies32; 4891da177e4SLinus Torvalds 4909a568de4SEric Dumazet newtp->lsndtime = tcp_jiffies32; 491d8ed6250SEric Dumazet newsk->sk_txhash = treq->txhash; 492375fe02cSYuchung Cheng newtp->total_retrans = req->num_retrans; 4931da177e4SLinus Torvalds 4941da177e4SLinus Torvalds tcp_init_xmit_timers(newsk); 4951a2c6181SChristoph Paasch newtp->write_seq = newtp->pushed_seq = treq->snt_isn + 1; 4961da177e4SLinus Torvalds 4971da177e4SLinus Torvalds if (sock_flag(newsk, SOCK_KEEPOPEN)) 498463c84b9SArnaldo Carvalho de Melo inet_csk_reset_keepalive_timer(newsk, 4991da177e4SLinus Torvalds keepalive_time_when(newtp)); 5001da177e4SLinus Torvalds 5012e6599cbSArnaldo Carvalho de Melo newtp->rx_opt.tstamp_ok = ireq->tstamp_ok; 502713bafeaSYuchung Cheng newtp->rx_opt.sack_ok = ireq->sack_ok; 503ed53d0abSEric Dumazet newtp->window_clamp = req->rsk_window_clamp; 504ed53d0abSEric Dumazet newtp->rcv_ssthresh = req->rsk_rcv_wnd; 505ed53d0abSEric Dumazet newtp->rcv_wnd = req->rsk_rcv_wnd; 5062e6599cbSArnaldo Carvalho de Melo newtp->rx_opt.wscale_ok = ireq->wscale_ok; 5071da177e4SLinus Torvalds if (newtp->rx_opt.wscale_ok) { 5082e6599cbSArnaldo Carvalho de Melo newtp->rx_opt.snd_wscale = ireq->snd_wscale; 5092e6599cbSArnaldo Carvalho de Melo newtp->rx_opt.rcv_wscale = ireq->rcv_wscale; 5101da177e4SLinus Torvalds } else { 5111da177e4SLinus Torvalds newtp->rx_opt.snd_wscale = newtp->rx_opt.rcv_wscale = 0; 5121da177e4SLinus Torvalds newtp->window_clamp = min(newtp->window_clamp, 65535U); 5131da177e4SLinus Torvalds } 514242b1bbeSEric Dumazet newtp->snd_wnd = ntohs(tcp_hdr(skb)->window) << newtp->rx_opt.snd_wscale; 5151da177e4SLinus Torvalds newtp->max_window = newtp->snd_wnd; 5161da177e4SLinus Torvalds 5171da177e4SLinus Torvalds if (newtp->rx_opt.tstamp_ok) { 5181da177e4SLinus Torvalds newtp->rx_opt.ts_recent = req->ts_recent; 519cca9bab1SArnd Bergmann newtp->rx_opt.ts_recent_stamp = ktime_get_seconds(); 5201da177e4SLinus Torvalds newtp->tcp_header_len = sizeof(struct tcphdr) + TCPOLEN_TSTAMP_ALIGNED; 5211da177e4SLinus Torvalds } else { 5221da177e4SLinus Torvalds newtp->rx_opt.ts_recent_stamp = 0; 5231da177e4SLinus Torvalds newtp->tcp_header_len = sizeof(struct tcphdr); 5241da177e4SLinus Torvalds } 52595a22caeSFlorian Westphal newtp->tsoffset = treq->ts_off; 526cfb6eeb4SYOSHIFUJI Hideaki #ifdef CONFIG_TCP_MD5SIG 527cfb6eeb4SYOSHIFUJI Hideaki newtp->md5sig_info = NULL; /*XXX*/ 528cfb6eeb4SYOSHIFUJI Hideaki if (newtp->af_specific->md5_lookup(sk, newsk)) 529cfb6eeb4SYOSHIFUJI Hideaki newtp->tcp_header_len += TCPOLEN_MD5SIG_ALIGNED; 530cfb6eeb4SYOSHIFUJI Hideaki #endif 531bee7ca9eSWilliam Allen Simpson if (skb->len >= TCP_MSS_DEFAULT + newtp->tcp_header_len) 532463c84b9SArnaldo Carvalho de Melo newicsk->icsk_ack.last_seg_size = skb->len - newtp->tcp_header_len; 5331da177e4SLinus Torvalds newtp->rx_opt.mss_clamp = req->mss; 534735d3831SFlorian Westphal tcp_ecn_openreq_child(newtp, req); 5358b485ce6SEric Dumazet newtp->fastopen_req = NULL; 5368336886fSJerry Chu newtp->fastopen_rsk = NULL; 5371da177e4SLinus Torvalds 53890bbcc60SEric Dumazet __TCP_INC_STATS(sock_net(sk), TCP_MIB_PASSIVEOPENS); 539242b1bbeSEric Dumazet 5401da177e4SLinus Torvalds return newsk; 5411da177e4SLinus Torvalds } 5424bc2f18bSEric Dumazet EXPORT_SYMBOL(tcp_create_openreq_child); 5431da177e4SLinus Torvalds 5441da177e4SLinus Torvalds /* 5458336886fSJerry Chu * Process an incoming packet for SYN_RECV sockets represented as a 5468336886fSJerry Chu * request_sock. Normally sk is the listener socket but for TFO it 5478336886fSJerry Chu * points to the child socket. 5488336886fSJerry Chu * 5498336886fSJerry Chu * XXX (TFO) - The current impl contains a special check for ack 5508336886fSJerry Chu * validation and inside tcp_v4_reqsk_send_ack(). Can we do better? 5514308fc58SAlan Cox * 5524308fc58SAlan Cox * We don't need to initialize tmp_opt.sack_ok as we don't use the results 5531da177e4SLinus Torvalds */ 5541da177e4SLinus Torvalds 5551da177e4SLinus Torvalds struct sock *tcp_check_req(struct sock *sk, struct sk_buff *skb, 55660236fddSArnaldo Carvalho de Melo struct request_sock *req, 557e0f9759fSEric Dumazet bool fastopen, bool *req_stolen) 5581da177e4SLinus Torvalds { 5594957faadSWilliam Allen Simpson struct tcp_options_received tmp_opt; 5604957faadSWilliam Allen Simpson struct sock *child; 561aa8223c7SArnaldo Carvalho de Melo const struct tcphdr *th = tcp_hdr(skb); 562714e85beSAl Viro __be32 flg = tcp_flag_word(th) & (TCP_FLAG_RST|TCP_FLAG_SYN|TCP_FLAG_ACK); 563a2a385d6SEric Dumazet bool paws_reject = false; 5645e0724d0SEric Dumazet bool own_req; 5651da177e4SLinus Torvalds 566bb5b7c11SDavid S. Miller tmp_opt.saw_tstamp = 0; 567bb5b7c11SDavid S. Miller if (th->doff > (sizeof(struct tcphdr)>>2)) { 568eed29f17SEric Dumazet tcp_parse_options(sock_net(sk), skb, &tmp_opt, 0, NULL); 5691da177e4SLinus Torvalds 5701da177e4SLinus Torvalds if (tmp_opt.saw_tstamp) { 5711da177e4SLinus Torvalds tmp_opt.ts_recent = req->ts_recent; 57295a22caeSFlorian Westphal if (tmp_opt.rcv_tsecr) 57395a22caeSFlorian Westphal tmp_opt.rcv_tsecr -= tcp_rsk(req)->ts_off; 5741da177e4SLinus Torvalds /* We do not store true stamp, but it is not required, 5751da177e4SLinus Torvalds * it can be estimated (approximately) 5761da177e4SLinus Torvalds * from another data. 5771da177e4SLinus Torvalds */ 578cca9bab1SArnd Bergmann tmp_opt.ts_recent_stamp = ktime_get_seconds() - ((TCP_TIMEOUT_INIT/HZ)<<req->num_timeout); 579c887e6d2SIlpo Järvinen paws_reject = tcp_paws_reject(&tmp_opt, th->rst); 5801da177e4SLinus Torvalds } 5811da177e4SLinus Torvalds } 5821da177e4SLinus Torvalds 5831da177e4SLinus Torvalds /* Check for pure retransmitted SYN. */ 5842e6599cbSArnaldo Carvalho de Melo if (TCP_SKB_CB(skb)->seq == tcp_rsk(req)->rcv_isn && 5851da177e4SLinus Torvalds flg == TCP_FLAG_SYN && 5861da177e4SLinus Torvalds !paws_reject) { 5871da177e4SLinus Torvalds /* 5881da177e4SLinus Torvalds * RFC793 draws (Incorrectly! It was fixed in RFC1122) 5891da177e4SLinus Torvalds * this case on figure 6 and figure 8, but formal 5901da177e4SLinus Torvalds * protocol description says NOTHING. 5911da177e4SLinus Torvalds * To be more exact, it says that we should send ACK, 5921da177e4SLinus Torvalds * because this segment (at least, if it has no data) 5931da177e4SLinus Torvalds * is out of window. 5941da177e4SLinus Torvalds * 5951da177e4SLinus Torvalds * CONCLUSION: RFC793 (even with RFC1122) DOES NOT 5961da177e4SLinus Torvalds * describe SYN-RECV state. All the description 5971da177e4SLinus Torvalds * is wrong, we cannot believe to it and should 5981da177e4SLinus Torvalds * rely only on common sense and implementation 5991da177e4SLinus Torvalds * experience. 6001da177e4SLinus Torvalds * 6011da177e4SLinus Torvalds * Enforce "SYN-ACK" according to figure 8, figure 6 6021da177e4SLinus Torvalds * of RFC793, fixed by RFC1122. 6038336886fSJerry Chu * 6048336886fSJerry Chu * Note that even if there is new data in the SYN packet 6058336886fSJerry Chu * they will be thrown away too. 606cd75eff6SYuchung Cheng * 607cd75eff6SYuchung Cheng * Reset timer after retransmitting SYNACK, similar to 608cd75eff6SYuchung Cheng * the idea of fast retransmit in recovery. 6091da177e4SLinus Torvalds */ 610a9b2c06dSNeal Cardwell if (!tcp_oow_rate_limited(sock_net(sk), skb, 611a9b2c06dSNeal Cardwell LINUX_MIB_TCPACKSKIPPEDSYNRECV, 612a9b2c06dSNeal Cardwell &tcp_rsk(req)->last_oow_ack_time) && 613a9b2c06dSNeal Cardwell 614dd929c1bSEric Dumazet !inet_rtx_syn_ack(sk, req)) { 615dd929c1bSEric Dumazet unsigned long expires = jiffies; 616dd929c1bSEric Dumazet 617dd929c1bSEric Dumazet expires += min(TCP_TIMEOUT_INIT << req->num_timeout, 618dd929c1bSEric Dumazet TCP_RTO_MAX); 619dd929c1bSEric Dumazet if (!fastopen) 620dd929c1bSEric Dumazet mod_timer_pending(&req->rsk_timer, expires); 621dd929c1bSEric Dumazet else 622dd929c1bSEric Dumazet req->rsk_timer.expires = expires; 623dd929c1bSEric Dumazet } 6241da177e4SLinus Torvalds return NULL; 6251da177e4SLinus Torvalds } 6261da177e4SLinus Torvalds 6271da177e4SLinus Torvalds /* Further reproduces section "SEGMENT ARRIVES" 6281da177e4SLinus Torvalds for state SYN-RECEIVED of RFC793. 6291da177e4SLinus Torvalds It is broken, however, it does not work only 6301da177e4SLinus Torvalds when SYNs are crossed. 6311da177e4SLinus Torvalds 6321da177e4SLinus Torvalds You would think that SYN crossing is impossible here, since 6331da177e4SLinus Torvalds we should have a SYN_SENT socket (from connect()) on our end, 6341da177e4SLinus Torvalds but this is not true if the crossed SYNs were sent to both 6351da177e4SLinus Torvalds ends by a malicious third party. We must defend against this, 6361da177e4SLinus Torvalds and to do that we first verify the ACK (as per RFC793, page 6371da177e4SLinus Torvalds 36) and reset if it is invalid. Is this a true full defense? 6381da177e4SLinus Torvalds To convince ourselves, let us consider a way in which the ACK 6391da177e4SLinus Torvalds test can still pass in this 'malicious crossed SYNs' case. 6401da177e4SLinus Torvalds Malicious sender sends identical SYNs (and thus identical sequence 6411da177e4SLinus Torvalds numbers) to both A and B: 6421da177e4SLinus Torvalds 6431da177e4SLinus Torvalds A: gets SYN, seq=7 6441da177e4SLinus Torvalds B: gets SYN, seq=7 6451da177e4SLinus Torvalds 6461da177e4SLinus Torvalds By our good fortune, both A and B select the same initial 6471da177e4SLinus Torvalds send sequence number of seven :-) 6481da177e4SLinus Torvalds 6491da177e4SLinus Torvalds A: sends SYN|ACK, seq=7, ack_seq=8 6501da177e4SLinus Torvalds B: sends SYN|ACK, seq=7, ack_seq=8 6511da177e4SLinus Torvalds 6521da177e4SLinus Torvalds So we are now A eating this SYN|ACK, ACK test passes. So 6531da177e4SLinus Torvalds does sequence test, SYN is truncated, and thus we consider 6541da177e4SLinus Torvalds it a bare ACK. 6551da177e4SLinus Torvalds 656ec0a1966SDavid S. Miller If icsk->icsk_accept_queue.rskq_defer_accept, we silently drop this 657ec0a1966SDavid S. Miller bare ACK. Otherwise, we create an established connection. Both 658ec0a1966SDavid S. Miller ends (listening sockets) accept the new incoming connection and try 659ec0a1966SDavid S. Miller to talk to each other. 8-) 6601da177e4SLinus Torvalds 6611da177e4SLinus Torvalds Note: This case is both harmless, and rare. Possibility is about the 6621da177e4SLinus Torvalds same as us discovering intelligent life on another plant tomorrow. 6631da177e4SLinus Torvalds 6641da177e4SLinus Torvalds But generally, we should (RFC lies!) to accept ACK 6651da177e4SLinus Torvalds from SYNACK both here and in tcp_rcv_state_process(). 6661da177e4SLinus Torvalds tcp_rcv_state_process() does not, hence, we do not too. 6671da177e4SLinus Torvalds 6681da177e4SLinus Torvalds Note that the case is absolutely generic: 6691da177e4SLinus Torvalds we cannot optimize anything here without 6701da177e4SLinus Torvalds violating protocol. All the checks must be made 6711da177e4SLinus Torvalds before attempt to create socket. 6721da177e4SLinus Torvalds */ 6731da177e4SLinus Torvalds 6741da177e4SLinus Torvalds /* RFC793 page 36: "If the connection is in any non-synchronized state ... 6751da177e4SLinus Torvalds * and the incoming segment acknowledges something not yet 676caa20d9aSStephen Hemminger * sent (the segment carries an unacceptable ACK) ... 6771da177e4SLinus Torvalds * a reset is sent." 6781da177e4SLinus Torvalds * 6798336886fSJerry Chu * Invalid ACK: reset will be sent by listening socket. 6808336886fSJerry Chu * Note that the ACK validity check for a Fast Open socket is done 6818336886fSJerry Chu * elsewhere and is checked directly against the child socket rather 6828336886fSJerry Chu * than req because user data may have been sent out. 6831da177e4SLinus Torvalds */ 6848336886fSJerry Chu if ((flg & TCP_FLAG_ACK) && !fastopen && 685435cf559SWilliam Allen Simpson (TCP_SKB_CB(skb)->ack_seq != 6861a2c6181SChristoph Paasch tcp_rsk(req)->snt_isn + 1)) 6871da177e4SLinus Torvalds return sk; 6881da177e4SLinus Torvalds 6891da177e4SLinus Torvalds /* Also, it would be not so bad idea to check rcv_tsecr, which 6901da177e4SLinus Torvalds * is essentially ACK extension and too early or too late values 6911da177e4SLinus Torvalds * should cause reset in unsynchronized states. 6921da177e4SLinus Torvalds */ 6931da177e4SLinus Torvalds 6941da177e4SLinus Torvalds /* RFC793: "first check sequence number". */ 6951da177e4SLinus Torvalds 6961da177e4SLinus Torvalds if (paws_reject || !tcp_in_window(TCP_SKB_CB(skb)->seq, TCP_SKB_CB(skb)->end_seq, 697ed53d0abSEric Dumazet tcp_rsk(req)->rcv_nxt, tcp_rsk(req)->rcv_nxt + req->rsk_rcv_wnd)) { 6981da177e4SLinus Torvalds /* Out of window: send ACK and drop. */ 6994ce7e93cSEric Dumazet if (!(flg & TCP_FLAG_RST) && 7004ce7e93cSEric Dumazet !tcp_oow_rate_limited(sock_net(sk), skb, 7014ce7e93cSEric Dumazet LINUX_MIB_TCPACKSKIPPEDSYNRECV, 7024ce7e93cSEric Dumazet &tcp_rsk(req)->last_oow_ack_time)) 7036edafaafSGui Jianfeng req->rsk_ops->send_ack(sk, skb, req); 7041da177e4SLinus Torvalds if (paws_reject) 70502a1d6e7SEric Dumazet __NET_INC_STATS(sock_net(sk), LINUX_MIB_PAWSESTABREJECTED); 7061da177e4SLinus Torvalds return NULL; 7071da177e4SLinus Torvalds } 7081da177e4SLinus Torvalds 7091da177e4SLinus Torvalds /* In sequence, PAWS is OK. */ 7101da177e4SLinus Torvalds 7118336886fSJerry Chu if (tmp_opt.saw_tstamp && !after(TCP_SKB_CB(skb)->seq, tcp_rsk(req)->rcv_nxt)) 7121da177e4SLinus Torvalds req->ts_recent = tmp_opt.rcv_tsval; 7131da177e4SLinus Torvalds 7142e6599cbSArnaldo Carvalho de Melo if (TCP_SKB_CB(skb)->seq == tcp_rsk(req)->rcv_isn) { 7151da177e4SLinus Torvalds /* Truncate SYN, it is out of window starting 7162e6599cbSArnaldo Carvalho de Melo at tcp_rsk(req)->rcv_isn + 1. */ 7171da177e4SLinus Torvalds flg &= ~TCP_FLAG_SYN; 7181da177e4SLinus Torvalds } 7191da177e4SLinus Torvalds 7201da177e4SLinus Torvalds /* RFC793: "second check the RST bit" and 7211da177e4SLinus Torvalds * "fourth, check the SYN bit" 7221da177e4SLinus Torvalds */ 7233687b1dcSWei Yongjun if (flg & (TCP_FLAG_RST|TCP_FLAG_SYN)) { 72490bbcc60SEric Dumazet __TCP_INC_STATS(sock_net(sk), TCP_MIB_ATTEMPTFAILS); 7251da177e4SLinus Torvalds goto embryonic_reset; 7263687b1dcSWei Yongjun } 7271da177e4SLinus Torvalds 7281da177e4SLinus Torvalds /* ACK sequence verified above, just make sure ACK is 7291da177e4SLinus Torvalds * set. If ACK not set, just silently drop the packet. 7308336886fSJerry Chu * 7318336886fSJerry Chu * XXX (TFO) - if we ever allow "data after SYN", the 7328336886fSJerry Chu * following check needs to be removed. 7331da177e4SLinus Torvalds */ 7341da177e4SLinus Torvalds if (!(flg & TCP_FLAG_ACK)) 7351da177e4SLinus Torvalds return NULL; 7361da177e4SLinus Torvalds 7378336886fSJerry Chu /* For Fast Open no more processing is needed (sk is the 7388336886fSJerry Chu * child socket). 7398336886fSJerry Chu */ 7408336886fSJerry Chu if (fastopen) 7418336886fSJerry Chu return sk; 7428336886fSJerry Chu 743d1b99ba4SJulian Anastasov /* While TCP_DEFER_ACCEPT is active, drop bare ACK. */ 744e6c022a4SEric Dumazet if (req->num_timeout < inet_csk(sk)->icsk_accept_queue.rskq_defer_accept && 745ec0a1966SDavid S. Miller TCP_SKB_CB(skb)->end_seq == tcp_rsk(req)->rcv_isn + 1) { 746ec0a1966SDavid S. Miller inet_rsk(req)->acked = 1; 74702a1d6e7SEric Dumazet __NET_INC_STATS(sock_net(sk), LINUX_MIB_TCPDEFERACCEPTDROP); 748ec0a1966SDavid S. Miller return NULL; 749ec0a1966SDavid S. Miller } 750ec0a1966SDavid S. Miller 7511da177e4SLinus Torvalds /* OK, ACK is valid, create big socket and 7521da177e4SLinus Torvalds * feed this segment to it. It will repeat all 7531da177e4SLinus Torvalds * the tests. THIS SEGMENT MUST MOVE SOCKET TO 7541da177e4SLinus Torvalds * ESTABLISHED STATE. If it will be dropped after 7551da177e4SLinus Torvalds * socket is created, wait for troubles. 7561da177e4SLinus Torvalds */ 7575e0724d0SEric Dumazet child = inet_csk(sk)->icsk_af_ops->syn_recv_sock(sk, skb, req, NULL, 7585e0724d0SEric Dumazet req, &own_req); 75951456b29SIan Morris if (!child) 7601da177e4SLinus Torvalds goto listen_overflow; 7611da177e4SLinus Torvalds 7626bcfd7f8SEric Dumazet sock_rps_save_rxhash(child, skb); 7630f1c28aeSYuchung Cheng tcp_synack_rtt_meas(child, req); 764e0f9759fSEric Dumazet *req_stolen = !own_req; 7655e0724d0SEric Dumazet return inet_csk_complete_hashdance(sk, child, req, own_req); 7661da177e4SLinus Torvalds 7671da177e4SLinus Torvalds listen_overflow: 76865c9410cSEric Dumazet if (!sock_net(sk)->ipv4.sysctl_tcp_abort_on_overflow) { 7692e6599cbSArnaldo Carvalho de Melo inet_rsk(req)->acked = 1; 7701da177e4SLinus Torvalds return NULL; 7711da177e4SLinus Torvalds } 7721da177e4SLinus Torvalds 7731da177e4SLinus Torvalds embryonic_reset: 7748336886fSJerry Chu if (!(flg & TCP_FLAG_RST)) { 7758336886fSJerry Chu /* Received a bad SYN pkt - for TFO We try not to reset 7768336886fSJerry Chu * the local connection unless it's really necessary to 7778336886fSJerry Chu * avoid becoming vulnerable to outside attack aiming at 7788336886fSJerry Chu * resetting legit local connections. 7798336886fSJerry Chu */ 780cfb6eeb4SYOSHIFUJI Hideaki req->rsk_ops->send_reset(sk, skb); 7818336886fSJerry Chu } else if (fastopen) { /* received a valid RST pkt */ 7828336886fSJerry Chu reqsk_fastopen_remove(sk, req, true); 7838336886fSJerry Chu tcp_reset(sk); 7848336886fSJerry Chu } 7858336886fSJerry Chu if (!fastopen) { 78652452c54SEric Dumazet inet_csk_reqsk_queue_drop(sk, req); 78702a1d6e7SEric Dumazet __NET_INC_STATS(sock_net(sk), LINUX_MIB_EMBRYONICRSTS); 7888336886fSJerry Chu } 7891da177e4SLinus Torvalds return NULL; 7901da177e4SLinus Torvalds } 7914bc2f18bSEric Dumazet EXPORT_SYMBOL(tcp_check_req); 7921da177e4SLinus Torvalds 7931da177e4SLinus Torvalds /* 7941da177e4SLinus Torvalds * Queue segment on the new socket if the new socket is active, 7951da177e4SLinus Torvalds * otherwise we just shortcircuit this and continue with 7961da177e4SLinus Torvalds * the new socket. 7978336886fSJerry Chu * 7988336886fSJerry Chu * For the vast majority of cases child->sk_state will be TCP_SYN_RECV 7998336886fSJerry Chu * when entering. But other states are possible due to a race condition 8008336886fSJerry Chu * where after __inet_lookup_established() fails but before the listener 8018336886fSJerry Chu * locked is obtained, other packets cause the same connection to 8028336886fSJerry Chu * be created. 8031da177e4SLinus Torvalds */ 8041da177e4SLinus Torvalds 8051da177e4SLinus Torvalds int tcp_child_process(struct sock *parent, struct sock *child, 8061da177e4SLinus Torvalds struct sk_buff *skb) 8071da177e4SLinus Torvalds { 8081da177e4SLinus Torvalds int ret = 0; 8091da177e4SLinus Torvalds int state = child->sk_state; 8101da177e4SLinus Torvalds 811e5907459SAlexander Duyck /* record NAPI ID of child */ 812e5907459SAlexander Duyck sk_mark_napi_id(child, skb); 813e5907459SAlexander Duyck 814a44d6eacSMartin KaFai Lau tcp_segs_in(tcp_sk(child), skb); 8151da177e4SLinus Torvalds if (!sock_owned_by_user(child)) { 81672ab4a86SEric Dumazet ret = tcp_rcv_state_process(child, skb); 8171da177e4SLinus Torvalds /* Wakeup parent, send SIGIO */ 8181da177e4SLinus Torvalds if (state == TCP_SYN_RECV && child->sk_state != state) 819676d2369SDavid S. Miller parent->sk_data_ready(parent); 8201da177e4SLinus Torvalds } else { 8211da177e4SLinus Torvalds /* Alas, it is possible again, because we do lookup 8221da177e4SLinus Torvalds * in main socket hash table and lock on listening 8231da177e4SLinus Torvalds * socket does not protect us more. 8241da177e4SLinus Torvalds */ 825a3a858ffSZhu Yi __sk_add_backlog(child, skb); 8261da177e4SLinus Torvalds } 8271da177e4SLinus Torvalds 8281da177e4SLinus Torvalds bh_unlock_sock(child); 8291da177e4SLinus Torvalds sock_put(child); 8301da177e4SLinus Torvalds return ret; 8311da177e4SLinus Torvalds } 8321da177e4SLinus Torvalds EXPORT_SYMBOL(tcp_child_process); 833