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, 92*8c27bd75SFlorian Westphal __be16 dport, __u32 sseq, __u32 data) 931da177e4SLinus Torvalds { 941da177e4SLinus Torvalds /* 951da177e4SLinus Torvalds * Compute the secure sequence number. 961da177e4SLinus Torvalds * The output should be: 971da177e4SLinus Torvalds * HASH(sec1,saddr,sport,daddr,dport,sec1) + sseq + (count * 2^24) 981da177e4SLinus Torvalds * + (HASH(sec2,saddr,sport,daddr,dport,count,sec2) % 2^24). 991da177e4SLinus Torvalds * Where sseq is their sequence number and count increases every 1001da177e4SLinus Torvalds * minute by 1. 1011da177e4SLinus Torvalds * As an extra hack, we add a small "data" value that encodes the 1021da177e4SLinus Torvalds * MSS into the second hash value. 1031da177e4SLinus Torvalds */ 104*8c27bd75SFlorian Westphal u32 count = tcp_cookie_time(); 1051da177e4SLinus Torvalds return (cookie_hash(saddr, daddr, sport, dport, 0, 0) + 1061da177e4SLinus Torvalds sseq + (count << COOKIEBITS) + 1071da177e4SLinus Torvalds ((cookie_hash(saddr, daddr, sport, dport, count, 1) + data) 1081da177e4SLinus Torvalds & COOKIEMASK)); 1091da177e4SLinus Torvalds } 1101da177e4SLinus Torvalds 1111da177e4SLinus Torvalds /* 1121da177e4SLinus Torvalds * This retrieves the small "data" value from the syncookie. 1131da177e4SLinus Torvalds * If the syncookie is bad, the data returned will be out of 1141da177e4SLinus Torvalds * range. This must be checked by the caller. 1151da177e4SLinus Torvalds * 116*8c27bd75SFlorian Westphal * The count value used to generate the cookie must be less than 117*8c27bd75SFlorian Westphal * MAX_SYNCOOKIE_AGE minutes in the past. 118*8c27bd75SFlorian Westphal * The return value (__u32)-1 if this test fails. 1191da177e4SLinus Torvalds */ 120714e85beSAl Viro static __u32 check_tcp_syn_cookie(__u32 cookie, __be32 saddr, __be32 daddr, 121*8c27bd75SFlorian Westphal __be16 sport, __be16 dport, __u32 sseq) 1221da177e4SLinus Torvalds { 123*8c27bd75SFlorian Westphal u32 diff, count = tcp_cookie_time(); 1241da177e4SLinus Torvalds 1251da177e4SLinus Torvalds /* Strip away the layers from the cookie */ 1261da177e4SLinus Torvalds cookie -= cookie_hash(saddr, daddr, sport, dport, 0, 0) + sseq; 1271da177e4SLinus Torvalds 1281da177e4SLinus Torvalds /* Cookie is now reduced to (count * 2^24) ^ (hash % 2^24) */ 1291da177e4SLinus Torvalds diff = (count - (cookie >> COOKIEBITS)) & ((__u32) - 1 >> COOKIEBITS); 130*8c27bd75SFlorian Westphal if (diff >= MAX_SYNCOOKIE_AGE) 1311da177e4SLinus Torvalds return (__u32)-1; 1321da177e4SLinus Torvalds 1331da177e4SLinus Torvalds return (cookie - 1341da177e4SLinus Torvalds cookie_hash(saddr, daddr, sport, dport, count - diff, 1)) 1351da177e4SLinus Torvalds & COOKIEMASK; /* Leaving the data behind */ 1361da177e4SLinus Torvalds } 1371da177e4SLinus Torvalds 1381da177e4SLinus Torvalds /* 1395918e2fbSFlorian Westphal * MSS Values are taken from the 2009 paper 1405918e2fbSFlorian Westphal * 'Measuring TCP Maximum Segment Size' by S. Alcock and R. Nelson: 1415918e2fbSFlorian Westphal * - values 1440 to 1460 accounted for 80% of observed mss values 1425918e2fbSFlorian Westphal * - values outside the 536-1460 range are rare (<0.2%). 1435918e2fbSFlorian Westphal * 1445918e2fbSFlorian Westphal * Table must be sorted. 1451da177e4SLinus Torvalds */ 1461da177e4SLinus Torvalds static __u16 const msstab[] = { 1475918e2fbSFlorian Westphal 64, 1485918e2fbSFlorian Westphal 512, 1495918e2fbSFlorian Westphal 536, 1505918e2fbSFlorian Westphal 1024, 1515918e2fbSFlorian Westphal 1440, 1525918e2fbSFlorian Westphal 1460, 1535918e2fbSFlorian Westphal 4312, 1545918e2fbSFlorian Westphal 8960, 1551da177e4SLinus Torvalds }; 1561da177e4SLinus Torvalds 1571da177e4SLinus Torvalds /* 1581da177e4SLinus Torvalds * Generate a syncookie. mssp points to the mss, which is returned 1591da177e4SLinus Torvalds * rounded down to the value encoded in the cookie. 1601da177e4SLinus Torvalds */ 1610198230bSPatrick McHardy u32 __cookie_v4_init_sequence(const struct iphdr *iph, const struct tcphdr *th, 1620198230bSPatrick McHardy u16 *mssp) 1631da177e4SLinus Torvalds { 1641da177e4SLinus Torvalds int mssind; 1651da177e4SLinus Torvalds const __u16 mss = *mssp; 1661da177e4SLinus Torvalds 1675918e2fbSFlorian Westphal for (mssind = ARRAY_SIZE(msstab) - 1; mssind ; mssind--) 1685918e2fbSFlorian Westphal if (mss >= msstab[mssind]) 1695918e2fbSFlorian Westphal break; 1705918e2fbSFlorian Westphal *mssp = msstab[mssind]; 1711da177e4SLinus Torvalds 172aa8223c7SArnaldo Carvalho de Melo return secure_tcp_syn_cookie(iph->saddr, iph->daddr, 173aa8223c7SArnaldo Carvalho de Melo th->source, th->dest, ntohl(th->seq), 174*8c27bd75SFlorian Westphal mssind); 1751da177e4SLinus Torvalds } 1760198230bSPatrick McHardy EXPORT_SYMBOL_GPL(__cookie_v4_init_sequence); 1770198230bSPatrick McHardy 1780198230bSPatrick McHardy __u32 cookie_v4_init_sequence(struct sock *sk, struct sk_buff *skb, __u16 *mssp) 1790198230bSPatrick McHardy { 1800198230bSPatrick McHardy const struct iphdr *iph = ip_hdr(skb); 1810198230bSPatrick McHardy const struct tcphdr *th = tcp_hdr(skb); 1820198230bSPatrick McHardy 1830198230bSPatrick McHardy tcp_synq_overflow(sk); 1840198230bSPatrick McHardy NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_SYNCOOKIESSENT); 1850198230bSPatrick McHardy 1860198230bSPatrick McHardy return __cookie_v4_init_sequence(iph, th, mssp); 1870198230bSPatrick McHardy } 1881da177e4SLinus Torvalds 1891da177e4SLinus Torvalds /* 1901da177e4SLinus Torvalds * Check if a ack sequence number is a valid syncookie. 1911da177e4SLinus Torvalds * Return the decoded mss if it is, or 0 if not. 1921da177e4SLinus Torvalds */ 1930198230bSPatrick McHardy int __cookie_v4_check(const struct iphdr *iph, const struct tcphdr *th, 1940198230bSPatrick McHardy u32 cookie) 1951da177e4SLinus Torvalds { 196aa8223c7SArnaldo Carvalho de Melo __u32 seq = ntohl(th->seq) - 1; 197aa8223c7SArnaldo Carvalho de Melo __u32 mssind = check_tcp_syn_cookie(cookie, iph->saddr, iph->daddr, 198*8c27bd75SFlorian Westphal th->source, th->dest, seq); 1991da177e4SLinus Torvalds 2005918e2fbSFlorian Westphal return mssind < ARRAY_SIZE(msstab) ? msstab[mssind] : 0; 2011da177e4SLinus Torvalds } 2020198230bSPatrick McHardy EXPORT_SYMBOL_GPL(__cookie_v4_check); 2031da177e4SLinus Torvalds 2041da177e4SLinus Torvalds static inline struct sock *get_cookie_sock(struct sock *sk, struct sk_buff *skb, 20560236fddSArnaldo Carvalho de Melo struct request_sock *req, 2061da177e4SLinus Torvalds struct dst_entry *dst) 2071da177e4SLinus Torvalds { 2088292a17aSArnaldo Carvalho de Melo struct inet_connection_sock *icsk = inet_csk(sk); 2091da177e4SLinus Torvalds struct sock *child; 2101da177e4SLinus Torvalds 2118292a17aSArnaldo Carvalho de Melo child = icsk->icsk_af_ops->syn_recv_sock(sk, skb, req, dst); 2121da177e4SLinus Torvalds if (child) 213463c84b9SArnaldo Carvalho de Melo inet_csk_reqsk_queue_add(sk, req, child); 2141da177e4SLinus Torvalds else 21560236fddSArnaldo Carvalho de Melo reqsk_free(req); 2161da177e4SLinus Torvalds 2171da177e4SLinus Torvalds return child; 2181da177e4SLinus Torvalds } 2191da177e4SLinus Torvalds 2204dfc2817SFlorian Westphal 2214dfc2817SFlorian Westphal /* 2224dfc2817SFlorian Westphal * when syncookies are in effect and tcp timestamps are enabled we stored 2234dfc2817SFlorian Westphal * additional tcp options in the timestamp. 2244dfc2817SFlorian Westphal * This extracts these options from the timestamp echo. 2254dfc2817SFlorian Westphal * 226734f614bSFlorian Westphal * The lowest 4 bits store snd_wscale. 227172d69e6SFlorian Westphal * next 2 bits indicate SACK and ECN support. 2288c763681SFlorian Westphal * 2298c763681SFlorian Westphal * return false if we decode an option that should not be. 2304dfc2817SFlorian Westphal */ 2315d134f1cSHannes Frederic Sowa bool cookie_check_timestamp(struct tcp_options_received *tcp_opt, 2325d134f1cSHannes Frederic Sowa struct net *net, bool *ecn_ok) 2334dfc2817SFlorian Westphal { 234734f614bSFlorian Westphal /* echoed timestamp, lowest bits contain options */ 2354dfc2817SFlorian Westphal u32 options = tcp_opt->rcv_tsecr & TSMASK; 2364dfc2817SFlorian Westphal 2378c763681SFlorian Westphal if (!tcp_opt->saw_tstamp) { 2388c763681SFlorian Westphal tcp_clear_options(tcp_opt); 2398c763681SFlorian Westphal return true; 2408c763681SFlorian Westphal } 2418c763681SFlorian Westphal 2428c763681SFlorian Westphal if (!sysctl_tcp_timestamps) 2438c763681SFlorian Westphal return false; 2448c763681SFlorian Westphal 245ab56222aSVijay Subramanian tcp_opt->sack_ok = (options & (1 << 4)) ? TCP_SACK_SEEN : 0; 246172d69e6SFlorian Westphal *ecn_ok = (options >> 5) & 1; 2475d134f1cSHannes Frederic Sowa if (*ecn_ok && !net->ipv4.sysctl_tcp_ecn) 248172d69e6SFlorian Westphal return false; 2494dfc2817SFlorian Westphal 2508c763681SFlorian Westphal if (tcp_opt->sack_ok && !sysctl_tcp_sack) 2518c763681SFlorian Westphal return false; 2524dfc2817SFlorian Westphal 253734f614bSFlorian Westphal if ((options & 0xf) == 0xf) 254734f614bSFlorian Westphal return true; /* no window scaling */ 255734f614bSFlorian Westphal 2564dfc2817SFlorian Westphal tcp_opt->wscale_ok = 1; 257734f614bSFlorian Westphal tcp_opt->snd_wscale = options & 0xf; 2588c763681SFlorian Westphal return sysctl_tcp_window_scaling != 0; 2598c763681SFlorian Westphal } 2604dfc2817SFlorian Westphal EXPORT_SYMBOL(cookie_check_timestamp); 2614dfc2817SFlorian Westphal 2621da177e4SLinus Torvalds struct sock *cookie_v4_check(struct sock *sk, struct sk_buff *skb, 2631da177e4SLinus Torvalds struct ip_options *opt) 2641da177e4SLinus Torvalds { 2654957faadSWilliam Allen Simpson struct tcp_options_received tcp_opt; 2662e6599cbSArnaldo Carvalho de Melo struct inet_request_sock *ireq; 2672e6599cbSArnaldo Carvalho de Melo struct tcp_request_sock *treq; 2681da177e4SLinus Torvalds struct tcp_sock *tp = tcp_sk(sk); 269aa8223c7SArnaldo Carvalho de Melo const struct tcphdr *th = tcp_hdr(skb); 270aa8223c7SArnaldo Carvalho de Melo __u32 cookie = ntohl(th->ack_seq) - 1; 2711da177e4SLinus Torvalds struct sock *ret = sk; 27260236fddSArnaldo Carvalho de Melo struct request_sock *req; 2731da177e4SLinus Torvalds int mss; 2741da177e4SLinus Torvalds struct rtable *rt; 2751da177e4SLinus Torvalds __u8 rcv_wscale; 276f0e3d068SMike Waychison bool ecn_ok = false; 277dfd25fffSEric Dumazet struct flowi4 fl4; 2781da177e4SLinus Torvalds 279af9b4738SFlorian Westphal if (!sysctl_tcp_syncookies || !th->ack || th->rst) 2801da177e4SLinus Torvalds goto out; 2811da177e4SLinus Torvalds 282a0f82f64SFlorian Westphal if (tcp_synq_no_recent_overflow(sk) || 2830198230bSPatrick McHardy (mss = __cookie_v4_check(ip_hdr(skb), th, cookie)) == 0) { 284de0744afSPavel Emelyanov NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_SYNCOOKIESFAILED); 2851da177e4SLinus Torvalds goto out; 2861da177e4SLinus Torvalds } 2871da177e4SLinus Torvalds 288de0744afSPavel Emelyanov NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_SYNCOOKIESRECV); 2891da177e4SLinus Torvalds 290bb5b7c11SDavid S. Miller /* check for timestamp cookie support */ 291bb5b7c11SDavid S. Miller memset(&tcp_opt, 0, sizeof(tcp_opt)); 2921a2c6181SChristoph Paasch tcp_parse_options(skb, &tcp_opt, 0, NULL); 293bb5b7c11SDavid S. Miller 2945d134f1cSHannes Frederic Sowa if (!cookie_check_timestamp(&tcp_opt, sock_net(sk), &ecn_ok)) 2958c763681SFlorian Westphal goto out; 296bb5b7c11SDavid S. Miller 2971da177e4SLinus Torvalds ret = NULL; 298ce4a7d0dSArnaldo Carvalho de Melo req = inet_reqsk_alloc(&tcp_request_sock_ops); /* for safety */ 2991da177e4SLinus Torvalds if (!req) 3001da177e4SLinus Torvalds goto out; 3011da177e4SLinus Torvalds 3022e6599cbSArnaldo Carvalho de Melo ireq = inet_rsk(req); 3032e6599cbSArnaldo Carvalho de Melo treq = tcp_rsk(req); 304aa8223c7SArnaldo Carvalho de Melo treq->rcv_isn = ntohl(th->seq) - 1; 3052e6599cbSArnaldo Carvalho de Melo treq->snt_isn = cookie; 3061da177e4SLinus Torvalds req->mss = mss; 307a3116ac5SKOVACS Krisztian ireq->loc_port = th->dest; 308aa8223c7SArnaldo Carvalho de Melo ireq->rmt_port = th->source; 309eddc9ec5SArnaldo Carvalho de Melo ireq->loc_addr = ip_hdr(skb)->daddr; 310eddc9ec5SArnaldo Carvalho de Melo ireq->rmt_addr = ip_hdr(skb)->saddr; 311172d69e6SFlorian Westphal ireq->ecn_ok = ecn_ok; 312bb5b7c11SDavid S. Miller ireq->snd_wscale = tcp_opt.snd_wscale; 313bb5b7c11SDavid S. Miller ireq->sack_ok = tcp_opt.sack_ok; 314bb5b7c11SDavid S. Miller ireq->wscale_ok = tcp_opt.wscale_ok; 315bb5b7c11SDavid S. Miller ireq->tstamp_ok = tcp_opt.saw_tstamp; 316bb5b7c11SDavid S. Miller req->ts_recent = tcp_opt.saw_tstamp ? tcp_opt.rcv_tsval : 0; 3179ad7c049SJerry Chu treq->snt_synack = tcp_opt.saw_tstamp ? tcp_opt.rcv_tsecr : 0; 3188336886fSJerry Chu treq->listener = NULL; 3191da177e4SLinus Torvalds 3201da177e4SLinus Torvalds /* We throwed the options of the initial SYN away, so we hope 3211da177e4SLinus Torvalds * the ACK carries the same options again (see RFC1122 4.2.3.8) 3221da177e4SLinus Torvalds */ 3231da177e4SLinus Torvalds if (opt && opt->optlen) { 324f6d8bd05SEric Dumazet int opt_size = sizeof(struct ip_options_rcu) + opt->optlen; 3251da177e4SLinus Torvalds 3262e6599cbSArnaldo Carvalho de Melo ireq->opt = kmalloc(opt_size, GFP_ATOMIC); 327f6d8bd05SEric Dumazet if (ireq->opt != NULL && ip_options_echo(&ireq->opt->opt, skb)) { 3282e6599cbSArnaldo Carvalho de Melo kfree(ireq->opt); 3292e6599cbSArnaldo Carvalho de Melo ireq->opt = NULL; 3301da177e4SLinus Torvalds } 3311da177e4SLinus Torvalds } 3321da177e4SLinus Torvalds 333284904aaSPaul Moore if (security_inet_conn_request(sk, skb, req)) { 334284904aaSPaul Moore reqsk_free(req); 335284904aaSPaul Moore goto out; 336284904aaSPaul Moore } 337284904aaSPaul Moore 3381da177e4SLinus Torvalds req->expires = 0UL; 339e6c022a4SEric Dumazet req->num_retrans = 0; 3401da177e4SLinus Torvalds 3411da177e4SLinus Torvalds /* 3421da177e4SLinus Torvalds * We need to lookup the route here to get at the correct 3431da177e4SLinus Torvalds * window size. We should better make sure that the window size 3441da177e4SLinus Torvalds * hasn't changed since we received the original syn, but I see 3451da177e4SLinus Torvalds * no easy way to do this. 3461da177e4SLinus Torvalds */ 347d66954a0SDmitry Popov flowi4_init_output(&fl4, sk->sk_bound_dev_if, sk->sk_mark, 348d66954a0SDmitry Popov RT_CONN_FLAGS(sk), RT_SCOPE_UNIVERSE, IPPROTO_TCP, 3491bba6ffeSDavid S. Miller inet_sk_flowi_flags(sk), 3501bba6ffeSDavid S. Miller (opt && opt->srr) ? opt->faddr : ireq->rmt_addr, 3511bba6ffeSDavid S. Miller ireq->loc_addr, th->source, th->dest); 3529d6ec938SDavid S. Miller security_req_classify_flow(req, flowi4_to_flowi(&fl4)); 3539d6ec938SDavid S. Miller rt = ip_route_output_key(sock_net(sk), &fl4); 354b23dd4feSDavid S. Miller if (IS_ERR(rt)) { 35560236fddSArnaldo Carvalho de Melo reqsk_free(req); 3561da177e4SLinus Torvalds goto out; 3571da177e4SLinus Torvalds } 3581da177e4SLinus Torvalds 3591da177e4SLinus Torvalds /* Try to redo what tcp_v4_send_synack did. */ 360d8d1f30bSChangli Gao req->window_clamp = tp->window_clamp ? :dst_metric(&rt->dst, RTAX_WINDOW); 3614dfc2817SFlorian Westphal 3621da177e4SLinus Torvalds tcp_select_initial_window(tcp_full_space(sk), req->mss, 3631da177e4SLinus Torvalds &req->rcv_wnd, &req->window_clamp, 36431d12926Slaurent chavey ireq->wscale_ok, &rcv_wscale, 365d8d1f30bSChangli Gao dst_metric(&rt->dst, RTAX_INITRWND)); 3664dfc2817SFlorian Westphal 3672e6599cbSArnaldo Carvalho de Melo ireq->rcv_wscale = rcv_wscale; 3681da177e4SLinus Torvalds 369d8d1f30bSChangli Gao ret = get_cookie_sock(sk, skb, req, &rt->dst); 370dfd25fffSEric Dumazet /* ip_queue_xmit() depends on our flow being setup 371dfd25fffSEric Dumazet * Normal sockets get it right from inet_csk_route_child_sock() 372dfd25fffSEric Dumazet */ 373dfd25fffSEric Dumazet if (ret) 374dfd25fffSEric Dumazet inet_sk(ret)->cork.fl.u.ip4 = fl4; 3751da177e4SLinus Torvalds out: return ret; 3761da177e4SLinus Torvalds } 377