]>
git.saurik.com Git - apple/xnu.git/blob - bsd/netinet6/ah_input.c
2 * Copyright (c) 2008-2013 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
29 /* $FreeBSD: src/sys/netinet6/ah_input.c,v 1.1.2.6 2002/04/28 05:40:26 suz Exp $ */
30 /* $KAME: ah_input.c,v 1.67 2002/01/07 11:39:56 kjc Exp $ */
33 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
34 * All rights reserved.
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
39 * 1. Redistributions of source code must retain the above copyright
40 * notice, this list of conditions and the following disclaimer.
41 * 2. Redistributions in binary form must reproduce the above copyright
42 * notice, this list of conditions and the following disclaimer in the
43 * documentation and/or other materials provided with the distribution.
44 * 3. Neither the name of the project nor the names of its contributors
45 * may be used to endorse or promote products derived from this software
46 * without specific prior written permission.
48 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
49 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
50 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
51 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
52 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
53 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
54 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
56 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
62 * RFC1826/2402 authentication header.
65 #include <sys/param.h>
66 #include <sys/systm.h>
67 #include <sys/malloc.h>
69 #include <sys/mcache.h>
70 #include <sys/domain.h>
71 #include <sys/protosw.h>
72 #include <sys/socket.h>
73 #include <sys/errno.h>
75 #include <sys/kernel.h>
76 #include <sys/syslog.h>
79 #include <net/if_ipsec.h>
80 #include <net/route.h>
81 #include <kern/cpu_number.h>
82 #include <kern/locks.h>
84 #include <netinet/in.h>
85 #include <netinet/in_systm.h>
86 #include <netinet/in_var.h>
87 #include <netinet/ip.h>
88 #include <netinet/ip_var.h>
89 #include <netinet/ip_ecn.h>
90 #include <netinet/in_pcb.h>
92 #include <netinet6/ip6_ecn.h>
96 #include <netinet/ip6.h>
97 #include <netinet6/ip6_var.h>
98 #include <netinet6/in6_pcb.h>
99 #include <netinet/icmp6.h>
100 #include <netinet6/ip6protosw.h>
103 #include <netinet6/ipsec.h>
105 #include <netinet6/ipsec6.h>
107 #include <netinet6/ah.h>
109 #include <netinet6/ah6.h>
111 #include <netkey/key.h>
112 #include <netkey/keydb.h>
114 #include <netkey/key_debug.h>
116 #define KEYDEBUG(lev,arg)
119 #include <net/kpi_protocol.h>
120 #include <netinet/kpi_ipfilter_var.h>
121 #include <mach/sdt.h>
123 #include <net/net_osdep.h>
125 #define IPLEN_FLIPPED
129 ah4_input(struct mbuf
*m
, int off
)
134 const struct ah_algorithm
*algo
;
138 struct secasvar
*sav
= NULL
;
144 if (m
->m_len
< off
+ sizeof(struct newah
)) {
145 m
= m_pullup(m
, off
+ sizeof(struct newah
));
147 ipseclog((LOG_DEBUG
, "IPv4 AH input: can't pullup;"
148 "dropping the packet for simplicity\n"));
149 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
154 /* Expect 32-bit aligned data pointer on strict-align platforms */
155 MBUF_STRICT_DATA_ALIGNMENT_CHECK_32(m
);
157 ip
= mtod(m
, struct ip
*);
158 ah
= (struct ah
*)(void *)(((caddr_t
)ip
) + off
);
161 hlen
= IP_VHL_HL(ip
->ip_vhl
) << 2;
163 hlen
= ip
->ip_hl
<< 2;
166 /* find the sassoc. */
169 if ((sav
= key_allocsa(AF_INET
,
170 (caddr_t
)&ip
->ip_src
, (caddr_t
)&ip
->ip_dst
,
171 IPPROTO_AH
, spi
)) == 0) {
172 ipseclog((LOG_WARNING
,
173 "IPv4 AH input: no key association found for spi %u\n",
174 (u_int32_t
)ntohl(spi
)));
175 IPSEC_STAT_INCREMENT(ipsecstat
.in_nosa
);
178 KEYDEBUG(KEYDEBUG_IPSEC_STAMP
,
179 printf("DP ah4_input called to allocate SA:0x%llx\n",
180 (uint64_t)VM_KERNEL_ADDRPERM(sav
)));
181 if (sav
->state
!= SADB_SASTATE_MATURE
182 && sav
->state
!= SADB_SASTATE_DYING
) {
184 "IPv4 AH input: non-mature/dying SA found for spi %u\n",
185 (u_int32_t
)ntohl(spi
)));
186 IPSEC_STAT_INCREMENT(ipsecstat
.in_badspi
);
190 algo
= ah_algorithm_lookup(sav
->alg_auth
);
192 ipseclog((LOG_DEBUG
, "IPv4 AH input: "
193 "unsupported authentication algorithm for spi %u\n",
194 (u_int32_t
)ntohl(spi
)));
195 IPSEC_STAT_INCREMENT(ipsecstat
.in_badspi
);
199 siz
= (*algo
->sumsiz
)(sav
);
200 siz1
= ((siz
+ 3) & ~(4 - 1));
203 * sanity checks for header, 1.
208 sizoff
= (sav
->flags
& SADB_X_EXT_OLD
) ? 0 : 4;
211 * Here, we do not do "siz1 == siz". This is because the way
212 * RFC240[34] section 2 is written. They do not require truncation
214 * For example, Microsoft IPsec stack attaches 160 bits of
215 * authentication data for both hmac-md5 and hmac-sha1. For hmac-sha1,
216 * 32 bits of padding is attached.
218 * There are two downsides to this specification.
219 * They have no real harm, however, they leave us fuzzy feeling.
220 * - if we attach more than 96 bits of authentication data onto AH,
221 * we will never notice about possible modification by rogue
222 * intermediate nodes.
223 * Since extra bits in AH checksum is never used, this constitutes
224 * no real issue, however, it is wacky.
225 * - even if the peer attaches big authentication data, we will never
226 * notice the difference, since longer authentication data will just
229 * We may need some clarification in the spec.
232 ipseclog((LOG_NOTICE
, "sum length too short in IPv4 AH input "
233 "(%lu, should be at least %lu): %s\n",
234 (u_int32_t
)siz1
, (u_int32_t
)siz
,
235 ipsec4_logpacketstr(ip
, spi
)));
236 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
239 if ((ah
->ah_len
<< 2) - sizoff
!= siz1
) {
240 ipseclog((LOG_NOTICE
, "sum length mismatch in IPv4 AH input "
241 "(%d should be %lu): %s\n",
242 (ah
->ah_len
<< 2) - sizoff
, (u_int32_t
)siz1
,
243 ipsec4_logpacketstr(ip
, spi
)));
244 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
248 if (m
->m_len
< off
+ sizeof(struct ah
) + sizoff
+ siz1
) {
249 m
= m_pullup(m
, off
+ sizeof(struct ah
) + sizoff
+ siz1
);
251 ipseclog((LOG_DEBUG
, "IPv4 AH input: can't pullup\n"));
252 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
255 /* Expect 32-bit aligned data ptr on strict-align platforms */
256 MBUF_STRICT_DATA_ALIGNMENT_CHECK_32(m
);
258 ip
= mtod(m
, struct ip
*);
259 ah
= (struct ah
*)(void *)(((caddr_t
)ip
) + off
);
264 * check for sequence number.
266 if ((sav
->flags
& SADB_X_EXT_OLD
) == 0 && sav
->replay
) {
267 if (ipsec_chkreplay(ntohl(((struct newah
*)ah
)->ah_seq
), sav
))
270 IPSEC_STAT_INCREMENT(ipsecstat
.in_ahreplay
);
271 ipseclog((LOG_WARNING
,
272 "replay packet in IPv4 AH input: %s %s\n",
273 ipsec4_logpacketstr(ip
, spi
), ipsec_logsastr(sav
)));
279 * alright, it seems sane. now we are going to check the
280 * cryptographic checksum.
282 cksum
= _MALLOC(siz1
, M_TEMP
, M_NOWAIT
);
284 ipseclog((LOG_DEBUG
, "IPv4 AH input: "
285 "couldn't alloc temporary region for cksum\n"));
286 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
291 * some of IP header fields are flipped to the host endian.
292 * convert them back to network endian. VERY stupid.
294 ip
->ip_len
= htons(ip
->ip_len
+ hlen
);
295 ip
->ip_off
= htons(ip
->ip_off
);
296 if (ah4_calccksum(m
, (caddr_t
)cksum
, siz1
, algo
, sav
)) {
298 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
301 IPSEC_STAT_INCREMENT(ipsecstat
.in_ahhist
[sav
->alg_auth
]);
305 ip
->ip_len
= ntohs(ip
->ip_len
) - hlen
;
306 ip
->ip_off
= ntohs(ip
->ip_off
);
309 caddr_t sumpos
= NULL
;
311 if (sav
->flags
& SADB_X_EXT_OLD
) {
313 sumpos
= (caddr_t
)(ah
+ 1);
316 sumpos
= (caddr_t
)(((struct newah
*)ah
) + 1);
319 if (bcmp(sumpos
, cksum
, siz
) != 0) {
320 ipseclog((LOG_WARNING
,
321 "checksum mismatch in IPv4 AH input: %s %s\n",
322 ipsec4_logpacketstr(ip
, spi
), ipsec_logsastr(sav
)));
324 IPSEC_STAT_INCREMENT(ipsecstat
.in_ahauthfail
);
331 m
->m_flags
|= M_AUTHIPHDR
;
332 m
->m_flags
|= M_AUTHIPDGM
;
336 * looks okey, but we need more sanity check.
337 * XXX should elaborate.
339 if (ah
->ah_nxt
== IPPROTO_IPIP
|| ah
->ah_nxt
== IPPROTO_IP
) {
343 sizoff
= (sav
->flags
& SADB_X_EXT_OLD
) ? 0 : 4;
345 if (m
->m_len
< off
+ sizeof(struct ah
) + sizoff
+ siz1
+ hlen
) {
346 m
= m_pullup(m
, off
+ sizeof(struct ah
)
347 + sizoff
+ siz1
+ hlen
);
350 "IPv4 AH input: can't pullup\n"));
351 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
356 nip
= (struct ip
*)((u_char
*)(ah
+ 1) + sizoff
+ siz1
);
357 if (nip
->ip_src
.s_addr
!= ip
->ip_src
.s_addr
358 || nip
->ip_dst
.s_addr
!= ip
->ip_dst
.s_addr
) {
359 m
->m_flags
&= ~M_AUTHIPHDR
;
360 m
->m_flags
&= ~M_AUTHIPDGM
;
364 else if (ah
->ah_nxt
== IPPROTO_IPV6
) {
365 m
->m_flags
&= ~M_AUTHIPHDR
;
366 m
->m_flags
&= ~M_AUTHIPDGM
;
371 if (m
->m_flags
& M_AUTHIPHDR
372 && m
->m_flags
& M_AUTHIPDGM
) {
375 "IPv4 AH input: authentication succeess\n"));
377 IPSEC_STAT_INCREMENT(ipsecstat
.in_ahauthsucc
);
379 ipseclog((LOG_WARNING
,
380 "authentication failed in IPv4 AH input: %s %s\n",
381 ipsec4_logpacketstr(ip
, spi
), ipsec_logsastr(sav
)));
382 IPSEC_STAT_INCREMENT(ipsecstat
.in_ahauthfail
);
387 * update sequence number.
389 if ((sav
->flags
& SADB_X_EXT_OLD
) == 0 && sav
->replay
) {
390 if (ipsec_updatereplay(ntohl(((struct newah
*)ah
)->ah_seq
), sav
)) {
391 IPSEC_STAT_INCREMENT(ipsecstat
.in_ahreplay
);
396 /* was it transmitted over the IPsec tunnel SA? */
397 if (sav
->flags
& SADB_X_EXT_OLD
) {
399 stripsiz
= sizeof(struct ah
) + siz1
;
402 stripsiz
= sizeof(struct newah
) + siz1
;
404 if (ipsec4_tunnel_validate(m
, off
+ stripsiz
, nxt
, sav
, &ifamily
)) {
406 struct sockaddr_storage addr
;
409 * strip off all the headers that precedes AH.
410 * IP xx AH IP' payload -> IP' payload
412 * XXX more sanity checks
413 * XXX relationship with gif?
417 if (ifamily
== AF_INET6
) {
418 ipseclog((LOG_NOTICE
, "ipsec tunnel protocol mismatch "
419 "in IPv4 AH input: %s\n", ipsec_logsastr(sav
)));
423 m_adj(m
, off
+ stripsiz
);
424 if (m
->m_len
< sizeof(*ip
)) {
425 m
= m_pullup(m
, sizeof(*ip
));
427 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
431 ip
= mtod(m
, struct ip
*);
432 /* ECN consideration. */
433 if (ip_ecn_egress(ip4_ipsec_ecn
, &tos
, &ip
->ip_tos
) == 0) {
434 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
437 if (!key_checktunnelsanity(sav
, AF_INET
,
438 (caddr_t
)&ip
->ip_src
, (caddr_t
)&ip
->ip_dst
)) {
439 ipseclog((LOG_NOTICE
, "ipsec tunnel address mismatch "
440 "in IPv4 AH input: %s %s\n",
441 ipsec4_logpacketstr(ip
, spi
), ipsec_logsastr(sav
)));
442 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
448 * Should the inner packet be considered authentic?
449 * My current answer is: NO.
451 * host1 -- gw1 === gw2 -- host2
452 * In this case, gw2 can trust the authenticity of the
453 * outer packet, but NOT inner. Packet may be altered
454 * between host1 and gw1.
456 * host1 -- gw1 === host2
457 * This case falls into the same scenario as above.
460 * This case is the only case when we may be able to leave
461 * M_AUTHIPHDR and M_AUTHIPDGM set.
462 * However, if host1 is wrongly configured, and allows
463 * attacker to inject some packet with src=host1 and
464 * dst=host2, you are in risk.
466 m
->m_flags
&= ~M_AUTHIPHDR
;
467 m
->m_flags
&= ~M_AUTHIPDGM
;
470 key_sa_recordxfer(sav
, m
);
471 if (ipsec_addhist(m
, IPPROTO_AH
, spi
) != 0 ||
472 ipsec_addhist(m
, IPPROTO_IPV4
, 0) != 0) {
473 IPSEC_STAT_INCREMENT(ipsecstat
.in_nomem
);
477 if (ip_doscopedroute
) {
478 struct sockaddr_in
*ipaddr
;
480 bzero(&addr
, sizeof(addr
));
481 ipaddr
= (__typeof__(ipaddr
))&addr
;
482 ipaddr
->sin_family
= AF_INET
;
483 ipaddr
->sin_len
= sizeof(*ipaddr
);
484 ipaddr
->sin_addr
= ip
->ip_dst
;
486 // update the receiving interface address based on the inner address
487 ifa
= ifa_ifwithaddr((struct sockaddr
*)&addr
);
489 m
->m_pkthdr
.rcvif
= ifa
->ifa_ifp
;
494 // Input via IPSec interface
495 if (sav
->sah
->ipsec_if
!= NULL
) {
496 if (ipsec_inject_inbound_packet(sav
->sah
->ipsec_if
, m
) == 0) {
504 if (proto_input(PF_INET
, m
) != 0)
512 ip
= mtod(m
, struct ip
*);
514 * We do deep-copy since KAME requires that
515 * the packet is placed in a single external mbuf.
517 ovbcopy((caddr_t
)ip
, (caddr_t
)(((u_char
*)ip
) + stripsiz
), off
);
518 m
->m_data
+= stripsiz
;
519 m
->m_len
-= stripsiz
;
520 m
->m_pkthdr
.len
-= stripsiz
;
522 if (m
->m_len
< sizeof(*ip
)) {
523 m
= m_pullup(m
, sizeof(*ip
));
525 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
529 ip
= mtod(m
, struct ip
*);
531 ip
->ip_len
= ip
->ip_len
- stripsiz
;
533 ip
->ip_len
= htons(ntohs(ip
->ip_len
) - stripsiz
);
536 /* forget about IP hdr checksum, the check has already been passed */
538 key_sa_recordxfer(sav
, m
);
539 if (ipsec_addhist(m
, IPPROTO_AH
, spi
) != 0) {
540 IPSEC_STAT_INCREMENT(ipsecstat
.in_nomem
);
544 DTRACE_IP6(receive
, struct mbuf
*, m
, struct inpcb
*, NULL
,
545 struct ip
*, ip
, struct ifnet
*, m
->m_pkthdr
.rcvif
,
546 struct ip
*, ip
, struct ip6_hdr
*, NULL
);
548 if (nxt
!= IPPROTO_DONE
) {
549 // Input via IPSec interface
550 if (sav
->sah
->ipsec_if
!= NULL
) {
551 ip
->ip_len
= htons(ip
->ip_len
+ hlen
);
552 ip
->ip_off
= htons(ip
->ip_off
);
554 ip
->ip_sum
= ip_cksum_hdr_in(m
, hlen
);
555 if (ipsec_inject_inbound_packet(sav
->sah
->ipsec_if
, m
) == 0) {
563 if ((ip_protox
[nxt
]->pr_flags
& PR_LASTHDR
) != 0 &&
564 ipsec4_in_reject(m
, NULL
)) {
565 IPSEC_STAT_INCREMENT(ipsecstat
.in_polvio
);
568 ip_proto_dispatch_in(m
, off
, nxt
, 0);
575 KEYDEBUG(KEYDEBUG_IPSEC_STAMP
,
576 printf("DP ah4_input call free SA:0x%llx\n",
577 (uint64_t)VM_KERNEL_ADDRPERM(sav
)));
578 key_freesav(sav
, KEY_SADB_UNLOCKED
);
580 IPSEC_STAT_INCREMENT(ipsecstat
.in_success
);
585 KEYDEBUG(KEYDEBUG_IPSEC_STAMP
,
586 printf("DP ah4_input call free SA:0x%llx\n",
587 (uint64_t)VM_KERNEL_ADDRPERM(sav
)));
588 key_freesav(sav
, KEY_SADB_UNLOCKED
);
598 ah6_input(struct mbuf
**mp
, int *offp
, int proto
)
600 #pragma unused(proto)
601 struct mbuf
*m
= *mp
;
606 const struct ah_algorithm
*algo
;
610 struct secasvar
*sav
= NULL
;
615 IP6_EXTHDR_CHECK(m
, off
, sizeof(struct ah
), {return IPPROTO_DONE
;});
616 ah
= (struct ah
*)(void *)(mtod(m
, caddr_t
) + off
);
617 /* Expect 32-bit aligned data pointer on strict-align platforms */
618 MBUF_STRICT_DATA_ALIGNMENT_CHECK_32(m
);
620 ip6
= mtod(m
, struct ip6_hdr
*);
623 /* find the sassoc. */
626 if (ntohs(ip6
->ip6_plen
) == 0) {
627 ipseclog((LOG_ERR
, "IPv6 AH input: "
628 "AH with IPv6 jumbogram is not supported.\n"));
629 IPSEC_STAT_INCREMENT(ipsec6stat
.in_inval
);
633 if ((sav
= key_allocsa(AF_INET6
,
634 (caddr_t
)&ip6
->ip6_src
, (caddr_t
)&ip6
->ip6_dst
,
635 IPPROTO_AH
, spi
)) == 0) {
636 ipseclog((LOG_WARNING
,
637 "IPv6 AH input: no key association found for spi %u\n",
638 (u_int32_t
)ntohl(spi
)));
639 IPSEC_STAT_INCREMENT(ipsec6stat
.in_nosa
);
642 KEYDEBUG(KEYDEBUG_IPSEC_STAMP
,
643 printf("DP ah6_input called to allocate SA:0x%llx\n",
644 (uint64_t)VM_KERNEL_ADDRPERM(sav
)));
645 if (sav
->state
!= SADB_SASTATE_MATURE
646 && sav
->state
!= SADB_SASTATE_DYING
) {
648 "IPv6 AH input: non-mature/dying SA found for spi %u; ",
649 (u_int32_t
)ntohl(spi
)));
650 IPSEC_STAT_INCREMENT(ipsec6stat
.in_badspi
);
654 algo
= ah_algorithm_lookup(sav
->alg_auth
);
656 ipseclog((LOG_DEBUG
, "IPv6 AH input: "
657 "unsupported authentication algorithm for spi %u\n",
658 (u_int32_t
)ntohl(spi
)));
659 IPSEC_STAT_INCREMENT(ipsec6stat
.in_badspi
);
663 siz
= (*algo
->sumsiz
)(sav
);
664 siz1
= ((siz
+ 3) & ~(4 - 1));
667 * sanity checks for header, 1.
672 sizoff
= (sav
->flags
& SADB_X_EXT_OLD
) ? 0 : 4;
675 * Here, we do not do "siz1 == siz". See ah4_input() for complete
679 ipseclog((LOG_NOTICE
, "sum length too short in IPv6 AH input "
680 "(%lu, should be at least %lu): %s\n",
681 (u_int32_t
)siz1
, (u_int32_t
)siz
,
682 ipsec6_logpacketstr(ip6
, spi
)));
683 IPSEC_STAT_INCREMENT(ipsec6stat
.in_inval
);
686 if ((ah
->ah_len
<< 2) - sizoff
!= siz1
) {
687 ipseclog((LOG_NOTICE
, "sum length mismatch in IPv6 AH input "
688 "(%d should be %lu): %s\n",
689 (ah
->ah_len
<< 2) - sizoff
, (u_int32_t
)siz1
,
690 ipsec6_logpacketstr(ip6
, spi
)));
691 IPSEC_STAT_INCREMENT(ipsec6stat
.in_inval
);
694 IP6_EXTHDR_CHECK(m
, off
, sizeof(struct ah
) + sizoff
+ siz1
,
695 {return IPPROTO_DONE
;});
699 * check for sequence number.
701 if ((sav
->flags
& SADB_X_EXT_OLD
) == 0 && sav
->replay
) {
702 if (ipsec_chkreplay(ntohl(((struct newah
*)ah
)->ah_seq
), sav
))
705 IPSEC_STAT_INCREMENT(ipsec6stat
.in_ahreplay
);
706 ipseclog((LOG_WARNING
,
707 "replay packet in IPv6 AH input: %s %s\n",
708 ipsec6_logpacketstr(ip6
, spi
),
709 ipsec_logsastr(sav
)));
715 * alright, it seems sane. now we are going to check the
716 * cryptographic checksum.
718 cksum
= _MALLOC(siz1
, M_TEMP
, M_NOWAIT
);
720 ipseclog((LOG_DEBUG
, "IPv6 AH input: "
721 "couldn't alloc temporary region for cksum\n"));
722 IPSEC_STAT_INCREMENT(ipsec6stat
.in_inval
);
726 if (ah6_calccksum(m
, (caddr_t
)cksum
, siz1
, algo
, sav
)) {
728 IPSEC_STAT_INCREMENT(ipsec6stat
.in_inval
);
731 IPSEC_STAT_INCREMENT(ipsec6stat
.in_ahhist
[sav
->alg_auth
]);
734 caddr_t sumpos
= NULL
;
736 if (sav
->flags
& SADB_X_EXT_OLD
) {
738 sumpos
= (caddr_t
)(ah
+ 1);
741 sumpos
= (caddr_t
)(((struct newah
*)ah
) + 1);
744 if (bcmp(sumpos
, cksum
, siz
) != 0) {
745 ipseclog((LOG_WARNING
,
746 "checksum mismatch in IPv6 AH input: %s %s\n",
747 ipsec6_logpacketstr(ip6
, spi
), ipsec_logsastr(sav
)));
749 IPSEC_STAT_INCREMENT(ipsec6stat
.in_ahauthfail
);
756 m
->m_flags
|= M_AUTHIPHDR
;
757 m
->m_flags
|= M_AUTHIPDGM
;
761 * looks okey, but we need more sanity check.
762 * XXX should elaborate.
764 if (ah
->ah_nxt
== IPPROTO_IPV6
) {
765 struct ip6_hdr
*nip6
;
768 sizoff
= (sav
->flags
& SADB_X_EXT_OLD
) ? 0 : 4;
770 IP6_EXTHDR_CHECK(m
, off
, sizeof(struct ah
) + sizoff
+ siz1
771 + sizeof(struct ip6_hdr
),
772 {return IPPROTO_DONE
;});
774 nip6
= (struct ip6_hdr
*)((u_char
*)(ah
+ 1) + sizoff
+ siz1
);
775 if (!IN6_ARE_ADDR_EQUAL(&nip6
->ip6_src
, &ip6
->ip6_src
)
776 || !IN6_ARE_ADDR_EQUAL(&nip6
->ip6_dst
, &ip6
->ip6_dst
)) {
777 m
->m_flags
&= ~M_AUTHIPHDR
;
778 m
->m_flags
&= ~M_AUTHIPDGM
;
780 } else if (ah
->ah_nxt
== IPPROTO_IPIP
) {
781 m
->m_flags
&= ~M_AUTHIPHDR
;
782 m
->m_flags
&= ~M_AUTHIPDGM
;
783 } else if (ah
->ah_nxt
== IPPROTO_IP
) {
784 m
->m_flags
&= ~M_AUTHIPHDR
;
785 m
->m_flags
&= ~M_AUTHIPDGM
;
789 if (m
->m_flags
& M_AUTHIPHDR
790 && m
->m_flags
& M_AUTHIPDGM
) {
793 "IPv6 AH input: authentication succeess\n"));
795 IPSEC_STAT_INCREMENT(ipsec6stat
.in_ahauthsucc
);
797 ipseclog((LOG_WARNING
,
798 "authentication failed in IPv6 AH input: %s %s\n",
799 ipsec6_logpacketstr(ip6
, spi
), ipsec_logsastr(sav
)));
800 IPSEC_STAT_INCREMENT(ipsec6stat
.in_ahauthfail
);
805 * update sequence number.
807 if ((sav
->flags
& SADB_X_EXT_OLD
) == 0 && sav
->replay
) {
808 if (ipsec_updatereplay(ntohl(((struct newah
*)ah
)->ah_seq
), sav
)) {
809 IPSEC_STAT_INCREMENT(ipsec6stat
.in_ahreplay
);
814 /* was it transmitted over the IPsec tunnel SA? */
815 if (sav
->flags
& SADB_X_EXT_OLD
) {
817 stripsiz
= sizeof(struct ah
) + siz1
;
820 stripsiz
= sizeof(struct newah
) + siz1
;
822 if (ipsec6_tunnel_validate(m
, off
+ stripsiz
, nxt
, sav
, &ifamily
)) {
824 struct sockaddr_storage addr
;
827 * strip off all the headers that precedes AH.
828 * IP6 xx AH IP6' payload -> IP6' payload
830 * XXX more sanity checks
831 * XXX relationship with gif?
833 u_int32_t flowinfo
; /*net endian*/
835 if (ifamily
== AF_INET
) {
836 ipseclog((LOG_NOTICE
, "ipsec tunnel protocol mismatch "
837 "in IPv6 AH input: %s\n", ipsec_logsastr(sav
)));
841 flowinfo
= ip6
->ip6_flow
;
842 m_adj(m
, off
+ stripsiz
);
843 if (m
->m_len
< sizeof(*ip6
)) {
845 * m_pullup is prohibited in KAME IPv6 input processing
846 * but there's no other way!
848 m
= m_pullup(m
, sizeof(*ip6
));
850 IPSEC_STAT_INCREMENT(ipsec6stat
.in_inval
);
854 ip6
= mtod(m
, struct ip6_hdr
*);
855 /* ECN consideration. */
856 if (ip6_ecn_egress(ip6_ipsec_ecn
, &flowinfo
, &ip6
->ip6_flow
) == 0) {
857 IPSEC_STAT_INCREMENT(ipsec6stat
.in_inval
);
860 if (!key_checktunnelsanity(sav
, AF_INET6
,
861 (caddr_t
)&ip6
->ip6_src
, (caddr_t
)&ip6
->ip6_dst
)) {
862 ipseclog((LOG_NOTICE
, "ipsec tunnel address mismatch "
863 "in IPv6 AH input: %s %s\n",
864 ipsec6_logpacketstr(ip6
, spi
),
865 ipsec_logsastr(sav
)));
866 IPSEC_STAT_INCREMENT(ipsec6stat
.in_inval
);
872 * should the inner packet be considered authentic?
873 * see comment in ah4_input().
875 m
->m_flags
&= ~M_AUTHIPHDR
;
876 m
->m_flags
&= ~M_AUTHIPDGM
;
879 key_sa_recordxfer(sav
, m
);
880 if (ipsec_addhist(m
, IPPROTO_AH
, spi
) != 0 ||
881 ipsec_addhist(m
, IPPROTO_IPV6
, 0) != 0) {
882 IPSEC_STAT_INCREMENT(ipsec6stat
.in_nomem
);
886 if (ip6_doscopedroute
) {
887 struct sockaddr_in6
*ip6addr
;
889 bzero(&addr
, sizeof(addr
));
890 ip6addr
= (__typeof__(ip6addr
))&addr
;
891 ip6addr
->sin6_family
= AF_INET6
;
892 ip6addr
->sin6_len
= sizeof(*ip6addr
);
893 ip6addr
->sin6_addr
= ip6
->ip6_dst
;
895 // update the receiving interface address based on the inner address
896 ifa
= ifa_ifwithaddr((struct sockaddr
*)&addr
);
898 m
->m_pkthdr
.rcvif
= ifa
->ifa_ifp
;
903 // Input via IPSec interface
904 if (sav
->sah
->ipsec_if
!= NULL
) {
905 if (ipsec_inject_inbound_packet(sav
->sah
->ipsec_if
, m
) == 0) {
914 if (proto_input(PF_INET6
, m
) != 0)
924 * Copy the value of the next header field of AH to the
925 * next header field of the previous header.
926 * This is necessary because AH will be stripped off below.
928 prvnxtp
= ip6_get_prevhdr(m
, off
); /* XXX */
931 ip6
= mtod(m
, struct ip6_hdr
*);
933 * We do deep-copy since KAME requires that
934 * the packet is placed in a single mbuf.
936 ovbcopy((caddr_t
)ip6
, ((caddr_t
)ip6
) + stripsiz
, off
);
937 m
->m_data
+= stripsiz
;
938 m
->m_len
-= stripsiz
;
939 m
->m_pkthdr
.len
-= stripsiz
;
940 ip6
= mtod(m
, struct ip6_hdr
*);
942 ip6
->ip6_plen
= htons(ntohs(ip6
->ip6_plen
) - stripsiz
);
944 key_sa_recordxfer(sav
, m
);
945 if (ipsec_addhist(m
, IPPROTO_AH
, spi
) != 0) {
946 IPSEC_STAT_INCREMENT(ipsec6stat
.in_nomem
);
950 // Input via IPSec interface
951 if (sav
->sah
->ipsec_if
!= NULL
) {
952 if (ipsec_inject_inbound_packet(sav
->sah
->ipsec_if
, m
) == 0) {
966 KEYDEBUG(KEYDEBUG_IPSEC_STAMP
,
967 printf("DP ah6_input call free SA:0x%llx\n",
968 (uint64_t)VM_KERNEL_ADDRPERM(sav
)));
969 key_freesav(sav
, KEY_SADB_UNLOCKED
);
971 IPSEC_STAT_INCREMENT(ipsec6stat
.in_success
);
976 KEYDEBUG(KEYDEBUG_IPSEC_STAMP
,
977 printf("DP ah6_input call free SA:0x%llx\n",
978 (uint64_t)VM_KERNEL_ADDRPERM(sav
)));
979 key_freesav(sav
, KEY_SADB_UNLOCKED
);
987 ah6_ctlinput(cmd
, sa
, d
)
992 const struct newah
*ahp
;
994 struct secasvar
*sav
;
997 struct ip6ctlparam
*ip6cp
= NULL
;
999 struct sockaddr_in6
*sa6_src
, *sa6_dst
;
1001 if (sa
->sa_family
!= AF_INET6
||
1002 sa
->sa_len
!= sizeof(struct sockaddr_in6
))
1004 if ((unsigned)cmd
>= PRC_NCMDS
)
1007 /* if the parameter is from icmp6, decode it. */
1009 ip6cp
= (struct ip6ctlparam
*)d
;
1011 ip6
= ip6cp
->ip6c_ip6
;
1012 off
= ip6cp
->ip6c_off
;
1020 * XXX: We assume that when ip6 is non NULL,
1021 * M and OFF are valid.
1024 /* check if we can safely examine src and dst ports */
1025 if (m
->m_pkthdr
.len
< off
+ sizeof(ah
))
1028 if (m
->m_len
< off
+ sizeof(ah
)) {
1030 * this should be rare case,
1031 * so we compromise on this copy...
1033 m_copydata(m
, off
, sizeof(ah
), (caddr_t
)&ah
);
1036 ahp
= (struct newah
*)(void *)(mtod(m
, caddr_t
) + off
);
1038 if (cmd
== PRC_MSGSIZE
) {
1042 * Check to see if we have a valid SA corresponding to
1043 * the address in the ICMP message payload.
1045 sa6_src
= ip6cp
->ip6c_src
;
1046 sa6_dst
= (struct sockaddr_in6
*)(void *)sa
;
1047 sav
= key_allocsa(AF_INET6
,
1048 (caddr_t
)&sa6_src
->sin6_addr
,
1049 (caddr_t
)&sa6_dst
->sin6_addr
,
1050 IPPROTO_AH
, ahp
->ah_spi
);
1052 if (sav
->state
== SADB_SASTATE_MATURE
||
1053 sav
->state
== SADB_SASTATE_DYING
)
1055 key_freesav(sav
, KEY_SADB_UNLOCKED
);
1058 /* XXX Further validation? */
1061 * Depending on the value of "valid" and routing table
1062 * size (mtudisc_{hi,lo}wat), we will:
1063 * - recalcurate the new MTU and create the
1064 * corresponding routing entry, or
1065 * - ignore the MTU change notification.
1067 icmp6_mtudisc_update((struct ip6ctlparam
*)d
, valid
);
1070 /* we normally notify single pcb here */
1072 /* we normally notify any pcb here */