2 * Copyright (c) 2008-2011 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/esp_input.c,v 1.1.2.3 2001/07/03 11:01:50 ume Exp $ */
30 /* $KAME: esp_input.c,v 1.55 2001/03/23 08:08:47 itojun 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 * RFC1827/2406 Encapsulated Security Payload.
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/route.h>
80 #include <kern/cpu_number.h>
81 #include <kern/locks.h>
83 #include <netinet/in.h>
84 #include <netinet/in_systm.h>
85 #include <netinet/ip.h>
86 #include <netinet/ip_var.h>
87 #include <netinet/in_var.h>
88 #include <netinet/ip_ecn.h>
89 #include <netinet/in_pcb.h>
90 #include <netinet/udp.h>
92 #include <netinet6/ip6_ecn.h>
96 #include <netinet/ip6.h>
97 #include <netinet6/in6_pcb.h>
98 #include <netinet6/ip6_var.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 <netinet6/esp.h>
113 #include <netinet6/esp6.h>
115 #include <netkey/key.h>
116 #include <netkey/keydb.h>
117 #include <netkey/key_debug.h>
119 #include <net/kpi_protocol.h>
120 #include <netinet/kpi_ipfilter_var.h>
122 #include <net/net_osdep.h>
123 #include <mach/sdt.h>
125 #include <sys/kdebug.h>
126 #define DBG_LAYER_BEG NETDBG_CODE(DBG_NETIPSEC, 1)
127 #define DBG_LAYER_END NETDBG_CODE(DBG_NETIPSEC, 3)
128 #define DBG_FNC_ESPIN NETDBG_CODE(DBG_NETIPSEC, (6 << 8))
129 #define DBG_FNC_DECRYPT NETDBG_CODE(DBG_NETIPSEC, (7 << 8))
130 #define IPLEN_FLIPPED
132 extern lck_mtx_t
*sadb_mutex
;
135 extern struct protosw inetsw
[];
138 (sizeof(struct esp) < sizeof(struct newesp) \
139 ? sizeof(struct newesp) : sizeof(struct esp))
142 esp4_input_strip_UDP_encap (struct mbuf
*m
, int iphlen
)
144 // strip the udp header that's encapsulating ESP
146 size_t stripsiz
= sizeof(struct udphdr
);
148 ip
= mtod(m
, __typeof__(ip
));
149 ovbcopy((caddr_t
)ip
, (caddr_t
)(((u_char
*)ip
) + stripsiz
), iphlen
);
150 m
->m_data
+= stripsiz
;
151 m
->m_len
-= stripsiz
;
152 m
->m_pkthdr
.len
-= stripsiz
;
153 ip
= mtod(m
, __typeof__(ip
));
154 ip
->ip_len
= ip
->ip_len
- stripsiz
;
155 ip
->ip_p
= IPPROTO_ESP
;
169 struct esptail esptail
;
172 struct secasvar
*sav
= NULL
;
175 const struct esp_algorithm
*algo
;
181 KERNEL_DEBUG(DBG_FNC_ESPIN
| DBG_FUNC_START
, 0,0,0,0,0);
182 /* sanity check for alignment. */
183 if (off
% 4 != 0 || m
->m_pkthdr
.len
% 4 != 0) {
184 ipseclog((LOG_ERR
, "IPv4 ESP input: packet alignment problem "
185 "(off=%d, pktlen=%d)\n", off
, m
->m_pkthdr
.len
));
186 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
190 if (m
->m_len
< off
+ ESPMAXLEN
) {
191 m
= m_pullup(m
, off
+ ESPMAXLEN
);
194 "IPv4 ESP input: can't pullup in esp4_input\n"));
195 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
200 /* Expect 32-bit aligned data pointer on strict-align platforms */
201 MBUF_STRICT_DATA_ALIGNMENT_CHECK_32(m
);
203 ip
= mtod(m
, struct ip
*);
204 // expect udp-encap and esp packets only
205 if (ip
->ip_p
!= IPPROTO_ESP
&&
206 !(ip
->ip_p
== IPPROTO_UDP
&& off
>= sizeof(struct udphdr
))) {
208 "IPv4 ESP input: invalid protocol type\n"));
209 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
212 esp
= (struct esp
*)(void *)(((u_int8_t
*)ip
) + off
);
214 hlen
= IP_VHL_HL(ip
->ip_vhl
) << 2;
216 hlen
= ip
->ip_hl
<< 2;
219 /* find the sassoc. */
222 if ((sav
= key_allocsa(AF_INET
,
223 (caddr_t
)&ip
->ip_src
, (caddr_t
)&ip
->ip_dst
,
224 IPPROTO_ESP
, spi
)) == 0) {
225 ipseclog((LOG_WARNING
,
226 "IPv4 ESP input: no key association found for spi %u\n",
227 (u_int32_t
)ntohl(spi
)));
228 IPSEC_STAT_INCREMENT(ipsecstat
.in_nosa
);
231 KEYDEBUG(KEYDEBUG_IPSEC_STAMP
,
232 printf("DP esp4_input called to allocate SA:%p\n", sav
));
233 if (sav
->state
!= SADB_SASTATE_MATURE
234 && sav
->state
!= SADB_SASTATE_DYING
) {
236 "IPv4 ESP input: non-mature/dying SA found for spi %u\n",
237 (u_int32_t
)ntohl(spi
)));
238 IPSEC_STAT_INCREMENT(ipsecstat
.in_badspi
);
241 algo
= esp_algorithm_lookup(sav
->alg_enc
);
243 ipseclog((LOG_DEBUG
, "IPv4 ESP input: "
244 "unsupported encryption algorithm for spi %u\n",
245 (u_int32_t
)ntohl(spi
)));
246 IPSEC_STAT_INCREMENT(ipsecstat
.in_badspi
);
250 /* check if we have proper ivlen information */
253 ipseclog((LOG_ERR
, "inproper ivlen in IPv4 ESP input: %s %s\n",
254 ipsec4_logpacketstr(ip
, spi
), ipsec_logsastr(sav
)));
255 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
259 seq
= ntohl(((struct newesp
*)esp
)->esp_seq
);
260 if (!((sav
->flags
& SADB_X_EXT_OLD
) == 0 && sav
->replay
261 && (sav
->alg_auth
&& sav
->key_auth
)))
264 if (sav
->alg_auth
== SADB_X_AALG_NULL
||
265 sav
->alg_auth
== SADB_AALG_NONE
)
269 * check for sequence number.
271 if (ipsec_chkreplay(seq
, sav
))
274 IPSEC_STAT_INCREMENT(ipsecstat
.in_espreplay
);
275 ipseclog((LOG_WARNING
,
276 "replay packet in IPv4 ESP input: %s %s\n",
277 ipsec4_logpacketstr(ip
, spi
), ipsec_logsastr(sav
)));
283 u_char sum0
[AH_MAXSUMSIZE
] __attribute__((aligned(4)));
284 u_char sum
[AH_MAXSUMSIZE
] __attribute__((aligned(4)));
285 const struct ah_algorithm
*sumalgo
;
288 sumalgo
= ah_algorithm_lookup(sav
->alg_auth
);
291 siz
= (((*sumalgo
->sumsiz
)(sav
) + 3) & ~(4 - 1));
292 if (m
->m_pkthdr
.len
< off
+ ESPMAXLEN
+ siz
) {
293 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
296 if (AH_MAXSUMSIZE
< siz
) {
298 "internal error: AH_MAXSUMSIZE must be larger than %lu\n",
300 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
304 m_copydata(m
, m
->m_pkthdr
.len
- siz
, siz
, (caddr_t
) &sum0
[0]);
306 if (esp_auth(m
, off
, m
->m_pkthdr
.len
- off
- siz
, sav
, sum
)) {
307 ipseclog((LOG_WARNING
, "auth fail in IPv4 ESP input: %s %s\n",
308 ipsec4_logpacketstr(ip
, spi
), ipsec_logsastr(sav
)));
309 IPSEC_STAT_INCREMENT(ipsecstat
.in_espauthfail
);
313 if (bcmp(sum0
, sum
, siz
) != 0) {
314 ipseclog((LOG_WARNING
, "auth fail in IPv4 ESP input: %s %s\n",
315 ipsec4_logpacketstr(ip
, spi
), ipsec_logsastr(sav
)));
316 IPSEC_STAT_INCREMENT(ipsecstat
.in_espauthfail
);
320 /* strip off the authentication data */
322 ip
= mtod(m
, struct ip
*);
324 ip
->ip_len
= ip
->ip_len
- siz
;
326 ip
->ip_len
= htons(ntohs(ip
->ip_len
) - siz
);
328 m
->m_flags
|= M_AUTHIPDGM
;
329 IPSEC_STAT_INCREMENT(ipsecstat
.in_espauthsucc
);
333 * update sequence number.
335 if ((sav
->flags
& SADB_X_EXT_OLD
) == 0 && sav
->replay
) {
336 if (ipsec_updatereplay(seq
, sav
)) {
337 IPSEC_STAT_INCREMENT(ipsecstat
.in_espreplay
);
344 /* process main esp header. */
345 if (sav
->flags
& SADB_X_EXT_OLD
) {
347 esplen
= sizeof(struct esp
);
350 if (sav
->flags
& SADB_X_EXT_DERIV
)
351 esplen
= sizeof(struct esp
);
353 esplen
= sizeof(struct newesp
);
356 if (m
->m_pkthdr
.len
< off
+ esplen
+ ivlen
+ sizeof(esptail
)) {
357 ipseclog((LOG_WARNING
,
358 "IPv4 ESP input: packet too short\n"));
359 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
363 if (m
->m_len
< off
+ esplen
+ ivlen
) {
364 m
= m_pullup(m
, off
+ esplen
+ ivlen
);
367 "IPv4 ESP input: can't pullup in esp4_input\n"));
368 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
374 * pre-compute and cache intermediate key
376 if (esp_schedule(algo
, sav
) != 0) {
377 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
382 * decrypt the packet.
385 panic("internal error: no decrypt function");
386 KERNEL_DEBUG(DBG_FNC_DECRYPT
| DBG_FUNC_START
, 0,0,0,0,0);
387 if ((*algo
->decrypt
)(m
, off
, sav
, algo
, ivlen
)) {
388 /* m is already freed */
390 ipseclog((LOG_ERR
, "decrypt fail in IPv4 ESP input: %s\n",
391 ipsec_logsastr(sav
)));
392 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
393 KERNEL_DEBUG(DBG_FNC_DECRYPT
| DBG_FUNC_END
, 1,0,0,0,0);
396 KERNEL_DEBUG(DBG_FNC_DECRYPT
| DBG_FUNC_END
, 2,0,0,0,0);
397 IPSEC_STAT_INCREMENT(ipsecstat
.in_esphist
[sav
->alg_enc
]);
399 m
->m_flags
|= M_DECRYPTED
;
402 * find the trailer of the ESP.
404 m_copydata(m
, m
->m_pkthdr
.len
- sizeof(esptail
), sizeof(esptail
),
406 nxt
= esptail
.esp_nxt
;
407 taillen
= esptail
.esp_padlen
+ sizeof(esptail
);
409 if (m
->m_pkthdr
.len
< taillen
410 || m
->m_pkthdr
.len
- taillen
< hlen
) { /*?*/
411 ipseclog((LOG_WARNING
,
412 "bad pad length in IPv4 ESP input: %s %s\n",
413 ipsec4_logpacketstr(ip
, spi
), ipsec_logsastr(sav
)));
414 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
418 /* strip off the trailing pad area. */
420 ip
= mtod(m
, struct ip
*);
422 ip
->ip_len
= ip
->ip_len
- taillen
;
424 ip
->ip_len
= htons(ntohs(ip
->ip_len
) - taillen
);
426 if (ip
->ip_p
== IPPROTO_UDP
) {
427 // offset includes the outer ip and udp header lengths.
428 if (m
->m_len
< off
) {
429 m
= m_pullup(m
, off
);
432 "IPv4 ESP input: invalid udp encapsulated ESP packet length \n"));
433 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
438 // check the UDP encap header to detect changes in the source port, and then strip the header
439 off
-= sizeof(struct udphdr
); // off no longer includes the udphdr's size
440 // if peer is behind nat and this is the latest esp packet
441 if ((sav
->flags
& SADB_X_EXT_NATT_DETECTED_PEER
) != 0 &&
442 (sav
->flags
& SADB_X_EXT_OLD
) == 0 &&
443 seq
&& sav
->replay
&&
444 seq
>= sav
->replay
->lastseq
) {
445 struct udphdr
*encap_uh
= (__typeof__(encap_uh
))(void *)((caddr_t
)ip
+ off
);
446 if (encap_uh
->uh_sport
&&
447 ntohs(encap_uh
->uh_sport
) != sav
->remote_ike_port
) {
448 sav
->remote_ike_port
= ntohs(encap_uh
->uh_sport
);
451 ip
= esp4_input_strip_UDP_encap(m
, off
);
452 esp
= (struct esp
*)(void *)(((u_int8_t
*)ip
) + off
);
455 if (sav
->utun_is_keepalive_fn
) {
456 if (sav
->utun_is_keepalive_fn(sav
->utun_pcb
, &m
, nxt
, sav
->flags
, (off
+ esplen
+ ivlen
))) {
458 // not really bad, we just wanna exit
459 IPSEC_STAT_INCREMENT(ipsecstat
.in_success
);
466 /* was it transmitted over the IPsec tunnel SA? */
467 if (ipsec4_tunnel_validate(m
, off
+ esplen
+ ivlen
, nxt
, sav
, &ifamily
)) {
469 struct sockaddr_storage addr
;
472 * strip off all the headers that precedes ESP header.
473 * IP4 xx ESP IP4' payload -> IP4' payload
475 * XXX more sanity checks
476 * XXX relationship with gif?
481 m_adj(m
, off
+ esplen
+ ivlen
);
482 if (ifamily
== AF_INET
) {
483 struct sockaddr_in
*ipaddr
;
485 if (m
->m_len
< sizeof(*ip
)) {
486 m
= m_pullup(m
, sizeof(*ip
));
488 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
492 ip
= mtod(m
, struct ip
*);
493 /* ECN consideration. */
494 ip_ecn_egress(ip4_ipsec_ecn
, &tos
, &ip
->ip_tos
);
495 if (!key_checktunnelsanity(sav
, AF_INET
,
496 (caddr_t
)&ip
->ip_src
, (caddr_t
)&ip
->ip_dst
)) {
497 ipseclog((LOG_ERR
, "ipsec tunnel address mismatch "
498 "in ESP input: %s %s\n",
499 ipsec4_logpacketstr(ip
, spi
), ipsec_logsastr(sav
)));
500 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
504 if (ip_doscopedroute
) {
505 bzero(&addr
, sizeof(addr
));
506 ipaddr
= (__typeof__(ipaddr
))&addr
;
507 ipaddr
->sin_family
= AF_INET
;
508 ipaddr
->sin_len
= sizeof(*ipaddr
);
509 ipaddr
->sin_addr
= ip
->ip_dst
;
512 } else if (ifamily
== AF_INET6
) {
513 struct sockaddr_in6
*ip6addr
;
515 #ifndef PULLDOWN_TEST
517 * m_pullup is prohibited in KAME IPv6 input processing
518 * but there's no other way!
521 /* okay to pullup in m_pulldown style */
523 if (m
->m_len
< sizeof(*ip6
)) {
524 m
= m_pullup(m
, sizeof(*ip6
));
526 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
532 * Expect 32-bit aligned data pointer on strict-align
535 MBUF_STRICT_DATA_ALIGNMENT_CHECK_32(m
);
537 ip6
= mtod(m
, struct ip6_hdr
*);
539 /* ECN consideration. */
540 /* XXX To be fixed later if needed */
541 // ip_ecn_egress(ip4_ipsec_ecn, &tos, &ip->ip_tos);
543 if (!key_checktunnelsanity(sav
, AF_INET6
,
544 (caddr_t
)&ip6
->ip6_src
, (caddr_t
)&ip6
->ip6_dst
)) {
545 ipseclog((LOG_ERR
, "ipsec tunnel address mismatch "
546 "in ESP input: %s %s\n",
547 ipsec6_logpacketstr(ip6
, spi
), ipsec_logsastr(sav
)));
548 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
552 if (ip6_doscopedroute
) {
553 bzero(&addr
, sizeof(addr
));
554 ip6addr
= (__typeof__(ip6addr
))&addr
;
555 ip6addr
->sin6_family
= AF_INET6
;
556 ip6addr
->sin6_len
= sizeof(*ip6addr
);
557 ip6addr
->sin6_addr
= ip6
->ip6_dst
;
561 ipseclog((LOG_ERR
, "ipsec tunnel unsupported address family "
566 key_sa_recordxfer(sav
, m
);
567 if (ipsec_addhist(m
, IPPROTO_ESP
, spi
) != 0 ||
568 ipsec_addhist(m
, IPPROTO_IPV4
, 0) != 0) {
569 IPSEC_STAT_INCREMENT(ipsecstat
.in_nomem
);
573 if (ip_doscopedroute
|| ip6_doscopedroute
) {
574 // update the receiving interface address based on the inner address
575 ifa
= ifa_ifwithaddr((struct sockaddr
*)&addr
);
577 m
->m_pkthdr
.rcvif
= ifa
->ifa_ifp
;
582 /* Clear the csum flags, they can't be valid for the inner headers */
583 m
->m_pkthdr
.csum_flags
= 0;
585 if (sav
->utun_in_fn
) {
586 if (!(sav
->utun_in_fn(sav
->utun_pcb
, &m
, ifamily
== AF_INET
? PF_INET
: PF_INET6
))) {
588 // we just wanna exit since packet has been completely processed
593 if (proto_input(ifamily
== AF_INET
? PF_INET
: PF_INET6
, m
) != 0)
597 KERNEL_DEBUG(DBG_FNC_ESPIN
| DBG_FUNC_END
, 2,0,0,0,0);
600 * strip off ESP header and IV.
601 * even in m_pulldown case, we need to strip off ESP so that
602 * we can always compute checksum for AH correctly.
606 stripsiz
= esplen
+ ivlen
;
608 ip
= mtod(m
, struct ip
*);
609 ovbcopy((caddr_t
)ip
, (caddr_t
)(((u_char
*)ip
) + stripsiz
), off
);
610 m
->m_data
+= stripsiz
;
611 m
->m_len
-= stripsiz
;
612 m
->m_pkthdr
.len
-= stripsiz
;
614 ip
= mtod(m
, struct ip
*);
616 ip
->ip_len
= ip
->ip_len
- stripsiz
;
618 ip
->ip_len
= htons(ntohs(ip
->ip_len
) - stripsiz
);
622 key_sa_recordxfer(sav
, m
);
623 if (ipsec_addhist(m
, IPPROTO_ESP
, spi
) != 0) {
624 IPSEC_STAT_INCREMENT(ipsecstat
.in_nomem
);
629 * Set the csum valid flag, if we authenticated the
630 * packet, the payload shouldn't be corrupt unless
631 * it was corrupted before being signed on the other
634 if (nxt
== IPPROTO_TCP
|| nxt
== IPPROTO_UDP
) {
635 m
->m_pkthdr
.csum_flags
= CSUM_DATA_VALID
| CSUM_PSEUDO_HDR
;
636 m
->m_pkthdr
.csum_data
= 0xFFFF;
639 if (nxt
!= IPPROTO_DONE
) {
640 if ((ip_protox
[nxt
]->pr_flags
& PR_LASTHDR
) != 0 &&
641 ipsec4_in_reject(m
, NULL
)) {
642 IPSEC_STAT_INCREMENT(ipsecstat
.in_polvio
);
645 KERNEL_DEBUG(DBG_FNC_ESPIN
| DBG_FUNC_END
, 3,0,0,0,0);
647 /* translate encapsulated UDP port ? */
648 if ((sav
->flags
& SADB_X_EXT_NATT_MULTIPLEUSERS
) != 0) {
651 if (nxt
!= IPPROTO_UDP
) { /* not UPD packet - drop it */
652 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
656 if (m
->m_len
< off
+ sizeof(struct udphdr
)) {
657 m
= m_pullup(m
, off
+ sizeof(struct udphdr
));
660 "IPv4 ESP input: can't pullup UDP header in esp4_input\n"));
661 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
664 ip
= mtod(m
, struct ip
*);
666 udp
= (struct udphdr
*)(void *)(((u_int8_t
*)ip
) + off
);
668 lck_mtx_lock(sadb_mutex
);
669 if (sav
->natt_encapsulated_src_port
== 0) {
670 sav
->natt_encapsulated_src_port
= udp
->uh_sport
;
671 } else if (sav
->natt_encapsulated_src_port
!= udp
->uh_sport
) { /* something wrong */
672 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
673 lck_mtx_unlock(sadb_mutex
);
676 lck_mtx_unlock(sadb_mutex
);
677 udp
->uh_sport
= htons(sav
->remote_ike_port
);
681 DTRACE_IP6(receive
, struct mbuf
*, m
, struct inpcb
*, NULL
,
682 struct ip
*, ip
, struct ifnet
*, m
->m_pkthdr
.rcvif
,
683 struct ip
*, ip
, struct ip6_hdr
*, NULL
);
685 if (sav
->utun_in_fn
) {
686 if (!(sav
->utun_in_fn(sav
->utun_pcb
, &m
, PF_INET
))) {
688 // we just wanna exit since packet has been completely processed
693 ip_proto_dispatch_in(m
, off
, nxt
, 0);
700 KEYDEBUG(KEYDEBUG_IPSEC_STAMP
,
701 printf("DP esp4_input call free SA:%p\n", sav
));
702 key_freesav(sav
, KEY_SADB_UNLOCKED
);
704 IPSEC_STAT_INCREMENT(ipsecstat
.in_success
);
709 KEYDEBUG(KEYDEBUG_IPSEC_STAMP
,
710 printf("DP esp4_input call free SA:%p\n", sav
));
711 key_freesav(sav
, KEY_SADB_UNLOCKED
);
715 KERNEL_DEBUG(DBG_FNC_ESPIN
| DBG_FUNC_END
, 4,0,0,0,0);
722 esp6_input(struct mbuf
**mp
, int *offp
, int proto
)
724 #pragma unused(proto)
725 struct mbuf
*m
= *mp
;
729 struct esptail esptail
;
732 struct secasvar
*sav
= NULL
;
735 const struct esp_algorithm
*algo
;
739 /* sanity check for alignment. */
740 if (off
% 4 != 0 || m
->m_pkthdr
.len
% 4 != 0) {
741 ipseclog((LOG_ERR
, "IPv6 ESP input: packet alignment problem "
742 "(off=%d, pktlen=%d)\n", off
, m
->m_pkthdr
.len
));
743 IPSEC_STAT_INCREMENT(ipsec6stat
.in_inval
);
747 #ifndef PULLDOWN_TEST
748 IP6_EXTHDR_CHECK(m
, off
, ESPMAXLEN
, {return IPPROTO_DONE
;});
749 esp
= (struct esp
*)(void *)(mtod(m
, caddr_t
) + off
);
751 IP6_EXTHDR_GET(esp
, struct esp
*, m
, off
, ESPMAXLEN
);
753 IPSEC_STAT_INCREMENT(ipsec6stat
.in_inval
);
757 /* Expect 32-bit data aligned pointer on strict-align platforms */
758 MBUF_STRICT_DATA_ALIGNMENT_CHECK_32(m
);
760 ip6
= mtod(m
, struct ip6_hdr
*);
762 if (ntohs(ip6
->ip6_plen
) == 0) {
763 ipseclog((LOG_ERR
, "IPv6 ESP input: "
764 "ESP with IPv6 jumbogram is not supported.\n"));
765 IPSEC_STAT_INCREMENT(ipsec6stat
.in_inval
);
769 /* find the sassoc. */
772 if ((sav
= key_allocsa(AF_INET6
,
773 (caddr_t
)&ip6
->ip6_src
, (caddr_t
)&ip6
->ip6_dst
,
774 IPPROTO_ESP
, spi
)) == 0) {
775 ipseclog((LOG_WARNING
,
776 "IPv6 ESP input: no key association found for spi %u\n",
777 (u_int32_t
)ntohl(spi
)));
778 IPSEC_STAT_INCREMENT(ipsec6stat
.in_nosa
);
781 KEYDEBUG(KEYDEBUG_IPSEC_STAMP
,
782 printf("DP esp6_input called to allocate SA:%p\n", sav
));
783 if (sav
->state
!= SADB_SASTATE_MATURE
784 && sav
->state
!= SADB_SASTATE_DYING
) {
786 "IPv6 ESP input: non-mature/dying SA found for spi %u\n",
787 (u_int32_t
)ntohl(spi
)));
788 IPSEC_STAT_INCREMENT(ipsec6stat
.in_badspi
);
791 algo
= esp_algorithm_lookup(sav
->alg_enc
);
793 ipseclog((LOG_DEBUG
, "IPv6 ESP input: "
794 "unsupported encryption algorithm for spi %u\n",
795 (u_int32_t
)ntohl(spi
)));
796 IPSEC_STAT_INCREMENT(ipsec6stat
.in_badspi
);
800 /* check if we have proper ivlen information */
803 ipseclog((LOG_ERR
, "inproper ivlen in IPv6 ESP input: %s %s\n",
804 ipsec6_logpacketstr(ip6
, spi
), ipsec_logsastr(sav
)));
805 IPSEC_STAT_INCREMENT(ipsec6stat
.in_badspi
);
809 seq
= ntohl(((struct newesp
*)esp
)->esp_seq
);
811 if (!((sav
->flags
& SADB_X_EXT_OLD
) == 0 && sav
->replay
812 && (sav
->alg_auth
&& sav
->key_auth
)))
815 if (sav
->alg_auth
== SADB_X_AALG_NULL
||
816 sav
->alg_auth
== SADB_AALG_NONE
)
820 * check for sequence number.
822 if (ipsec_chkreplay(seq
, sav
))
825 IPSEC_STAT_INCREMENT(ipsec6stat
.in_espreplay
);
826 ipseclog((LOG_WARNING
,
827 "replay packet in IPv6 ESP input: %s %s\n",
828 ipsec6_logpacketstr(ip6
, spi
), ipsec_logsastr(sav
)));
834 u_char sum0
[AH_MAXSUMSIZE
] __attribute__((aligned(4)));
835 u_char sum
[AH_MAXSUMSIZE
] __attribute__((aligned(4)));
836 const struct ah_algorithm
*sumalgo
;
839 sumalgo
= ah_algorithm_lookup(sav
->alg_auth
);
842 siz
= (((*sumalgo
->sumsiz
)(sav
) + 3) & ~(4 - 1));
843 if (m
->m_pkthdr
.len
< off
+ ESPMAXLEN
+ siz
) {
844 IPSEC_STAT_INCREMENT(ipsecstat
.in_inval
);
847 if (AH_MAXSUMSIZE
< siz
) {
849 "internal error: AH_MAXSUMSIZE must be larger than %lu\n",
851 IPSEC_STAT_INCREMENT(ipsec6stat
.in_inval
);
855 m_copydata(m
, m
->m_pkthdr
.len
- siz
, siz
, (caddr_t
) &sum0
[0]);
857 if (esp_auth(m
, off
, m
->m_pkthdr
.len
- off
- siz
, sav
, sum
)) {
858 ipseclog((LOG_WARNING
, "auth fail in IPv6 ESP input: %s %s\n",
859 ipsec6_logpacketstr(ip6
, spi
), ipsec_logsastr(sav
)));
860 IPSEC_STAT_INCREMENT(ipsec6stat
.in_espauthfail
);
864 if (bcmp(sum0
, sum
, siz
) != 0) {
865 ipseclog((LOG_WARNING
, "auth fail in IPv6 ESP input: %s %s\n",
866 ipsec6_logpacketstr(ip6
, spi
), ipsec_logsastr(sav
)));
867 IPSEC_STAT_INCREMENT(ipsec6stat
.in_espauthfail
);
871 /* strip off the authentication data */
873 ip6
= mtod(m
, struct ip6_hdr
*);
874 ip6
->ip6_plen
= htons(ntohs(ip6
->ip6_plen
) - siz
);
876 m
->m_flags
|= M_AUTHIPDGM
;
877 IPSEC_STAT_INCREMENT(ipsec6stat
.in_espauthsucc
);
881 * update sequence number.
883 if ((sav
->flags
& SADB_X_EXT_OLD
) == 0 && sav
->replay
) {
884 if (ipsec_updatereplay(seq
, sav
)) {
885 IPSEC_STAT_INCREMENT(ipsec6stat
.in_espreplay
);
892 /* process main esp header. */
893 if (sav
->flags
& SADB_X_EXT_OLD
) {
895 esplen
= sizeof(struct esp
);
898 if (sav
->flags
& SADB_X_EXT_DERIV
)
899 esplen
= sizeof(struct esp
);
901 esplen
= sizeof(struct newesp
);
904 if (m
->m_pkthdr
.len
< off
+ esplen
+ ivlen
+ sizeof(esptail
)) {
905 ipseclog((LOG_WARNING
,
906 "IPv6 ESP input: packet too short\n"));
907 IPSEC_STAT_INCREMENT(ipsec6stat
.in_inval
);
911 #ifndef PULLDOWN_TEST
912 IP6_EXTHDR_CHECK(m
, off
, esplen
+ ivlen
, return IPPROTO_DONE
); /*XXX*/
914 IP6_EXTHDR_GET(esp
, struct esp
*, m
, off
, esplen
+ ivlen
);
916 IPSEC_STAT_INCREMENT(ipsec6stat
.in_inval
);
921 ip6
= mtod(m
, struct ip6_hdr
*); /*set it again just in case*/
924 * pre-compute and cache intermediate key
926 if (esp_schedule(algo
, sav
) != 0) {
927 IPSEC_STAT_INCREMENT(ipsec6stat
.in_inval
);
932 * decrypt the packet.
935 panic("internal error: no decrypt function");
936 if ((*algo
->decrypt
)(m
, off
, sav
, algo
, ivlen
)) {
937 /* m is already freed */
939 ipseclog((LOG_ERR
, "decrypt fail in IPv6 ESP input: %s\n",
940 ipsec_logsastr(sav
)));
941 IPSEC_STAT_INCREMENT(ipsec6stat
.in_inval
);
944 IPSEC_STAT_INCREMENT(ipsec6stat
.in_esphist
[sav
->alg_enc
]);
946 m
->m_flags
|= M_DECRYPTED
;
949 * find the trailer of the ESP.
951 m_copydata(m
, m
->m_pkthdr
.len
- sizeof(esptail
), sizeof(esptail
),
953 nxt
= esptail
.esp_nxt
;
954 taillen
= esptail
.esp_padlen
+ sizeof(esptail
);
956 if (m
->m_pkthdr
.len
< taillen
957 || m
->m_pkthdr
.len
- taillen
< sizeof(struct ip6_hdr
)) { /*?*/
958 ipseclog((LOG_WARNING
,
959 "bad pad length in IPv6 ESP input: %s %s\n",
960 ipsec6_logpacketstr(ip6
, spi
), ipsec_logsastr(sav
)));
961 IPSEC_STAT_INCREMENT(ipsec6stat
.in_inval
);
965 /* strip off the trailing pad area. */
967 ip6
= mtod(m
, struct ip6_hdr
*);
968 ip6
->ip6_plen
= htons(ntohs(ip6
->ip6_plen
) - taillen
);
970 if (sav
->utun_is_keepalive_fn
) {
971 if (sav
->utun_is_keepalive_fn(sav
->utun_pcb
, &m
, nxt
, sav
->flags
, (off
+ esplen
+ ivlen
))) {
973 // not really bad, we just wanna exit
974 IPSEC_STAT_INCREMENT(ipsec6stat
.in_success
);
981 /* was it transmitted over the IPsec tunnel SA? */
982 if (ipsec6_tunnel_validate(m
, off
+ esplen
+ ivlen
, nxt
, sav
)) {
984 struct sockaddr_storage addr
;
987 * strip off all the headers that precedes ESP header.
988 * IP6 xx ESP IP6' payload -> IP6' payload
990 * XXX more sanity checks
991 * XXX relationship with gif?
993 u_int32_t flowinfo
; /*net endian*/
994 flowinfo
= ip6
->ip6_flow
;
995 m_adj(m
, off
+ esplen
+ ivlen
);
996 if (m
->m_len
< sizeof(*ip6
)) {
997 #ifndef PULLDOWN_TEST
999 * m_pullup is prohibited in KAME IPv6 input processing
1000 * but there's no other way!
1003 /* okay to pullup in m_pulldown style */
1005 m
= m_pullup(m
, sizeof(*ip6
));
1007 IPSEC_STAT_INCREMENT(ipsec6stat
.in_inval
);
1011 ip6
= mtod(m
, struct ip6_hdr
*);
1012 /* ECN consideration. */
1013 ip6_ecn_egress(ip6_ipsec_ecn
, &flowinfo
, &ip6
->ip6_flow
);
1014 if (!key_checktunnelsanity(sav
, AF_INET6
,
1015 (caddr_t
)&ip6
->ip6_src
, (caddr_t
)&ip6
->ip6_dst
)) {
1016 ipseclog((LOG_ERR
, "ipsec tunnel address mismatch "
1017 "in IPv6 ESP input: %s %s\n",
1018 ipsec6_logpacketstr(ip6
, spi
),
1019 ipsec_logsastr(sav
)));
1020 IPSEC_STAT_INCREMENT(ipsec6stat
.in_inval
);
1024 key_sa_recordxfer(sav
, m
);
1025 if (ipsec_addhist(m
, IPPROTO_ESP
, spi
) != 0 ||
1026 ipsec_addhist(m
, IPPROTO_IPV6
, 0) != 0) {
1027 IPSEC_STAT_INCREMENT(ipsec6stat
.in_nomem
);
1031 if (ip6_doscopedroute
) {
1032 struct sockaddr_in6
*ip6addr
;
1034 bzero(&addr
, sizeof(addr
));
1035 ip6addr
= (__typeof__(ip6addr
))&addr
;
1036 ip6addr
->sin6_family
= AF_INET6
;
1037 ip6addr
->sin6_len
= sizeof(*ip6addr
);
1038 ip6addr
->sin6_addr
= ip6
->ip6_dst
;
1040 // update the receiving interface address based on the inner address
1041 ifa
= ifa_ifwithaddr((struct sockaddr
*)&addr
);
1043 m
->m_pkthdr
.rcvif
= ifa
->ifa_ifp
;
1048 if (sav
->utun_in_fn
) {
1049 if (!(sav
->utun_in_fn(sav
->utun_pcb
, &m
, PF_INET6
))) {
1051 // we just wanna exit since packet has been completely processed
1056 if (proto_input(PF_INET6
, m
) != 0)
1061 * strip off ESP header and IV.
1062 * even in m_pulldown case, we need to strip off ESP so that
1063 * we can always compute checksum for AH correctly.
1069 * Set the next header field of the previous header correctly.
1071 prvnxtp
= ip6_get_prevhdr(m
, off
); /* XXX */
1074 stripsiz
= esplen
+ ivlen
;
1076 ip6
= mtod(m
, struct ip6_hdr
*);
1077 if (m
->m_len
>= stripsiz
+ off
) {
1078 ovbcopy((caddr_t
)ip6
, ((caddr_t
)ip6
) + stripsiz
, off
);
1079 m
->m_data
+= stripsiz
;
1080 m
->m_len
-= stripsiz
;
1081 m
->m_pkthdr
.len
-= stripsiz
;
1084 * this comes with no copy if the boundary is on
1089 n
= m_split(m
, off
, M_DONTWAIT
);
1091 /* m is retained by m_split */
1095 /* m_cat does not update m_pkthdr.len */
1096 m
->m_pkthdr
.len
+= n
->m_pkthdr
.len
;
1100 #ifndef PULLDOWN_TEST
1102 * KAME requires that the packet to be contiguous on the
1103 * mbuf. We need to make that sure.
1104 * this kind of code should be avoided.
1105 * XXX other conditions to avoid running this part?
1107 if (m
->m_len
!= m
->m_pkthdr
.len
) {
1108 struct mbuf
*n
= NULL
;
1111 MGETHDR(n
, M_DONTWAIT
, MT_HEADER
); /* MAC-OK */
1114 M_COPY_PKTHDR(n
, m
);
1115 if (n
&& m
->m_pkthdr
.len
> maxlen
) {
1116 MCLGET(n
, M_DONTWAIT
);
1118 if ((n
->m_flags
& M_EXT
) == 0) {
1124 printf("esp6_input: mbuf allocation failed\n");
1128 if (m
->m_pkthdr
.len
<= maxlen
) {
1129 m_copydata(m
, 0, m
->m_pkthdr
.len
, mtod(n
, caddr_t
));
1130 n
->m_len
= m
->m_pkthdr
.len
;
1131 n
->m_pkthdr
.len
= m
->m_pkthdr
.len
;
1135 m_copydata(m
, 0, maxlen
, mtod(n
, caddr_t
));
1137 n
->m_pkthdr
.len
= m
->m_pkthdr
.len
;
1140 m
->m_flags
&= ~M_PKTHDR
;
1146 ip6
= mtod(m
, struct ip6_hdr
*);
1147 ip6
->ip6_plen
= htons(ntohs(ip6
->ip6_plen
) - stripsiz
);
1149 key_sa_recordxfer(sav
, m
);
1150 if (ipsec_addhist(m
, IPPROTO_ESP
, spi
) != 0) {
1151 IPSEC_STAT_INCREMENT(ipsec6stat
.in_nomem
);
1155 if (sav
->utun_in_fn
) {
1156 if (!(sav
->utun_in_fn(sav
->utun_pcb
, &m
, PF_INET6
))) {
1158 // we just wanna exit since packet has been completely processed
1168 KEYDEBUG(KEYDEBUG_IPSEC_STAMP
,
1169 printf("DP esp6_input call free SA:%p\n", sav
));
1170 key_freesav(sav
, KEY_SADB_UNLOCKED
);
1172 IPSEC_STAT_INCREMENT(ipsec6stat
.in_success
);
1177 KEYDEBUG(KEYDEBUG_IPSEC_STAMP
,
1178 printf("DP esp6_input call free SA:%p\n", sav
));
1179 key_freesav(sav
, KEY_SADB_UNLOCKED
);
1183 return IPPROTO_DONE
;
1187 esp6_ctlinput(cmd
, sa
, d
)
1189 struct sockaddr
*sa
;
1192 const struct newesp
*espp
;
1194 struct ip6ctlparam
*ip6cp
= NULL
, ip6cp1
;
1195 struct secasvar
*sav
;
1196 struct ip6_hdr
*ip6
;
1199 struct sockaddr_in6
*sa6_src
, *sa6_dst
;
1201 if (sa
->sa_family
!= AF_INET6
||
1202 sa
->sa_len
!= sizeof(struct sockaddr_in6
))
1204 if ((unsigned)cmd
>= PRC_NCMDS
)
1207 /* if the parameter is from icmp6, decode it. */
1209 ip6cp
= (struct ip6ctlparam
*)d
;
1211 ip6
= ip6cp
->ip6c_ip6
;
1212 off
= ip6cp
->ip6c_off
;
1220 * Notify the error to all possible sockets via pfctlinput2.
1221 * Since the upper layer information (such as protocol type,
1222 * source and destination ports) is embedded in the encrypted
1223 * data and might have been cut, we can't directly call
1224 * an upper layer ctlinput function. However, the pcbnotify
1225 * function will consider source and destination addresses
1226 * as well as the flow info value, and may be able to find
1227 * some PCB that should be notified.
1228 * Although pfctlinput2 will call esp6_ctlinput(), there is
1229 * no possibility of an infinite loop of function calls,
1230 * because we don't pass the inner IPv6 header.
1232 bzero(&ip6cp1
, sizeof(ip6cp1
));
1233 ip6cp1
.ip6c_src
= ip6cp
->ip6c_src
;
1234 pfctlinput2(cmd
, sa
, (void *)&ip6cp1
);
1237 * Then go to special cases that need ESP header information.
1238 * XXX: We assume that when ip6 is non NULL,
1239 * M and OFF are valid.
1242 /* check if we can safely examine src and dst ports */
1243 if (m
->m_pkthdr
.len
< off
+ sizeof(esp
))
1246 if (m
->m_len
< off
+ sizeof(esp
)) {
1248 * this should be rare case,
1249 * so we compromise on this copy...
1251 m_copydata(m
, off
, sizeof(esp
), (caddr_t
)&esp
);
1254 espp
= (struct newesp
*)(void *)(mtod(m
, caddr_t
) + off
);
1256 if (cmd
== PRC_MSGSIZE
) {
1260 * Check to see if we have a valid SA corresponding to
1261 * the address in the ICMP message payload.
1263 sa6_src
= ip6cp
->ip6c_src
;
1264 sa6_dst
= (struct sockaddr_in6
*)(void *)sa
;
1265 sav
= key_allocsa(AF_INET6
,
1266 (caddr_t
)&sa6_src
->sin6_addr
,
1267 (caddr_t
)&sa6_dst
->sin6_addr
,
1268 IPPROTO_ESP
, espp
->esp_spi
);
1270 if (sav
->state
== SADB_SASTATE_MATURE
||
1271 sav
->state
== SADB_SASTATE_DYING
)
1273 key_freesav(sav
, KEY_SADB_LOCKED
);
1276 /* XXX Further validation? */
1279 * Depending on the value of "valid" and routing table
1280 * size (mtudisc_{hi,lo}wat), we will:
1281 * - recalcurate the new MTU and create the
1282 * corresponding routing entry, or
1283 * - ignore the MTU change notification.
1285 icmp6_mtudisc_update((struct ip6ctlparam
*)d
, valid
);
1288 /* we normally notify any pcb here */