]>
git.saurik.com Git - apple/xnu.git/blob - bsd/netinet6/esp_rijndael.c
2 * Copyright (c) 2008-2016 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_rijndael.c,v 1.1.2.1 2001/07/03 11:01:50 ume Exp $ */
30 /* $KAME: esp_rijndael.c,v 1.4 2001/03/02 05:53:05 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
61 #include <sys/param.h>
62 #include <sys/systm.h>
63 #include <sys/socket.h>
64 #include <sys/queue.h>
65 #include <sys/syslog.h>
67 #include <sys/mcache.h>
69 #include <kern/locks.h>
72 #include <net/route.h>
74 #include <netinet6/ipsec.h>
75 #include <netinet6/esp.h>
76 #include <netinet6/esp_rijndael.h>
78 #include <libkern/crypto/aes.h>
80 #include <netkey/key.h>
82 #include <net/net_osdep.h>
84 #define MAX_REALIGN_LEN 2000
85 #define AES_BLOCKLEN 16
86 #define ESP_GCM_SALT_LEN 4 // RFC 4106 Section 4
87 #define ESP_GCM_IVLEN 8
88 #define ESP_GCM_ALIGN 16
90 extern lck_mtx_t
*sadb_mutex
;
100 __unused
const struct esp_algorithm
*algo
)
102 return sizeof(aes_ctx
);
107 __unused
const struct esp_algorithm
*algo
,
108 struct secasvar
*sav
)
110 LCK_MTX_ASSERT(sadb_mutex
, LCK_MTX_ASSERT_OWNED
);
111 aes_ctx
*ctx
= (aes_ctx
*)sav
->sched
;
113 aes_decrypt_key((const unsigned char *) _KEYBUF(sav
->key_enc
), _KEYLEN(sav
->key_enc
), &ctx
->decrypt
);
114 aes_encrypt_key((const unsigned char *) _KEYBUF(sav
->key_enc
), _KEYLEN(sav
->key_enc
), &ctx
->encrypt
);
120 /* The following 2 functions decrypt or encrypt the contents of
121 * the mbuf chain passed in keeping the IP and ESP header's in place,
123 * The code attempts to call the crypto code with the largest chunk
124 * of data it can based on the amount of source data in
125 * the current source mbuf and the space remaining in the current
126 * destination mbuf. The crypto code requires data to be a multiples
127 * of 16 bytes. A separate buffer is used when a 16 byte block spans
131 * off = offset to ESP header
133 * local vars for source:
134 * soff = offset from beginning of the chain to the head of the
136 * scut = last mbuf that contains headers to be retained
137 * scutoff = offset to end of the headers in scut
138 * s = the current mbuf
139 * sn = current offset to data in s (next source data to process)
141 * local vars for dest:
144 * dn = current offset in d (next location to store result)
152 struct secasvar
*sav
,
153 const struct esp_algorithm
*algo
,
157 struct mbuf
*d
, *d0
, *dp
;
158 int soff
; /* offset from the head of chain, to head of this mbuf */
159 int sn
, dn
; /* offset from the head of the mbuf, to meat */
160 size_t ivoff
, bodyoff
;
161 u_int8_t iv
[AES_BLOCKLEN
] __attribute__((aligned(4))), *dptr
;
162 u_int8_t sbuf
[AES_BLOCKLEN
] __attribute__((aligned(4))), *sp
, *sp_unaligned
, *sp_aligned
= NULL
;
168 if (ivlen
!= AES_BLOCKLEN
) {
169 ipseclog((LOG_ERR
, "esp_cbc_decrypt %s: "
170 "unsupported ivlen %d\n", algo
->name
, ivlen
));
175 if (sav
->flags
& SADB_X_EXT_OLD
) {
177 ivoff
= off
+ sizeof(struct esp
);
178 bodyoff
= off
+ sizeof(struct esp
) + ivlen
;
180 ivoff
= off
+ sizeof(struct newesp
);
181 bodyoff
= off
+ sizeof(struct newesp
) + ivlen
;
184 if (m
->m_pkthdr
.len
< bodyoff
) {
185 ipseclog((LOG_ERR
, "esp_cbc_decrypt %s: bad len %d/%u\n",
186 algo
->name
, m
->m_pkthdr
.len
, (u_int32_t
)bodyoff
));
190 if ((m
->m_pkthdr
.len
- bodyoff
) % AES_BLOCKLEN
) {
191 ipseclog((LOG_ERR
, "esp_cbc_decrypt %s: "
192 "payload length must be multiple of %d\n",
193 algo
->name
, AES_BLOCKLEN
));
199 m_copydata(m
, ivoff
, ivlen
, (caddr_t
) iv
);
206 /* skip header/IV offset */
207 while (soff
< bodyoff
) {
208 if (soff
+ s
->m_len
> bodyoff
) {
219 /* skip over empty mbuf */
220 while (s
&& s
->m_len
== 0) {
224 while (soff
< m
->m_pkthdr
.len
) {
226 if (sn
+ AES_BLOCKLEN
<= s
->m_len
) {
227 /* body is continuous */
228 sp
= mtod(s
, u_int8_t
*) + sn
;
230 len
-= len
% AES_BLOCKLEN
; // full blocks only
232 /* body is non-continuous */
233 m_copydata(s
, sn
, AES_BLOCKLEN
, (caddr_t
) sbuf
);
235 len
= AES_BLOCKLEN
; // 1 block only in sbuf
239 if (!d
|| dn
+ AES_BLOCKLEN
> d
->m_len
) {
243 MGET(d
, M_DONTWAIT
, MT_DATA
);
244 i
= m
->m_pkthdr
.len
- (soff
+ sn
);
246 MCLGET(d
, M_DONTWAIT
);
247 if ((d
->m_flags
& M_EXT
) == 0) {
248 d
= m_mbigget(d
, M_DONTWAIT
);
249 if ((d
->m_flags
& M_EXT
) == 0) {
269 // try to make mbuf data aligned
270 if (!IPSEC_IS_P2ALIGNED(d
->m_data
)) {
271 m_adj(d
, IPSEC_GET_P2UNALIGNED_OFS(d
->m_data
));
274 d
->m_len
= M_TRAILINGSPACE(d
);
275 d
->m_len
-= d
->m_len
% AES_BLOCKLEN
;
279 dptr
= mtod(d
, u_int8_t
*);
283 /* adjust len if greater than space available in dest */
284 if (len
> d
->m_len
- dn
) {
289 // check input pointer alignment and use a separate aligned buffer (if sp is unaligned on 4-byte boundary).
290 if (IPSEC_IS_P2ALIGNED(sp
)) {
294 if (len
> MAX_REALIGN_LEN
) {
299 if (sp_aligned
!= NULL
) {
300 FREE(sp_aligned
, M_SECA
);
305 if (sp_aligned
== NULL
) {
306 sp_aligned
= (u_int8_t
*)_MALLOC(MAX_REALIGN_LEN
, M_SECA
, M_DONTWAIT
);
307 if (sp_aligned
== NULL
) {
316 memcpy(sp
, sp_unaligned
, len
);
318 // no need to check output pointer alignment
319 aes_decrypt_cbc(sp
, iv
, len
>> 4, dptr
+ dn
,
320 (aes_decrypt_ctx
*)(&(((aes_ctx
*)sav
->sched
)->decrypt
)));
322 // update unaligned pointers
323 if (!IPSEC_IS_P2ALIGNED(sp_unaligned
)) {
332 bcopy(sp
+ len
- AES_BLOCKLEN
, iv
, AES_BLOCKLEN
);
334 /* find the next source block */
335 while (s
&& sn
>= s
->m_len
) {
342 /* free un-needed source mbufs and add dest mbufs to chain */
343 m_freem(scut
->m_next
);
344 scut
->m_len
= scutoff
;
348 if (sp_aligned
!= NULL
) {
349 FREE(sp_aligned
, M_SECA
);
354 bzero(iv
, sizeof(iv
));
355 bzero(sbuf
, sizeof(sbuf
));
364 __unused
size_t plen
,
365 struct secasvar
*sav
,
366 const struct esp_algorithm
*algo
,
370 struct mbuf
*d
, *d0
, *dp
;
371 int soff
; /* offset from the head of chain, to head of this mbuf */
372 int sn
, dn
; /* offset from the head of the mbuf, to meat */
373 size_t ivoff
, bodyoff
;
374 u_int8_t
*ivp
, *dptr
, *ivp_unaligned
;
375 u_int8_t sbuf
[AES_BLOCKLEN
] __attribute__((aligned(4))), *sp
, *sp_unaligned
, *sp_aligned
= NULL
;
376 u_int8_t ivp_aligned_buf
[AES_BLOCKLEN
] __attribute__((aligned(4)));
381 if (ivlen
!= AES_BLOCKLEN
) {
382 ipseclog((LOG_ERR
, "esp_cbc_encrypt %s: "
383 "unsupported ivlen %d\n", algo
->name
, ivlen
));
388 if (sav
->flags
& SADB_X_EXT_OLD
) {
390 ivoff
= off
+ sizeof(struct esp
);
391 bodyoff
= off
+ sizeof(struct esp
) + ivlen
;
393 ivoff
= off
+ sizeof(struct newesp
);
394 bodyoff
= off
+ sizeof(struct newesp
) + ivlen
;
397 /* put iv into the packet */
398 m_copyback(m
, ivoff
, ivlen
, sav
->iv
);
399 ivp
= (u_int8_t
*) sav
->iv
;
401 if (m
->m_pkthdr
.len
< bodyoff
) {
402 ipseclog((LOG_ERR
, "esp_cbc_encrypt %s: bad len %d/%u\n",
403 algo
->name
, m
->m_pkthdr
.len
, (u_int32_t
)bodyoff
));
407 if ((m
->m_pkthdr
.len
- bodyoff
) % AES_BLOCKLEN
) {
408 ipseclog((LOG_ERR
, "esp_cbc_encrypt %s: "
409 "payload length must be multiple of %d\n",
410 algo
->name
, AES_BLOCKLEN
));
420 /* skip headers/IV */
421 while (soff
< bodyoff
) {
422 if (soff
+ s
->m_len
> bodyoff
) {
433 /* skip over empty mbuf */
434 while (s
&& s
->m_len
== 0) {
438 while (soff
< m
->m_pkthdr
.len
) {
440 if (sn
+ AES_BLOCKLEN
<= s
->m_len
) {
441 /* body is continuous */
442 sp
= mtod(s
, u_int8_t
*) + sn
;
444 len
-= len
% AES_BLOCKLEN
; // full blocks only
446 /* body is non-continuous */
447 m_copydata(s
, sn
, AES_BLOCKLEN
, (caddr_t
) sbuf
);
449 len
= AES_BLOCKLEN
; // 1 block only in sbuf
453 if (!d
|| dn
+ AES_BLOCKLEN
> d
->m_len
) {
457 MGET(d
, M_DONTWAIT
, MT_DATA
);
458 i
= m
->m_pkthdr
.len
- (soff
+ sn
);
460 MCLGET(d
, M_DONTWAIT
);
461 if ((d
->m_flags
& M_EXT
) == 0) {
462 d
= m_mbigget(d
, M_DONTWAIT
);
463 if ((d
->m_flags
& M_EXT
) == 0) {
483 // try to make mbuf data aligned
484 if (!IPSEC_IS_P2ALIGNED(d
->m_data
)) {
485 m_adj(d
, IPSEC_GET_P2UNALIGNED_OFS(d
->m_data
));
488 d
->m_len
= M_TRAILINGSPACE(d
);
489 d
->m_len
-= d
->m_len
% AES_BLOCKLEN
;
493 dptr
= mtod(d
, u_int8_t
*);
497 /* adjust len if greater than space available */
498 if (len
> d
->m_len
- dn
) {
503 // check input pointer alignment and use a separate aligned buffer (if sp is not aligned on 4-byte boundary).
504 if (IPSEC_IS_P2ALIGNED(sp
)) {
508 if (len
> MAX_REALIGN_LEN
) {
513 if (sp_aligned
!= NULL
) {
514 FREE(sp_aligned
, M_SECA
);
519 if (sp_aligned
== NULL
) {
520 sp_aligned
= (u_int8_t
*)_MALLOC(MAX_REALIGN_LEN
, M_SECA
, M_DONTWAIT
);
521 if (sp_aligned
== NULL
) {
530 memcpy(sp
, sp_unaligned
, len
);
532 // check ivp pointer alignment and use a separate aligned buffer (if ivp is not aligned on 4-byte boundary).
533 if (IPSEC_IS_P2ALIGNED(ivp
)) {
534 ivp_unaligned
= NULL
;
537 ivp
= ivp_aligned_buf
;
538 memcpy(ivp
, ivp_unaligned
, AES_BLOCKLEN
);
540 // no need to check output pointer alignment
541 aes_encrypt_cbc(sp
, ivp
, len
>> 4, dptr
+ dn
,
542 (aes_encrypt_ctx
*)(&(((aes_ctx
*)sav
->sched
)->encrypt
)));
544 // update unaligned pointers
545 if (!IPSEC_IS_P2ALIGNED(sp_unaligned
)) {
548 if (!IPSEC_IS_P2ALIGNED(ivp_unaligned
)) {
557 ivp
= dptr
+ dn
- AES_BLOCKLEN
; // last block encrypted
559 /* find the next source block and skip empty mbufs */
560 while (s
&& sn
>= s
->m_len
) {
567 /* free un-needed source mbufs and add dest mbufs to chain */
568 m_freem(scut
->m_next
);
569 scut
->m_len
= scutoff
;
573 if (sp_aligned
!= NULL
) {
574 FREE(sp_aligned
, M_SECA
);
579 bzero(sbuf
, sizeof(sbuf
));
587 __unused
const struct esp_algorithm
*algo
)
589 return sizeof(aes_gcm_ctx
) + aes_decrypt_get_ctx_size_gcm() + aes_encrypt_get_ctx_size_gcm() + ESP_GCM_ALIGN
;
593 esp_gcm_schedule( __unused
const struct esp_algorithm
*algo
,
594 struct secasvar
*sav
)
596 LCK_MTX_ASSERT(sadb_mutex
, LCK_MTX_ASSERT_OWNED
);
597 aes_gcm_ctx
*ctx
= (aes_gcm_ctx
*)P2ROUNDUP(sav
->sched
, ESP_GCM_ALIGN
);
598 u_int ivlen
= sav
->ivlen
;
599 unsigned char nonce
[ESP_GCM_SALT_LEN
+ ivlen
];
602 ctx
->decrypt
= &ctx
->ctxt
[0];
603 ctx
->encrypt
= &ctx
->ctxt
[aes_decrypt_get_ctx_size_gcm() / sizeof(ccgcm_ctx
)];
605 rc
= aes_decrypt_key_gcm((const unsigned char *) _KEYBUF(sav
->key_enc
), _KEYLEN(sav
->key_enc
) - ESP_GCM_SALT_LEN
, ctx
->decrypt
);
610 bzero(nonce
, ESP_GCM_SALT_LEN
+ ivlen
);
611 memcpy(nonce
, _KEYBUF(sav
->key_enc
) + _KEYLEN(sav
->key_enc
) - ESP_GCM_SALT_LEN
, ESP_GCM_SALT_LEN
);
612 memcpy(nonce
+ ESP_GCM_SALT_LEN
, sav
->iv
, ivlen
);
614 rc
= aes_encrypt_key_with_iv_gcm((const unsigned char *) _KEYBUF(sav
->key_enc
), _KEYLEN(sav
->key_enc
) - ESP_GCM_SALT_LEN
, nonce
, ctx
->encrypt
);
619 rc
= aes_encrypt_reset_gcm(ctx
->encrypt
);
628 esp_gcm_encrypt_finalize(struct secasvar
*sav
,
629 unsigned char *tag
, unsigned int tag_bytes
)
631 aes_gcm_ctx
*ctx
= (aes_gcm_ctx
*)P2ROUNDUP(sav
->sched
, ESP_GCM_ALIGN
);
632 return aes_encrypt_finalize_gcm(tag
, tag_bytes
, ctx
->encrypt
);
636 esp_gcm_decrypt_finalize(struct secasvar
*sav
,
637 unsigned char *tag
, unsigned int tag_bytes
)
639 aes_gcm_ctx
*ctx
= (aes_gcm_ctx
*)P2ROUNDUP(sav
->sched
, ESP_GCM_ALIGN
);
640 return aes_decrypt_finalize_gcm(tag
, tag_bytes
, ctx
->decrypt
);
647 __unused
size_t plen
,
648 struct secasvar
*sav
,
649 const struct esp_algorithm
*algo __unused
,
653 struct mbuf
*d
, *d0
, *dp
;
654 int soff
; /* offset from the head of chain, to head of this mbuf */
655 int sn
, dn
; /* offset from the head of the mbuf, to meat */
656 size_t ivoff
, bodyoff
;
657 u_int8_t
*dptr
, *sp
, *sp_unaligned
, *sp_aligned
= NULL
;
662 unsigned char nonce
[ESP_GCM_SALT_LEN
+ ivlen
];
664 if (ivlen
!= ESP_GCM_IVLEN
) {
665 ipseclog((LOG_ERR
, "%s: unsupported ivlen %d\n", __FUNCTION__
, ivlen
));
670 if (sav
->flags
& SADB_X_EXT_OLD
) {
672 ivoff
= off
+ sizeof(struct esp
);
673 bodyoff
= off
+ sizeof(struct esp
) + ivlen
;
675 ivoff
= off
+ sizeof(struct newesp
);
676 bodyoff
= off
+ sizeof(struct newesp
) + ivlen
;
679 bzero(nonce
, ESP_GCM_SALT_LEN
+ ivlen
);
680 /* generate new iv */
681 ctx
= (aes_gcm_ctx
*)P2ROUNDUP(sav
->sched
, ESP_GCM_ALIGN
);
683 if (aes_encrypt_reset_gcm(ctx
->encrypt
)) {
684 ipseclog((LOG_ERR
, "%s: gcm reset failure\n", __FUNCTION__
));
689 if (aes_encrypt_inc_iv_gcm((unsigned char *)nonce
, ctx
->encrypt
)) {
690 ipseclog((LOG_ERR
, "%s: iv generation failure\n", __FUNCTION__
));
696 * The IV is now generated within corecrypto and
697 * is provided to ESP using aes_encrypt_inc_iv_gcm().
698 * This makes the sav->iv redundant and is no longer
699 * used in GCM operations. But we still copy the IV
700 * back to sav->iv to ensure that any future code reading
701 * this value will get the latest IV.
703 memcpy(sav
->iv
, (nonce
+ ESP_GCM_SALT_LEN
), ivlen
);
704 m_copyback(m
, ivoff
, ivlen
, sav
->iv
);
705 bzero(nonce
, ESP_GCM_SALT_LEN
+ ivlen
);
707 if (m
->m_pkthdr
.len
< bodyoff
) {
708 ipseclog((LOG_ERR
, "%s: bad len %d/%u\n", __FUNCTION__
,
709 m
->m_pkthdr
.len
, (u_int32_t
)bodyoff
));
714 /* Set Additional Authentication Data */
715 if (!(sav
->flags
& SADB_X_EXT_OLD
)) {
717 m_copydata(m
, off
, sizeof(esp
), (caddr_t
) &esp
);
718 if (aes_encrypt_aad_gcm((unsigned char*)&esp
, sizeof(esp
), ctx
->encrypt
)) {
719 ipseclog((LOG_ERR
, "%s: packet decryption AAD failure\n", __FUNCTION__
));
730 /* skip headers/IV */
731 while (soff
< bodyoff
) {
732 if (soff
+ s
->m_len
> bodyoff
) {
743 /* skip over empty mbuf */
744 while (s
&& s
->m_len
== 0) {
748 while (soff
< m
->m_pkthdr
.len
) {
750 sp
= mtod(s
, u_int8_t
*) + sn
;
754 if (!d
|| (dn
+ len
> d
->m_len
)) {
758 MGET(d
, M_DONTWAIT
, MT_DATA
);
759 i
= m
->m_pkthdr
.len
- (soff
+ sn
);
761 MCLGET(d
, M_DONTWAIT
);
762 if ((d
->m_flags
& M_EXT
) == 0) {
763 d
= m_mbigget(d
, M_DONTWAIT
);
764 if ((d
->m_flags
& M_EXT
) == 0) {
784 // try to make mbuf data aligned
785 if (!IPSEC_IS_P2ALIGNED(d
->m_data
)) {
786 m_adj(d
, IPSEC_GET_P2UNALIGNED_OFS(d
->m_data
));
789 d
->m_len
= M_TRAILINGSPACE(d
);
795 dptr
= mtod(d
, u_int8_t
*);
799 /* adjust len if greater than space available */
800 if (len
> d
->m_len
- dn
) {
805 // check input pointer alignment and use a separate aligned buffer (if sp is not aligned on 4-byte boundary).
806 if (IPSEC_IS_P2ALIGNED(sp
)) {
810 if (len
> MAX_REALIGN_LEN
) {
815 if (sp_aligned
!= NULL
) {
816 FREE(sp_aligned
, M_SECA
);
821 if (sp_aligned
== NULL
) {
822 sp_aligned
= (u_int8_t
*)_MALLOC(MAX_REALIGN_LEN
, M_SECA
, M_DONTWAIT
);
823 if (sp_aligned
== NULL
) {
832 memcpy(sp
, sp_unaligned
, len
);
835 if (aes_encrypt_gcm(sp
, len
, dptr
+ dn
, ctx
->encrypt
)) {
836 ipseclog((LOG_ERR
, "%s: failed to encrypt\n", __FUNCTION__
));
841 // update unaligned pointers
842 if (!IPSEC_IS_P2ALIGNED(sp_unaligned
)) {
850 /* find the next source block and skip empty mbufs */
851 while (s
&& sn
>= s
->m_len
) {
858 /* free un-needed source mbufs and add dest mbufs to chain */
859 m_freem(scut
->m_next
);
860 scut
->m_len
= scutoff
;
864 if (sp_aligned
!= NULL
) {
865 FREE(sp_aligned
, M_SECA
);
876 struct secasvar
*sav
,
877 const struct esp_algorithm
*algo __unused
,
881 struct mbuf
*d
, *d0
, *dp
;
882 int soff
; /* offset from the head of chain, to head of this mbuf */
883 int sn
, dn
; /* offset from the head of the mbuf, to meat */
884 size_t ivoff
, bodyoff
;
885 u_int8_t iv
[ESP_GCM_IVLEN
] __attribute__((aligned(4))), *dptr
;
886 u_int8_t
*sp
, *sp_unaligned
, *sp_aligned
= NULL
;
891 unsigned char nonce
[ESP_GCM_SALT_LEN
+ ivlen
];
893 if (ivlen
!= ESP_GCM_IVLEN
) {
894 ipseclog((LOG_ERR
, "%s: unsupported ivlen %d\n", __FUNCTION__
, ivlen
));
899 if (sav
->flags
& SADB_X_EXT_OLD
) {
901 ivoff
= off
+ sizeof(struct esp
);
902 bodyoff
= off
+ sizeof(struct esp
) + ivlen
;
904 ivoff
= off
+ sizeof(struct newesp
);
905 bodyoff
= off
+ sizeof(struct newesp
) + ivlen
;
908 if (m
->m_pkthdr
.len
< bodyoff
) {
909 ipseclog((LOG_ERR
, "%s: bad len %d/%u\n", __FUNCTION__
,
910 m
->m_pkthdr
.len
, (u_int32_t
)bodyoff
));
916 m_copydata(m
, ivoff
, ivlen
, (caddr_t
) iv
);
919 memcpy(nonce
, _KEYBUF(sav
->key_enc
) + _KEYLEN(sav
->key_enc
) - ESP_GCM_SALT_LEN
, ESP_GCM_SALT_LEN
);
920 memcpy(nonce
+ ESP_GCM_SALT_LEN
, iv
, ivlen
);
922 ctx
= (aes_gcm_ctx
*)P2ROUNDUP(sav
->sched
, ESP_GCM_ALIGN
);
923 if (aes_decrypt_set_iv_gcm(nonce
, sizeof(nonce
), ctx
->decrypt
)) {
924 ipseclog((LOG_ERR
, "%s: failed to set IV\n", __FUNCTION__
));
926 bzero(nonce
, sizeof(nonce
));
929 bzero(nonce
, sizeof(nonce
));
931 /* Set Additional Authentication Data */
932 if (!(sav
->flags
& SADB_X_EXT_OLD
)) {
934 m_copydata(m
, off
, sizeof(esp
), (caddr_t
) &esp
);
935 if (aes_decrypt_aad_gcm((unsigned char*)&esp
, sizeof(esp
), ctx
->decrypt
)) {
936 ipseclog((LOG_ERR
, "%s: packet decryption AAD failure\n", __FUNCTION__
));
946 /* skip header/IV offset */
947 while (soff
< bodyoff
) {
948 if (soff
+ s
->m_len
> bodyoff
) {
959 /* skip over empty mbuf */
960 while (s
&& s
->m_len
== 0) {
964 while (soff
< m
->m_pkthdr
.len
) {
966 sp
= mtod(s
, u_int8_t
*) + sn
;
970 if (!d
|| (dn
+ len
> d
->m_len
)) {
974 MGET(d
, M_DONTWAIT
, MT_DATA
);
975 i
= m
->m_pkthdr
.len
- (soff
+ sn
);
977 MCLGET(d
, M_DONTWAIT
);
978 if ((d
->m_flags
& M_EXT
) == 0) {
979 d
= m_mbigget(d
, M_DONTWAIT
);
980 if ((d
->m_flags
& M_EXT
) == 0) {
1000 // try to make mbuf data aligned
1001 if (!IPSEC_IS_P2ALIGNED(d
->m_data
)) {
1002 m_adj(d
, IPSEC_GET_P2UNALIGNED_OFS(d
->m_data
));
1005 d
->m_len
= M_TRAILINGSPACE(d
);
1011 dptr
= mtod(d
, u_int8_t
*);
1015 /* adjust len if greater than space available in dest */
1016 if (len
> d
->m_len
- dn
) {
1017 len
= d
->m_len
- dn
;
1021 // check input pointer alignment and use a separate aligned buffer (if sp is unaligned on 4-byte boundary).
1022 if (IPSEC_IS_P2ALIGNED(sp
)) {
1023 sp_unaligned
= NULL
;
1026 if (len
> MAX_REALIGN_LEN
) {
1031 if (sp_aligned
!= NULL
) {
1032 FREE(sp_aligned
, M_SECA
);
1037 if (sp_aligned
== NULL
) {
1038 sp_aligned
= (u_int8_t
*)_MALLOC(MAX_REALIGN_LEN
, M_SECA
, M_DONTWAIT
);
1039 if (sp_aligned
== NULL
) {
1048 memcpy(sp
, sp_unaligned
, len
);
1050 // no need to check output pointer alignment
1052 if (aes_decrypt_gcm(sp
, len
, dptr
+ dn
, ctx
->decrypt
)) {
1053 ipseclog((LOG_ERR
, "%s: failed to decrypt\n", __FUNCTION__
));
1058 // update unaligned pointers
1059 if (!IPSEC_IS_P2ALIGNED(sp_unaligned
)) {
1063 /* udpate offsets */
1067 /* find the next source block */
1068 while (s
&& sn
>= s
->m_len
) {
1075 /* free un-needed source mbufs and add dest mbufs to chain */
1076 m_freem(scut
->m_next
);
1077 scut
->m_len
= scutoff
;
1081 if (sp_aligned
!= NULL
) {
1082 FREE(sp_aligned
, M_SECA
);
1087 bzero(iv
, sizeof(iv
));