]>
git.saurik.com Git - apple/xnu.git/blob - bsd/netinet6/esp_input.c
1 /* $FreeBSD: src/sys/netinet6/esp_input.c,v 1.1.2.3 2001/07/03 11:01:50 ume Exp $ */
2 /* $KAME: esp_input.c,v 1.55 2001/03/23 08:08:47 itojun Exp $ */
5 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the name of the project nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
20 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * RFC1827/2406 Encapsulated Security Payload.
37 #include <sys/param.h>
38 #include <sys/systm.h>
39 #include <sys/malloc.h>
41 #include <sys/domain.h>
42 #include <sys/protosw.h>
43 #include <sys/socket.h>
44 #include <sys/errno.h>
46 #include <sys/kernel.h>
47 #include <sys/syslog.h>
50 #include <net/route.h>
51 #include <kern/cpu_number.h>
52 #include <kern/locks.h>
54 #include <netinet/in.h>
55 #include <netinet/in_systm.h>
56 #include <netinet/ip.h>
57 #include <netinet/ip_var.h>
58 #include <netinet/in_var.h>
59 #include <netinet/ip_ecn.h>
60 #include <netinet/in_pcb.h>
62 #include <netinet6/ip6_ecn.h>
66 #include <netinet/ip6.h>
67 #include <netinet6/in6_pcb.h>
68 #include <netinet6/ip6_var.h>
69 #include <netinet/icmp6.h>
70 #include <netinet6/ip6protosw.h>
73 #include <netinet6/ipsec.h>
75 #include <netinet6/ipsec6.h>
77 #include <netinet6/ah.h>
79 #include <netinet6/ah6.h>
81 #include <netinet6/esp.h>
83 #include <netinet6/esp6.h>
85 #include <netkey/key.h>
86 #include <netkey/keydb.h>
87 #include <netkey/key_debug.h>
90 #include <net/net_osdep.h>
92 #include <sys/kdebug.h>
93 #define DBG_LAYER_BEG NETDBG_CODE(DBG_NETIPSEC, 1)
94 #define DBG_LAYER_END NETDBG_CODE(DBG_NETIPSEC, 3)
95 #define DBG_FNC_ESPIN NETDBG_CODE(DBG_NETIPSEC, (6 << 8))
96 #define DBG_FNC_DECRYPT NETDBG_CODE(DBG_NETIPSEC, (7 << 8))
99 extern lck_mtx_t
*sadb_mutex
;
101 extern struct protosw inetsw
[];
104 (sizeof(struct esp) < sizeof(struct newesp) \
105 ? sizeof(struct newesp) : sizeof(struct esp))
114 struct esptail esptail
;
116 struct secasvar
*sav
= NULL
;
119 const struct esp_algorithm
*algo
;
125 lck_mtx_lock(sadb_mutex
);
127 KERNEL_DEBUG(DBG_FNC_ESPIN
| DBG_FUNC_START
, 0,0,0,0,0);
128 /* sanity check for alignment. */
129 if (off
% 4 != 0 || m
->m_pkthdr
.len
% 4 != 0) {
130 ipseclog((LOG_ERR
, "IPv4 ESP input: packet alignment problem "
131 "(off=%d, pktlen=%d)\n", off
, m
->m_pkthdr
.len
));
132 ipsecstat
.in_inval
++;
136 if (m
->m_len
< off
+ ESPMAXLEN
) {
137 m
= m_pullup(m
, off
+ ESPMAXLEN
);
140 "IPv4 ESP input: can't pullup in esp4_input\n"));
141 ipsecstat
.in_inval
++;
146 ip
= mtod(m
, struct ip
*);
147 esp
= (struct esp
*)(((u_int8_t
*)ip
) + off
);
149 hlen
= IP_VHL_HL(ip
->ip_vhl
) << 2;
151 hlen
= ip
->ip_hl
<< 2;
154 /* find the sassoc. */
157 if ((sav
= key_allocsa(AF_INET
,
158 (caddr_t
)&ip
->ip_src
, (caddr_t
)&ip
->ip_dst
,
159 IPPROTO_ESP
, spi
)) == 0) {
160 ipseclog((LOG_WARNING
,
161 "IPv4 ESP input: no key association found for spi %u\n",
162 (u_int32_t
)ntohl(spi
)));
166 KEYDEBUG(KEYDEBUG_IPSEC_STAMP
,
167 printf("DP esp4_input called to allocate SA:%p\n", sav
));
168 if (sav
->state
!= SADB_SASTATE_MATURE
169 && sav
->state
!= SADB_SASTATE_DYING
) {
171 "IPv4 ESP input: non-mature/dying SA found for spi %u\n",
172 (u_int32_t
)ntohl(spi
)));
173 ipsecstat
.in_badspi
++;
176 algo
= esp_algorithm_lookup(sav
->alg_enc
);
178 ipseclog((LOG_DEBUG
, "IPv4 ESP input: "
179 "unsupported encryption algorithm for spi %u\n",
180 (u_int32_t
)ntohl(spi
)));
181 ipsecstat
.in_badspi
++;
185 /* check if we have proper ivlen information */
188 ipseclog((LOG_ERR
, "inproper ivlen in IPv4 ESP input: %s %s\n",
189 ipsec4_logpacketstr(ip
, spi
), ipsec_logsastr(sav
)));
190 ipsecstat
.in_inval
++;
194 if (!((sav
->flags
& SADB_X_EXT_OLD
) == 0 && sav
->replay
195 && (sav
->alg_auth
&& sav
->key_auth
)))
198 if (sav
->alg_auth
== SADB_X_AALG_NULL
||
199 sav
->alg_auth
== SADB_AALG_NONE
)
203 * check for sequence number.
205 if (ipsec_chkreplay(ntohl(((struct newesp
*)esp
)->esp_seq
), sav
))
208 ipsecstat
.in_espreplay
++;
209 ipseclog((LOG_WARNING
,
210 "replay packet in IPv4 ESP input: %s %s\n",
211 ipsec4_logpacketstr(ip
, spi
), ipsec_logsastr(sav
)));
217 u_char sum0
[AH_MAXSUMSIZE
];
218 u_char sum
[AH_MAXSUMSIZE
];
219 const struct ah_algorithm
*sumalgo
;
222 sumalgo
= ah_algorithm_lookup(sav
->alg_auth
);
225 siz
= (((*sumalgo
->sumsiz
)(sav
) + 3) & ~(4 - 1));
226 if (m
->m_pkthdr
.len
< off
+ ESPMAXLEN
+ siz
) {
227 ipsecstat
.in_inval
++;
230 if (AH_MAXSUMSIZE
< siz
) {
232 "internal error: AH_MAXSUMSIZE must be larger than %lu\n",
234 ipsecstat
.in_inval
++;
238 m_copydata(m
, m
->m_pkthdr
.len
- siz
, siz
, &sum0
[0]);
240 if (esp_auth(m
, off
, m
->m_pkthdr
.len
- off
- siz
, sav
, sum
)) {
241 ipseclog((LOG_WARNING
, "auth fail in IPv4 ESP input: %s %s\n",
242 ipsec4_logpacketstr(ip
, spi
), ipsec_logsastr(sav
)));
243 ipsecstat
.in_espauthfail
++;
247 if (bcmp(sum0
, sum
, siz
) != 0) {
248 ipseclog((LOG_WARNING
, "auth fail in IPv4 ESP input: %s %s\n",
249 ipsec4_logpacketstr(ip
, spi
), ipsec_logsastr(sav
)));
250 ipsecstat
.in_espauthfail
++;
254 /* strip off the authentication data */
256 ip
= mtod(m
, struct ip
*);
258 ip
->ip_len
= ip
->ip_len
- siz
;
260 ip
->ip_len
= htons(ntohs(ip
->ip_len
) - siz
);
262 m
->m_flags
|= M_AUTHIPDGM
;
263 ipsecstat
.in_espauthsucc
++;
267 * update sequence number.
269 if ((sav
->flags
& SADB_X_EXT_OLD
) == 0 && sav
->replay
) {
270 if (ipsec_updatereplay(ntohl(((struct newesp
*)esp
)->esp_seq
), sav
)) {
271 ipsecstat
.in_espreplay
++;
278 /* process main esp header. */
279 if (sav
->flags
& SADB_X_EXT_OLD
) {
281 esplen
= sizeof(struct esp
);
284 if (sav
->flags
& SADB_X_EXT_DERIV
)
285 esplen
= sizeof(struct esp
);
287 esplen
= sizeof(struct newesp
);
290 if (m
->m_pkthdr
.len
< off
+ esplen
+ ivlen
+ sizeof(esptail
)) {
291 ipseclog((LOG_WARNING
,
292 "IPv4 ESP input: packet too short\n"));
293 ipsecstat
.in_inval
++;
297 if (m
->m_len
< off
+ esplen
+ ivlen
) {
298 m
= m_pullup(m
, off
+ esplen
+ ivlen
);
301 "IPv4 ESP input: can't pullup in esp4_input\n"));
302 ipsecstat
.in_inval
++;
308 * pre-compute and cache intermediate key
310 if (esp_schedule(algo
, sav
) != 0) {
311 ipsecstat
.in_inval
++;
316 * decrypt the packet.
319 panic("internal error: no decrypt function");
320 KERNEL_DEBUG(DBG_FNC_DECRYPT
| DBG_FUNC_START
, 0,0,0,0,0);
321 if ((*algo
->decrypt
)(m
, off
, sav
, algo
, ivlen
)) {
322 /* m is already freed */
324 ipseclog((LOG_ERR
, "decrypt fail in IPv4 ESP input: %s\n",
325 ipsec_logsastr(sav
)));
326 ipsecstat
.in_inval
++;
327 KERNEL_DEBUG(DBG_FNC_DECRYPT
| DBG_FUNC_END
, 1,0,0,0,0);
330 KERNEL_DEBUG(DBG_FNC_DECRYPT
| DBG_FUNC_END
, 2,0,0,0,0);
331 ipsecstat
.in_esphist
[sav
->alg_enc
]++;
333 m
->m_flags
|= M_DECRYPTED
;
336 * find the trailer of the ESP.
338 m_copydata(m
, m
->m_pkthdr
.len
- sizeof(esptail
), sizeof(esptail
),
340 nxt
= esptail
.esp_nxt
;
341 taillen
= esptail
.esp_padlen
+ sizeof(esptail
);
343 if (m
->m_pkthdr
.len
< taillen
344 || m
->m_pkthdr
.len
- taillen
< hlen
) { /*?*/
345 ipseclog((LOG_WARNING
,
346 "bad pad length in IPv4 ESP input: %s %s\n",
347 ipsec4_logpacketstr(ip
, spi
), ipsec_logsastr(sav
)));
348 ipsecstat
.in_inval
++;
352 /* strip off the trailing pad area. */
356 ip
->ip_len
= ip
->ip_len
- taillen
;
358 ip
->ip_len
= htons(ntohs(ip
->ip_len
) - taillen
);
361 /* was it transmitted over the IPsec tunnel SA? */
362 if (ipsec4_tunnel_validate(m
, off
+ esplen
+ ivlen
, nxt
, sav
)) {
364 * strip off all the headers that precedes ESP header.
365 * IP4 xx ESP IP4' payload -> IP4' payload
367 * XXX more sanity checks
368 * XXX relationship with gif?
373 m_adj(m
, off
+ esplen
+ ivlen
);
374 if (m
->m_len
< sizeof(*ip
)) {
375 m
= m_pullup(m
, sizeof(*ip
));
377 ipsecstat
.in_inval
++;
381 ip
= mtod(m
, struct ip
*);
382 /* ECN consideration. */
383 ip_ecn_egress(ip4_ipsec_ecn
, &tos
, &ip
->ip_tos
);
384 if (!key_checktunnelsanity(sav
, AF_INET
,
385 (caddr_t
)&ip
->ip_src
, (caddr_t
)&ip
->ip_dst
)) {
386 ipseclog((LOG_ERR
, "ipsec tunnel address mismatch "
387 "in IPv4 ESP input: %s %s\n",
388 ipsec4_logpacketstr(ip
, spi
), ipsec_logsastr(sav
)));
389 ipsecstat
.in_inval
++;
393 key_sa_recordxfer(sav
, m
);
394 if (ipsec_addhist(m
, IPPROTO_ESP
, spi
) != 0 ||
395 ipsec_addhist(m
, IPPROTO_IPV4
, 0) != 0) {
396 ipsecstat
.in_nomem
++;
400 /* Clear the csum flags, they can't be valid for the inner headers */
401 m
->m_pkthdr
.csum_flags
= 0;
403 lck_mtx_unlock(sadb_mutex
);
404 proto_input(PF_INET
, m
);
405 lck_mtx_lock(sadb_mutex
);
407 KERNEL_DEBUG(DBG_FNC_ESPIN
| DBG_FUNC_END
, 2,0,0,0,0);
410 * strip off ESP header and IV.
411 * even in m_pulldown case, we need to strip off ESP so that
412 * we can always compute checksum for AH correctly.
416 stripsiz
= esplen
+ ivlen
;
418 ip
= mtod(m
, struct ip
*);
419 ovbcopy((caddr_t
)ip
, (caddr_t
)(((u_char
*)ip
) + stripsiz
), off
);
420 m
->m_data
+= stripsiz
;
421 m
->m_len
-= stripsiz
;
422 m
->m_pkthdr
.len
-= stripsiz
;
424 ip
= mtod(m
, struct ip
*);
426 ip
->ip_len
= ip
->ip_len
- stripsiz
;
428 ip
->ip_len
= htons(ntohs(ip
->ip_len
) - stripsiz
);
432 key_sa_recordxfer(sav
, m
);
433 if (ipsec_addhist(m
, IPPROTO_ESP
, spi
) != 0) {
434 ipsecstat
.in_nomem
++;
439 * Set the csum valid flag, if we authenticated the
440 * packet, the payload shouldn't be corrupt unless
441 * it was corrupted before being signed on the other
444 if (nxt
== IPPROTO_TCP
|| nxt
== IPPROTO_UDP
) {
445 m
->m_pkthdr
.csum_flags
= CSUM_DATA_VALID
| CSUM_PSEUDO_HDR
;
446 m
->m_pkthdr
.csum_data
= 0xFFFF;
449 if (nxt
!= IPPROTO_DONE
) {
450 if ((ip_protox
[nxt
]->pr_flags
& PR_LASTHDR
) != 0 &&
451 ipsec4_in_reject(m
, NULL
)) {
452 ipsecstat
.in_polvio
++;
455 KERNEL_DEBUG(DBG_FNC_ESPIN
| DBG_FUNC_END
, 3,0,0,0,0);
456 lck_mtx_unlock(sadb_mutex
);
457 ip_proto_dispatch_in(m
, off
, nxt
, 0);
458 lck_mtx_lock(sadb_mutex
);
465 KEYDEBUG(KEYDEBUG_IPSEC_STAMP
,
466 printf("DP esp4_input call free SA:%p\n", sav
));
469 ipsecstat
.in_success
++;
470 lck_mtx_unlock(sadb_mutex
);
475 KEYDEBUG(KEYDEBUG_IPSEC_STAMP
,
476 printf("DP esp4_input call free SA:%p\n", sav
));
479 lck_mtx_unlock(sadb_mutex
);
482 KERNEL_DEBUG(DBG_FNC_ESPIN
| DBG_FUNC_END
, 4,0,0,0,0);
493 struct mbuf
*m
= *mp
;
497 struct esptail esptail
;
499 struct secasvar
*sav
= NULL
;
502 const struct esp_algorithm
*algo
;
507 lck_mtx_lock(sadb_mutex
);
509 /* sanity check for alignment. */
510 if (off
% 4 != 0 || m
->m_pkthdr
.len
% 4 != 0) {
511 ipseclog((LOG_ERR
, "IPv6 ESP input: packet alignment problem "
512 "(off=%d, pktlen=%d)\n", off
, m
->m_pkthdr
.len
));
513 ipsec6stat
.in_inval
++;
517 #ifndef PULLDOWN_TEST
518 IP6_EXTHDR_CHECK(m
, off
, ESPMAXLEN
, {lck_mtx_unlock(sadb_mutex
); return IPPROTO_DONE
;});
519 esp
= (struct esp
*)(mtod(m
, caddr_t
) + off
);
521 IP6_EXTHDR_GET(esp
, struct esp
*, m
, off
, ESPMAXLEN
);
523 ipsec6stat
.in_inval
++;
524 lck_mtx_unlock(sadb_mutex
);
528 ip6
= mtod(m
, struct ip6_hdr
*);
530 if (ntohs(ip6
->ip6_plen
) == 0) {
531 ipseclog((LOG_ERR
, "IPv6 ESP input: "
532 "ESP with IPv6 jumbogram is not supported.\n"));
533 ipsec6stat
.in_inval
++;
537 /* find the sassoc. */
540 if ((sav
= key_allocsa(AF_INET6
,
541 (caddr_t
)&ip6
->ip6_src
, (caddr_t
)&ip6
->ip6_dst
,
542 IPPROTO_ESP
, spi
)) == 0) {
543 ipseclog((LOG_WARNING
,
544 "IPv6 ESP input: no key association found for spi %u\n",
545 (u_int32_t
)ntohl(spi
)));
546 ipsec6stat
.in_nosa
++;
549 KEYDEBUG(KEYDEBUG_IPSEC_STAMP
,
550 printf("DP esp6_input called to allocate SA:%p\n", sav
));
551 if (sav
->state
!= SADB_SASTATE_MATURE
552 && sav
->state
!= SADB_SASTATE_DYING
) {
554 "IPv6 ESP input: non-mature/dying SA found for spi %u\n",
555 (u_int32_t
)ntohl(spi
)));
556 ipsec6stat
.in_badspi
++;
559 algo
= esp_algorithm_lookup(sav
->alg_enc
);
561 ipseclog((LOG_DEBUG
, "IPv6 ESP input: "
562 "unsupported encryption algorithm for spi %u\n",
563 (u_int32_t
)ntohl(spi
)));
564 ipsec6stat
.in_badspi
++;
568 /* check if we have proper ivlen information */
571 ipseclog((LOG_ERR
, "inproper ivlen in IPv6 ESP input: %s %s\n",
572 ipsec6_logpacketstr(ip6
, spi
), ipsec_logsastr(sav
)));
573 ipsec6stat
.in_badspi
++;
577 if (!((sav
->flags
& SADB_X_EXT_OLD
) == 0 && sav
->replay
578 && (sav
->alg_auth
&& sav
->key_auth
)))
581 if (sav
->alg_auth
== SADB_X_AALG_NULL
||
582 sav
->alg_auth
== SADB_AALG_NONE
)
586 * check for sequence number.
588 if (ipsec_chkreplay(ntohl(((struct newesp
*)esp
)->esp_seq
), sav
))
591 ipsec6stat
.in_espreplay
++;
592 ipseclog((LOG_WARNING
,
593 "replay packet in IPv6 ESP input: %s %s\n",
594 ipsec6_logpacketstr(ip6
, spi
), ipsec_logsastr(sav
)));
600 u_char sum0
[AH_MAXSUMSIZE
];
601 u_char sum
[AH_MAXSUMSIZE
];
602 const struct ah_algorithm
*sumalgo
;
605 sumalgo
= ah_algorithm_lookup(sav
->alg_auth
);
608 siz
= (((*sumalgo
->sumsiz
)(sav
) + 3) & ~(4 - 1));
609 if (m
->m_pkthdr
.len
< off
+ ESPMAXLEN
+ siz
) {
610 ipsecstat
.in_inval
++;
613 if (AH_MAXSUMSIZE
< siz
) {
615 "internal error: AH_MAXSUMSIZE must be larger than %lu\n",
617 ipsec6stat
.in_inval
++;
621 m_copydata(m
, m
->m_pkthdr
.len
- siz
, siz
, &sum0
[0]);
623 if (esp_auth(m
, off
, m
->m_pkthdr
.len
- off
- siz
, sav
, sum
)) {
624 ipseclog((LOG_WARNING
, "auth fail in IPv6 ESP input: %s %s\n",
625 ipsec6_logpacketstr(ip6
, spi
), ipsec_logsastr(sav
)));
626 ipsec6stat
.in_espauthfail
++;
630 if (bcmp(sum0
, sum
, siz
) != 0) {
631 ipseclog((LOG_WARNING
, "auth fail in IPv6 ESP input: %s %s\n",
632 ipsec6_logpacketstr(ip6
, spi
), ipsec_logsastr(sav
)));
633 ipsec6stat
.in_espauthfail
++;
637 /* strip off the authentication data */
639 ip6
= mtod(m
, struct ip6_hdr
*);
640 ip6
->ip6_plen
= htons(ntohs(ip6
->ip6_plen
) - siz
);
642 m
->m_flags
|= M_AUTHIPDGM
;
643 ipsec6stat
.in_espauthsucc
++;
647 * update sequence number.
649 if ((sav
->flags
& SADB_X_EXT_OLD
) == 0 && sav
->replay
) {
650 if (ipsec_updatereplay(ntohl(((struct newesp
*)esp
)->esp_seq
), sav
)) {
651 ipsec6stat
.in_espreplay
++;
658 /* process main esp header. */
659 if (sav
->flags
& SADB_X_EXT_OLD
) {
661 esplen
= sizeof(struct esp
);
664 if (sav
->flags
& SADB_X_EXT_DERIV
)
665 esplen
= sizeof(struct esp
);
667 esplen
= sizeof(struct newesp
);
670 if (m
->m_pkthdr
.len
< off
+ esplen
+ ivlen
+ sizeof(esptail
)) {
671 ipseclog((LOG_WARNING
,
672 "IPv6 ESP input: packet too short\n"));
673 ipsec6stat
.in_inval
++;
677 #ifndef PULLDOWN_TEST
678 IP6_EXTHDR_CHECK(m
, off
, esplen
+ ivlen
, return IPPROTO_DONE
); /*XXX*/
680 IP6_EXTHDR_GET(esp
, struct esp
*, m
, off
, esplen
+ ivlen
);
682 ipsec6stat
.in_inval
++;
687 ip6
= mtod(m
, struct ip6_hdr
*); /*set it again just in case*/
690 * pre-compute and cache intermediate key
692 if (esp_schedule(algo
, sav
) != 0) {
693 ipsec6stat
.in_inval
++;
698 * decrypt the packet.
701 panic("internal error: no decrypt function");
702 if ((*algo
->decrypt
)(m
, off
, sav
, algo
, ivlen
)) {
703 /* m is already freed */
705 ipseclog((LOG_ERR
, "decrypt fail in IPv6 ESP input: %s\n",
706 ipsec_logsastr(sav
)));
707 ipsec6stat
.in_inval
++;
710 ipsec6stat
.in_esphist
[sav
->alg_enc
]++;
712 m
->m_flags
|= M_DECRYPTED
;
715 * find the trailer of the ESP.
717 m_copydata(m
, m
->m_pkthdr
.len
- sizeof(esptail
), sizeof(esptail
),
719 nxt
= esptail
.esp_nxt
;
720 taillen
= esptail
.esp_padlen
+ sizeof(esptail
);
722 if (m
->m_pkthdr
.len
< taillen
723 || m
->m_pkthdr
.len
- taillen
< sizeof(struct ip6_hdr
)) { /*?*/
724 ipseclog((LOG_WARNING
,
725 "bad pad length in IPv6 ESP input: %s %s\n",
726 ipsec6_logpacketstr(ip6
, spi
), ipsec_logsastr(sav
)));
727 ipsec6stat
.in_inval
++;
731 /* strip off the trailing pad area. */
734 ip6
->ip6_plen
= htons(ntohs(ip6
->ip6_plen
) - taillen
);
736 /* was it transmitted over the IPsec tunnel SA? */
737 if (ipsec6_tunnel_validate(m
, off
+ esplen
+ ivlen
, nxt
, sav
)) {
739 * strip off all the headers that precedes ESP header.
740 * IP6 xx ESP IP6' payload -> IP6' payload
742 * XXX more sanity checks
743 * XXX relationship with gif?
745 u_int32_t flowinfo
; /*net endian*/
746 flowinfo
= ip6
->ip6_flow
;
747 m_adj(m
, off
+ esplen
+ ivlen
);
748 if (m
->m_len
< sizeof(*ip6
)) {
749 #ifndef PULLDOWN_TEST
751 * m_pullup is prohibited in KAME IPv6 input processing
752 * but there's no other way!
755 /* okay to pullup in m_pulldown style */
757 m
= m_pullup(m
, sizeof(*ip6
));
759 ipsec6stat
.in_inval
++;
763 ip6
= mtod(m
, struct ip6_hdr
*);
764 /* ECN consideration. */
765 ip6_ecn_egress(ip6_ipsec_ecn
, &flowinfo
, &ip6
->ip6_flow
);
766 if (!key_checktunnelsanity(sav
, AF_INET6
,
767 (caddr_t
)&ip6
->ip6_src
, (caddr_t
)&ip6
->ip6_dst
)) {
768 ipseclog((LOG_ERR
, "ipsec tunnel address mismatch "
769 "in IPv6 ESP input: %s %s\n",
770 ipsec6_logpacketstr(ip6
, spi
),
771 ipsec_logsastr(sav
)));
772 ipsec6stat
.in_inval
++;
776 key_sa_recordxfer(sav
, m
);
777 if (ipsec_addhist(m
, IPPROTO_ESP
, spi
) != 0 ||
778 ipsec_addhist(m
, IPPROTO_IPV6
, 0) != 0) {
779 ipsec6stat
.in_nomem
++;
782 lck_mtx_unlock(sadb_mutex
);
783 proto_input(PF_INET6
, m
);
784 lck_mtx_lock(sadb_mutex
);
788 * strip off ESP header and IV.
789 * even in m_pulldown case, we need to strip off ESP so that
790 * we can always compute checksum for AH correctly.
796 * Set the next header field of the previous header correctly.
798 prvnxtp
= ip6_get_prevhdr(m
, off
); /* XXX */
801 stripsiz
= esplen
+ ivlen
;
803 ip6
= mtod(m
, struct ip6_hdr
*);
804 if (m
->m_len
>= stripsiz
+ off
) {
805 ovbcopy((caddr_t
)ip6
, ((caddr_t
)ip6
) + stripsiz
, off
);
806 m
->m_data
+= stripsiz
;
807 m
->m_len
-= stripsiz
;
808 m
->m_pkthdr
.len
-= stripsiz
;
811 * this comes with no copy if the boundary is on
816 n
= m_split(m
, off
, M_DONTWAIT
);
818 /* m is retained by m_split */
822 /* m_cat does not update m_pkthdr.len */
823 m
->m_pkthdr
.len
+= n
->m_pkthdr
.len
;
827 #ifndef PULLDOWN_TEST
829 * KAME requires that the packet to be contiguous on the
830 * mbuf. We need to make that sure.
831 * this kind of code should be avoided.
832 * XXX other conditions to avoid running this part?
834 if (m
->m_len
!= m
->m_pkthdr
.len
) {
835 struct mbuf
*n
= NULL
;
838 MGETHDR(n
, M_DONTWAIT
, MT_HEADER
);
842 if (n
&& m
->m_pkthdr
.len
> maxlen
) {
843 MCLGET(n
, M_DONTWAIT
);
845 if ((n
->m_flags
& M_EXT
) == 0) {
851 printf("esp6_input: mbuf allocation failed\n");
855 if (m
->m_pkthdr
.len
<= maxlen
) {
856 m_copydata(m
, 0, m
->m_pkthdr
.len
, mtod(n
, caddr_t
));
857 n
->m_len
= m
->m_pkthdr
.len
;
858 n
->m_pkthdr
.len
= m
->m_pkthdr
.len
;
862 m_copydata(m
, 0, maxlen
, mtod(n
, caddr_t
));
864 n
->m_pkthdr
.len
= m
->m_pkthdr
.len
;
867 m
->m_flags
&= ~M_PKTHDR
;
873 ip6
= mtod(m
, struct ip6_hdr
*);
874 ip6
->ip6_plen
= htons(ntohs(ip6
->ip6_plen
) - stripsiz
);
876 key_sa_recordxfer(sav
, m
);
877 if (ipsec_addhist(m
, IPPROTO_ESP
, spi
) != 0) {
878 ipsec6stat
.in_nomem
++;
887 KEYDEBUG(KEYDEBUG_IPSEC_STAMP
,
888 printf("DP esp6_input call free SA:%p\n", sav
));
891 ipsec6stat
.in_success
++;
892 lck_mtx_unlock(sadb_mutex
);
897 KEYDEBUG(KEYDEBUG_IPSEC_STAMP
,
898 printf("DP esp6_input call free SA:%p\n", sav
));
901 lck_mtx_unlock(sadb_mutex
);
908 esp6_ctlinput(cmd
, sa
, d
)
913 const struct newesp
*espp
;
915 struct ip6ctlparam
*ip6cp
= NULL
, ip6cp1
;
916 struct secasvar
*sav
;
920 struct sockaddr_in6
*sa6_src
, *sa6_dst
;
922 if (sa
->sa_family
!= AF_INET6
||
923 sa
->sa_len
!= sizeof(struct sockaddr_in6
))
925 if ((unsigned)cmd
>= PRC_NCMDS
)
928 /* if the parameter is from icmp6, decode it. */
930 ip6cp
= (struct ip6ctlparam
*)d
;
932 ip6
= ip6cp
->ip6c_ip6
;
933 off
= ip6cp
->ip6c_off
;
941 * Notify the error to all possible sockets via pfctlinput2.
942 * Since the upper layer information (such as protocol type,
943 * source and destination ports) is embedded in the encrypted
944 * data and might have been cut, we can't directly call
945 * an upper layer ctlinput function. However, the pcbnotify
946 * function will consider source and destination addresses
947 * as well as the flow info value, and may be able to find
948 * some PCB that should be notified.
949 * Although pfctlinput2 will call esp6_ctlinput(), there is
950 * no possibility of an infinite loop of function calls,
951 * because we don't pass the inner IPv6 header.
953 bzero(&ip6cp1
, sizeof(ip6cp1
));
954 ip6cp1
.ip6c_src
= ip6cp
->ip6c_src
;
955 pfctlinput2(cmd
, sa
, (void *)&ip6cp1
);
958 * Then go to special cases that need ESP header information.
959 * XXX: We assume that when ip6 is non NULL,
960 * M and OFF are valid.
963 /* check if we can safely examine src and dst ports */
964 if (m
->m_pkthdr
.len
< off
+ sizeof(esp
))
967 if (m
->m_len
< off
+ sizeof(esp
)) {
969 * this should be rare case,
970 * so we compromise on this copy...
972 m_copydata(m
, off
, sizeof(esp
), (caddr_t
)&esp
);
975 espp
= (struct newesp
*)(mtod(m
, caddr_t
) + off
);
977 if (cmd
== PRC_MSGSIZE
) {
981 * Check to see if we have a valid SA corresponding to
982 * the address in the ICMP message payload.
984 sa6_src
= ip6cp
->ip6c_src
;
985 sa6_dst
= (struct sockaddr_in6
*)sa
;
986 lck_mtx_lock(sadb_mutex
);
987 sav
= key_allocsa(AF_INET6
,
988 (caddr_t
)&sa6_src
->sin6_addr
,
989 (caddr_t
)&sa6_dst
->sin6_addr
,
990 IPPROTO_ESP
, espp
->esp_spi
);
992 if (sav
->state
== SADB_SASTATE_MATURE
||
993 sav
->state
== SADB_SASTATE_DYING
)
997 lck_mtx_unlock(sadb_mutex
);
999 /* XXX Further validation? */
1002 * Depending on the value of "valid" and routing table
1003 * size (mtudisc_{hi,lo}wat), we will:
1004 * - recalcurate the new MTU and create the
1005 * corresponding routing entry, or
1006 * - ignore the MTU change notification.
1008 icmp6_mtudisc_update((struct ip6ctlparam
*)d
, valid
);
1011 /* we normally notify any pcb here */