2 * Copyright (C)2002 USAGI/WIDE Project
4 * 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.
9 * 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.
14 * 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
20 * Mitsuru KANDA @USAGI : IPv6 Support
21 * Kazunori MIYAZAWA @USAGI :
22 * Kunihiro Ishiguro <kunihiro@ipinfusion.com>
24 * This file is derived from net/ipv4/ah.c.
27 #include <linux/module.h>
30 #include <linux/crypto.h>
31 #include <linux/pfkeyv2.h>
32 #include <linux/spinlock.h>
33 #include <linux/string.h>
36 #include <net/protocol.h>
39 static int zero_out_mutable_opts(struct ipv6_opt_hdr
*opthdr
)
41 u8
*opt
= (u8
*)opthdr
;
42 int len
= ipv6_optlen(opthdr
);
59 optlen
= opt
[off
+1]+2;
63 memset(&opt
[off
+2], 0, opt
[off
+1]);
77 #if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
79 * ipv6_rearrange_destopt - rearrange IPv6 destination options header
81 * @destopt: destionation options header
83 static void ipv6_rearrange_destopt(struct ipv6hdr
*iph
, struct ipv6_opt_hdr
*destopt
)
85 u8
*opt
= (u8
*)destopt
;
86 int len
= ipv6_optlen(destopt
);
103 optlen
= opt
[off
+1]+2;
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.
111 if (opt
[off
] == IPV6_TLV_HAO
) {
112 struct in6_addr final_addr
;
113 struct ipv6_destopt_hao
*hao
;
115 hao
= (struct ipv6_destopt_hao
*)&opt
[off
];
116 if (hao
->length
!= sizeof(hao
->addr
)) {
118 printk(KERN_WARNING
"destopt hao: invalid header length: %u\n", hao
->length
);
121 ipv6_addr_copy(&final_addr
, &hao
->addr
);
122 ipv6_addr_copy(&hao
->addr
, &iph
->saddr
);
123 ipv6_addr_copy(&iph
->saddr
, &final_addr
);
131 /* Note: ok if len == 0 */
136 static void ipv6_rearrange_destopt(struct ipv6hdr
*iph
, struct ipv6_opt_hdr
*destopt
) {}
140 * ipv6_rearrange_rthdr - rearrange IPv6 routing header
142 * @rthdr: routing header
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.
148 static void ipv6_rearrange_rthdr(struct ipv6hdr
*iph
, struct ipv6_rt_hdr
*rthdr
)
150 int segments
, segments_left
;
151 struct in6_addr
*addrs
;
152 struct in6_addr final_addr
;
154 segments_left
= rthdr
->segments_left
;
155 if (segments_left
== 0)
157 rthdr
->segments_left
= 0;
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.
164 * For the same reason we can assume that this option is of type 0.
166 segments
= rthdr
->hdrlen
>> 1;
168 addrs
= ((struct rt0_hdr
*)rthdr
)->addr
;
169 ipv6_addr_copy(&final_addr
, addrs
+ segments
- 1);
171 addrs
+= segments
- segments_left
;
172 memmove(addrs
+ 1, addrs
, (segments_left
- 1) * sizeof(*addrs
));
174 ipv6_addr_copy(addrs
, &iph
->daddr
);
175 ipv6_addr_copy(&iph
->daddr
, &final_addr
);
178 static int ipv6_clear_mutable_options(struct ipv6hdr
*iph
, int len
, int dir
)
182 struct ipv6_opt_hdr
*opth
;
183 struct ipv6_rt_hdr
*rth
;
185 } exthdr
= { .iph
= iph
};
186 char *end
= exthdr
.raw
+ len
;
187 int nexthdr
= iph
->nexthdr
;
191 while (exthdr
.raw
< end
) {
194 if (dir
== XFRM_POLICY_OUT
)
195 ipv6_rearrange_destopt(iph
, exthdr
.opth
);
197 if (!zero_out_mutable_opts(exthdr
.opth
)) {
199 KERN_WARNING
"overrun %sopts\n",
200 nexthdr
== NEXTHDR_HOP
?
206 case NEXTHDR_ROUTING
:
207 ipv6_rearrange_rthdr(iph
, exthdr
.rth
);
214 nexthdr
= exthdr
.opth
->nexthdr
;
215 exthdr
.raw
+= ipv6_optlen(exthdr
.opth
);
221 static int ah6_output(struct xfrm_state
*x
, struct sk_buff
*skb
)
225 struct ipv6hdr
*top_iph
;
226 struct ip_auth_hdr
*ah
;
231 #if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
232 struct in6_addr saddr
;
234 struct in6_addr daddr
;
238 skb_push(skb
, -skb_network_offset(skb
));
239 top_iph
= ipv6_hdr(skb
);
240 top_iph
->payload_len
= htons(skb
->len
- sizeof(*top_iph
));
242 nexthdr
= *skb_mac_header(skb
);
243 *skb_mac_header(skb
) = IPPROTO_AH
;
245 /* When there are no extension headers, we only need to save the first
246 * 8 bytes of the base IP header.
248 memcpy(tmp_base
, top_iph
, sizeof(tmp_base
));
251 extlen
= skb_transport_offset(skb
) - sizeof(struct ipv6hdr
);
253 extlen
+= sizeof(*tmp_ext
);
254 tmp_ext
= kmalloc(extlen
, GFP_ATOMIC
);
259 #if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
260 memcpy(tmp_ext
, &top_iph
->saddr
, extlen
);
262 memcpy(tmp_ext
, &top_iph
->daddr
, extlen
);
264 err
= ipv6_clear_mutable_options(top_iph
,
265 extlen
- sizeof(*tmp_ext
) +
272 ah
= ip_auth_hdr(skb
);
273 ah
->nexthdr
= nexthdr
;
275 top_iph
->priority
= 0;
276 top_iph
->flow_lbl
[0] = 0;
277 top_iph
->flow_lbl
[1] = 0;
278 top_iph
->flow_lbl
[2] = 0;
279 top_iph
->hop_limit
= 0;
282 ah
->hdrlen
= (XFRM_ALIGN8(sizeof(*ah
) + ahp
->icv_trunc_len
) >> 2) - 2;
286 ah
->seq_no
= htonl(XFRM_SKB_CB(skb
)->seq
);
288 spin_lock_bh(&x
->lock
);
289 err
= ah_mac_digest(ahp
, skb
, ah
->auth_data
);
290 memcpy(ah
->auth_data
, ahp
->work_icv
, ahp
->icv_trunc_len
);
291 spin_unlock_bh(&x
->lock
);
296 memcpy(top_iph
, tmp_base
, sizeof(tmp_base
));
298 #if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
299 memcpy(&top_iph
->saddr
, tmp_ext
, extlen
);
301 memcpy(&top_iph
->daddr
, tmp_ext
, extlen
);
311 static int ah6_input(struct xfrm_state
*x
, struct sk_buff
*skb
)
315 * [IPv6][Ext1][Ext2][AH][Dest][Payload]
316 * |<-------------->| hdr_len
319 * Keeping copy of cleared headers. After AH processing,
320 * Moving the pointer of skb->network_header by using skb_pull as long
321 * as AH header length. Then copy back the copy as long as hdr_len
322 * If destination header following AH exists, copy it into after [Ext2].
324 * |<>|[IPv6][Ext1][Ext2][Dest][Payload]
325 * There is offset of AH before IPv6 header after the process.
328 struct ip_auth_hdr
*ah
;
329 struct ipv6hdr
*ip6h
;
331 unsigned char *tmp_hdr
= NULL
;
337 if (!pskb_may_pull(skb
, sizeof(struct ip_auth_hdr
)))
340 /* We are going to _remove_ AH header to keep sockets happy,
341 * so... Later this can change. */
342 if (skb_cloned(skb
) &&
343 pskb_expand_head(skb
, 0, 0, GFP_ATOMIC
))
346 skb
->ip_summed
= CHECKSUM_NONE
;
348 hdr_len
= skb
->data
- skb_network_header(skb
);
349 ah
= (struct ip_auth_hdr
*)skb
->data
;
351 nexthdr
= ah
->nexthdr
;
352 ah_hlen
= (ah
->hdrlen
+ 2) << 2;
354 if (ah_hlen
!= XFRM_ALIGN8(sizeof(*ah
) + ahp
->icv_full_len
) &&
355 ah_hlen
!= XFRM_ALIGN8(sizeof(*ah
) + ahp
->icv_trunc_len
))
358 if (!pskb_may_pull(skb
, ah_hlen
))
361 tmp_hdr
= kmemdup(skb_network_header(skb
), hdr_len
, GFP_ATOMIC
);
364 ip6h
= ipv6_hdr(skb
);
365 if (ipv6_clear_mutable_options(ip6h
, hdr_len
, XFRM_POLICY_IN
))
368 ip6h
->flow_lbl
[0] = 0;
369 ip6h
->flow_lbl
[1] = 0;
370 ip6h
->flow_lbl
[2] = 0;
375 u8 auth_data
[MAX_AH_AUTH_LEN
];
377 memcpy(auth_data
, ah
->auth_data
, ahp
->icv_trunc_len
);
378 memset(ah
->auth_data
, 0, ahp
->icv_trunc_len
);
379 skb_push(skb
, hdr_len
);
380 err
= ah_mac_digest(ahp
, skb
, ah
->auth_data
);
383 if (memcmp(ahp
->work_icv
, auth_data
, ahp
->icv_trunc_len
))
387 spin_unlock(&x
->lock
);
392 skb
->network_header
+= ah_hlen
;
393 memcpy(skb_network_header(skb
), tmp_hdr
, hdr_len
);
394 skb
->transport_header
= skb
->network_header
;
395 __skb_pull(skb
, ah_hlen
+ hdr_len
);
407 static void ah6_err(struct sk_buff
*skb
, struct inet6_skb_parm
*opt
,
408 int type
, int code
, int offset
, __be32 info
)
410 struct ipv6hdr
*iph
= (struct ipv6hdr
*)skb
->data
;
411 struct ip_auth_hdr
*ah
= (struct ip_auth_hdr
*)(skb
->data
+offset
);
412 struct xfrm_state
*x
;
414 if (type
!= ICMPV6_DEST_UNREACH
&&
415 type
!= ICMPV6_PKT_TOOBIG
)
418 x
= xfrm_state_lookup((xfrm_address_t
*)&iph
->daddr
, ah
->spi
, IPPROTO_AH
, AF_INET6
);
422 NETDEBUG(KERN_DEBUG
"pmtu discovery on SA AH/%08x/" NIP6_FMT
"\n",
423 ntohl(ah
->spi
), NIP6(iph
->daddr
));
428 static int ah6_init_state(struct xfrm_state
*x
)
430 struct ah_data
*ahp
= NULL
;
431 struct xfrm_algo_desc
*aalg_desc
;
432 struct crypto_hash
*tfm
;
440 ahp
= kzalloc(sizeof(*ahp
), GFP_KERNEL
);
444 tfm
= crypto_alloc_hash(x
->aalg
->alg_name
, 0, CRYPTO_ALG_ASYNC
);
449 if (crypto_hash_setkey(tfm
, x
->aalg
->alg_key
,
450 (x
->aalg
->alg_key_len
+ 7) / 8))
454 * Lookup the algorithm description maintained by xfrm_algo,
455 * verify crypto transform properties, and store information
456 * we need for AH processing. This lookup cannot fail here
457 * after a successful crypto_alloc_hash().
459 aalg_desc
= xfrm_aalg_get_byname(x
->aalg
->alg_name
, 0);
462 if (aalg_desc
->uinfo
.auth
.icv_fullbits
/8 !=
463 crypto_hash_digestsize(tfm
)) {
464 printk(KERN_INFO
"AH: %s digestsize %u != %hu\n",
465 x
->aalg
->alg_name
, crypto_hash_digestsize(tfm
),
466 aalg_desc
->uinfo
.auth
.icv_fullbits
/8);
470 ahp
->icv_full_len
= aalg_desc
->uinfo
.auth
.icv_fullbits
/8;
471 ahp
->icv_trunc_len
= aalg_desc
->uinfo
.auth
.icv_truncbits
/8;
473 BUG_ON(ahp
->icv_trunc_len
> MAX_AH_AUTH_LEN
);
475 ahp
->work_icv
= kmalloc(ahp
->icv_full_len
, GFP_KERNEL
);
479 x
->props
.header_len
= XFRM_ALIGN8(sizeof(struct ip_auth_hdr
) +
481 switch (x
->props
.mode
) {
483 case XFRM_MODE_TRANSPORT
:
485 case XFRM_MODE_TUNNEL
:
486 x
->props
.header_len
+= sizeof(struct ipv6hdr
);
497 kfree(ahp
->work_icv
);
498 crypto_free_hash(ahp
->tfm
);
504 static void ah6_destroy(struct xfrm_state
*x
)
506 struct ah_data
*ahp
= x
->data
;
511 kfree(ahp
->work_icv
);
512 ahp
->work_icv
= NULL
;
513 crypto_free_hash(ahp
->tfm
);
518 static struct xfrm_type ah6_type
=
520 .description
= "AH6",
521 .owner
= THIS_MODULE
,
523 .flags
= XFRM_TYPE_REPLAY_PROT
,
524 .init_state
= ah6_init_state
,
525 .destructor
= ah6_destroy
,
527 .output
= ah6_output
,
528 .hdr_offset
= xfrm6_find_1stfragopt
,
531 static struct inet6_protocol ah6_protocol
= {
532 .handler
= xfrm6_rcv
,
533 .err_handler
= ah6_err
,
534 .flags
= INET6_PROTO_NOPOLICY
,
537 static int __init
ah6_init(void)
539 if (xfrm_register_type(&ah6_type
, AF_INET6
) < 0) {
540 printk(KERN_INFO
"ipv6 ah init: can't add xfrm type\n");
544 if (inet6_add_protocol(&ah6_protocol
, IPPROTO_AH
) < 0) {
545 printk(KERN_INFO
"ipv6 ah init: can't add protocol\n");
546 xfrm_unregister_type(&ah6_type
, AF_INET6
);
553 static void __exit
ah6_fini(void)
555 if (inet6_del_protocol(&ah6_protocol
, IPPROTO_AH
) < 0)
556 printk(KERN_INFO
"ipv6 ah close: can't remove protocol\n");
558 if (xfrm_unregister_type(&ah6_type
, AF_INET6
) < 0)
559 printk(KERN_INFO
"ipv6 ah close: can't remove xfrm type\n");
563 module_init(ah6_init
);
564 module_exit(ah6_fini
);
566 MODULE_LICENSE("GPL");
567 MODULE_ALIAS_XFRM_TYPE(AF_INET6
, XFRM_PROTO_AH
);