2 * Copyright (c) 2008-2017 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_output.c,v 1.1.2.3 2002/04/28 05:40:26 suz Exp $ */
30 /* $KAME: esp_output.c,v 1.44 2001/07/26 06:53:15 jinmei 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
64 * RFC1827/2406 Encapsulated Security Payload.
67 #include <sys/param.h>
68 #include <sys/systm.h>
69 #include <sys/malloc.h>
71 #include <sys/domain.h>
72 #include <sys/protosw.h>
73 #include <sys/socket.h>
74 #include <sys/socketvar.h>
75 #include <sys/errno.h>
77 #include <sys/kernel.h>
78 #include <sys/syslog.h>
81 #include <net/route.h>
83 #include <netinet/in.h>
84 #include <netinet/in_systm.h>
85 #include <netinet/ip.h>
86 #include <netinet/in_var.h>
87 #include <netinet/udp.h> /* for nat traversal */
90 #include <netinet/ip6.h>
91 #include <netinet6/ip6_var.h>
92 #include <netinet/icmp6.h>
95 #include <netinet6/ipsec.h>
97 #include <netinet6/ipsec6.h>
99 #include <netinet6/ah.h>
101 #include <netinet6/ah6.h>
103 #include <netinet6/esp.h>
105 #include <netinet6/esp6.h>
107 #include <netkey/key.h>
108 #include <netkey/keydb.h>
110 #include <net/net_osdep.h>
112 #include <sys/kdebug.h>
113 #define DBG_LAYER_BEG NETDBG_CODE(DBG_NETIPSEC, 1)
114 #define DBG_LAYER_END NETDBG_CODE(DBG_NETIPSEC, 3)
115 #define DBG_FNC_ESPOUT NETDBG_CODE(DBG_NETIPSEC, (4 << 8))
116 #define DBG_FNC_ENCRYPT NETDBG_CODE(DBG_NETIPSEC, (5 << 8))
118 static int esp_output(struct mbuf
*, u_char
*, struct mbuf
*,
119 int, struct secasvar
*sav
);
121 extern int esp_udp_encap_port
;
122 extern u_int64_t natt_now
;
124 extern lck_mtx_t
*sadb_mutex
;
127 * compute ESP header size.
130 esp_hdrsiz(__unused
struct ipsecrequest
*isr
)
135 panic("esp_hdrsiz: NULL was passed.\n");
139 lck_mtx_lock(sadb_mutex
);
141 struct secasvar
*sav
;
142 const struct esp_algorithm
*algo
;
143 const struct ah_algorithm
*aalgo
;
149 /*%%%% this needs to change - no sav in ipsecrequest any more */
152 if (isr
->saidx
.proto
!= IPPROTO_ESP
) {
153 panic("unsupported mode passed to esp_hdrsiz");
159 if (sav
->state
!= SADB_SASTATE_MATURE
160 && sav
->state
!= SADB_SASTATE_DYING
) {
164 /* we need transport mode ESP. */
165 algo
= esp_algorithm_lookup(sav
->alg_enc
);
174 if (algo
->padbound
) {
175 maxpad
= algo
->padbound
;
179 maxpad
+= 1; /* maximum 'extendsiz' is padbound + 1, see esp_output */
181 if (sav
->flags
& SADB_X_EXT_OLD
) {
183 hdrsiz
= sizeof(struct esp
) + ivlen
+ maxpad
;
186 aalgo
= ah_algorithm_lookup(sav
->alg_auth
);
187 if (aalgo
&& sav
->replay
&& sav
->key_auth
) {
188 authlen
= (aalgo
->sumsiz
)(sav
);
192 hdrsiz
= sizeof(struct newesp
) + ivlen
+ maxpad
+ authlen
;
196 * If the security association indicates that NATT is required,
197 * add the size of the NATT encapsulation header:
199 if ((sav
->flags
& SADB_X_EXT_NATT
) != 0) {
200 hdrsiz
+= sizeof(struct udphdr
) + 4;
203 lck_mtx_unlock(sadb_mutex
);
207 lck_mtx_unlock(sadb_mutex
);
211 * sizeof(struct newesp) > sizeof(struct esp). (8)
212 * esp_max_ivlen() = max ivlen for CBC mode
213 * 17 = (maximum padding length without random padding length)
214 * + (Pad Length field) + (Next Header field).
215 * 64 = maximum ICV we support.
216 * sizeof(struct udphdr) in case NAT traversal is used
218 return sizeof(struct newesp
) + esp_max_ivlen() + 17 + AH_MAXSUMSIZE
+ sizeof(struct udphdr
);
222 * Modify the packet so that the payload is encrypted.
223 * The mbuf (m) must start with IPv4 or IPv6 header.
224 * On failure, free the given mbuf and return NULL.
229 * IP ......... payload
230 * during the encryption:
231 * m nexthdrp mprev md
233 * IP ............... esp iv payload pad padlen nxthdr
234 * <--><-><------><--------------->
235 * esplen plen extendsiz
239 * <-----------------> espoff
247 struct secasvar
*sav
)
252 struct esptail
*esptail
;
253 const struct esp_algorithm
*algo
;
256 size_t plen
; /*payload length to be encrypted*/
258 size_t esphlen
; /* sizeof(struct esp/newesp) + ivlen */
263 struct ipsecstat
*stat
;
264 struct udphdr
*udp
= NULL
;
265 int udp_encapsulate
= (sav
->flags
& SADB_X_EXT_NATT
&& (af
== AF_INET
|| af
== AF_INET6
) &&
266 (esp_udp_encap_port
& 0xFFFF) != 0);
268 KERNEL_DEBUG(DBG_FNC_ESPOUT
| DBG_FUNC_START
, sav
->ivlen
, 0, 0, 0, 0);
283 ipseclog((LOG_ERR
, "esp_output: unsupported af %d\n", af
));
284 KERNEL_DEBUG(DBG_FNC_ESPOUT
| DBG_FUNC_END
, 1, 0, 0, 0, 0);
285 return 0; /* no change at all */
288 /* some sanity check */
289 if ((sav
->flags
& SADB_X_EXT_OLD
) == 0 && !sav
->replay
) {
296 ip
= mtod(m
, struct ip
*);
297 ipseclog((LOG_DEBUG
, "esp4_output: internal error: "
298 "sav->replay is null: %x->%x, SPI=%u\n",
299 (u_int32_t
)ntohl(ip
->ip_src
.s_addr
),
300 (u_int32_t
)ntohl(ip
->ip_dst
.s_addr
),
301 (u_int32_t
)ntohl(sav
->spi
)));
302 IPSEC_STAT_INCREMENT(ipsecstat
.out_inval
);
308 ipseclog((LOG_DEBUG
, "esp6_output: internal error: "
309 "sav->replay is null: SPI=%u\n",
310 (u_int32_t
)ntohl(sav
->spi
)));
311 IPSEC_STAT_INCREMENT(ipsec6stat
.out_inval
);
315 panic("esp_output: should not reach here");
318 KERNEL_DEBUG(DBG_FNC_ESPOUT
| DBG_FUNC_END
, 2, 0, 0, 0, 0);
322 algo
= esp_algorithm_lookup(sav
->alg_enc
);
324 ipseclog((LOG_ERR
, "esp_output: unsupported algorithm: "
325 "SPI=%u\n", (u_int32_t
)ntohl(sav
->spi
)));
327 KERNEL_DEBUG(DBG_FNC_ESPOUT
| DBG_FUNC_END
, 3, 0, 0, 0, 0);
334 panic("invalid ivlen");
340 * XXX inserts ESP header right after IPv4 header. should
341 * chase the header chain.
342 * XXX sequential number
345 struct ip
*ip
= NULL
;
348 struct ip6_hdr
*ip6
= NULL
;
350 size_t esplen
; /* sizeof(struct esp/newesp) */
351 size_t hlen
= 0; /* ip header len */
353 if (sav
->flags
& SADB_X_EXT_OLD
) {
355 esplen
= sizeof(struct esp
);
358 if (sav
->flags
& SADB_X_EXT_DERIV
) {
359 esplen
= sizeof(struct esp
);
361 esplen
= sizeof(struct newesp
);
364 esphlen
= esplen
+ ivlen
;
366 for (mprev
= m
; mprev
&& mprev
->m_next
!= md
; mprev
= mprev
->m_next
) {
369 if (mprev
== NULL
|| mprev
->m_next
!= md
) {
370 ipseclog((LOG_DEBUG
, "esp%d_output: md is not in chain\n",
373 KERNEL_DEBUG(DBG_FNC_ESPOUT
| DBG_FUNC_END
, 4, 0, 0, 0, 0);
378 for (n
= md
; n
; n
= n
->m_next
) {
385 ip
= mtod(m
, struct ip
*);
387 hlen
= IP_VHL_HL(ip
->ip_vhl
) << 2;
389 hlen
= ip
->ip_hl
<< 2;
395 ip6
= mtod(m
, struct ip6_hdr
*);
401 /* make the packet over-writable */
402 mprev
->m_next
= NULL
;
403 if ((md
= ipsec_copypkt(md
)) == NULL
) {
411 * Translate UDP source port back to its original value.
412 * SADB_X_EXT_NATT_MULTIPLEUSERS is only set for transort mode.
414 if ((sav
->flags
& SADB_X_EXT_NATT_MULTIPLEUSERS
) != 0) {
415 /* if not UDP - drop it */
416 if (ip
->ip_p
!= IPPROTO_UDP
) {
417 IPSEC_STAT_INCREMENT(ipsecstat
.out_inval
);
423 udp
= mtod(md
, struct udphdr
*);
425 /* if src port not set in sav - find it */
426 if (sav
->natt_encapsulated_src_port
== 0) {
427 if (key_natt_get_translated_port(sav
) == 0) {
433 if (sav
->remote_ike_port
== htons(udp
->uh_dport
)) {
434 /* translate UDP port */
435 udp
->uh_dport
= sav
->natt_encapsulated_src_port
;
436 udp
->uh_sum
= 0; /* don't need checksum with ESP auth */
438 /* drop the packet - can't translate the port */
439 IPSEC_STAT_INCREMENT(ipsecstat
.out_inval
);
447 espoff
= m
->m_pkthdr
.len
- plen
;
449 if (udp_encapsulate
) {
450 esphlen
+= sizeof(struct udphdr
);
451 espoff
+= sizeof(struct udphdr
);
455 * grow the mbuf to accomodate ESP header.
456 * before: IP ... payload
457 * after: IP ... [UDP] ESP IV payload
459 if (M_LEADINGSPACE(md
) < esphlen
|| (md
->m_flags
& M_EXT
) != 0) {
460 MGET(n
, M_DONTWAIT
, MT_DATA
);
469 m
->m_pkthdr
.len
+= esphlen
;
470 if (udp_encapsulate
) {
471 udp
= mtod(n
, struct udphdr
*);
472 esp
= (struct esp
*)(void *)((caddr_t
)udp
+ sizeof(struct udphdr
));
474 esp
= mtod(n
, struct esp
*);
477 md
->m_len
+= esphlen
;
478 md
->m_data
-= esphlen
;
479 m
->m_pkthdr
.len
+= esphlen
;
480 esp
= mtod(md
, struct esp
*);
481 if (udp_encapsulate
) {
482 udp
= mtod(md
, struct udphdr
*);
483 esp
= (struct esp
*)(void *)((caddr_t
)udp
+ sizeof(struct udphdr
));
485 esp
= mtod(md
, struct esp
*);
492 if (esphlen
< (IP_MAXPACKET
- ntohs(ip
->ip_len
))) {
493 ip
->ip_len
= htons(ntohs(ip
->ip_len
) + esphlen
);
496 "IPv4 ESP output: size exceeds limit\n"));
497 IPSEC_STAT_INCREMENT(ipsecstat
.out_inval
);
506 /* total packet length will be computed in ip6_output() */
512 /* initialize esp header. */
514 if ((sav
->flags
& SADB_X_EXT_OLD
) == 0) {
516 nesp
= (struct newesp
*)esp
;
517 if (sav
->replay
->count
== ~0) {
518 if ((sav
->flags
& SADB_X_EXT_CYCSEQ
) == 0) {
519 /* XXX Is it noisy ? */
520 ipseclog((LOG_WARNING
,
521 "replay counter overflowed. %s\n",
522 ipsec_logsastr(sav
)));
523 IPSEC_STAT_INCREMENT(stat
->out_inval
);
525 KERNEL_DEBUG(DBG_FNC_ESPOUT
| DBG_FUNC_END
, 5, 0, 0, 0, 0);
529 lck_mtx_lock(sadb_mutex
);
530 sav
->replay
->count
++;
531 lck_mtx_unlock(sadb_mutex
);
533 * XXX sequence number must not be cycled, if the SA is
534 * installed by IKE daemon.
536 nesp
->esp_seq
= htonl(sav
->replay
->count
);
541 * find the last mbuf. make some room for ESP trailer.
544 struct ip
*ip
= NULL
;
551 if (algo
->padbound
) {
552 padbound
= algo
->padbound
;
556 /* ESP packet, including nxthdr field, must be length of 4n */
561 extendsiz
= padbound
- (plen
% padbound
);
562 if (extendsiz
== 1) {
563 extendsiz
= padbound
+ 1;
570 randpadmax
= ip4_esp_randpad
;
575 randpadmax
= ip6_esp_randpad
;
582 if (randpadmax
< 0 || plen
+ extendsiz
>= randpadmax
) {
588 randpadmax
= (randpadmax
/ padbound
) * padbound
;
589 pad
= (randpadmax
- plen
+ extendsiz
) / padbound
;
592 pad
= (random() % pad
) * padbound
;
598 * make sure we do not pad too much.
599 * MLEN limitation comes from the trailer attachment
601 * 256 limitation comes from sequential padding.
602 * also, the 1-octet length field in ESP trailer imposes
603 * limitation (but is less strict than sequential padding
604 * as length field do not count the last 2 octets).
606 if (extendsiz
+ pad
<= MLEN
&& extendsiz
+ pad
< 256) {
612 if (extendsiz
> MLEN
|| extendsiz
>= 256) {
613 panic("extendsiz too big in esp_output");
623 * if M_EXT, the external mbuf data may be shared among
624 * two consequtive TCP packets, and it may be unsafe to use the
627 if (!(n
->m_flags
& M_EXT
) && extendsiz
< M_TRAILINGSPACE(n
)) {
628 extend
= mtod(n
, u_char
*) + n
->m_len
;
629 n
->m_len
+= extendsiz
;
630 m
->m_pkthdr
.len
+= extendsiz
;
634 MGET(nn
, M_DONTWAIT
, MT_DATA
);
636 ipseclog((LOG_DEBUG
, "esp%d_output: can't alloc mbuf",
642 extend
= mtod(nn
, u_char
*);
643 nn
->m_len
= extendsiz
;
647 m
->m_pkthdr
.len
+= extendsiz
;
649 switch (sav
->flags
& SADB_X_EXT_PMASK
) {
650 case SADB_X_EXT_PRAND
:
651 key_randomfill(extend
, extendsiz
);
653 case SADB_X_EXT_PZERO
:
654 bzero(extend
, extendsiz
);
656 case SADB_X_EXT_PSEQ
:
657 for (i
= 0; i
< extendsiz
; i
++) {
658 extend
[i
] = (i
+ 1) & 0xff;
664 if (udp_encapsulate
) {
665 *nexthdrp
= IPPROTO_UDP
;
667 /* Fill out the UDP header */
668 udp
->uh_sport
= ntohs((u_short
)esp_udp_encap_port
);
669 udp
->uh_dport
= ntohs(sav
->remote_ike_port
);
670 // udp->uh_len set later, after all length tweaks are complete
673 /* Update last sent so we know if we need to send keepalive */
674 sav
->natt_last_activity
= natt_now
;
676 *nexthdrp
= IPPROTO_ESP
;
679 /* initialize esp trailer. */
680 esptail
= (struct esptail
*)
681 (mtod(n
, u_int8_t
*) + n
->m_len
- sizeof(struct esptail
));
682 esptail
->esp_nxt
= nxt
;
683 esptail
->esp_padlen
= extendsiz
- 2;
685 /* modify IP header (for ESP header part only) */
689 ip
= mtod(m
, struct ip
*);
690 if (extendsiz
< (IP_MAXPACKET
- ntohs(ip
->ip_len
))) {
691 ip
->ip_len
= htons(ntohs(ip
->ip_len
) + extendsiz
);
694 "IPv4 ESP output: size exceeds limit\n"));
695 IPSEC_STAT_INCREMENT(ipsecstat
.out_inval
);
704 /* total packet length will be computed in ip6_output() */
711 * pre-compute and cache intermediate key
713 error
= esp_schedule(algo
, sav
);
716 IPSEC_STAT_INCREMENT(stat
->out_inval
);
721 * encrypt the packet, based on security association
722 * and the algorithm specified.
724 if (!algo
->encrypt
) {
725 panic("internal error: no encrypt function");
727 KERNEL_DEBUG(DBG_FNC_ENCRYPT
| DBG_FUNC_START
, 0, 0, 0, 0, 0);
728 if ((*algo
->encrypt
)(m
, espoff
, plen
+ extendsiz
, sav
, algo
, ivlen
)) {
729 /* m is already freed */
730 ipseclog((LOG_ERR
, "packet encryption failure\n"));
731 IPSEC_STAT_INCREMENT(stat
->out_inval
);
733 KERNEL_DEBUG(DBG_FNC_ENCRYPT
| DBG_FUNC_END
, 1, error
, 0, 0, 0);
736 KERNEL_DEBUG(DBG_FNC_ENCRYPT
| DBG_FUNC_END
, 2, 0, 0, 0, 0);
739 * calculate ICV if required.
742 u_char authbuf
[AH_MAXSUMSIZE
] __attribute__((aligned(4)));
744 if (algo
->finalizeencrypt
) {
746 if ((*algo
->finalizeencrypt
)(sav
, authbuf
, siz
)) {
747 ipseclog((LOG_ERR
, "packet encryption ICV failure\n"));
748 IPSEC_STAT_INCREMENT(stat
->out_inval
);
750 KERNEL_DEBUG(DBG_FNC_ENCRYPT
| DBG_FUNC_END
, 1, error
, 0, 0, 0);
759 if (!sav
->key_auth
) {
762 if (sav
->key_auth
== SADB_AALG_NONE
) {
767 const struct ah_algorithm
*aalgo
;
769 aalgo
= ah_algorithm_lookup(sav
->alg_auth
);
773 siz
= ((aalgo
->sumsiz
)(sav
) + 3) & ~(4 - 1);
774 if (AH_MAXSUMSIZE
< siz
) {
775 panic("assertion failed for AH_MAXSUMSIZE");
778 if (esp_auth(m
, espoff
, m
->m_pkthdr
.len
- espoff
, sav
, authbuf
)) {
779 ipseclog((LOG_ERR
, "ESP checksum generation failure\n"));
782 IPSEC_STAT_INCREMENT(stat
->out_inval
);
797 if (!(n
->m_flags
& M_EXT
) && siz
< M_TRAILINGSPACE(n
)) { /* XXX */
799 m
->m_pkthdr
.len
+= siz
;
800 p
= mtod(n
, u_char
*) + n
->m_len
- siz
;
804 MGET(nn
, M_DONTWAIT
, MT_DATA
);
806 ipseclog((LOG_DEBUG
, "can't alloc mbuf in esp%d_output",
816 m
->m_pkthdr
.len
+= siz
;
817 p
= mtod(nn
, u_char
*);
819 bcopy(authbuf
, p
, siz
);
821 /* modify IP header (for ESP header part only) */
825 ip
= mtod(m
, struct ip
*);
826 if (siz
< (IP_MAXPACKET
- ntohs(ip
->ip_len
))) {
827 ip
->ip_len
= htons(ntohs(ip
->ip_len
) + siz
);
830 "IPv4 ESP output: size exceeds limit\n"));
831 IPSEC_STAT_INCREMENT(ipsecstat
.out_inval
);
840 /* total packet length will be computed in ip6_output() */
846 if (udp_encapsulate
) {
852 ip
= mtod(m
, struct ip
*);
853 udp
->uh_ulen
= htons(ntohs(ip
->ip_len
) - (IP_VHL_HL(ip
->ip_vhl
) << 2));
856 ip6
= mtod(m
, struct ip6_hdr
*);
857 udp
->uh_ulen
= htons(plen
+ siz
+ extendsiz
+ esphlen
);
858 udp
->uh_sum
= in6_pseudo(&ip6
->ip6_src
, &ip6
->ip6_dst
, htonl(ntohs(udp
->uh_ulen
) + IPPROTO_UDP
));
859 m
->m_pkthdr
.csum_flags
= (CSUM_UDPIPV6
| CSUM_ZERO_INVERT
);
860 m
->m_pkthdr
.csum_data
= offsetof(struct udphdr
, uh_sum
);
866 lck_mtx_lock(sadb_mutex
);
869 "NULL mbuf after encryption in esp%d_output", afnumber
));
873 stat
->out_esphist
[sav
->alg_enc
]++;
874 lck_mtx_unlock(sadb_mutex
);
875 key_sa_recordxfer(sav
, m
);
876 KERNEL_DEBUG(DBG_FNC_ESPOUT
| DBG_FUNC_END
, 6, 0, 0, 0, 0);
881 KERNEL_DEBUG(DBG_FNC_ESPOUT
| DBG_FUNC_END
, 7, error
, 0, 0, 0);
884 panic("something bad in esp_output");
892 struct secasvar
*sav
)
895 if (m
->m_len
< sizeof(struct ip
)) {
896 ipseclog((LOG_DEBUG
, "esp4_output: first mbuf too short\n"));
900 ip
= mtod(m
, struct ip
*);
901 /* XXX assumes that m->m_next points to payload */
902 return esp_output(m
, &ip
->ip_p
, m
->m_next
, AF_INET
, sav
);
912 struct secasvar
*sav
)
914 if (m
->m_len
< sizeof(struct ip6_hdr
)) {
915 ipseclog((LOG_DEBUG
, "esp6_output: first mbuf too short\n"));
919 return esp_output(m
, nexthdrp
, md
, AF_INET6
, sav
);