11da177e4SLinus Torvalds /* 21da177e4SLinus Torvalds * Syncookies implementation for the Linux kernel 31da177e4SLinus Torvalds * 41da177e4SLinus Torvalds * Copyright (C) 1997 Andi Kleen 51da177e4SLinus Torvalds * Based on ideas by D.J.Bernstein and Eric Schenk. 61da177e4SLinus Torvalds * 71da177e4SLinus Torvalds * This program is free software; you can redistribute it and/or 81da177e4SLinus Torvalds * modify it under the terms of the GNU General Public License 91da177e4SLinus Torvalds * as published by the Free Software Foundation; either version 101da177e4SLinus Torvalds * 2 of the License, or (at your option) any later version. 111da177e4SLinus Torvalds */ 121da177e4SLinus Torvalds 131da177e4SLinus Torvalds #include <linux/tcp.h> 141da177e4SLinus Torvalds #include <linux/slab.h> 151da177e4SLinus Torvalds #include <linux/random.h> 161da177e4SLinus Torvalds #include <linux/cryptohash.h> 171da177e4SLinus Torvalds #include <linux/kernel.h> 18bc3b2d7fSPaul Gortmaker #include <linux/export.h> 191da177e4SLinus Torvalds #include <net/tcp.h> 2086b08d86SKOVACS Krisztian #include <net/route.h> 211da177e4SLinus Torvalds 22734f614bSFlorian Westphal /* Timestamps: lowest bits store TCP options */ 23172d69e6SFlorian Westphal #define TSBITS 6 244dfc2817SFlorian Westphal #define TSMASK (((__u32)1 << TSBITS) - 1) 254dfc2817SFlorian Westphal 261da177e4SLinus Torvalds extern int sysctl_tcp_syncookies; 271da177e4SLinus Torvalds 282051f11fSFlorian Westphal __u32 syncookie_secret[2][16-4+SHA_DIGEST_WORDS]; 29c6aefafbSGlenn Griffin EXPORT_SYMBOL(syncookie_secret); 301da177e4SLinus Torvalds 311da177e4SLinus Torvalds static __init int init_syncookies(void) 321da177e4SLinus Torvalds { 331da177e4SLinus Torvalds get_random_bytes(syncookie_secret, sizeof(syncookie_secret)); 341da177e4SLinus Torvalds return 0; 351da177e4SLinus Torvalds } 36c6aefafbSGlenn Griffin __initcall(init_syncookies); 371da177e4SLinus Torvalds 381da177e4SLinus Torvalds #define COOKIEBITS 24 /* Upper bits store count */ 391da177e4SLinus Torvalds #define COOKIEMASK (((__u32)1 << COOKIEBITS) - 1) 401da177e4SLinus Torvalds 41245b2e70STejun Heo static DEFINE_PER_CPU(__u32 [16 + 5 + SHA_WORKSPACE_WORDS], 42245b2e70STejun Heo ipv4_cookie_scratch); 4311baab7aSEric Dumazet 44714e85beSAl Viro static u32 cookie_hash(__be32 saddr, __be32 daddr, __be16 sport, __be16 dport, 451da177e4SLinus Torvalds u32 count, int c) 461da177e4SLinus Torvalds { 47245b2e70STejun Heo __u32 *tmp = __get_cpu_var(ipv4_cookie_scratch); 481da177e4SLinus Torvalds 492051f11fSFlorian Westphal memcpy(tmp + 4, syncookie_secret[c], sizeof(syncookie_secret[c])); 50714e85beSAl Viro tmp[0] = (__force u32)saddr; 51714e85beSAl Viro tmp[1] = (__force u32)daddr; 52714e85beSAl Viro tmp[2] = ((__force u32)sport << 16) + (__force u32)dport; 531da177e4SLinus Torvalds tmp[3] = count; 541da177e4SLinus Torvalds sha_transform(tmp + 16, (__u8 *)tmp, tmp + 16 + 5); 551da177e4SLinus Torvalds 561da177e4SLinus Torvalds return tmp[17]; 571da177e4SLinus Torvalds } 581da177e4SLinus Torvalds 594dfc2817SFlorian Westphal 604dfc2817SFlorian Westphal /* 614dfc2817SFlorian Westphal * when syncookies are in effect and tcp timestamps are enabled we encode 62734f614bSFlorian Westphal * tcp options in the lower bits of the timestamp value that will be 634dfc2817SFlorian Westphal * sent in the syn-ack. 644dfc2817SFlorian Westphal * Since subsequent timestamps use the normal tcp_time_stamp value, we 654dfc2817SFlorian Westphal * must make sure that the resulting initial timestamp is <= tcp_time_stamp. 664dfc2817SFlorian Westphal */ 674dfc2817SFlorian Westphal __u32 cookie_init_timestamp(struct request_sock *req) 684dfc2817SFlorian Westphal { 694dfc2817SFlorian Westphal struct inet_request_sock *ireq; 704dfc2817SFlorian Westphal u32 ts, ts_now = tcp_time_stamp; 714dfc2817SFlorian Westphal u32 options = 0; 724dfc2817SFlorian Westphal 734dfc2817SFlorian Westphal ireq = inet_rsk(req); 74734f614bSFlorian Westphal 75734f614bSFlorian Westphal options = ireq->wscale_ok ? ireq->snd_wscale : 0xf; 76734f614bSFlorian Westphal options |= ireq->sack_ok << 4; 77172d69e6SFlorian Westphal options |= ireq->ecn_ok << 5; 784dfc2817SFlorian Westphal 794dfc2817SFlorian Westphal ts = ts_now & ~TSMASK; 804dfc2817SFlorian Westphal ts |= options; 814dfc2817SFlorian Westphal if (ts > ts_now) { 824dfc2817SFlorian Westphal ts >>= TSBITS; 834dfc2817SFlorian Westphal ts--; 844dfc2817SFlorian Westphal ts <<= TSBITS; 854dfc2817SFlorian Westphal ts |= options; 864dfc2817SFlorian Westphal } 874dfc2817SFlorian Westphal return ts; 884dfc2817SFlorian Westphal } 894dfc2817SFlorian Westphal 904dfc2817SFlorian Westphal 91714e85beSAl Viro static __u32 secure_tcp_syn_cookie(__be32 saddr, __be32 daddr, __be16 sport, 92714e85beSAl Viro __be16 dport, __u32 sseq, __u32 count, 931da177e4SLinus Torvalds __u32 data) 941da177e4SLinus Torvalds { 951da177e4SLinus Torvalds /* 961da177e4SLinus Torvalds * Compute the secure sequence number. 971da177e4SLinus Torvalds * The output should be: 981da177e4SLinus Torvalds * HASH(sec1,saddr,sport,daddr,dport,sec1) + sseq + (count * 2^24) 991da177e4SLinus Torvalds * + (HASH(sec2,saddr,sport,daddr,dport,count,sec2) % 2^24). 1001da177e4SLinus Torvalds * Where sseq is their sequence number and count increases every 1011da177e4SLinus Torvalds * minute by 1. 1021da177e4SLinus Torvalds * As an extra hack, we add a small "data" value that encodes the 1031da177e4SLinus Torvalds * MSS into the second hash value. 1041da177e4SLinus Torvalds */ 1051da177e4SLinus Torvalds 1061da177e4SLinus Torvalds return (cookie_hash(saddr, daddr, sport, dport, 0, 0) + 1071da177e4SLinus Torvalds sseq + (count << COOKIEBITS) + 1081da177e4SLinus Torvalds ((cookie_hash(saddr, daddr, sport, dport, count, 1) + data) 1091da177e4SLinus Torvalds & COOKIEMASK)); 1101da177e4SLinus Torvalds } 1111da177e4SLinus Torvalds 1121da177e4SLinus Torvalds /* 1131da177e4SLinus Torvalds * This retrieves the small "data" value from the syncookie. 1141da177e4SLinus Torvalds * If the syncookie is bad, the data returned will be out of 1151da177e4SLinus Torvalds * range. This must be checked by the caller. 1161da177e4SLinus Torvalds * 1171da177e4SLinus Torvalds * The count value used to generate the cookie must be within 1181da177e4SLinus Torvalds * "maxdiff" if the current (passed-in) "count". The return value 1191da177e4SLinus Torvalds * is (__u32)-1 if this test fails. 1201da177e4SLinus Torvalds */ 121714e85beSAl Viro static __u32 check_tcp_syn_cookie(__u32 cookie, __be32 saddr, __be32 daddr, 122714e85beSAl Viro __be16 sport, __be16 dport, __u32 sseq, 1231da177e4SLinus Torvalds __u32 count, __u32 maxdiff) 1241da177e4SLinus Torvalds { 1251da177e4SLinus Torvalds __u32 diff; 1261da177e4SLinus Torvalds 1271da177e4SLinus Torvalds /* Strip away the layers from the cookie */ 1281da177e4SLinus Torvalds cookie -= cookie_hash(saddr, daddr, sport, dport, 0, 0) + sseq; 1291da177e4SLinus Torvalds 1301da177e4SLinus Torvalds /* Cookie is now reduced to (count * 2^24) ^ (hash % 2^24) */ 1311da177e4SLinus Torvalds diff = (count - (cookie >> COOKIEBITS)) & ((__u32) - 1 >> COOKIEBITS); 1321da177e4SLinus Torvalds if (diff >= maxdiff) 1331da177e4SLinus Torvalds return (__u32)-1; 1341da177e4SLinus Torvalds 1351da177e4SLinus Torvalds return (cookie - 1361da177e4SLinus Torvalds cookie_hash(saddr, daddr, sport, dport, count - diff, 1)) 1371da177e4SLinus Torvalds & COOKIEMASK; /* Leaving the data behind */ 1381da177e4SLinus Torvalds } 1391da177e4SLinus Torvalds 1401da177e4SLinus Torvalds /* 1415918e2fbSFlorian Westphal * MSS Values are taken from the 2009 paper 1425918e2fbSFlorian Westphal * 'Measuring TCP Maximum Segment Size' by S. Alcock and R. Nelson: 1435918e2fbSFlorian Westphal * - values 1440 to 1460 accounted for 80% of observed mss values 1445918e2fbSFlorian Westphal * - values outside the 536-1460 range are rare (<0.2%). 1455918e2fbSFlorian Westphal * 1465918e2fbSFlorian Westphal * Table must be sorted. 1471da177e4SLinus Torvalds */ 1481da177e4SLinus Torvalds static __u16 const msstab[] = { 1495918e2fbSFlorian Westphal 64, 1505918e2fbSFlorian Westphal 512, 1515918e2fbSFlorian Westphal 536, 1525918e2fbSFlorian Westphal 1024, 1535918e2fbSFlorian Westphal 1440, 1545918e2fbSFlorian Westphal 1460, 1555918e2fbSFlorian Westphal 4312, 1565918e2fbSFlorian Westphal 8960, 1571da177e4SLinus Torvalds }; 1581da177e4SLinus Torvalds 1591da177e4SLinus Torvalds /* 1601da177e4SLinus Torvalds * Generate a syncookie. mssp points to the mss, which is returned 1611da177e4SLinus Torvalds * rounded down to the value encoded in the cookie. 1621da177e4SLinus Torvalds */ 1631da177e4SLinus Torvalds __u32 cookie_v4_init_sequence(struct sock *sk, struct sk_buff *skb, __u16 *mssp) 1641da177e4SLinus Torvalds { 165aa8223c7SArnaldo Carvalho de Melo const struct iphdr *iph = ip_hdr(skb); 166aa8223c7SArnaldo Carvalho de Melo const struct tcphdr *th = tcp_hdr(skb); 1671da177e4SLinus Torvalds int mssind; 1681da177e4SLinus Torvalds const __u16 mss = *mssp; 1691da177e4SLinus Torvalds 170a0f82f64SFlorian Westphal tcp_synq_overflow(sk); 1711da177e4SLinus Torvalds 1725918e2fbSFlorian Westphal for (mssind = ARRAY_SIZE(msstab) - 1; mssind ; mssind--) 1735918e2fbSFlorian Westphal if (mss >= msstab[mssind]) 1745918e2fbSFlorian Westphal break; 1755918e2fbSFlorian Westphal *mssp = msstab[mssind]; 1761da177e4SLinus Torvalds 177de0744afSPavel Emelyanov NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_SYNCOOKIESSENT); 1781da177e4SLinus Torvalds 179aa8223c7SArnaldo Carvalho de Melo return secure_tcp_syn_cookie(iph->saddr, iph->daddr, 180aa8223c7SArnaldo Carvalho de Melo th->source, th->dest, ntohl(th->seq), 1811da177e4SLinus Torvalds jiffies / (HZ * 60), mssind); 1821da177e4SLinus Torvalds } 1831da177e4SLinus Torvalds 1841da177e4SLinus Torvalds /* 1851da177e4SLinus Torvalds * This (misnamed) value is the age of syncookie which is permitted. 1861da177e4SLinus Torvalds * Its ideal value should be dependent on TCP_TIMEOUT_INIT and 1871da177e4SLinus Torvalds * sysctl_tcp_retries1. It's a rather complicated formula (exponential 1881da177e4SLinus Torvalds * backoff) to compute at runtime so it's currently hardcoded here. 1891da177e4SLinus Torvalds */ 1901da177e4SLinus Torvalds #define COUNTER_TRIES 4 1911da177e4SLinus Torvalds /* 1921da177e4SLinus Torvalds * Check if a ack sequence number is a valid syncookie. 1931da177e4SLinus Torvalds * Return the decoded mss if it is, or 0 if not. 1941da177e4SLinus Torvalds */ 1951da177e4SLinus Torvalds static inline int cookie_check(struct sk_buff *skb, __u32 cookie) 1961da177e4SLinus Torvalds { 197aa8223c7SArnaldo Carvalho de Melo const struct iphdr *iph = ip_hdr(skb); 198aa8223c7SArnaldo Carvalho de Melo const struct tcphdr *th = tcp_hdr(skb); 199aa8223c7SArnaldo Carvalho de Melo __u32 seq = ntohl(th->seq) - 1; 200aa8223c7SArnaldo Carvalho de Melo __u32 mssind = check_tcp_syn_cookie(cookie, iph->saddr, iph->daddr, 201aa8223c7SArnaldo Carvalho de Melo th->source, th->dest, seq, 202aa8223c7SArnaldo Carvalho de Melo jiffies / (HZ * 60), 203aa8223c7SArnaldo Carvalho de Melo COUNTER_TRIES); 2041da177e4SLinus Torvalds 2055918e2fbSFlorian Westphal return mssind < ARRAY_SIZE(msstab) ? msstab[mssind] : 0; 2061da177e4SLinus Torvalds } 2071da177e4SLinus Torvalds 2081da177e4SLinus Torvalds static inline struct sock *get_cookie_sock(struct sock *sk, struct sk_buff *skb, 20960236fddSArnaldo Carvalho de Melo struct request_sock *req, 2101da177e4SLinus Torvalds struct dst_entry *dst) 2111da177e4SLinus Torvalds { 2128292a17aSArnaldo Carvalho de Melo struct inet_connection_sock *icsk = inet_csk(sk); 2131da177e4SLinus Torvalds struct sock *child; 2141da177e4SLinus Torvalds 2158292a17aSArnaldo Carvalho de Melo child = icsk->icsk_af_ops->syn_recv_sock(sk, skb, req, dst); 2161da177e4SLinus Torvalds if (child) 217463c84b9SArnaldo Carvalho de Melo inet_csk_reqsk_queue_add(sk, req, child); 2181da177e4SLinus Torvalds else 21960236fddSArnaldo Carvalho de Melo reqsk_free(req); 2201da177e4SLinus Torvalds 2211da177e4SLinus Torvalds return child; 2221da177e4SLinus Torvalds } 2231da177e4SLinus Torvalds 2244dfc2817SFlorian Westphal 2254dfc2817SFlorian Westphal /* 2264dfc2817SFlorian Westphal * when syncookies are in effect and tcp timestamps are enabled we stored 2274dfc2817SFlorian Westphal * additional tcp options in the timestamp. 2284dfc2817SFlorian Westphal * This extracts these options from the timestamp echo. 2294dfc2817SFlorian Westphal * 230734f614bSFlorian Westphal * The lowest 4 bits store snd_wscale. 231172d69e6SFlorian Westphal * next 2 bits indicate SACK and ECN support. 2328c763681SFlorian Westphal * 2338c763681SFlorian Westphal * return false if we decode an option that should not be. 2344dfc2817SFlorian Westphal */ 235*5d134f1cSHannes Frederic Sowa bool cookie_check_timestamp(struct tcp_options_received *tcp_opt, 236*5d134f1cSHannes Frederic Sowa struct net *net, bool *ecn_ok) 2374dfc2817SFlorian Westphal { 238734f614bSFlorian Westphal /* echoed timestamp, lowest bits contain options */ 2394dfc2817SFlorian Westphal u32 options = tcp_opt->rcv_tsecr & TSMASK; 2404dfc2817SFlorian Westphal 2418c763681SFlorian Westphal if (!tcp_opt->saw_tstamp) { 2428c763681SFlorian Westphal tcp_clear_options(tcp_opt); 2438c763681SFlorian Westphal return true; 2448c763681SFlorian Westphal } 2458c763681SFlorian Westphal 2468c763681SFlorian Westphal if (!sysctl_tcp_timestamps) 2478c763681SFlorian Westphal return false; 2488c763681SFlorian Westphal 249ab56222aSVijay Subramanian tcp_opt->sack_ok = (options & (1 << 4)) ? TCP_SACK_SEEN : 0; 250172d69e6SFlorian Westphal *ecn_ok = (options >> 5) & 1; 251*5d134f1cSHannes Frederic Sowa if (*ecn_ok && !net->ipv4.sysctl_tcp_ecn) 252172d69e6SFlorian Westphal return false; 2534dfc2817SFlorian Westphal 2548c763681SFlorian Westphal if (tcp_opt->sack_ok && !sysctl_tcp_sack) 2558c763681SFlorian Westphal return false; 2564dfc2817SFlorian Westphal 257734f614bSFlorian Westphal if ((options & 0xf) == 0xf) 258734f614bSFlorian Westphal return true; /* no window scaling */ 259734f614bSFlorian Westphal 2604dfc2817SFlorian Westphal tcp_opt->wscale_ok = 1; 261734f614bSFlorian Westphal tcp_opt->snd_wscale = options & 0xf; 2628c763681SFlorian Westphal return sysctl_tcp_window_scaling != 0; 2638c763681SFlorian Westphal } 2644dfc2817SFlorian Westphal EXPORT_SYMBOL(cookie_check_timestamp); 2654dfc2817SFlorian Westphal 2661da177e4SLinus Torvalds struct sock *cookie_v4_check(struct sock *sk, struct sk_buff *skb, 2671da177e4SLinus Torvalds struct ip_options *opt) 2681da177e4SLinus Torvalds { 2694957faadSWilliam Allen Simpson struct tcp_options_received tcp_opt; 270cf533ea5SEric Dumazet const u8 *hash_location; 2712e6599cbSArnaldo Carvalho de Melo struct inet_request_sock *ireq; 2722e6599cbSArnaldo Carvalho de Melo struct tcp_request_sock *treq; 2731da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 274aa8223c7SArnaldo Carvalho de Melo const struct tcphdr *th = tcp_hdr(skb); 275aa8223c7SArnaldo Carvalho de Melo __u32 cookie = ntohl(th->ack_seq) - 1; 2761da177e4SLinus Torvalds struct sock *ret = sk; 27760236fddSArnaldo Carvalho de Melo struct request_sock *req; 2781da177e4SLinus Torvalds int mss; 2791da177e4SLinus Torvalds struct rtable *rt; 2801da177e4SLinus Torvalds __u8 rcv_wscale; 281f0e3d068SMike Waychison bool ecn_ok = false; 282dfd25fffSEric Dumazet struct flowi4 fl4; 2831da177e4SLinus Torvalds 284af9b4738SFlorian Westphal if (!sysctl_tcp_syncookies || !th->ack || th->rst) 2851da177e4SLinus Torvalds goto out; 2861da177e4SLinus Torvalds 287a0f82f64SFlorian Westphal if (tcp_synq_no_recent_overflow(sk) || 2881da177e4SLinus Torvalds (mss = cookie_check(skb, cookie)) == 0) { 289de0744afSPavel Emelyanov NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_SYNCOOKIESFAILED); 2901da177e4SLinus Torvalds goto out; 2911da177e4SLinus Torvalds } 2921da177e4SLinus Torvalds 293de0744afSPavel Emelyanov NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_SYNCOOKIESRECV); 2941da177e4SLinus Torvalds 295bb5b7c11SDavid S. Miller /* check for timestamp cookie support */ 296bb5b7c11SDavid S. Miller memset(&tcp_opt, 0, sizeof(tcp_opt)); 2972100c8d2SYuchung Cheng tcp_parse_options(skb, &tcp_opt, &hash_location, 0, NULL); 298bb5b7c11SDavid S. Miller 299*5d134f1cSHannes Frederic Sowa if (!cookie_check_timestamp(&tcp_opt, sock_net(sk), &ecn_ok)) 3008c763681SFlorian Westphal goto out; 301bb5b7c11SDavid S. Miller 3021da177e4SLinus Torvalds ret = NULL; 303ce4a7d0dSArnaldo Carvalho de Melo req = inet_reqsk_alloc(&tcp_request_sock_ops); /* for safety */ 3041da177e4SLinus Torvalds if (!req) 3051da177e4SLinus Torvalds goto out; 3061da177e4SLinus Torvalds 3072e6599cbSArnaldo Carvalho de Melo ireq = inet_rsk(req); 3082e6599cbSArnaldo Carvalho de Melo treq = tcp_rsk(req); 309aa8223c7SArnaldo Carvalho de Melo treq->rcv_isn = ntohl(th->seq) - 1; 3102e6599cbSArnaldo Carvalho de Melo treq->snt_isn = cookie; 3111da177e4SLinus Torvalds req->mss = mss; 312a3116ac5SKOVACS Krisztian ireq->loc_port = th->dest; 313aa8223c7SArnaldo Carvalho de Melo ireq->rmt_port = th->source; 314eddc9ec5SArnaldo Carvalho de Melo ireq->loc_addr = ip_hdr(skb)->daddr; 315eddc9ec5SArnaldo Carvalho de Melo ireq->rmt_addr = ip_hdr(skb)->saddr; 316172d69e6SFlorian Westphal ireq->ecn_ok = ecn_ok; 317bb5b7c11SDavid S. Miller ireq->snd_wscale = tcp_opt.snd_wscale; 318bb5b7c11SDavid S. Miller ireq->sack_ok = tcp_opt.sack_ok; 319bb5b7c11SDavid S. Miller ireq->wscale_ok = tcp_opt.wscale_ok; 320bb5b7c11SDavid S. Miller ireq->tstamp_ok = tcp_opt.saw_tstamp; 321bb5b7c11SDavid S. Miller req->ts_recent = tcp_opt.saw_tstamp ? tcp_opt.rcv_tsval : 0; 3229ad7c049SJerry Chu treq->snt_synack = tcp_opt.saw_tstamp ? tcp_opt.rcv_tsecr : 0; 3238336886fSJerry Chu treq->listener = NULL; 3241da177e4SLinus Torvalds 3251da177e4SLinus Torvalds /* We throwed the options of the initial SYN away, so we hope 3261da177e4SLinus Torvalds * the ACK carries the same options again (see RFC1122 4.2.3.8) 3271da177e4SLinus Torvalds */ 3281da177e4SLinus Torvalds if (opt && opt->optlen) { 329f6d8bd05SEric Dumazet int opt_size = sizeof(struct ip_options_rcu) + opt->optlen; 3301da177e4SLinus Torvalds 3312e6599cbSArnaldo Carvalho de Melo ireq->opt = kmalloc(opt_size, GFP_ATOMIC); 332f6d8bd05SEric Dumazet if (ireq->opt != NULL && ip_options_echo(&ireq->opt->opt, skb)) { 3332e6599cbSArnaldo Carvalho de Melo kfree(ireq->opt); 3342e6599cbSArnaldo Carvalho de Melo ireq->opt = NULL; 3351da177e4SLinus Torvalds } 3361da177e4SLinus Torvalds } 3371da177e4SLinus Torvalds 338284904aaSPaul Moore if (security_inet_conn_request(sk, skb, req)) { 339284904aaSPaul Moore reqsk_free(req); 340284904aaSPaul Moore goto out; 341284904aaSPaul Moore } 342284904aaSPaul Moore 3431da177e4SLinus Torvalds req->expires = 0UL; 344e6c022a4SEric Dumazet req->num_retrans = 0; 3451da177e4SLinus Torvalds 3461da177e4SLinus Torvalds /* 3471da177e4SLinus Torvalds * We need to lookup the route here to get at the correct 3481da177e4SLinus Torvalds * window size. We should better make sure that the window size 3491da177e4SLinus Torvalds * hasn't changed since we received the original syn, but I see 3501da177e4SLinus Torvalds * no easy way to do this. 3511da177e4SLinus Torvalds */ 3521bba6ffeSDavid S. Miller flowi4_init_output(&fl4, 0, sk->sk_mark, RT_CONN_FLAGS(sk), 3531bba6ffeSDavid S. Miller RT_SCOPE_UNIVERSE, IPPROTO_TCP, 3541bba6ffeSDavid S. Miller inet_sk_flowi_flags(sk), 3551bba6ffeSDavid S. Miller (opt && opt->srr) ? opt->faddr : ireq->rmt_addr, 3561bba6ffeSDavid S. Miller ireq->loc_addr, th->source, th->dest); 3579d6ec938SDavid S. Miller security_req_classify_flow(req, flowi4_to_flowi(&fl4)); 3589d6ec938SDavid S. Miller rt = ip_route_output_key(sock_net(sk), &fl4); 359b23dd4feSDavid S. Miller if (IS_ERR(rt)) { 36060236fddSArnaldo Carvalho de Melo reqsk_free(req); 3611da177e4SLinus Torvalds goto out; 3621da177e4SLinus Torvalds } 3631da177e4SLinus Torvalds 3641da177e4SLinus Torvalds /* Try to redo what tcp_v4_send_synack did. */ 365d8d1f30bSChangli Gao req->window_clamp = tp->window_clamp ? :dst_metric(&rt->dst, RTAX_WINDOW); 3664dfc2817SFlorian Westphal 3671da177e4SLinus Torvalds tcp_select_initial_window(tcp_full_space(sk), req->mss, 3681da177e4SLinus Torvalds &req->rcv_wnd, &req->window_clamp, 36931d12926Slaurent chavey ireq->wscale_ok, &rcv_wscale, 370d8d1f30bSChangli Gao dst_metric(&rt->dst, RTAX_INITRWND)); 3714dfc2817SFlorian Westphal 3722e6599cbSArnaldo Carvalho de Melo ireq->rcv_wscale = rcv_wscale; 3731da177e4SLinus Torvalds 374d8d1f30bSChangli Gao ret = get_cookie_sock(sk, skb, req, &rt->dst); 375dfd25fffSEric Dumazet /* ip_queue_xmit() depends on our flow being setup 376dfd25fffSEric Dumazet * Normal sockets get it right from inet_csk_route_child_sock() 377dfd25fffSEric Dumazet */ 378dfd25fffSEric Dumazet if (ret) 379dfd25fffSEric Dumazet inet_sk(ret)->cork.fl.u.ip4 = fl4; 3801da177e4SLinus Torvalds out: return ret; 3811da177e4SLinus Torvalds } 382