blob: ac6bae17a13bde6aa5c075584532270c99d2b2be [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>
Herbert Xub7c65382007-10-09 13:33:35 -070032#include <linux/spinlock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/string.h>
34#include <net/icmp.h>
35#include <net/ipv6.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020036#include <net/protocol.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <net/xfrm.h>
38#include <asm/scatterlist.h>
39
40static int zero_out_mutable_opts(struct ipv6_opt_hdr *opthdr)
41{
42 u8 *opt = (u8 *)opthdr;
43 int len = ipv6_optlen(opthdr);
44 int off = 0;
45 int optlen = 0;
46
47 off += 2;
48 len -= 2;
49
50 while (len > 0) {
51
52 switch (opt[off]) {
53
54 case IPV6_TLV_PAD0:
55 optlen = 1;
56 break;
57 default:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090058 if (len < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 goto bad;
60 optlen = opt[off+1]+2;
61 if (len < optlen)
62 goto bad;
63 if (opt[off] & 0x20)
64 memset(&opt[off+2], 0, opt[off+1]);
65 break;
66 }
67
68 off += optlen;
69 len -= optlen;
70 }
71 if (len == 0)
72 return 1;
73
74bad:
75 return 0;
76}
77
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -070078#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Masahide NAKAMURA27637df2006-08-23 19:29:47 -070079/**
80 * ipv6_rearrange_destopt - rearrange IPv6 destination options header
81 * @iph: IPv6 header
82 * @destopt: destionation options header
83 */
84static void ipv6_rearrange_destopt(struct ipv6hdr *iph, struct ipv6_opt_hdr *destopt)
85{
86 u8 *opt = (u8 *)destopt;
87 int len = ipv6_optlen(destopt);
88 int off = 0;
89 int optlen = 0;
90
91 off += 2;
92 len -= 2;
93
94 while (len > 0) {
95
96 switch (opt[off]) {
97
98 case IPV6_TLV_PAD0:
99 optlen = 1;
100 break;
101 default:
102 if (len < 2)
103 goto bad;
104 optlen = opt[off+1]+2;
105 if (len < optlen)
106 goto bad;
107
108 /* Rearrange the source address in @iph and the
109 * addresses in home address option for final source.
110 * See 11.3.2 of RFC 3775 for details.
111 */
112 if (opt[off] == IPV6_TLV_HAO) {
113 struct in6_addr final_addr;
114 struct ipv6_destopt_hao *hao;
115
116 hao = (struct ipv6_destopt_hao *)&opt[off];
117 if (hao->length != sizeof(hao->addr)) {
118 if (net_ratelimit())
119 printk(KERN_WARNING "destopt hao: invalid header length: %u\n", hao->length);
120 goto bad;
121 }
122 ipv6_addr_copy(&final_addr, &hao->addr);
123 ipv6_addr_copy(&hao->addr, &iph->saddr);
124 ipv6_addr_copy(&iph->saddr, &final_addr);
125 }
126 break;
127 }
128
129 off += optlen;
130 len -= optlen;
131 }
YOSHIFUJI Hideakie731c242006-08-24 23:18:12 +0900132 /* Note: ok if len == 0 */
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700133bad:
134 return;
135}
Masahide NAKAMURA136ebf02007-06-26 23:51:41 -0700136#else
137static void ipv6_rearrange_destopt(struct ipv6hdr *iph, struct ipv6_opt_hdr *destopt) {}
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700138#endif
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140/**
141 * ipv6_rearrange_rthdr - rearrange IPv6 routing header
142 * @iph: IPv6 header
143 * @rthdr: routing header
144 *
145 * Rearrange the destination address in @iph and the addresses in @rthdr
146 * so that they appear in the order they will at the final destination.
147 * See Appendix A2 of RFC 2402 for details.
148 */
149static void ipv6_rearrange_rthdr(struct ipv6hdr *iph, struct ipv6_rt_hdr *rthdr)
150{
151 int segments, segments_left;
152 struct in6_addr *addrs;
153 struct in6_addr final_addr;
154
155 segments_left = rthdr->segments_left;
156 if (segments_left == 0)
157 return;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900158 rthdr->segments_left = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 /* The value of rthdr->hdrlen has been verified either by the system
161 * call if it is locally generated, or by ipv6_rthdr_rcv() for incoming
162 * packets. So we can assume that it is even and that segments is
163 * greater than or equal to segments_left.
164 *
165 * For the same reason we can assume that this option is of type 0.
166 */
167 segments = rthdr->hdrlen >> 1;
168
169 addrs = ((struct rt0_hdr *)rthdr)->addr;
170 ipv6_addr_copy(&final_addr, addrs + segments - 1);
171
172 addrs += segments - segments_left;
173 memmove(addrs + 1, addrs, (segments_left - 1) * sizeof(*addrs));
174
175 ipv6_addr_copy(addrs, &iph->daddr);
176 ipv6_addr_copy(&iph->daddr, &final_addr);
177}
178
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700179static int ipv6_clear_mutable_options(struct ipv6hdr *iph, int len, int dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
181 union {
182 struct ipv6hdr *iph;
183 struct ipv6_opt_hdr *opth;
184 struct ipv6_rt_hdr *rth;
185 char *raw;
186 } exthdr = { .iph = iph };
187 char *end = exthdr.raw + len;
188 int nexthdr = iph->nexthdr;
189
190 exthdr.iph++;
191
192 while (exthdr.raw < end) {
193 switch (nexthdr) {
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700194 case NEXTHDR_DEST:
195 if (dir == XFRM_POLICY_OUT)
196 ipv6_rearrange_destopt(iph, exthdr.opth);
YOSHIFUJI Hideakie731c242006-08-24 23:18:12 +0900197 case NEXTHDR_HOP:
198 if (!zero_out_mutable_opts(exthdr.opth)) {
199 LIMIT_NETDEBUG(
200 KERN_WARNING "overrun %sopts\n",
201 nexthdr == NEXTHDR_HOP ?
202 "hop" : "dest");
203 return -EINVAL;
204 }
205 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207 case NEXTHDR_ROUTING:
208 ipv6_rearrange_rthdr(iph, exthdr.rth);
209 break;
210
211 default :
212 return 0;
213 }
214
215 nexthdr = exthdr.opth->nexthdr;
216 exthdr.raw += ipv6_optlen(exthdr.opth);
217 }
218
219 return 0;
220}
221
222static int ah6_output(struct xfrm_state *x, struct sk_buff *skb)
223{
224 int err;
225 int extlen;
226 struct ipv6hdr *top_iph;
227 struct ip_auth_hdr *ah;
228 struct ah_data *ahp;
229 u8 nexthdr;
230 char tmp_base[8];
231 struct {
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700232#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700233 struct in6_addr saddr;
234#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 struct in6_addr daddr;
236 char hdrs[0];
237 } *tmp_ext;
238
Herbert Xu7b277b12007-10-10 15:44:06 -0700239 skb_push(skb, -skb_network_offset(skb));
Herbert Xu007f0212007-10-09 13:25:59 -0700240 top_iph = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 top_iph->payload_len = htons(skb->len - sizeof(*top_iph));
242
Herbert Xu007f0212007-10-09 13:25:59 -0700243 nexthdr = *skb_mac_header(skb);
244 *skb_mac_header(skb) = IPPROTO_AH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
246 /* When there are no extension headers, we only need to save the first
247 * 8 bytes of the base IP header.
248 */
249 memcpy(tmp_base, top_iph, sizeof(tmp_base));
250
251 tmp_ext = NULL;
Kazunori MIYAZAWA144466b2007-05-25 01:22:25 -0700252 extlen = skb_transport_offset(skb) - sizeof(struct ipv6hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 if (extlen) {
254 extlen += sizeof(*tmp_ext);
255 tmp_ext = kmalloc(extlen, GFP_ATOMIC);
256 if (!tmp_ext) {
257 err = -ENOMEM;
258 goto error;
259 }
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700260#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700261 memcpy(tmp_ext, &top_iph->saddr, extlen);
YOSHIFUJI Hideakie731c242006-08-24 23:18:12 +0900262#else
263 memcpy(tmp_ext, &top_iph->daddr, extlen);
264#endif
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700265 err = ipv6_clear_mutable_options(top_iph,
266 extlen - sizeof(*tmp_ext) +
267 sizeof(*top_iph),
268 XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 if (err)
270 goto error_free_iph;
271 }
272
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -0700273 ah = (struct ip_auth_hdr *)skb_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 ah->nexthdr = nexthdr;
275
276 top_iph->priority = 0;
277 top_iph->flow_lbl[0] = 0;
278 top_iph->flow_lbl[1] = 0;
279 top_iph->flow_lbl[2] = 0;
280 top_iph->hop_limit = 0;
281
282 ahp = x->data;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900283 ah->hdrlen = (XFRM_ALIGN8(sizeof(struct ipv6_auth_hdr) +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 ahp->icv_trunc_len) >> 2) - 2;
285
286 ah->reserved = 0;
287 ah->spi = x->id.spi;
Herbert Xu436a0a42007-10-08 17:25:53 -0700288 ah->seq_no = htonl(XFRM_SKB_CB(skb)->seq);
Herbert Xub7c65382007-10-09 13:33:35 -0700289
290 spin_lock_bh(&x->lock);
Herbert Xu07d4ee52006-08-20 14:24:50 +1000291 err = ah_mac_digest(ahp, skb, ah->auth_data);
Herbert Xub7c65382007-10-09 13:33:35 -0700292 memcpy(ah->auth_data, ahp->work_icv, ahp->icv_trunc_len);
293 spin_unlock_bh(&x->lock);
294
Herbert Xu07d4ee52006-08-20 14:24:50 +1000295 if (err)
296 goto error_free_iph;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298 memcpy(top_iph, tmp_base, sizeof(tmp_base));
299 if (tmp_ext) {
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700300#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700301 memcpy(&top_iph->saddr, tmp_ext, extlen);
302#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 memcpy(&top_iph->daddr, tmp_ext, extlen);
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700304#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305error_free_iph:
306 kfree(tmp_ext);
307 }
308
309error:
310 return err;
311}
312
Herbert Xue6956332006-04-01 00:52:46 -0800313static int ah6_input(struct xfrm_state *x, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
315 /*
316 * Before process AH
317 * [IPv6][Ext1][Ext2][AH][Dest][Payload]
318 * |<-------------->| hdr_len
319 *
320 * To erase AH:
321 * Keeping copy of cleared headers. After AH processing,
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700322 * Moving the pointer of skb->network_header by using skb_pull as long
323 * as AH header length. Then copy back the copy as long as hdr_len
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 * If destination header following AH exists, copy it into after [Ext2].
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900325 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 * |<>|[IPv6][Ext1][Ext2][Dest][Payload]
327 * There is offset of AH before IPv6 header after the process.
328 */
329
330 struct ipv6_auth_hdr *ah;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700331 struct ipv6hdr *ip6h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 struct ah_data *ahp;
333 unsigned char *tmp_hdr = NULL;
334 u16 hdr_len;
335 u16 ah_hlen;
336 int nexthdr;
Herbert Xu07d4ee52006-08-20 14:24:50 +1000337 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 if (!pskb_may_pull(skb, sizeof(struct ip_auth_hdr)))
340 goto out;
341
342 /* We are going to _remove_ AH header to keep sockets happy,
343 * so... Later this can change. */
344 if (skb_cloned(skb) &&
345 pskb_expand_head(skb, 0, 0, GFP_ATOMIC))
346 goto out;
347
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700348 hdr_len = skb->data - skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 ah = (struct ipv6_auth_hdr*)skb->data;
350 ahp = x->data;
351 nexthdr = ah->nexthdr;
352 ah_hlen = (ah->hdrlen + 2) << 2;
353
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900354 if (ah_hlen != XFRM_ALIGN8(sizeof(struct ipv6_auth_hdr) + ahp->icv_full_len) &&
355 ah_hlen != XFRM_ALIGN8(sizeof(struct ipv6_auth_hdr) + ahp->icv_trunc_len))
356 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358 if (!pskb_may_pull(skb, ah_hlen))
359 goto out;
360
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700361 tmp_hdr = kmemdup(skb_network_header(skb), hdr_len, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 if (!tmp_hdr)
363 goto out;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700364 ip6h = ipv6_hdr(skb);
365 if (ipv6_clear_mutable_options(ip6h, hdr_len, XFRM_POLICY_IN))
Masahide NAKAMURA27637df2006-08-23 19:29:47 -0700366 goto free_out;
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700367 ip6h->priority = 0;
368 ip6h->flow_lbl[0] = 0;
369 ip6h->flow_lbl[1] = 0;
370 ip6h->flow_lbl[2] = 0;
371 ip6h->hop_limit = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900373 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 u8 auth_data[MAX_AH_AUTH_LEN];
375
376 memcpy(auth_data, ah->auth_data, ahp->icv_trunc_len);
377 memset(ah->auth_data, 0, ahp->icv_trunc_len);
Herbert Xu31a4ab92006-05-27 23:06:13 -0700378 skb_push(skb, hdr_len);
Herbert Xu07d4ee52006-08-20 14:24:50 +1000379 err = ah_mac_digest(ahp, skb, ah->auth_data);
380 if (err)
381 goto free_out;
382 err = -EINVAL;
383 if (memcmp(ahp->work_icv, auth_data, ahp->icv_trunc_len)) {
Patrick McHardy64ce2072005-08-09 20:50:53 -0700384 LIMIT_NETDEBUG(KERN_WARNING "ipsec ah authentication error\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 x->stats.integrity_failed++;
386 goto free_out;
387 }
388 }
389
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700390 skb->network_header += ah_hlen;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700391 memcpy(skb_network_header(skb), tmp_hdr, hdr_len);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700392 skb->transport_header = skb->network_header;
Herbert Xu31a4ab92006-05-27 23:06:13 -0700393 __skb_pull(skb, ah_hlen + hdr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395 kfree(tmp_hdr);
396
397 return nexthdr;
398
399free_out:
400 kfree(tmp_hdr);
401out:
Herbert Xu07d4ee52006-08-20 14:24:50 +1000402 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
404
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900405static void ah6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
406 int type, int code, int offset, __be32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
408 struct ipv6hdr *iph = (struct ipv6hdr*)skb->data;
409 struct ip_auth_hdr *ah = (struct ip_auth_hdr*)(skb->data+offset);
410 struct xfrm_state *x;
411
412 if (type != ICMPV6_DEST_UNREACH &&
413 type != ICMPV6_PKT_TOOBIG)
414 return;
415
416 x = xfrm_state_lookup((xfrm_address_t *)&iph->daddr, ah->spi, IPPROTO_AH, AF_INET6);
417 if (!x)
418 return;
419
Joe Perches46b86a22006-01-13 14:29:07 -0800420 NETDEBUG(KERN_DEBUG "pmtu discovery on SA AH/%08x/" NIP6_FMT "\n",
Patrick McHardy64ce2072005-08-09 20:50:53 -0700421 ntohl(ah->spi), NIP6(iph->daddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423 xfrm_state_put(x);
424}
425
Herbert Xu72cb6962005-06-20 13:18:08 -0700426static int ah6_init_state(struct xfrm_state *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427{
428 struct ah_data *ahp = NULL;
429 struct xfrm_algo_desc *aalg_desc;
Herbert Xu07d4ee52006-08-20 14:24:50 +1000430 struct crypto_hash *tfm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432 if (!x->aalg)
433 goto error;
434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 if (x->encap)
436 goto error;
437
Ingo Oeser0c600ed2006-03-20 23:01:32 -0800438 ahp = kzalloc(sizeof(*ahp), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 if (ahp == NULL)
440 return -ENOMEM;
441
Herbert Xu07d4ee52006-08-20 14:24:50 +1000442 tfm = crypto_alloc_hash(x->aalg->alg_name, 0, CRYPTO_ALG_ASYNC);
443 if (IS_ERR(tfm))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 goto error;
Herbert Xu07d4ee52006-08-20 14:24:50 +1000445
446 ahp->tfm = tfm;
Herbert Xubc31d3b2007-10-08 17:14:34 -0700447 if (crypto_hash_setkey(tfm, x->aalg->alg_key,
448 (x->aalg->alg_key_len + 7) / 8))
Herbert Xu07d4ee52006-08-20 14:24:50 +1000449 goto error;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 /*
452 * Lookup the algorithm description maintained by xfrm_algo,
453 * verify crypto transform properties, and store information
454 * we need for AH processing. This lookup cannot fail here
Herbert Xu07d4ee52006-08-20 14:24:50 +1000455 * after a successful crypto_alloc_hash().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 */
457 aalg_desc = xfrm_aalg_get_byname(x->aalg->alg_name, 0);
458 BUG_ON(!aalg_desc);
459
460 if (aalg_desc->uinfo.auth.icv_fullbits/8 !=
Herbert Xu07d4ee52006-08-20 14:24:50 +1000461 crypto_hash_digestsize(tfm)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 printk(KERN_INFO "AH: %s digestsize %u != %hu\n",
Herbert Xu07d4ee52006-08-20 14:24:50 +1000463 x->aalg->alg_name, crypto_hash_digestsize(tfm),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 aalg_desc->uinfo.auth.icv_fullbits/8);
465 goto error;
466 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 ahp->icv_full_len = aalg_desc->uinfo.auth.icv_fullbits/8;
469 ahp->icv_trunc_len = aalg_desc->uinfo.auth.icv_truncbits/8;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 BUG_ON(ahp->icv_trunc_len > MAX_AH_AUTH_LEN);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 ahp->work_icv = kmalloc(ahp->icv_full_len, GFP_KERNEL);
474 if (!ahp->work_icv)
475 goto error;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 x->props.header_len = XFRM_ALIGN8(sizeof(struct ipv6_auth_hdr) + ahp->icv_trunc_len);
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700478 if (x->props.mode == XFRM_MODE_TUNNEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 x->props.header_len += sizeof(struct ipv6hdr);
480 x->data = ahp;
481
482 return 0;
483
484error:
485 if (ahp) {
Jesper Juhl573dbd92005-09-01 17:44:29 -0700486 kfree(ahp->work_icv);
Herbert Xu07d4ee52006-08-20 14:24:50 +1000487 crypto_free_hash(ahp->tfm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 kfree(ahp);
489 }
490 return -EINVAL;
491}
492
493static void ah6_destroy(struct xfrm_state *x)
494{
495 struct ah_data *ahp = x->data;
496
497 if (!ahp)
498 return;
499
Jesper Juhl573dbd92005-09-01 17:44:29 -0700500 kfree(ahp->work_icv);
501 ahp->work_icv = NULL;
Herbert Xu07d4ee52006-08-20 14:24:50 +1000502 crypto_free_hash(ahp->tfm);
Jesper Juhl573dbd92005-09-01 17:44:29 -0700503 ahp->tfm = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 kfree(ahp);
505}
506
507static struct xfrm_type ah6_type =
508{
509 .description = "AH6",
510 .owner = THIS_MODULE,
511 .proto = IPPROTO_AH,
Herbert Xu436a0a42007-10-08 17:25:53 -0700512 .flags = XFRM_TYPE_REPLAY_PROT,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 .init_state = ah6_init_state,
514 .destructor = ah6_destroy,
515 .input = ah6_input,
Masahide NAKAMURAaee5adb2006-08-23 17:57:28 -0700516 .output = ah6_output,
517 .hdr_offset = xfrm6_find_1stfragopt,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518};
519
520static struct inet6_protocol ah6_protocol = {
521 .handler = xfrm6_rcv,
522 .err_handler = ah6_err,
523 .flags = INET6_PROTO_NOPOLICY,
524};
525
526static int __init ah6_init(void)
527{
528 if (xfrm_register_type(&ah6_type, AF_INET6) < 0) {
529 printk(KERN_INFO "ipv6 ah init: can't add xfrm type\n");
530 return -EAGAIN;
531 }
532
533 if (inet6_add_protocol(&ah6_protocol, IPPROTO_AH) < 0) {
534 printk(KERN_INFO "ipv6 ah init: can't add protocol\n");
535 xfrm_unregister_type(&ah6_type, AF_INET6);
536 return -EAGAIN;
537 }
538
539 return 0;
540}
541
542static void __exit ah6_fini(void)
543{
544 if (inet6_del_protocol(&ah6_protocol, IPPROTO_AH) < 0)
545 printk(KERN_INFO "ipv6 ah close: can't remove protocol\n");
546
547 if (xfrm_unregister_type(&ah6_type, AF_INET6) < 0)
548 printk(KERN_INFO "ipv6 ah close: can't remove xfrm type\n");
549
550}
551
552module_init(ah6_init);
553module_exit(ah6_fini);
554
555MODULE_LICENSE("GPL");
Masahide NAKAMURAd3d6dd32007-06-26 23:57:49 -0700556MODULE_ALIAS_XFRM_TYPE(AF_INET6, XFRM_PROTO_AH);