syncookies.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391
  1. /*
  2. * Syncookies implementation for the Linux kernel
  3. *
  4. * Copyright (C) 1997 Andi Kleen
  5. * Based on ideas by D.J.Bernstein and Eric Schenk.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * as published by the Free Software Foundation; either version
  10. * 2 of the License, or (at your option) any later version.
  11. */
  12. #include <linux/tcp.h>
  13. #include <linux/slab.h>
  14. #include <linux/random.h>
  15. #include <linux/siphash.h>
  16. #include <linux/kernel.h>
  17. #include <linux/export.h>
  18. #include <net/tcp.h>
  19. #include <net/route.h>
  20. static siphash_key_t syncookie_secret[2] __read_mostly;
  21. #define COOKIEBITS 24 /* Upper bits store count */
  22. #define COOKIEMASK (((__u32)1 << COOKIEBITS) - 1)
  23. /* TCP Timestamp: 6 lowest bits of timestamp sent in the cookie SYN-ACK
  24. * stores TCP options:
  25. *
  26. * MSB LSB
  27. * | 31 ... 6 | 5 | 4 | 3 2 1 0 |
  28. * | Timestamp | ECN | SACK | WScale |
  29. *
  30. * When we receive a valid cookie-ACK, we look at the echoed tsval (if
  31. * any) to figure out which TCP options we should use for the rebuilt
  32. * connection.
  33. *
  34. * A WScale setting of '0xf' (which is an invalid scaling value)
  35. * means that original syn did not include the TCP window scaling option.
  36. */
  37. #define TS_OPT_WSCALE_MASK 0xf
  38. #define TS_OPT_SACK BIT(4)
  39. #define TS_OPT_ECN BIT(5)
  40. /* There is no TS_OPT_TIMESTAMP:
  41. * if ACK contains timestamp option, we already know it was
  42. * requested/supported by the syn/synack exchange.
  43. */
  44. #define TSBITS 6
  45. #define TSMASK (((__u32)1 << TSBITS) - 1)
  46. static u32 cookie_hash(__be32 saddr, __be32 daddr, __be16 sport, __be16 dport,
  47. u32 count, int c)
  48. {
  49. net_get_random_once(syncookie_secret, sizeof(syncookie_secret));
  50. return siphash_4u32((__force u32)saddr, (__force u32)daddr,
  51. (__force u32)sport << 16 | (__force u32)dport,
  52. count, &syncookie_secret[c]);
  53. }
  54. /*
  55. * when syncookies are in effect and tcp timestamps are enabled we encode
  56. * tcp options in the lower bits of the timestamp value that will be
  57. * sent in the syn-ack.
  58. * Since subsequent timestamps use the normal tcp_time_stamp value, we
  59. * must make sure that the resulting initial timestamp is <= tcp_time_stamp.
  60. */
  61. __u32 cookie_init_timestamp(struct request_sock *req)
  62. {
  63. struct inet_request_sock *ireq;
  64. u32 ts, ts_now = tcp_time_stamp;
  65. u32 options = 0;
  66. ireq = inet_rsk(req);
  67. options = ireq->wscale_ok ? ireq->snd_wscale : TS_OPT_WSCALE_MASK;
  68. if (ireq->sack_ok)
  69. options |= TS_OPT_SACK;
  70. if (ireq->ecn_ok)
  71. options |= TS_OPT_ECN;
  72. ts = ts_now & ~TSMASK;
  73. ts |= options;
  74. if (ts > ts_now) {
  75. ts >>= TSBITS;
  76. ts--;
  77. ts <<= TSBITS;
  78. ts |= options;
  79. }
  80. return ts;
  81. }
  82. static __u32 secure_tcp_syn_cookie(__be32 saddr, __be32 daddr, __be16 sport,
  83. __be16 dport, __u32 sseq, __u32 data)
  84. {
  85. /*
  86. * Compute the secure sequence number.
  87. * The output should be:
  88. * HASH(sec1,saddr,sport,daddr,dport,sec1) + sseq + (count * 2^24)
  89. * + (HASH(sec2,saddr,sport,daddr,dport,count,sec2) % 2^24).
  90. * Where sseq is their sequence number and count increases every
  91. * minute by 1.
  92. * As an extra hack, we add a small "data" value that encodes the
  93. * MSS into the second hash value.
  94. */
  95. u32 count = tcp_cookie_time();
  96. return (cookie_hash(saddr, daddr, sport, dport, 0, 0) +
  97. sseq + (count << COOKIEBITS) +
  98. ((cookie_hash(saddr, daddr, sport, dport, count, 1) + data)
  99. & COOKIEMASK));
  100. }
  101. /*
  102. * This retrieves the small "data" value from the syncookie.
  103. * If the syncookie is bad, the data returned will be out of
  104. * range. This must be checked by the caller.
  105. *
  106. * The count value used to generate the cookie must be less than
  107. * MAX_SYNCOOKIE_AGE minutes in the past.
  108. * The return value (__u32)-1 if this test fails.
  109. */
  110. static __u32 check_tcp_syn_cookie(__u32 cookie, __be32 saddr, __be32 daddr,
  111. __be16 sport, __be16 dport, __u32 sseq)
  112. {
  113. u32 diff, count = tcp_cookie_time();
  114. /* Strip away the layers from the cookie */
  115. cookie -= cookie_hash(saddr, daddr, sport, dport, 0, 0) + sseq;
  116. /* Cookie is now reduced to (count * 2^24) ^ (hash % 2^24) */
  117. diff = (count - (cookie >> COOKIEBITS)) & ((__u32) -1 >> COOKIEBITS);
  118. if (diff >= MAX_SYNCOOKIE_AGE)
  119. return (__u32)-1;
  120. return (cookie -
  121. cookie_hash(saddr, daddr, sport, dport, count - diff, 1))
  122. & COOKIEMASK; /* Leaving the data behind */
  123. }
  124. /*
  125. * MSS Values are chosen based on the 2011 paper
  126. * 'An Analysis of TCP Maximum Segement Sizes' by S. Alcock and R. Nelson.
  127. * Values ..
  128. * .. lower than 536 are rare (< 0.2%)
  129. * .. between 537 and 1299 account for less than < 1.5% of observed values
  130. * .. in the 1300-1349 range account for about 15 to 20% of observed mss values
  131. * .. exceeding 1460 are very rare (< 0.04%)
  132. *
  133. * 1460 is the single most frequently announced mss value (30 to 46% depending
  134. * on monitor location). Table must be sorted.
  135. */
  136. static __u16 const msstab[] = {
  137. 536,
  138. 1300,
  139. 1440, /* 1440, 1452: PPPoE */
  140. 1460,
  141. };
  142. /*
  143. * Generate a syncookie. mssp points to the mss, which is returned
  144. * rounded down to the value encoded in the cookie.
  145. */
  146. u32 __cookie_v4_init_sequence(const struct iphdr *iph, const struct tcphdr *th,
  147. u16 *mssp)
  148. {
  149. int mssind;
  150. const __u16 mss = *mssp;
  151. for (mssind = ARRAY_SIZE(msstab) - 1; mssind ; mssind--)
  152. if (mss >= msstab[mssind])
  153. break;
  154. *mssp = msstab[mssind];
  155. return secure_tcp_syn_cookie(iph->saddr, iph->daddr,
  156. th->source, th->dest, ntohl(th->seq),
  157. mssind);
  158. }
  159. EXPORT_SYMBOL_GPL(__cookie_v4_init_sequence);
  160. __u32 cookie_v4_init_sequence(const struct sk_buff *skb, __u16 *mssp)
  161. {
  162. const struct iphdr *iph = ip_hdr(skb);
  163. const struct tcphdr *th = tcp_hdr(skb);
  164. return __cookie_v4_init_sequence(iph, th, mssp);
  165. }
  166. /*
  167. * Check if a ack sequence number is a valid syncookie.
  168. * Return the decoded mss if it is, or 0 if not.
  169. */
  170. int __cookie_v4_check(const struct iphdr *iph, const struct tcphdr *th,
  171. u32 cookie)
  172. {
  173. __u32 seq = ntohl(th->seq) - 1;
  174. __u32 mssind = check_tcp_syn_cookie(cookie, iph->saddr, iph->daddr,
  175. th->source, th->dest, seq);
  176. return mssind < ARRAY_SIZE(msstab) ? msstab[mssind] : 0;
  177. }
  178. EXPORT_SYMBOL_GPL(__cookie_v4_check);
  179. struct sock *tcp_get_cookie_sock(struct sock *sk, struct sk_buff *skb,
  180. struct request_sock *req,
  181. struct dst_entry *dst)
  182. {
  183. struct inet_connection_sock *icsk = inet_csk(sk);
  184. struct sock *child;
  185. bool own_req;
  186. child = icsk->icsk_af_ops->syn_recv_sock(sk, skb, req, dst,
  187. NULL, &own_req);
  188. if (child) {
  189. atomic_set(&req->rsk_refcnt, 1);
  190. sock_rps_save_rxhash(child, skb);
  191. inet_csk_reqsk_queue_add(sk, req, child);
  192. } else {
  193. reqsk_free(req);
  194. }
  195. return child;
  196. }
  197. EXPORT_SYMBOL(tcp_get_cookie_sock);
  198. /*
  199. * when syncookies are in effect and tcp timestamps are enabled we stored
  200. * additional tcp options in the timestamp.
  201. * This extracts these options from the timestamp echo.
  202. *
  203. * return false if we decode a tcp option that is disabled
  204. * on the host.
  205. */
  206. bool cookie_timestamp_decode(struct tcp_options_received *tcp_opt)
  207. {
  208. /* echoed timestamp, lowest bits contain options */
  209. u32 options = tcp_opt->rcv_tsecr;
  210. if (!tcp_opt->saw_tstamp) {
  211. tcp_clear_options(tcp_opt);
  212. return true;
  213. }
  214. if (!sysctl_tcp_timestamps)
  215. return false;
  216. tcp_opt->sack_ok = (options & TS_OPT_SACK) ? TCP_SACK_SEEN : 0;
  217. if (tcp_opt->sack_ok && !sysctl_tcp_sack)
  218. return false;
  219. if ((options & TS_OPT_WSCALE_MASK) == TS_OPT_WSCALE_MASK)
  220. return true; /* no window scaling */
  221. tcp_opt->wscale_ok = 1;
  222. tcp_opt->snd_wscale = options & TS_OPT_WSCALE_MASK;
  223. return sysctl_tcp_window_scaling != 0;
  224. }
  225. EXPORT_SYMBOL(cookie_timestamp_decode);
  226. bool cookie_ecn_ok(const struct tcp_options_received *tcp_opt,
  227. const struct net *net, const struct dst_entry *dst)
  228. {
  229. bool ecn_ok = tcp_opt->rcv_tsecr & TS_OPT_ECN;
  230. if (!ecn_ok)
  231. return false;
  232. if (net->ipv4.sysctl_tcp_ecn)
  233. return true;
  234. return dst_feature(dst, RTAX_FEATURE_ECN);
  235. }
  236. EXPORT_SYMBOL(cookie_ecn_ok);
  237. /* On input, sk is a listener.
  238. * Output is listener if incoming packet would not create a child
  239. * NULL if memory could not be allocated.
  240. */
  241. struct sock *cookie_v4_check(struct sock *sk, struct sk_buff *skb)
  242. {
  243. struct ip_options *opt = &TCP_SKB_CB(skb)->header.h4.opt;
  244. struct tcp_options_received tcp_opt;
  245. struct inet_request_sock *ireq;
  246. struct tcp_request_sock *treq;
  247. struct tcp_sock *tp = tcp_sk(sk);
  248. const struct tcphdr *th = tcp_hdr(skb);
  249. __u32 cookie = ntohl(th->ack_seq) - 1;
  250. struct sock *ret = sk;
  251. struct request_sock *req;
  252. int mss;
  253. struct rtable *rt;
  254. __u8 rcv_wscale;
  255. struct flowi4 fl4;
  256. if (!sock_net(sk)->ipv4.sysctl_tcp_syncookies || !th->ack || th->rst)
  257. goto out;
  258. if (tcp_synq_no_recent_overflow(sk))
  259. goto out;
  260. mss = __cookie_v4_check(ip_hdr(skb), th, cookie);
  261. if (mss == 0) {
  262. __NET_INC_STATS(sock_net(sk), LINUX_MIB_SYNCOOKIESFAILED);
  263. goto out;
  264. }
  265. __NET_INC_STATS(sock_net(sk), LINUX_MIB_SYNCOOKIESRECV);
  266. /* check for timestamp cookie support */
  267. memset(&tcp_opt, 0, sizeof(tcp_opt));
  268. tcp_parse_options(skb, &tcp_opt, 0, NULL);
  269. if (!cookie_timestamp_decode(&tcp_opt))
  270. goto out;
  271. ret = NULL;
  272. req = inet_reqsk_alloc(&tcp_request_sock_ops, sk, false); /* for safety */
  273. if (!req)
  274. goto out;
  275. ireq = inet_rsk(req);
  276. treq = tcp_rsk(req);
  277. treq->rcv_isn = ntohl(th->seq) - 1;
  278. treq->snt_isn = cookie;
  279. treq->ts_off = 0;
  280. req->mss = mss;
  281. ireq->ir_num = ntohs(th->dest);
  282. ireq->ir_rmt_port = th->source;
  283. sk_rcv_saddr_set(req_to_sk(req), ip_hdr(skb)->daddr);
  284. sk_daddr_set(req_to_sk(req), ip_hdr(skb)->saddr);
  285. ireq->ir_mark = inet_request_mark(sk, skb);
  286. ireq->snd_wscale = tcp_opt.snd_wscale;
  287. ireq->sack_ok = tcp_opt.sack_ok;
  288. ireq->wscale_ok = tcp_opt.wscale_ok;
  289. ireq->tstamp_ok = tcp_opt.saw_tstamp;
  290. req->ts_recent = tcp_opt.saw_tstamp ? tcp_opt.rcv_tsval : 0;
  291. treq->snt_synack.v64 = 0;
  292. treq->tfo_listener = false;
  293. ireq->ir_iif = inet_request_bound_dev_if(sk, skb);
  294. /* We throwed the options of the initial SYN away, so we hope
  295. * the ACK carries the same options again (see RFC1122 4.2.3.8)
  296. */
  297. ireq->opt = tcp_v4_save_options(skb);
  298. if (security_inet_conn_request(sk, skb, req)) {
  299. reqsk_free(req);
  300. goto out;
  301. }
  302. req->num_retrans = 0;
  303. /*
  304. * We need to lookup the route here to get at the correct
  305. * window size. We should better make sure that the window size
  306. * hasn't changed since we received the original syn, but I see
  307. * no easy way to do this.
  308. */
  309. flowi4_init_output(&fl4, ireq->ir_iif, ireq->ir_mark,
  310. RT_CONN_FLAGS(sk), RT_SCOPE_UNIVERSE, IPPROTO_TCP,
  311. inet_sk_flowi_flags(sk),
  312. opt->srr ? opt->faddr : ireq->ir_rmt_addr,
  313. ireq->ir_loc_addr, th->source, th->dest, sk->sk_uid);
  314. security_req_classify_flow(req, flowi4_to_flowi(&fl4));
  315. rt = ip_route_output_key(sock_net(sk), &fl4);
  316. if (IS_ERR(rt)) {
  317. reqsk_free(req);
  318. goto out;
  319. }
  320. /* Try to redo what tcp_v4_send_synack did. */
  321. req->rsk_window_clamp = tp->window_clamp ? :dst_metric(&rt->dst, RTAX_WINDOW);
  322. tcp_select_initial_window(tcp_full_space(sk), req->mss,
  323. &req->rsk_rcv_wnd, &req->rsk_window_clamp,
  324. ireq->wscale_ok, &rcv_wscale,
  325. dst_metric(&rt->dst, RTAX_INITRWND));
  326. ireq->rcv_wscale = rcv_wscale;
  327. ireq->ecn_ok = cookie_ecn_ok(&tcp_opt, sock_net(sk), &rt->dst);
  328. ret = tcp_get_cookie_sock(sk, skb, req, &rt->dst);
  329. /* ip_queue_xmit() depends on our flow being setup
  330. * Normal sockets get it right from inet_csk_route_child_sock()
  331. */
  332. if (ret)
  333. inet_sk(ret)->cork.fl.u.ip4 = fl4;
  334. out: return ret;
  335. }