]>
git.saurik.com Git - apple/xnu.git/blob - bsd/netinet6/esp_core.c
2 * Copyright (c) 2008 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_core.c,v 1.1.2.4 2002/03/26 10:12:29 ume Exp $ */
30 /* $KAME: esp_core.c,v 1.50 2000/11/02 12:27:38 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
63 #include <sys/param.h>
64 #include <sys/systm.h>
65 #include <sys/malloc.h>
67 #include <sys/domain.h>
68 #include <sys/protosw.h>
69 #include <sys/socket.h>
70 #include <sys/errno.h>
72 #include <sys/kernel.h>
73 #include <sys/syslog.h>
75 #include <kern/locks.h>
78 #include <net/route.h>
80 #include <netinet/in.h>
81 #include <netinet/in_var.h>
83 #include <netinet/ip6.h>
84 #include <netinet6/ip6_var.h>
85 #include <netinet/icmp6.h>
88 #include <netinet6/ipsec.h>
90 #include <netinet6/ipsec6.h>
92 #include <netinet6/ah.h>
94 #include <netinet6/ah6.h>
96 #include <netinet6/esp.h>
98 #include <netinet6/esp6.h>
100 #include <netinet6/esp_rijndael.h>
101 #include <net/pfkeyv2.h>
102 #include <netkey/keydb.h>
103 #include <netkey/key.h>
104 #include <libkern/crypto/des.h>
106 #include <net/net_osdep.h>
108 #include <sys/kdebug.h>
109 #define DBG_LAYER_BEG NETDBG_CODE(DBG_NETIPSEC, 1)
110 #define DBG_LAYER_END NETDBG_CODE(DBG_NETIPSEC, 3)
111 #define DBG_FNC_ESPAUTH NETDBG_CODE(DBG_NETIPSEC, (8 << 8))
112 #define MAX_SBUF_LEN 2000
114 extern lck_mtx_t
*sadb_mutex
;
116 static int esp_null_mature(struct secasvar
*);
117 static int esp_null_decrypt(struct mbuf
*, size_t,
118 struct secasvar
*, const struct esp_algorithm
*, int);
119 static int esp_null_encrypt(struct mbuf
*, size_t, size_t,
120 struct secasvar
*, const struct esp_algorithm
*, int);
121 static int esp_descbc_mature(struct secasvar
*);
122 static int esp_descbc_ivlen(const struct esp_algorithm
*,
124 static int esp_des_schedule(const struct esp_algorithm
*,
126 static int esp_des_schedlen(const struct esp_algorithm
*);
127 static int esp_des_blockdecrypt(const struct esp_algorithm
*,
128 struct secasvar
*, u_int8_t
*, u_int8_t
*);
129 static int esp_des_blockencrypt(const struct esp_algorithm
*,
130 struct secasvar
*, u_int8_t
*, u_int8_t
*);
131 static int esp_cbc_mature(struct secasvar
*);
132 static int esp_3des_schedule(const struct esp_algorithm
*,
134 static int esp_3des_schedlen(const struct esp_algorithm
*);
135 static int esp_3des_blockdecrypt(const struct esp_algorithm
*,
136 struct secasvar
*, u_int8_t
*, u_int8_t
*);
137 static int esp_3des_blockencrypt(const struct esp_algorithm
*,
138 struct secasvar
*, u_int8_t
*, u_int8_t
*);
139 static int esp_common_ivlen(const struct esp_algorithm
*,
141 static int esp_cbc_decrypt(struct mbuf
*, size_t,
142 struct secasvar
*, const struct esp_algorithm
*, int);
143 static int esp_cbc_encrypt(struct mbuf
*, size_t, size_t,
144 struct secasvar
*, const struct esp_algorithm
*, int);
145 static int esp_gcm_mature(struct secasvar
*);
149 #define ESP_AESGCM_KEYLEN128 160 // 16-bytes key + 4 bytes salt
150 #define ESP_AESGCM_KEYLEN192 224 // 24-bytes key + 4 bytes salt
151 #define ESP_AESGCM_KEYLEN256 288 // 32-bytes key + 4 bytes salt
153 static const struct esp_algorithm des_cbc
=
154 { 8, -1, esp_descbc_mature
, 64, 64, esp_des_schedlen
,
156 esp_descbc_ivlen
, esp_cbc_decrypt
,
157 esp_cbc_encrypt
, esp_des_schedule
,
158 esp_des_blockdecrypt
, esp_des_blockencrypt
,
160 static const struct esp_algorithm des3_cbc
=
161 { 8, 8, esp_cbc_mature
, 192, 192, esp_3des_schedlen
,
163 esp_common_ivlen
, esp_cbc_decrypt
,
164 esp_cbc_encrypt
, esp_3des_schedule
,
165 esp_3des_blockdecrypt
, esp_3des_blockencrypt
,
167 static const struct esp_algorithm null_esp
=
168 { 1, 0, esp_null_mature
, 0, 2048, 0, "null",
169 esp_common_ivlen
, esp_null_decrypt
,
170 esp_null_encrypt
, NULL
, NULL
, NULL
,
172 static const struct esp_algorithm aes_cbc
=
173 { 16, 16, esp_cbc_mature
, 128, 256, esp_aes_schedlen
,
175 esp_common_ivlen
, esp_cbc_decrypt_aes
,
176 esp_cbc_encrypt_aes
, esp_aes_schedule
,
179 static const struct esp_algorithm aes_gcm
=
180 { 4, 8, esp_gcm_mature
, ESP_AESGCM_KEYLEN128
, ESP_AESGCM_KEYLEN256
, esp_gcm_schedlen
,
182 esp_common_ivlen
, esp_gcm_decrypt_aes
,
183 esp_gcm_encrypt_aes
, esp_gcm_schedule
,
185 16, esp_gcm_decrypt_finalize
, esp_gcm_encrypt_finalize
};
187 static const struct esp_algorithm
*esp_algorithms
[] = {
195 const struct esp_algorithm
*
196 esp_algorithm_lookup(idx
)
200 case SADB_EALG_DESCBC
:
202 case SADB_EALG_3DESCBC
:
206 case SADB_X_EALG_RIJNDAELCBC
:
208 case SADB_X_EALG_AES_GCM
:
222 for (idx
= 0; idx
< sizeof(esp_algorithms
)/sizeof(esp_algorithms
[0]);
224 if (esp_algorithms
[idx
]->ivlenval
> ivlen
)
225 ivlen
= esp_algorithms
[idx
]->ivlenval
;
232 esp_schedule(algo
, sav
)
233 const struct esp_algorithm
*algo
;
234 struct secasvar
*sav
;
238 /* check for key length */
239 if (_KEYBITS(sav
->key_enc
) < algo
->keymin
||
240 _KEYBITS(sav
->key_enc
) > algo
->keymax
) {
242 "esp_schedule %s: unsupported key length %d: "
243 "needs %d to %d bits\n", algo
->name
, _KEYBITS(sav
->key_enc
),
244 algo
->keymin
, algo
->keymax
));
248 lck_mtx_lock(sadb_mutex
);
249 /* already allocated */
250 if (sav
->sched
&& sav
->schedlen
!= 0) {
251 lck_mtx_unlock(sadb_mutex
);
254 /* no schedule necessary */
255 if (!algo
->schedule
|| !algo
->schedlen
) {
256 lck_mtx_unlock(sadb_mutex
);
260 sav
->schedlen
= (*algo
->schedlen
)(algo
);
261 if ((signed) sav
->schedlen
< 0) {
262 lck_mtx_unlock(sadb_mutex
);
266 //#### that malloc should be replaced by a saved buffer...
267 sav
->sched
= _MALLOC(sav
->schedlen
, M_SECA
, M_DONTWAIT
);
270 lck_mtx_unlock(sadb_mutex
);
274 error
= (*algo
->schedule
)(algo
, sav
);
276 ipseclog((LOG_ERR
, "esp_schedule %s: error %d\n",
278 bzero(sav
->sched
, sav
->schedlen
);
279 FREE(sav
->sched
, M_SECA
);
283 lck_mtx_unlock(sadb_mutex
);
289 __unused
struct secasvar
*sav
)
292 /* anything is okay */
298 __unused
struct mbuf
*m
,
299 __unused
size_t off
, /* offset to ESP header */
300 __unused
struct secasvar
*sav
,
301 __unused
const struct esp_algorithm
*algo
,
305 return 0; /* do nothing */
310 __unused
struct mbuf
*m
,
311 __unused
size_t off
, /* offset to ESP header */
312 __unused
size_t plen
, /* payload length (to be encrypted) */
313 __unused
struct secasvar
*sav
,
314 __unused
const struct esp_algorithm
*algo
,
318 return 0; /* do nothing */
322 esp_descbc_mature(sav
)
323 struct secasvar
*sav
;
325 const struct esp_algorithm
*algo
;
327 if (!(sav
->flags
& SADB_X_EXT_OLD
) && (sav
->flags
& SADB_X_EXT_IV4B
)) {
328 ipseclog((LOG_ERR
, "esp_cbc_mature: "
329 "algorithm incompatible with 4 octets IV length\n"));
334 ipseclog((LOG_ERR
, "esp_descbc_mature: no key is given.\n"));
338 algo
= esp_algorithm_lookup(sav
->alg_enc
);
341 "esp_descbc_mature: unsupported algorithm.\n"));
345 if (_KEYBITS(sav
->key_enc
) < algo
->keymin
||
346 _KEYBITS(sav
->key_enc
) > algo
->keymax
) {
348 "esp_descbc_mature: invalid key length %d.\n",
349 _KEYBITS(sav
->key_enc
)));
354 if (des_is_weak_key((des_cblock
*)_KEYBUF(sav
->key_enc
))) {
356 "esp_descbc_mature: weak key was passed.\n"));
365 __unused
const struct esp_algorithm
*algo
,
366 struct secasvar
*sav
)
371 if ((sav
->flags
& SADB_X_EXT_OLD
) && (sav
->flags
& SADB_X_EXT_IV4B
))
373 if (!(sav
->flags
& SADB_X_EXT_OLD
) && (sav
->flags
& SADB_X_EXT_DERIV
))
380 __unused
const struct esp_algorithm
*algo
)
382 return sizeof(des_ecb_key_schedule
);
387 __unused
const struct esp_algorithm
*algo
,
388 struct secasvar
*sav
)
391 lck_mtx_assert(sadb_mutex
, LCK_MTX_ASSERT_OWNED
);
392 if (des_ecb_key_sched((des_cblock
*)_KEYBUF(sav
->key_enc
),
393 (des_ecb_key_schedule
*)sav
->sched
))
400 esp_des_blockdecrypt(
401 __unused
const struct esp_algorithm
*algo
,
402 struct secasvar
*sav
,
406 /* assumption: d has a good alignment */
407 bcopy(s
, d
, sizeof(DES_LONG
) * 2);
408 des_ecb_encrypt((des_cblock
*)d
, (des_cblock
*)d
,
409 (des_ecb_key_schedule
*)sav
->sched
, DES_DECRYPT
);
414 esp_des_blockencrypt(
415 __unused
const struct esp_algorithm
*algo
,
416 struct secasvar
*sav
,
420 /* assumption: d has a good alignment */
421 bcopy(s
, d
, sizeof(DES_LONG
) * 2);
422 des_ecb_encrypt((des_cblock
*)d
, (des_cblock
*)d
,
423 (des_ecb_key_schedule
*)sav
->sched
, DES_ENCRYPT
);
429 struct secasvar
*sav
;
432 const struct esp_algorithm
*algo
;
434 if (sav
->flags
& SADB_X_EXT_OLD
) {
436 "esp_cbc_mature: algorithm incompatible with esp-old\n"));
439 if (sav
->flags
& SADB_X_EXT_DERIV
) {
441 "esp_cbc_mature: algorithm incompatible with derived\n"));
446 ipseclog((LOG_ERR
, "esp_cbc_mature: no key is given.\n"));
450 algo
= esp_algorithm_lookup(sav
->alg_enc
);
453 "esp_cbc_mature: unsupported algorithm.\n"));
457 keylen
= sav
->key_enc
->sadb_key_bits
;
458 if (keylen
< algo
->keymin
|| algo
->keymax
< keylen
) {
460 "esp_cbc_mature %s: invalid key length %d.\n",
461 algo
->name
, sav
->key_enc
->sadb_key_bits
));
464 switch (sav
->alg_enc
) {
465 case SADB_EALG_3DESCBC
:
467 if (des_is_weak_key((des_cblock
*)_KEYBUF(sav
->key_enc
)) ||
468 des_is_weak_key((des_cblock
*)(_KEYBUF(sav
->key_enc
) + 8)) ||
469 des_is_weak_key((des_cblock
*)(_KEYBUF(sav
->key_enc
) + 16))) {
471 "esp_cbc_mature %s: weak key was passed.\n",
476 case SADB_X_EALG_RIJNDAELCBC
:
477 /* allows specific key sizes only */
478 if (!(keylen
== 128 || keylen
== 192 || keylen
== 256)) {
480 "esp_cbc_mature %s: invalid key length %d.\n",
481 algo
->name
, keylen
));
492 struct secasvar
*sav
;
495 const struct esp_algorithm
*algo
;
497 if (sav
->flags
& SADB_X_EXT_OLD
) {
499 "esp_gcm_mature: algorithm incompatible with esp-old\n"));
502 if (sav
->flags
& SADB_X_EXT_DERIV
) {
504 "esp_gcm_mature: algorithm incompatible with derived\n"));
509 ipseclog((LOG_ERR
, "esp_gcm_mature: no key is given.\n"));
513 algo
= esp_algorithm_lookup(sav
->alg_enc
);
516 "esp_gcm_mature: unsupported algorithm.\n"));
520 keylen
= sav
->key_enc
->sadb_key_bits
;
521 if (keylen
< algo
->keymin
|| algo
->keymax
< keylen
) {
523 "esp_gcm_mature %s: invalid key length %d.\n",
524 algo
->name
, sav
->key_enc
->sadb_key_bits
));
527 switch (sav
->alg_enc
) {
528 case SADB_X_EALG_AES_GCM
:
529 /* allows specific key sizes only */
530 if (!(keylen
== ESP_AESGCM_KEYLEN128
|| keylen
== ESP_AESGCM_KEYLEN192
|| keylen
== ESP_AESGCM_KEYLEN256
)) {
532 "esp_gcm_mature %s: invalid key length %d.\n",
533 algo
->name
, keylen
));
539 "esp_gcm_mature %s: invalid algo %d.\n", sav
->alg_enc
));
548 __unused
const struct esp_algorithm
*algo
)
551 return sizeof(des3_ecb_key_schedule
);
556 __unused
const struct esp_algorithm
*algo
,
557 struct secasvar
*sav
)
559 lck_mtx_assert(sadb_mutex
, LCK_MTX_ASSERT_OWNED
);
561 if (des3_ecb_key_sched((des_cblock
*)_KEYBUF(sav
->key_enc
),
562 (des3_ecb_key_schedule
*)sav
->sched
))
569 esp_3des_blockdecrypt(
570 __unused
const struct esp_algorithm
*algo
,
571 struct secasvar
*sav
,
575 /* assumption: d has a good alignment */
576 bcopy(s
, d
, sizeof(DES_LONG
) * 2);
577 des3_ecb_encrypt((des_cblock
*)d
, (des_cblock
*)d
,
578 (des3_ecb_key_schedule
*)sav
->sched
, DES_DECRYPT
);
583 esp_3des_blockencrypt(
584 __unused
const struct esp_algorithm
*algo
,
585 struct secasvar
*sav
,
589 /* assumption: d has a good alignment */
590 bcopy(s
, d
, sizeof(DES_LONG
) * 2);
591 des3_ecb_encrypt((des_cblock
*)d
, (des_cblock
*)d
,
592 (des3_ecb_key_schedule
*)sav
->sched
, DES_ENCRYPT
);
598 const struct esp_algorithm
*algo
,
599 __unused
struct secasvar
*sav
)
603 panic("esp_common_ivlen: unknown algorithm");
604 return algo
->ivlenval
;
608 esp_cbc_decrypt(m
, off
, sav
, algo
, ivlen
)
611 struct secasvar
*sav
;
612 const struct esp_algorithm
*algo
;
616 struct mbuf
*d
, *d0
, *dp
;
617 int soff
, doff
; /* offset from the head of chain, to head of this mbuf */
618 int sn
, dn
; /* offset from the head of the mbuf, to meat */
619 size_t ivoff
, bodyoff
;
620 u_int8_t iv
[MAXIVLEN
] __attribute__((aligned(4))), *ivp
;
621 u_int8_t
*sbuf
= NULL
, *sp
, *sp_unaligned
;
629 if (ivlen
!= sav
->ivlen
|| ivlen
> sizeof(iv
)) {
630 ipseclog((LOG_ERR
, "esp_cbc_decrypt %s: "
631 "unsupported ivlen %d\n", algo
->name
, ivlen
));
636 /* assumes blocklen == padbound */
637 blocklen
= algo
->padbound
;
640 if (blocklen
> sizeof(iv
)) {
641 ipseclog((LOG_ERR
, "esp_cbc_decrypt %s: "
642 "unsupported blocklen %d\n", algo
->name
, blocklen
));
648 if (sav
->flags
& SADB_X_EXT_OLD
) {
650 ivoff
= off
+ sizeof(struct esp
);
651 bodyoff
= off
+ sizeof(struct esp
) + ivlen
;
655 if (sav
->flags
& SADB_X_EXT_DERIV
) {
657 * draft-ietf-ipsec-ciph-des-derived-00.txt
658 * uses sequence number field as IV field.
660 ivoff
= off
+ sizeof(struct esp
);
661 bodyoff
= off
+ sizeof(struct esp
) + sizeof(u_int32_t
);
662 ivlen
= sizeof(u_int32_t
);
665 ivoff
= off
+ sizeof(struct newesp
);
666 bodyoff
= off
+ sizeof(struct newesp
) + ivlen
;
672 m_copydata(m
, ivoff
, ivlen
, (caddr_t
) iv
);
675 if (ivlen
== blocklen
)
677 else if (ivlen
== 4 && blocklen
== 8) {
678 bcopy(&iv
[0], &iv
[4], 4);
684 ipseclog((LOG_ERR
, "esp_cbc_encrypt %s: "
685 "unsupported ivlen/blocklen: %d %d\n",
686 algo
->name
, ivlen
, blocklen
));
691 if (m
->m_pkthdr
.len
< bodyoff
) {
692 ipseclog((LOG_ERR
, "esp_cbc_decrypt %s: bad len %d/%lu\n",
693 algo
->name
, m
->m_pkthdr
.len
, (u_int32_t
)bodyoff
));
697 if ((m
->m_pkthdr
.len
- bodyoff
) % blocklen
) {
698 ipseclog((LOG_ERR
, "esp_cbc_decrypt %s: "
699 "payload length must be multiple of %d\n",
700 algo
->name
, blocklen
));
707 soff
= doff
= sn
= dn
= 0;
711 while (soff
< bodyoff
) {
712 if (soff
+ s
->m_len
> bodyoff
) {
723 /* skip over empty mbuf */
724 while (s
&& s
->m_len
== 0)
727 // Allocate blocksized buffer for unaligned or non-contiguous access
728 sbuf
= (u_int8_t
*)_MALLOC(blocklen
, M_SECA
, M_DONTWAIT
);
731 while (soff
< m
->m_pkthdr
.len
) {
733 if (sn
+ blocklen
<= s
->m_len
) {
734 /* body is continuous */
735 sp
= mtod(s
, u_int8_t
*) + sn
;
737 /* body is non-continuous */
738 m_copydata(s
, sn
, blocklen
, (caddr_t
) sbuf
);
743 if (!d
|| dn
+ blocklen
> d
->m_len
) {
746 MGET(d
, M_DONTWAIT
, MT_DATA
);
747 i
= m
->m_pkthdr
.len
- (soff
+ sn
);
749 MCLGET(d
, M_DONTWAIT
);
750 if ((d
->m_flags
& M_EXT
) == 0) {
767 // try to make mbuf data aligned
768 if (!IPSEC_IS_P2ALIGNED(d
->m_data
)) {
769 m_adj(d
, IPSEC_GET_P2UNALIGNED_OFS(d
->m_data
));
773 d
->m_len
= (M_TRAILINGSPACE(d
) / blocklen
) * blocklen
;
780 // check input pointer alignment and use a separate aligned buffer (if sp is unaligned on 4-byte boundary).
781 if (IPSEC_IS_P2ALIGNED(sp
)) {
786 memcpy(sp
, sp_unaligned
, blocklen
);
788 // no need to check output pointer alignment
789 (*algo
->blockdecrypt
)(algo
, sav
, sp
, mtod(d
, u_int8_t
*) + dn
);
791 // update unaligned pointers
792 if (!IPSEC_IS_P2ALIGNED(sp_unaligned
)) {
798 q
= mtod(d
, u_int8_t
*) + dn
;
799 for (i
= 0; i
< blocklen
; i
++)
804 bcopy(sbuf
, iv
, blocklen
);
812 /* find the next source block */
813 while (s
&& sn
>= s
->m_len
) {
820 m_freem(scut
->m_next
);
821 scut
->m_len
= scutoff
;
825 bzero(iv
, sizeof(iv
));
826 bzero(sbuf
, blocklen
);
837 __unused
size_t plen
,
838 struct secasvar
*sav
,
839 const struct esp_algorithm
*algo
,
843 struct mbuf
*d
, *d0
, *dp
;
844 int soff
, doff
; /* offset from the head of chain, to head of this mbuf */
845 int sn
, dn
; /* offset from the head of the mbuf, to meat */
846 size_t ivoff
, bodyoff
;
847 u_int8_t iv
[MAXIVLEN
] __attribute__((aligned(4))), *ivp
;
848 u_int8_t
*sbuf
= NULL
, *sp
, *sp_unaligned
;
856 if (ivlen
!= sav
->ivlen
|| ivlen
> sizeof(iv
)) {
857 ipseclog((LOG_ERR
, "esp_cbc_encrypt %s: "
858 "unsupported ivlen %d\n", algo
->name
, ivlen
));
863 /* assumes blocklen == padbound */
864 blocklen
= algo
->padbound
;
867 if (blocklen
> sizeof(iv
)) {
868 ipseclog((LOG_ERR
, "esp_cbc_encrypt %s: "
869 "unsupported blocklen %d\n", algo
->name
, blocklen
));
875 if (sav
->flags
& SADB_X_EXT_OLD
) {
877 ivoff
= off
+ sizeof(struct esp
);
878 bodyoff
= off
+ sizeof(struct esp
) + ivlen
;
882 if (sav
->flags
& SADB_X_EXT_DERIV
) {
884 * draft-ietf-ipsec-ciph-des-derived-00.txt
885 * uses sequence number field as IV field.
887 ivoff
= off
+ sizeof(struct esp
);
888 bodyoff
= off
+ sizeof(struct esp
) + sizeof(u_int32_t
);
889 ivlen
= sizeof(u_int32_t
);
892 ivoff
= off
+ sizeof(struct newesp
);
893 bodyoff
= off
+ sizeof(struct newesp
) + ivlen
;
898 /* put iv into the packet. if we are in derived mode, use seqno. */
900 m_copydata(m
, ivoff
, ivlen
, (caddr_t
) iv
);
902 bcopy(sav
->iv
, iv
, ivlen
);
903 /* maybe it is better to overwrite dest, not source */
904 m_copyback(m
, ivoff
, ivlen
, (caddr_t
) iv
);
908 if (ivlen
== blocklen
)
910 else if (ivlen
== 4 && blocklen
== 8) {
911 bcopy(&iv
[0], &iv
[4], 4);
917 ipseclog((LOG_ERR
, "esp_cbc_encrypt %s: "
918 "unsupported ivlen/blocklen: %d %d\n",
919 algo
->name
, ivlen
, blocklen
));
924 if (m
->m_pkthdr
.len
< bodyoff
) {
925 ipseclog((LOG_ERR
, "esp_cbc_encrypt %s: bad len %d/%lu\n",
926 algo
->name
, m
->m_pkthdr
.len
, (u_int32_t
)bodyoff
));
930 if ((m
->m_pkthdr
.len
- bodyoff
) % blocklen
) {
931 ipseclog((LOG_ERR
, "esp_cbc_encrypt %s: "
932 "payload length must be multiple of %lu\n",
933 algo
->name
, (u_int32_t
)algo
->padbound
));
940 soff
= doff
= sn
= dn
= 0;
944 while (soff
< bodyoff
) {
945 if (soff
+ s
->m_len
> bodyoff
) {
956 /* skip over empty mbuf */
957 while (s
&& s
->m_len
== 0)
960 // Allocate blocksized buffer for unaligned or non-contiguous access
961 sbuf
= (u_int8_t
*)_MALLOC(blocklen
, M_SECA
, M_DONTWAIT
);
964 while (soff
< m
->m_pkthdr
.len
) {
966 if (sn
+ blocklen
<= s
->m_len
) {
967 /* body is continuous */
968 sp
= mtod(s
, u_int8_t
*) + sn
;
970 /* body is non-continuous */
971 m_copydata(s
, sn
, blocklen
, (caddr_t
) sbuf
);
976 if (!d
|| dn
+ blocklen
> d
->m_len
) {
979 MGET(d
, M_DONTWAIT
, MT_DATA
);
980 i
= m
->m_pkthdr
.len
- (soff
+ sn
);
982 MCLGET(d
, M_DONTWAIT
);
983 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
));
1006 d
->m_len
= (M_TRAILINGSPACE(d
) / blocklen
) * blocklen
;
1015 for (i
= 0; i
< blocklen
; i
++)
1019 // check input pointer alignment and use a separate aligned buffer (if sp is not aligned on 4-byte boundary).
1020 if (IPSEC_IS_P2ALIGNED(sp
)) {
1021 sp_unaligned
= NULL
;
1025 memcpy(sp
, sp_unaligned
, blocklen
);
1027 // no need to check output pointer alignment
1028 (*algo
->blockencrypt
)(algo
, sav
, sp
, mtod(d
, u_int8_t
*) + dn
);
1030 // update unaligned pointers
1031 if (!IPSEC_IS_P2ALIGNED(sp_unaligned
)) {
1036 ivp
= mtod(d
, u_int8_t
*) + dn
;
1041 /* find the next source block */
1042 while (s
&& sn
>= s
->m_len
) {
1049 m_freem(scut
->m_next
);
1050 scut
->m_len
= scutoff
;
1054 bzero(iv
, sizeof(iv
));
1055 bzero(sbuf
, blocklen
);
1057 key_sa_stir_iv(sav
);
1064 /*------------------------------------------------------------*/
1066 /* does not free m0 on error */
1068 esp_auth(m0
, skip
, length
, sav
, sum
)
1070 size_t skip
; /* offset to ESP header */
1071 size_t length
; /* payload length */
1072 struct secasvar
*sav
;
1077 struct ah_algorithm_state s
;
1078 u_char sumbuf
[AH_MAXSUMSIZE
] __attribute__((aligned(4)));
1079 const struct ah_algorithm
*algo
;
1084 if (m0
->m_pkthdr
.len
< skip
) {
1085 ipseclog((LOG_DEBUG
, "esp_auth: mbuf length < skip\n"));
1088 if (m0
->m_pkthdr
.len
< skip
+ length
) {
1089 ipseclog((LOG_DEBUG
,
1090 "esp_auth: mbuf length < skip + length\n"));
1094 KERNEL_DEBUG(DBG_FNC_ESPAUTH
| DBG_FUNC_START
, skip
,length
,0,0,0);
1096 * length of esp part (excluding authentication data) must be 4n,
1097 * since nexthdr must be at offset 4n+3.
1100 ipseclog((LOG_ERR
, "esp_auth: length is not multiple of 4\n"));
1101 KERNEL_DEBUG(DBG_FNC_ESPAUTH
| DBG_FUNC_END
, 1,0,0,0,0);
1105 ipseclog((LOG_DEBUG
, "esp_auth: NULL SA passed\n"));
1106 KERNEL_DEBUG(DBG_FNC_ESPAUTH
| DBG_FUNC_END
, 2,0,0,0,0);
1109 algo
= ah_algorithm_lookup(sav
->alg_auth
);
1112 "esp_auth: bad ESP auth algorithm passed: %d\n",
1114 KERNEL_DEBUG(DBG_FNC_ESPAUTH
| DBG_FUNC_END
, 3,0,0,0,0);
1121 siz
= (((*algo
->sumsiz
)(sav
) + 3) & ~(4 - 1));
1122 if (sizeof(sumbuf
) < siz
) {
1123 ipseclog((LOG_DEBUG
,
1124 "esp_auth: AH_MAXSUMSIZE is too small: siz=%lu\n",
1126 KERNEL_DEBUG(DBG_FNC_ESPAUTH
| DBG_FUNC_END
, 4,0,0,0,0);
1130 /* skip the header */
1133 panic("mbuf chain?");
1134 if (m
->m_len
<= skip
) {
1144 error
= (*algo
->init
)(&s
, sav
);
1146 KERNEL_DEBUG(DBG_FNC_ESPAUTH
| DBG_FUNC_END
, 5,0,0,0,0);
1149 while (0 < length
) {
1151 panic("mbuf chain?");
1153 if (m
->m_len
- off
< length
) {
1154 (*algo
->update
)(&s
, (caddr_t
)(mtod(m
, u_char
*) + off
),
1156 length
-= m
->m_len
- off
;
1160 (*algo
->update
)(&s
, (caddr_t
)(mtod(m
, u_char
*) + off
), length
);
1164 (*algo
->result
)(&s
, (caddr_t
) sumbuf
, sizeof(sumbuf
));
1165 bcopy(sumbuf
, sum
, siz
); /*XXX*/
1166 KERNEL_DEBUG(DBG_FNC_ESPAUTH
| DBG_FUNC_END
, 6,0,0,0,0);