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 */ 163*0198230bSPatrick McHardy u32 __cookie_v4_init_sequence(const struct iphdr *iph, const struct tcphdr *th, 164*0198230bSPatrick McHardy u16 *mssp) 1651da177e4SLinus Torvalds { 1661da177e4SLinus Torvalds int mssind; 1671da177e4SLinus Torvalds const __u16 mss = *mssp; 1681da177e4SLinus Torvalds 1695918e2fbSFlorian Westphal for (mssind = ARRAY_SIZE(msstab) - 1; mssind ; mssind--) 1705918e2fbSFlorian Westphal if (mss >= msstab[mssind]) 1715918e2fbSFlorian Westphal break; 1725918e2fbSFlorian Westphal *mssp = msstab[mssind]; 1731da177e4SLinus Torvalds 174aa8223c7SArnaldo Carvalho de Melo return secure_tcp_syn_cookie(iph->saddr, iph->daddr, 175aa8223c7SArnaldo Carvalho de Melo th->source, th->dest, ntohl(th->seq), 1761da177e4SLinus Torvalds jiffies / (HZ * 60), mssind); 1771da177e4SLinus Torvalds } 178*0198230bSPatrick McHardy EXPORT_SYMBOL_GPL(__cookie_v4_init_sequence); 179*0198230bSPatrick McHardy 180*0198230bSPatrick McHardy __u32 cookie_v4_init_sequence(struct sock *sk, struct sk_buff *skb, __u16 *mssp) 181*0198230bSPatrick McHardy { 182*0198230bSPatrick McHardy const struct iphdr *iph = ip_hdr(skb); 183*0198230bSPatrick McHardy const struct tcphdr *th = tcp_hdr(skb); 184*0198230bSPatrick McHardy 185*0198230bSPatrick McHardy tcp_synq_overflow(sk); 186*0198230bSPatrick McHardy NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_SYNCOOKIESSENT); 187*0198230bSPatrick McHardy 188*0198230bSPatrick McHardy return __cookie_v4_init_sequence(iph, th, mssp); 189*0198230bSPatrick McHardy } 1901da177e4SLinus Torvalds 1911da177e4SLinus Torvalds /* 1921da177e4SLinus Torvalds * This (misnamed) value is the age of syncookie which is permitted. 1931da177e4SLinus Torvalds * Its ideal value should be dependent on TCP_TIMEOUT_INIT and 1941da177e4SLinus Torvalds * sysctl_tcp_retries1. It's a rather complicated formula (exponential 1951da177e4SLinus Torvalds * backoff) to compute at runtime so it's currently hardcoded here. 1961da177e4SLinus Torvalds */ 1971da177e4SLinus Torvalds #define COUNTER_TRIES 4 1981da177e4SLinus Torvalds /* 1991da177e4SLinus Torvalds * Check if a ack sequence number is a valid syncookie. 2001da177e4SLinus Torvalds * Return the decoded mss if it is, or 0 if not. 2011da177e4SLinus Torvalds */ 202*0198230bSPatrick McHardy int __cookie_v4_check(const struct iphdr *iph, const struct tcphdr *th, 203*0198230bSPatrick McHardy u32 cookie) 2041da177e4SLinus Torvalds { 205aa8223c7SArnaldo Carvalho de Melo __u32 seq = ntohl(th->seq) - 1; 206aa8223c7SArnaldo Carvalho de Melo __u32 mssind = check_tcp_syn_cookie(cookie, iph->saddr, iph->daddr, 207aa8223c7SArnaldo Carvalho de Melo th->source, th->dest, seq, 208aa8223c7SArnaldo Carvalho de Melo jiffies / (HZ * 60), 209aa8223c7SArnaldo Carvalho de Melo COUNTER_TRIES); 2101da177e4SLinus Torvalds 2115918e2fbSFlorian Westphal return mssind < ARRAY_SIZE(msstab) ? msstab[mssind] : 0; 2121da177e4SLinus Torvalds } 213*0198230bSPatrick McHardy EXPORT_SYMBOL_GPL(__cookie_v4_check); 2141da177e4SLinus Torvalds 2151da177e4SLinus Torvalds static inline struct sock *get_cookie_sock(struct sock *sk, struct sk_buff *skb, 21660236fddSArnaldo Carvalho de Melo struct request_sock *req, 2171da177e4SLinus Torvalds struct dst_entry *dst) 2181da177e4SLinus Torvalds { 2198292a17aSArnaldo Carvalho de Melo struct inet_connection_sock *icsk = inet_csk(sk); 2201da177e4SLinus Torvalds struct sock *child; 2211da177e4SLinus Torvalds 2228292a17aSArnaldo Carvalho de Melo child = icsk->icsk_af_ops->syn_recv_sock(sk, skb, req, dst); 2231da177e4SLinus Torvalds if (child) 224463c84b9SArnaldo Carvalho de Melo inet_csk_reqsk_queue_add(sk, req, child); 2251da177e4SLinus Torvalds else 22660236fddSArnaldo Carvalho de Melo reqsk_free(req); 2271da177e4SLinus Torvalds 2281da177e4SLinus Torvalds return child; 2291da177e4SLinus Torvalds } 2301da177e4SLinus Torvalds 2314dfc2817SFlorian Westphal 2324dfc2817SFlorian Westphal /* 2334dfc2817SFlorian Westphal * when syncookies are in effect and tcp timestamps are enabled we stored 2344dfc2817SFlorian Westphal * additional tcp options in the timestamp. 2354dfc2817SFlorian Westphal * This extracts these options from the timestamp echo. 2364dfc2817SFlorian Westphal * 237734f614bSFlorian Westphal * The lowest 4 bits store snd_wscale. 238172d69e6SFlorian Westphal * next 2 bits indicate SACK and ECN support. 2398c763681SFlorian Westphal * 2408c763681SFlorian Westphal * return false if we decode an option that should not be. 2414dfc2817SFlorian Westphal */ 2425d134f1cSHannes Frederic Sowa bool cookie_check_timestamp(struct tcp_options_received *tcp_opt, 2435d134f1cSHannes Frederic Sowa struct net *net, bool *ecn_ok) 2444dfc2817SFlorian Westphal { 245734f614bSFlorian Westphal /* echoed timestamp, lowest bits contain options */ 2464dfc2817SFlorian Westphal u32 options = tcp_opt->rcv_tsecr & TSMASK; 2474dfc2817SFlorian Westphal 2488c763681SFlorian Westphal if (!tcp_opt->saw_tstamp) { 2498c763681SFlorian Westphal tcp_clear_options(tcp_opt); 2508c763681SFlorian Westphal return true; 2518c763681SFlorian Westphal } 2528c763681SFlorian Westphal 2538c763681SFlorian Westphal if (!sysctl_tcp_timestamps) 2548c763681SFlorian Westphal return false; 2558c763681SFlorian Westphal 256ab56222aSVijay Subramanian tcp_opt->sack_ok = (options & (1 << 4)) ? TCP_SACK_SEEN : 0; 257172d69e6SFlorian Westphal *ecn_ok = (options >> 5) & 1; 2585d134f1cSHannes Frederic Sowa if (*ecn_ok && !net->ipv4.sysctl_tcp_ecn) 259172d69e6SFlorian Westphal return false; 2604dfc2817SFlorian Westphal 2618c763681SFlorian Westphal if (tcp_opt->sack_ok && !sysctl_tcp_sack) 2628c763681SFlorian Westphal return false; 2634dfc2817SFlorian Westphal 264734f614bSFlorian Westphal if ((options & 0xf) == 0xf) 265734f614bSFlorian Westphal return true; /* no window scaling */ 266734f614bSFlorian Westphal 2674dfc2817SFlorian Westphal tcp_opt->wscale_ok = 1; 268734f614bSFlorian Westphal tcp_opt->snd_wscale = options & 0xf; 2698c763681SFlorian Westphal return sysctl_tcp_window_scaling != 0; 2708c763681SFlorian Westphal } 2714dfc2817SFlorian Westphal EXPORT_SYMBOL(cookie_check_timestamp); 2724dfc2817SFlorian Westphal 2731da177e4SLinus Torvalds struct sock *cookie_v4_check(struct sock *sk, struct sk_buff *skb, 2741da177e4SLinus Torvalds struct ip_options *opt) 2751da177e4SLinus Torvalds { 2764957faadSWilliam Allen Simpson struct tcp_options_received tcp_opt; 2772e6599cbSArnaldo Carvalho de Melo struct inet_request_sock *ireq; 2782e6599cbSArnaldo Carvalho de Melo struct tcp_request_sock *treq; 2791da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 280aa8223c7SArnaldo Carvalho de Melo const struct tcphdr *th = tcp_hdr(skb); 281aa8223c7SArnaldo Carvalho de Melo __u32 cookie = ntohl(th->ack_seq) - 1; 2821da177e4SLinus Torvalds struct sock *ret = sk; 28360236fddSArnaldo Carvalho de Melo struct request_sock *req; 2841da177e4SLinus Torvalds int mss; 2851da177e4SLinus Torvalds struct rtable *rt; 2861da177e4SLinus Torvalds __u8 rcv_wscale; 287f0e3d068SMike Waychison bool ecn_ok = false; 288dfd25fffSEric Dumazet struct flowi4 fl4; 2891da177e4SLinus Torvalds 290af9b4738SFlorian Westphal if (!sysctl_tcp_syncookies || !th->ack || th->rst) 2911da177e4SLinus Torvalds goto out; 2921da177e4SLinus Torvalds 293a0f82f64SFlorian Westphal if (tcp_synq_no_recent_overflow(sk) || 294*0198230bSPatrick McHardy (mss = __cookie_v4_check(ip_hdr(skb), th, cookie)) == 0) { 295de0744afSPavel Emelyanov NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_SYNCOOKIESFAILED); 2961da177e4SLinus Torvalds goto out; 2971da177e4SLinus Torvalds } 2981da177e4SLinus Torvalds 299de0744afSPavel Emelyanov NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_SYNCOOKIESRECV); 3001da177e4SLinus Torvalds 301bb5b7c11SDavid S. Miller /* check for timestamp cookie support */ 302bb5b7c11SDavid S. Miller memset(&tcp_opt, 0, sizeof(tcp_opt)); 3031a2c6181SChristoph Paasch tcp_parse_options(skb, &tcp_opt, 0, NULL); 304bb5b7c11SDavid S. Miller 3055d134f1cSHannes Frederic Sowa if (!cookie_check_timestamp(&tcp_opt, sock_net(sk), &ecn_ok)) 3068c763681SFlorian Westphal goto out; 307bb5b7c11SDavid S. Miller 3081da177e4SLinus Torvalds ret = NULL; 309ce4a7d0dSArnaldo Carvalho de Melo req = inet_reqsk_alloc(&tcp_request_sock_ops); /* for safety */ 3101da177e4SLinus Torvalds if (!req) 3111da177e4SLinus Torvalds goto out; 3121da177e4SLinus Torvalds 3132e6599cbSArnaldo Carvalho de Melo ireq = inet_rsk(req); 3142e6599cbSArnaldo Carvalho de Melo treq = tcp_rsk(req); 315aa8223c7SArnaldo Carvalho de Melo treq->rcv_isn = ntohl(th->seq) - 1; 3162e6599cbSArnaldo Carvalho de Melo treq->snt_isn = cookie; 3171da177e4SLinus Torvalds req->mss = mss; 318a3116ac5SKOVACS Krisztian ireq->loc_port = th->dest; 319aa8223c7SArnaldo Carvalho de Melo ireq->rmt_port = th->source; 320eddc9ec5SArnaldo Carvalho de Melo ireq->loc_addr = ip_hdr(skb)->daddr; 321eddc9ec5SArnaldo Carvalho de Melo ireq->rmt_addr = ip_hdr(skb)->saddr; 322172d69e6SFlorian Westphal ireq->ecn_ok = ecn_ok; 323bb5b7c11SDavid S. Miller ireq->snd_wscale = tcp_opt.snd_wscale; 324bb5b7c11SDavid S. Miller ireq->sack_ok = tcp_opt.sack_ok; 325bb5b7c11SDavid S. Miller ireq->wscale_ok = tcp_opt.wscale_ok; 326bb5b7c11SDavid S. Miller ireq->tstamp_ok = tcp_opt.saw_tstamp; 327bb5b7c11SDavid S. Miller req->ts_recent = tcp_opt.saw_tstamp ? tcp_opt.rcv_tsval : 0; 3289ad7c049SJerry Chu treq->snt_synack = tcp_opt.saw_tstamp ? tcp_opt.rcv_tsecr : 0; 3298336886fSJerry Chu treq->listener = NULL; 3301da177e4SLinus Torvalds 3311da177e4SLinus Torvalds /* We throwed the options of the initial SYN away, so we hope 3321da177e4SLinus Torvalds * the ACK carries the same options again (see RFC1122 4.2.3.8) 3331da177e4SLinus Torvalds */ 3341da177e4SLinus Torvalds if (opt && opt->optlen) { 335f6d8bd05SEric Dumazet int opt_size = sizeof(struct ip_options_rcu) + opt->optlen; 3361da177e4SLinus Torvalds 3372e6599cbSArnaldo Carvalho de Melo ireq->opt = kmalloc(opt_size, GFP_ATOMIC); 338f6d8bd05SEric Dumazet if (ireq->opt != NULL && ip_options_echo(&ireq->opt->opt, skb)) { 3392e6599cbSArnaldo Carvalho de Melo kfree(ireq->opt); 3402e6599cbSArnaldo Carvalho de Melo ireq->opt = NULL; 3411da177e4SLinus Torvalds } 3421da177e4SLinus Torvalds } 3431da177e4SLinus Torvalds 344284904aaSPaul Moore if (security_inet_conn_request(sk, skb, req)) { 345284904aaSPaul Moore reqsk_free(req); 346284904aaSPaul Moore goto out; 347284904aaSPaul Moore } 348284904aaSPaul Moore 3491da177e4SLinus Torvalds req->expires = 0UL; 350e6c022a4SEric Dumazet req->num_retrans = 0; 3511da177e4SLinus Torvalds 3521da177e4SLinus Torvalds /* 3531da177e4SLinus Torvalds * We need to lookup the route here to get at the correct 3541da177e4SLinus Torvalds * window size. We should better make sure that the window size 3551da177e4SLinus Torvalds * hasn't changed since we received the original syn, but I see 3561da177e4SLinus Torvalds * no easy way to do this. 3571da177e4SLinus Torvalds */ 358d66954a0SDmitry Popov flowi4_init_output(&fl4, sk->sk_bound_dev_if, sk->sk_mark, 359d66954a0SDmitry Popov RT_CONN_FLAGS(sk), RT_SCOPE_UNIVERSE, IPPROTO_TCP, 3601bba6ffeSDavid S. Miller inet_sk_flowi_flags(sk), 3611bba6ffeSDavid S. Miller (opt && opt->srr) ? opt->faddr : ireq->rmt_addr, 3621bba6ffeSDavid S. Miller ireq->loc_addr, th->source, th->dest); 3639d6ec938SDavid S. Miller security_req_classify_flow(req, flowi4_to_flowi(&fl4)); 3649d6ec938SDavid S. Miller rt = ip_route_output_key(sock_net(sk), &fl4); 365b23dd4feSDavid S. Miller if (IS_ERR(rt)) { 36660236fddSArnaldo Carvalho de Melo reqsk_free(req); 3671da177e4SLinus Torvalds goto out; 3681da177e4SLinus Torvalds } 3691da177e4SLinus Torvalds 3701da177e4SLinus Torvalds /* Try to redo what tcp_v4_send_synack did. */ 371d8d1f30bSChangli Gao req->window_clamp = tp->window_clamp ? :dst_metric(&rt->dst, RTAX_WINDOW); 3724dfc2817SFlorian Westphal 3731da177e4SLinus Torvalds tcp_select_initial_window(tcp_full_space(sk), req->mss, 3741da177e4SLinus Torvalds &req->rcv_wnd, &req->window_clamp, 37531d12926Slaurent chavey ireq->wscale_ok, &rcv_wscale, 376d8d1f30bSChangli Gao dst_metric(&rt->dst, RTAX_INITRWND)); 3774dfc2817SFlorian Westphal 3782e6599cbSArnaldo Carvalho de Melo ireq->rcv_wscale = rcv_wscale; 3791da177e4SLinus Torvalds 380d8d1f30bSChangli Gao ret = get_cookie_sock(sk, skb, req, &rt->dst); 381dfd25fffSEric Dumazet /* ip_queue_xmit() depends on our flow being setup 382dfd25fffSEric Dumazet * Normal sockets get it right from inet_csk_route_child_sock() 383dfd25fffSEric Dumazet */ 384dfd25fffSEric Dumazet if (ret) 385dfd25fffSEric Dumazet inet_sk(ret)->cork.fl.u.ip4 = fl4; 3861da177e4SLinus Torvalds out: return ret; 3871da177e4SLinus Torvalds } 388