blob: ae68a900f605caa6af12d6e75c66e10c40a6490c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C)2002 USAGI/WIDE Project
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090013 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 * Authors
19 *
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090020 * Mitsuru KANDA @USAGI : IPv6 Support
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 * Kazunori MIYAZAWA @USAGI :
22 * Kunihiro Ishiguro <kunihiro@ipinfusion.com>
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090023 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * This file is derived from net/ipv4/ah.c.
25 */
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/module.h>
28#include <net/ip.h>
29#include <net/ah.h>
30#include <linux/crypto.h>
31#include <linux/pfkeyv2.h>
32#include <linux/string.h>
33#include <net/icmp.h>
34#include <net/ipv6.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020035#include <net/protocol.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <net/xfrm.h>
37#include <asm/scatterlist.h>
38
39static int zero_out_mutable_opts(struct ipv6_opt_hdr *opthdr)
40{
41 u8 *opt = (u8 *)opthdr;
42 int len = ipv6_optlen(opthdr);
43 int off = 0;
44 int optlen = 0;
45
46 off += 2;
47 len -= 2;
48
49 while (len > 0) {
50
51 switch (opt[off]) {
52
53 case IPV6_TLV_PAD0:
54 optlen = 1;
55 break;
56 default:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090057 if (len < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 goto bad;
59 optlen = opt[off+1]+2;
60 if (len < optlen)
61 goto bad;
62 if (opt[off] & 0x20)
63 memset(&opt[off+2], 0, opt[off+1]);
64 break;
65 }
66
67 off += optlen;
68 len -= optlen;
69 }
70 if (len == 0)
71 return 1;
72
73bad:
74 return 0;
75}
76
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -070077#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Masahide NAKAMURA27637df2006-08-23 19:29:47 -070078/**
79 * ipv6_rearrange_destopt - rearrange IPv6 destination options header
80 * @iph: IPv6 header
81 * @destopt: destionation options header
82 */
83static void ipv6_rearrange_destopt(struct ipv6hdr *iph, struct ipv6_opt_hdr *destopt)
84{
85 u8 *opt = (u8 *)destopt;
86 int len = ipv6_optlen(destopt);
87 int off = 0;
88 int optlen = 0;
89
90 off += 2;
91 len -= 2;
92
93 while (len > 0) {
94
95 switch (opt[off]) {
96
97 case IPV6_TLV_PAD0:
98 optlen = 1;
99 break;
100 default:
101 if (len < 2)
102 goto bad;
103 optlen = opt[off+1]+2;
104 if (len < optlen)
105 goto bad;
106
107 /* Rearrange the source address in @iph and the
108 * addresses in home address option for final source.
109 * See 11.3.2 of RFC 3775 for details.
110 */
111 if (opt[off] == IPV6_TLV_HAO) {
112 struct in6_addr final_addr;
113 struct ipv6_destopt_hao *hao;
114
115 hao = (struct ipv6_destopt_hao *)&opt[off];
116 if (hao->length != sizeof(hao->addr)) {
117 if (net_ratelimit())
118 printk(KERN_WARNING "destopt hao: invalid header length: %u\n", hao->length);
119 goto bad;
120 }
121 ipv6_addr_copy(&final_addr, &hao->addr);
122 ipv6_addr_copy(&hao->addr, &iph->saddr);
123 ipv6_addr_copy(&iph->saddr, &final_addr);
124 }
125 break;
126 }
127
128 off += optlen;
129 len -= optlen;
130 }
YOSHIFUJI Hideakie731c242006-08-24 23:18:12 +0900131 /* Note: ok if len == 0 */
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700132bad:
133 return;
134}
Masahide NAKAMURA136ebf02007-06-26 23:51:41 -0700135#else
136static void ipv6_rearrange_destopt(struct ipv6hdr *iph, struct ipv6_opt_hdr *destopt) {}
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700137#endif
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139/**
140 * ipv6_rearrange_rthdr - rearrange IPv6 routing header
141 * @iph: IPv6 header
142 * @rthdr: routing header
143 *
144 * Rearrange the destination address in @iph and the addresses in @rthdr
145 * so that they appear in the order they will at the final destination.
146 * See Appendix A2 of RFC 2402 for details.
147 */
148static void ipv6_rearrange_rthdr(struct ipv6hdr *iph, struct ipv6_rt_hdr *rthdr)
149{
150 int segments, segments_left;
151 struct in6_addr *addrs;
152 struct in6_addr final_addr;
153
154 segments_left = rthdr->segments_left;
155 if (segments_left == 0)
156 return;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900157 rthdr->segments_left = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 /* The value of rthdr->hdrlen has been verified either by the system
160 * call if it is locally generated, or by ipv6_rthdr_rcv() for incoming
161 * packets. So we can assume that it is even and that segments is
162 * greater than or equal to segments_left.
163 *
164 * For the same reason we can assume that this option is of type 0.
165 */
166 segments = rthdr->hdrlen >> 1;
167
168 addrs = ((struct rt0_hdr *)rthdr)->addr;
169 ipv6_addr_copy(&final_addr, addrs + segments - 1);
170
171 addrs += segments - segments_left;
172 memmove(addrs + 1, addrs, (segments_left - 1) * sizeof(*addrs));
173
174 ipv6_addr_copy(addrs, &iph->daddr);
175 ipv6_addr_copy(&iph->daddr, &final_addr);
176}
177
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700178static int ipv6_clear_mutable_options(struct ipv6hdr *iph, int len, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179{
180 union {
181 struct ipv6hdr *iph;
182 struct ipv6_opt_hdr *opth;
183 struct ipv6_rt_hdr *rth;
184 char *raw;
185 } exthdr = { .iph = iph };
186 char *end = exthdr.raw + len;
187 int nexthdr = iph->nexthdr;
188
189 exthdr.iph++;
190
191 while (exthdr.raw < end) {
192 switch (nexthdr) {
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700193 case NEXTHDR_DEST:
194 if (dir == XFRM_POLICY_OUT)
195 ipv6_rearrange_destopt(iph, exthdr.opth);
YOSHIFUJI Hideakie731c242006-08-24 23:18:12 +0900196 case NEXTHDR_HOP:
197 if (!zero_out_mutable_opts(exthdr.opth)) {
198 LIMIT_NETDEBUG(
199 KERN_WARNING "overrun %sopts\n",
200 nexthdr == NEXTHDR_HOP ?
201 "hop" : "dest");
202 return -EINVAL;
203 }
204 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 case NEXTHDR_ROUTING:
207 ipv6_rearrange_rthdr(iph, exthdr.rth);
208 break;
209
210 default :
211 return 0;
212 }
213
214 nexthdr = exthdr.opth->nexthdr;
215 exthdr.raw += ipv6_optlen(exthdr.opth);
216 }
217
218 return 0;
219}
220
221static int ah6_output(struct xfrm_state *x, struct sk_buff *skb)
222{
223 int err;
224 int extlen;
225 struct ipv6hdr *top_iph;
226 struct ip_auth_hdr *ah;
227 struct ah_data *ahp;
228 u8 nexthdr;
229 char tmp_base[8];
230 struct {
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700231#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700232 struct in6_addr saddr;
233#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 struct in6_addr daddr;
235 char hdrs[0];
236 } *tmp_ext;
237
238 top_iph = (struct ipv6hdr *)skb->data;
239 top_iph->payload_len = htons(skb->len - sizeof(*top_iph));
240
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700241 nexthdr = *skb_network_header(skb);
242 *skb_network_header(skb) = IPPROTO_AH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
244 /* When there are no extension headers, we only need to save the first
245 * 8 bytes of the base IP header.
246 */
247 memcpy(tmp_base, top_iph, sizeof(tmp_base));
248
249 tmp_ext = NULL;
Kazunori MIYAZAWA144466b2007-05-25 01:22:25 -0700250 extlen = skb_transport_offset(skb) - sizeof(struct ipv6hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 if (extlen) {
252 extlen += sizeof(*tmp_ext);
253 tmp_ext = kmalloc(extlen, GFP_ATOMIC);
254 if (!tmp_ext) {
255 err = -ENOMEM;
256 goto error;
257 }
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700258#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700259 memcpy(tmp_ext, &top_iph->saddr, extlen);
YOSHIFUJI Hideakie731c242006-08-24 23:18:12 +0900260#else
261 memcpy(tmp_ext, &top_iph->daddr, extlen);
262#endif
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700263 err = ipv6_clear_mutable_options(top_iph,
264 extlen - sizeof(*tmp_ext) +
265 sizeof(*top_iph),
266 XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 if (err)
268 goto error_free_iph;
269 }
270
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -0700271 ah = (struct ip_auth_hdr *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 ah->nexthdr = nexthdr;
273
274 top_iph->priority = 0;
275 top_iph->flow_lbl[0] = 0;
276 top_iph->flow_lbl[1] = 0;
277 top_iph->flow_lbl[2] = 0;
278 top_iph->hop_limit = 0;
279
280 ahp = x->data;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900281 ah->hdrlen = (XFRM_ALIGN8(sizeof(struct ipv6_auth_hdr) +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 ahp->icv_trunc_len) >> 2) - 2;
283
284 ah->reserved = 0;
285 ah->spi = x->id.spi;
Herbert Xu436a0a42007-10-08 17:25:53 -0700286 ah->seq_no = htonl(XFRM_SKB_CB(skb)->seq);
Herbert Xu07d4ee52006-08-20 14:24:50 +1000287 err = ah_mac_digest(ahp, skb, ah->auth_data);
288 if (err)
289 goto error_free_iph;
290 memcpy(ah->auth_data, ahp->work_icv, ahp->icv_trunc_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292 err = 0;
293
294 memcpy(top_iph, tmp_base, sizeof(tmp_base));
295 if (tmp_ext) {
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700296#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700297 memcpy(&top_iph->saddr, tmp_ext, extlen);
298#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 memcpy(&top_iph->daddr, tmp_ext, extlen);
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700300#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301error_free_iph:
302 kfree(tmp_ext);
303 }
304
305error:
306 return err;
307}
308
Herbert Xue6956332006-04-01 00:52:46 -0800309static int ah6_input(struct xfrm_state *x, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
311 /*
312 * Before process AH
313 * [IPv6][Ext1][Ext2][AH][Dest][Payload]
314 * |<-------------->| hdr_len
315 *
316 * To erase AH:
317 * Keeping copy of cleared headers. After AH processing,
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700318 * Moving the pointer of skb->network_header by using skb_pull as long
319 * as AH header length. Then copy back the copy as long as hdr_len
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 * If destination header following AH exists, copy it into after [Ext2].
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900321 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 * |<>|[IPv6][Ext1][Ext2][Dest][Payload]
323 * There is offset of AH before IPv6 header after the process.
324 */
325
326 struct ipv6_auth_hdr *ah;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700327 struct ipv6hdr *ip6h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 struct ah_data *ahp;
329 unsigned char *tmp_hdr = NULL;
330 u16 hdr_len;
331 u16 ah_hlen;
332 int nexthdr;
Herbert Xu07d4ee52006-08-20 14:24:50 +1000333 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 if (!pskb_may_pull(skb, sizeof(struct ip_auth_hdr)))
336 goto out;
337
338 /* We are going to _remove_ AH header to keep sockets happy,
339 * so... Later this can change. */
340 if (skb_cloned(skb) &&
341 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
342 goto out;
343
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700344 hdr_len = skb->data - skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 ah = (struct ipv6_auth_hdr*)skb->data;
346 ahp = x->data;
347 nexthdr = ah->nexthdr;
348 ah_hlen = (ah->hdrlen + 2) << 2;
349
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900350 if (ah_hlen != XFRM_ALIGN8(sizeof(struct ipv6_auth_hdr) + ahp->icv_full_len) &&
351 ah_hlen != XFRM_ALIGN8(sizeof(struct ipv6_auth_hdr) + ahp->icv_trunc_len))
352 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354 if (!pskb_may_pull(skb, ah_hlen))
355 goto out;
356
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700357 tmp_hdr = kmemdup(skb_network_header(skb), hdr_len, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 if (!tmp_hdr)
359 goto out;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700360 ip6h = ipv6_hdr(skb);
361 if (ipv6_clear_mutable_options(ip6h, hdr_len, XFRM_POLICY_IN))
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700362 goto free_out;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700363 ip6h->priority = 0;
364 ip6h->flow_lbl[0] = 0;
365 ip6h->flow_lbl[1] = 0;
366 ip6h->flow_lbl[2] = 0;
367 ip6h->hop_limit = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900369 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 u8 auth_data[MAX_AH_AUTH_LEN];
371
372 memcpy(auth_data, ah->auth_data, ahp->icv_trunc_len);
373 memset(ah->auth_data, 0, ahp->icv_trunc_len);
Herbert Xu31a4ab92006-05-27 23:06:13 -0700374 skb_push(skb, hdr_len);
Herbert Xu07d4ee52006-08-20 14:24:50 +1000375 err = ah_mac_digest(ahp, skb, ah->auth_data);
376 if (err)
377 goto free_out;
378 err = -EINVAL;
379 if (memcmp(ahp->work_icv, auth_data, ahp->icv_trunc_len)) {
Patrick McHardy64ce2072005-08-09 20:50:53 -0700380 LIMIT_NETDEBUG(KERN_WARNING "ipsec ah authentication error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 x->stats.integrity_failed++;
382 goto free_out;
383 }
384 }
385
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700386 skb->network_header += ah_hlen;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700387 memcpy(skb_network_header(skb), tmp_hdr, hdr_len);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700388 skb->transport_header = skb->network_header;
Herbert Xu31a4ab92006-05-27 23:06:13 -0700389 __skb_pull(skb, ah_hlen + hdr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391 kfree(tmp_hdr);
392
393 return nexthdr;
394
395free_out:
396 kfree(tmp_hdr);
397out:
Herbert Xu07d4ee52006-08-20 14:24:50 +1000398 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399}
400
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900401static void ah6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
402 int type, int code, int offset, __be32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
404 struct ipv6hdr *iph = (struct ipv6hdr*)skb->data;
405 struct ip_auth_hdr *ah = (struct ip_auth_hdr*)(skb->data+offset);
406 struct xfrm_state *x;
407
408 if (type != ICMPV6_DEST_UNREACH &&
409 type != ICMPV6_PKT_TOOBIG)
410 return;
411
412 x = xfrm_state_lookup((xfrm_address_t *)&iph->daddr, ah->spi, IPPROTO_AH, AF_INET6);
413 if (!x)
414 return;
415
Joe Perches46b86a22006-01-13 14:29:07 -0800416 NETDEBUG(KERN_DEBUG "pmtu discovery on SA AH/%08x/" NIP6_FMT "\n",
Patrick McHardy64ce2072005-08-09 20:50:53 -0700417 ntohl(ah->spi), NIP6(iph->daddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
419 xfrm_state_put(x);
420}
421
Herbert Xu72cb6962005-06-20 13:18:08 -0700422static int ah6_init_state(struct xfrm_state *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
424 struct ah_data *ahp = NULL;
425 struct xfrm_algo_desc *aalg_desc;
Herbert Xu07d4ee52006-08-20 14:24:50 +1000426 struct crypto_hash *tfm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 if (!x->aalg)
429 goto error;
430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 if (x->encap)
432 goto error;
433
Ingo Oeser0c600ed2006-03-20 23:01:32 -0800434 ahp = kzalloc(sizeof(*ahp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 if (ahp == NULL)
436 return -ENOMEM;
437
Herbert Xu07d4ee52006-08-20 14:24:50 +1000438 tfm = crypto_alloc_hash(x->aalg->alg_name, 0, CRYPTO_ALG_ASYNC);
439 if (IS_ERR(tfm))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 goto error;
Herbert Xu07d4ee52006-08-20 14:24:50 +1000441
442 ahp->tfm = tfm;
Herbert Xubc31d3b2007-10-08 17:14:34 -0700443 if (crypto_hash_setkey(tfm, x->aalg->alg_key,
444 (x->aalg->alg_key_len + 7) / 8))
Herbert Xu07d4ee52006-08-20 14:24:50 +1000445 goto error;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 /*
448 * Lookup the algorithm description maintained by xfrm_algo,
449 * verify crypto transform properties, and store information
450 * we need for AH processing. This lookup cannot fail here
Herbert Xu07d4ee52006-08-20 14:24:50 +1000451 * after a successful crypto_alloc_hash().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 */
453 aalg_desc = xfrm_aalg_get_byname(x->aalg->alg_name, 0);
454 BUG_ON(!aalg_desc);
455
456 if (aalg_desc->uinfo.auth.icv_fullbits/8 !=
Herbert Xu07d4ee52006-08-20 14:24:50 +1000457 crypto_hash_digestsize(tfm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 printk(KERN_INFO "AH: %s digestsize %u != %hu\n",
Herbert Xu07d4ee52006-08-20 14:24:50 +1000459 x->aalg->alg_name, crypto_hash_digestsize(tfm),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 aalg_desc->uinfo.auth.icv_fullbits/8);
461 goto error;
462 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900463
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 ahp->icv_full_len = aalg_desc->uinfo.auth.icv_fullbits/8;
465 ahp->icv_trunc_len = aalg_desc->uinfo.auth.icv_truncbits/8;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 BUG_ON(ahp->icv_trunc_len > MAX_AH_AUTH_LEN);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 ahp->work_icv = kmalloc(ahp->icv_full_len, GFP_KERNEL);
470 if (!ahp->work_icv)
471 goto error;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 x->props.header_len = XFRM_ALIGN8(sizeof(struct ipv6_auth_hdr) + ahp->icv_trunc_len);
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700474 if (x->props.mode == XFRM_MODE_TUNNEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 x->props.header_len += sizeof(struct ipv6hdr);
476 x->data = ahp;
477
478 return 0;
479
480error:
481 if (ahp) {
Jesper Juhl573dbd92005-09-01 17:44:29 -0700482 kfree(ahp->work_icv);
Herbert Xu07d4ee52006-08-20 14:24:50 +1000483 crypto_free_hash(ahp->tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 kfree(ahp);
485 }
486 return -EINVAL;
487}
488
489static void ah6_destroy(struct xfrm_state *x)
490{
491 struct ah_data *ahp = x->data;
492
493 if (!ahp)
494 return;
495
Jesper Juhl573dbd92005-09-01 17:44:29 -0700496 kfree(ahp->work_icv);
497 ahp->work_icv = NULL;
Herbert Xu07d4ee52006-08-20 14:24:50 +1000498 crypto_free_hash(ahp->tfm);
Jesper Juhl573dbd92005-09-01 17:44:29 -0700499 ahp->tfm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 kfree(ahp);
501}
502
503static struct xfrm_type ah6_type =
504{
505 .description = "AH6",
506 .owner = THIS_MODULE,
507 .proto = IPPROTO_AH,
Herbert Xu436a0a42007-10-08 17:25:53 -0700508 .flags = XFRM_TYPE_REPLAY_PROT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 .init_state = ah6_init_state,
510 .destructor = ah6_destroy,
511 .input = ah6_input,
Masahide NAKAMURAaee5adb2006-08-23 17:57:28 -0700512 .output = ah6_output,
513 .hdr_offset = xfrm6_find_1stfragopt,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514};
515
516static struct inet6_protocol ah6_protocol = {
517 .handler = xfrm6_rcv,
518 .err_handler = ah6_err,
519 .flags = INET6_PROTO_NOPOLICY,
520};
521
522static int __init ah6_init(void)
523{
524 if (xfrm_register_type(&ah6_type, AF_INET6) < 0) {
525 printk(KERN_INFO "ipv6 ah init: can't add xfrm type\n");
526 return -EAGAIN;
527 }
528
529 if (inet6_add_protocol(&ah6_protocol, IPPROTO_AH) < 0) {
530 printk(KERN_INFO "ipv6 ah init: can't add protocol\n");
531 xfrm_unregister_type(&ah6_type, AF_INET6);
532 return -EAGAIN;
533 }
534
535 return 0;
536}
537
538static void __exit ah6_fini(void)
539{
540 if (inet6_del_protocol(&ah6_protocol, IPPROTO_AH) < 0)
541 printk(KERN_INFO "ipv6 ah close: can't remove protocol\n");
542
543 if (xfrm_unregister_type(&ah6_type, AF_INET6) < 0)
544 printk(KERN_INFO "ipv6 ah close: can't remove xfrm type\n");
545
546}
547
548module_init(ah6_init);
549module_exit(ah6_fini);
550
551MODULE_LICENSE("GPL");
Masahide NAKAMURAd3d6dd32007-06-26 23:57:49 -0700552MODULE_ALIAS_XFRM_TYPE(AF_INET6, XFRM_PROTO_AH);