at24: Init dynamic bin_attribute structures
[linux-2.6/kvm.git] / net / ipv6 / syncookies.c
blob34d1f0690d7e4f6031172fd4640da207b07c25b3
1 /*
2 * IPv6 Syncookies implementation for the Linux kernel
4 * Authors:
5 * Glenn Griffin <ggriffin.kernel@gmail.com>
7 * Based on IPv4 implementation by Andi Kleen
8 * linux/net/ipv4/syncookies.c
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
17 #include <linux/tcp.h>
18 #include <linux/random.h>
19 #include <linux/cryptohash.h>
20 #include <linux/kernel.h>
21 #include <net/ipv6.h>
22 #include <net/tcp.h>
24 extern int sysctl_tcp_syncookies;
25 extern __u32 syncookie_secret[2][16-4+SHA_DIGEST_WORDS];
27 #define COOKIEBITS 24 /* Upper bits store count */
28 #define COOKIEMASK (((__u32)1 << COOKIEBITS) - 1)
31 * This table has to be sorted and terminated with (__u16)-1.
32 * XXX generate a better table.
33 * Unresolved Issues: HIPPI with a 64k MSS is not well supported.
35 * Taken directly from ipv4 implementation.
36 * Should this list be modified for ipv6 use or is it close enough?
37 * rfc 2460 8.3 suggests mss values 20 bytes less than ipv4 counterpart
39 static __u16 const msstab[] = {
40 64 - 1,
41 256 - 1,
42 512 - 1,
43 536 - 1,
44 1024 - 1,
45 1440 - 1,
46 1460 - 1,
47 4312 - 1,
48 (__u16)-1
50 /* The number doesn't include the -1 terminator */
51 #define NUM_MSS (ARRAY_SIZE(msstab) - 1)
54 * This (misnamed) value is the age of syncookie which is permitted.
55 * Its ideal value should be dependent on TCP_TIMEOUT_INIT and
56 * sysctl_tcp_retries1. It's a rather complicated formula (exponential
57 * backoff) to compute at runtime so it's currently hardcoded here.
59 #define COUNTER_TRIES 4
61 static inline struct sock *get_cookie_sock(struct sock *sk, struct sk_buff *skb,
62 struct request_sock *req,
63 struct dst_entry *dst)
65 struct inet_connection_sock *icsk = inet_csk(sk);
66 struct sock *child;
68 child = icsk->icsk_af_ops->syn_recv_sock(sk, skb, req, dst);
69 if (child)
70 inet_csk_reqsk_queue_add(sk, req, child);
71 else
72 reqsk_free(req);
74 return child;
77 static DEFINE_PER_CPU(__u32 [16 + 5 + SHA_WORKSPACE_WORDS],
78 ipv6_cookie_scratch);
80 static u32 cookie_hash(struct in6_addr *saddr, struct in6_addr *daddr,
81 __be16 sport, __be16 dport, u32 count, int c)
83 __u32 *tmp = __get_cpu_var(ipv6_cookie_scratch);
86 * we have 320 bits of information to hash, copy in the remaining
87 * 192 bits required for sha_transform, from the syncookie_secret
88 * and overwrite the digest with the secret
90 memcpy(tmp + 10, syncookie_secret[c], 44);
91 memcpy(tmp, saddr, 16);
92 memcpy(tmp + 4, daddr, 16);
93 tmp[8] = ((__force u32)sport << 16) + (__force u32)dport;
94 tmp[9] = count;
95 sha_transform(tmp + 16, (__u8 *)tmp, tmp + 16 + 5);
97 return tmp[17];
100 static __u32 secure_tcp_syn_cookie(struct in6_addr *saddr, struct in6_addr *daddr,
101 __be16 sport, __be16 dport, __u32 sseq,
102 __u32 count, __u32 data)
104 return (cookie_hash(saddr, daddr, sport, dport, 0, 0) +
105 sseq + (count << COOKIEBITS) +
106 ((cookie_hash(saddr, daddr, sport, dport, count, 1) + data)
107 & COOKIEMASK));
110 static __u32 check_tcp_syn_cookie(__u32 cookie, struct in6_addr *saddr,
111 struct in6_addr *daddr, __be16 sport,
112 __be16 dport, __u32 sseq, __u32 count,
113 __u32 maxdiff)
115 __u32 diff;
117 cookie -= cookie_hash(saddr, daddr, sport, dport, 0, 0) + sseq;
119 diff = (count - (cookie >> COOKIEBITS)) & ((__u32) -1 >> COOKIEBITS);
120 if (diff >= maxdiff)
121 return (__u32)-1;
123 return (cookie -
124 cookie_hash(saddr, daddr, sport, dport, count - diff, 1))
125 & COOKIEMASK;
128 __u32 cookie_v6_init_sequence(struct sock *sk, struct sk_buff *skb, __u16 *mssp)
130 struct ipv6hdr *iph = ipv6_hdr(skb);
131 const struct tcphdr *th = tcp_hdr(skb);
132 int mssind;
133 const __u16 mss = *mssp;
135 tcp_synq_overflow(sk);
137 for (mssind = 0; mss > msstab[mssind + 1]; mssind++)
139 *mssp = msstab[mssind] + 1;
141 NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_SYNCOOKIESSENT);
143 return secure_tcp_syn_cookie(&iph->saddr, &iph->daddr, th->source,
144 th->dest, ntohl(th->seq),
145 jiffies / (HZ * 60), mssind);
148 static inline int cookie_check(struct sk_buff *skb, __u32 cookie)
150 struct ipv6hdr *iph = ipv6_hdr(skb);
151 const struct tcphdr *th = tcp_hdr(skb);
152 __u32 seq = ntohl(th->seq) - 1;
153 __u32 mssind = check_tcp_syn_cookie(cookie, &iph->saddr, &iph->daddr,
154 th->source, th->dest, seq,
155 jiffies / (HZ * 60), COUNTER_TRIES);
157 return mssind < NUM_MSS ? msstab[mssind] + 1 : 0;
160 struct sock *cookie_v6_check(struct sock *sk, struct sk_buff *skb)
162 struct tcp_options_received tcp_opt;
163 u8 *hash_location;
164 struct inet_request_sock *ireq;
165 struct inet6_request_sock *ireq6;
166 struct tcp_request_sock *treq;
167 struct ipv6_pinfo *np = inet6_sk(sk);
168 struct tcp_sock *tp = tcp_sk(sk);
169 const struct tcphdr *th = tcp_hdr(skb);
170 __u32 cookie = ntohl(th->ack_seq) - 1;
171 struct sock *ret = sk;
172 struct request_sock *req;
173 int mss;
174 struct dst_entry *dst;
175 __u8 rcv_wscale;
177 if (!sysctl_tcp_syncookies || !th->ack)
178 goto out;
180 if (tcp_synq_no_recent_overflow(sk) ||
181 (mss = cookie_check(skb, cookie)) == 0) {
182 NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_SYNCOOKIESFAILED);
183 goto out;
186 NET_INC_STATS_BH(sock_net(sk), LINUX_MIB_SYNCOOKIESRECV);
188 /* check for timestamp cookie support */
189 memset(&tcp_opt, 0, sizeof(tcp_opt));
190 tcp_parse_options(skb, &tcp_opt, &hash_location, 0);
192 if (tcp_opt.saw_tstamp)
193 cookie_check_timestamp(&tcp_opt);
195 ret = NULL;
196 req = inet6_reqsk_alloc(&tcp6_request_sock_ops);
197 if (!req)
198 goto out;
200 ireq = inet_rsk(req);
201 ireq6 = inet6_rsk(req);
202 treq = tcp_rsk(req);
204 if (security_inet_conn_request(sk, skb, req))
205 goto out_free;
207 req->mss = mss;
208 ireq->rmt_port = th->source;
209 ireq->loc_port = th->dest;
210 ipv6_addr_copy(&ireq6->rmt_addr, &ipv6_hdr(skb)->saddr);
211 ipv6_addr_copy(&ireq6->loc_addr, &ipv6_hdr(skb)->daddr);
212 if (ipv6_opt_accepted(sk, skb) ||
213 np->rxopt.bits.rxinfo || np->rxopt.bits.rxoinfo ||
214 np->rxopt.bits.rxhlim || np->rxopt.bits.rxohlim) {
215 atomic_inc(&skb->users);
216 ireq6->pktopts = skb;
219 ireq6->iif = sk->sk_bound_dev_if;
220 /* So that link locals have meaning */
221 if (!sk->sk_bound_dev_if &&
222 ipv6_addr_type(&ireq6->rmt_addr) & IPV6_ADDR_LINKLOCAL)
223 ireq6->iif = inet6_iif(skb);
225 req->expires = 0UL;
226 req->retrans = 0;
227 ireq->ecn_ok = 0;
228 ireq->snd_wscale = tcp_opt.snd_wscale;
229 ireq->rcv_wscale = tcp_opt.rcv_wscale;
230 ireq->sack_ok = tcp_opt.sack_ok;
231 ireq->wscale_ok = tcp_opt.wscale_ok;
232 ireq->tstamp_ok = tcp_opt.saw_tstamp;
233 req->ts_recent = tcp_opt.saw_tstamp ? tcp_opt.rcv_tsval : 0;
234 treq->rcv_isn = ntohl(th->seq) - 1;
235 treq->snt_isn = cookie;
238 * We need to lookup the dst_entry to get the correct window size.
239 * This is taken from tcp_v6_syn_recv_sock. Somebody please enlighten
240 * me if there is a preferred way.
243 struct in6_addr *final_p = NULL, final;
244 struct flowi fl;
245 memset(&fl, 0, sizeof(fl));
246 fl.proto = IPPROTO_TCP;
247 ipv6_addr_copy(&fl.fl6_dst, &ireq6->rmt_addr);
248 if (np->opt && np->opt->srcrt) {
249 struct rt0_hdr *rt0 = (struct rt0_hdr *) np->opt->srcrt;
250 ipv6_addr_copy(&final, &fl.fl6_dst);
251 ipv6_addr_copy(&fl.fl6_dst, rt0->addr);
252 final_p = &final;
254 ipv6_addr_copy(&fl.fl6_src, &ireq6->loc_addr);
255 fl.oif = sk->sk_bound_dev_if;
256 fl.mark = sk->sk_mark;
257 fl.fl_ip_dport = inet_rsk(req)->rmt_port;
258 fl.fl_ip_sport = inet_sk(sk)->inet_sport;
259 security_req_classify_flow(req, &fl);
260 if (ip6_dst_lookup(sk, &dst, &fl))
261 goto out_free;
263 if (final_p)
264 ipv6_addr_copy(&fl.fl6_dst, final_p);
265 if ((xfrm_lookup(sock_net(sk), &dst, &fl, sk, 0)) < 0)
266 goto out_free;
269 req->window_clamp = tp->window_clamp ? :dst_metric(dst, RTAX_WINDOW);
270 tcp_select_initial_window(tcp_full_space(sk), req->mss,
271 &req->rcv_wnd, &req->window_clamp,
272 ireq->wscale_ok, &rcv_wscale,
273 dst_metric(dst, RTAX_INITRWND));
275 ireq->rcv_wscale = rcv_wscale;
277 ret = get_cookie_sock(sk, skb, req, dst);
278 out:
279 return ret;
280 out_free:
281 reqsk_free(req);
282 return NULL;