1 /* $FreeBSD: src/sys/netinet6/esp_core.c,v 1.1.2.4 2002/03/26 10:12:29 ume Exp $ */
2 /* $KAME: esp_core.c,v 1.50 2000/11/02 12:27:38 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
35 #include <sys/param.h>
36 #include <sys/systm.h>
37 #include <sys/malloc.h>
39 #include <sys/domain.h>
40 #include <sys/protosw.h>
41 #include <sys/socket.h>
42 #include <sys/errno.h>
44 #include <sys/kernel.h>
45 #include <sys/syslog.h>
47 #include <kern/locks.h>
50 #include <net/route.h>
52 #include <netinet/in.h>
53 #include <netinet/in_var.h>
55 #include <netinet/ip6.h>
56 #include <netinet6/ip6_var.h>
57 #include <netinet/icmp6.h>
60 #include <netinet6/ipsec.h>
62 #include <netinet6/ipsec6.h>
64 #include <netinet6/ah.h>
66 #include <netinet6/ah6.h>
68 #include <netinet6/esp.h>
70 #include <netinet6/esp6.h>
72 #include <netinet6/esp_rijndael.h>
73 #include <net/pfkeyv2.h>
74 #include <netkey/keydb.h>
75 #include <netkey/key.h>
76 #include <crypto/des/des.h>
77 #include <crypto/blowfish/blowfish.h>
78 #include <crypto/cast128/cast128.h>
80 #include <net/net_osdep.h>
82 #include <sys/kdebug.h>
83 #define DBG_LAYER_BEG NETDBG_CODE(DBG_NETIPSEC, 1)
84 #define DBG_LAYER_END NETDBG_CODE(DBG_NETIPSEC, 3)
85 #define DBG_FNC_ESPAUTH NETDBG_CODE(DBG_NETIPSEC, (8 << 8))
87 extern lck_mtx_t
*sadb_mutex
;
89 static int esp_null_mature(struct secasvar
*);
90 static int esp_null_decrypt(struct mbuf
*, size_t,
91 struct secasvar
*, const struct esp_algorithm
*, int);
92 static int esp_null_encrypt(struct mbuf
*, size_t, size_t,
93 struct secasvar
*, const struct esp_algorithm
*, int);
94 static int esp_descbc_mature(struct secasvar
*);
95 static int esp_descbc_ivlen(const struct esp_algorithm
*,
97 static int esp_des_schedule(const struct esp_algorithm
*,
99 static int esp_des_schedlen(const struct esp_algorithm
*);
100 static int esp_des_blockdecrypt(const struct esp_algorithm
*,
101 struct secasvar
*, u_int8_t
*, u_int8_t
*);
102 static int esp_des_blockencrypt(const struct esp_algorithm
*,
103 struct secasvar
*, u_int8_t
*, u_int8_t
*);
104 static int esp_cbc_mature(struct secasvar
*);
106 static int esp_blowfish_schedule(const struct esp_algorithm
*,
108 static int esp_blowfish_schedlen(const struct esp_algorithm
*);
109 static int esp_blowfish_blockdecrypt(const struct esp_algorithm
*,
110 struct secasvar
*, u_int8_t
*, u_int8_t
*);
111 static int esp_blowfish_blockencrypt(const struct esp_algorithm
*,
112 struct secasvar
*, u_int8_t
*, u_int8_t
*);
113 static int esp_cast128_schedule(const struct esp_algorithm
*,
115 static int esp_cast128_schedlen(const struct esp_algorithm
*);
116 static int esp_cast128_blockdecrypt(const struct esp_algorithm
*,
117 struct secasvar
*, u_int8_t
*, u_int8_t
*);
118 static int esp_cast128_blockencrypt(const struct esp_algorithm
*,
119 struct secasvar
*, u_int8_t
*, u_int8_t
*);
120 #endif /* ALLCRYPTO */
121 static int esp_3des_schedule(const struct esp_algorithm
*,
123 static int esp_3des_schedlen(const struct esp_algorithm
*);
124 static int esp_3des_blockdecrypt(const struct esp_algorithm
*,
125 struct secasvar
*, u_int8_t
*, u_int8_t
*);
126 static int esp_3des_blockencrypt(const struct esp_algorithm
*,
127 struct secasvar
*, u_int8_t
*, u_int8_t
*);
128 static int esp_common_ivlen(const struct esp_algorithm
*,
130 static int esp_cbc_decrypt(struct mbuf
*, size_t,
131 struct secasvar
*, const struct esp_algorithm
*, int);
132 static int esp_cbc_encrypt(struct mbuf
*, size_t, size_t,
133 struct secasvar
*, const struct esp_algorithm
*, int);
137 static const struct esp_algorithm des_cbc
=
138 { 8, -1, esp_descbc_mature
, 64, 64, esp_des_schedlen
,
140 esp_descbc_ivlen
, esp_cbc_decrypt
,
141 esp_cbc_encrypt
, esp_des_schedule
,
142 esp_des_blockdecrypt
, esp_des_blockencrypt
, };
143 static const struct esp_algorithm des3_cbc
=
144 { 8, 8, esp_cbc_mature
, 192, 192, esp_3des_schedlen
,
146 esp_common_ivlen
, esp_cbc_decrypt
,
147 esp_cbc_encrypt
, esp_3des_schedule
,
148 esp_3des_blockdecrypt
, esp_3des_blockencrypt
, };
149 static const struct esp_algorithm null_esp
=
150 { 1, 0, esp_null_mature
, 0, 2048, 0, "null",
151 esp_common_ivlen
, esp_null_decrypt
,
152 esp_null_encrypt
, NULL
, NULL
, NULL
};
154 static const struct esp_algorithm blowfish_cbc
=
155 { 8, 8, esp_cbc_mature
, 40, 448, esp_blowfish_schedlen
, "blowfish-cbc",
156 esp_common_ivlen
, esp_cbc_decrypt
,
157 esp_cbc_encrypt
, esp_blowfish_schedule
,
158 esp_blowfish_blockdecrypt
, esp_blowfish_blockencrypt
, };
159 static const struct esp_algorithm cast128_cbc
=
160 { 8, 8, esp_cbc_mature
, 40, 128, esp_cast128_schedlen
,
162 esp_common_ivlen
, esp_cbc_decrypt
,
163 esp_cbc_encrypt
, esp_cast128_schedule
,
164 esp_cast128_blockdecrypt
, esp_cast128_blockencrypt
, };
165 #endif /* ALLCRYPTO */
166 static const struct esp_algorithm aes_cbc
=
167 { 16, 16, esp_cbc_mature
, 128, 256, esp_aes_schedlen
,
169 esp_common_ivlen
, esp_cbc_decrypt_aes
,
170 esp_cbc_encrypt_aes
, esp_aes_schedule
,
173 static const struct esp_algorithm
*esp_algorithms
[] = {
180 #endif /* ALLCRYPTO */
184 const struct esp_algorithm
*
185 esp_algorithm_lookup(idx
)
190 case SADB_EALG_DESCBC
:
192 case SADB_EALG_3DESCBC
:
197 case SADB_X_EALG_BLOWFISHCBC
:
198 return &blowfish_cbc
;
199 case SADB_X_EALG_CAST128CBC
:
201 #endif /* ALLCRYPTO */
202 case SADB_X_EALG_RIJNDAELCBC
:
216 for (idx
= 0; idx
< sizeof(esp_algorithms
)/sizeof(esp_algorithms
[0]);
218 if (esp_algorithms
[idx
]->ivlenval
> ivlen
)
219 ivlen
= esp_algorithms
[idx
]->ivlenval
;
226 esp_schedule(algo
, sav
)
227 const struct esp_algorithm
*algo
;
228 struct secasvar
*sav
;
232 /* check for key length */
233 if (_KEYBITS(sav
->key_enc
) < algo
->keymin
||
234 _KEYBITS(sav
->key_enc
) > algo
->keymax
) {
236 "esp_schedule %s: unsupported key length %d: "
237 "needs %d to %d bits\n", algo
->name
, _KEYBITS(sav
->key_enc
),
238 algo
->keymin
, algo
->keymax
));
242 lck_mtx_lock(sadb_mutex
);
243 /* already allocated */
244 if (sav
->sched
&& sav
->schedlen
!= 0) {
245 lck_mtx_unlock(sadb_mutex
);
248 /* no schedule necessary */
249 if (!algo
->schedule
|| !algo
->schedlen
) {
250 lck_mtx_unlock(sadb_mutex
);
254 sav
->schedlen
= (*algo
->schedlen
)(algo
);
255 if (sav
->schedlen
< 0) {
256 lck_mtx_unlock(sadb_mutex
);
260 //#### that malloc should be replaced by a saved buffer...
261 sav
->sched
= _MALLOC(sav
->schedlen
, M_SECA
, M_DONTWAIT
);
264 lck_mtx_unlock(sadb_mutex
);
268 error
= (*algo
->schedule
)(algo
, sav
);
270 ipseclog((LOG_ERR
, "esp_schedule %s: error %d\n",
272 bzero(sav
->sched
, sav
->schedlen
);
273 FREE(sav
->sched
, M_SECA
);
277 lck_mtx_unlock(sadb_mutex
);
283 __unused
struct secasvar
*sav
)
286 /* anything is okay */
292 __unused
struct mbuf
*m
,
293 __unused
size_t off
, /* offset to ESP header */
294 __unused
struct secasvar
*sav
,
295 __unused
const struct esp_algorithm
*algo
,
299 return 0; /* do nothing */
304 __unused
struct mbuf
*m
,
305 __unused
size_t off
, /* offset to ESP header */
306 __unused
size_t plen
, /* payload length (to be encrypted) */
307 __unused
struct secasvar
*sav
,
308 __unused
const struct esp_algorithm
*algo
,
312 return 0; /* do nothing */
316 esp_descbc_mature(sav
)
317 struct secasvar
*sav
;
319 const struct esp_algorithm
*algo
;
321 if (!(sav
->flags
& SADB_X_EXT_OLD
) && (sav
->flags
& SADB_X_EXT_IV4B
)) {
322 ipseclog((LOG_ERR
, "esp_cbc_mature: "
323 "algorithm incompatible with 4 octets IV length\n"));
328 ipseclog((LOG_ERR
, "esp_descbc_mature: no key is given.\n"));
332 algo
= esp_algorithm_lookup(sav
->alg_enc
);
335 "esp_descbc_mature: unsupported algorithm.\n"));
339 if (_KEYBITS(sav
->key_enc
) < algo
->keymin
||
340 _KEYBITS(sav
->key_enc
) > algo
->keymax
) {
342 "esp_descbc_mature: invalid key length %d.\n",
343 _KEYBITS(sav
->key_enc
)));
348 if (des_is_weak_key((des_cblock
*)_KEYBUF(sav
->key_enc
))) {
350 "esp_descbc_mature: weak key was passed.\n"));
359 __unused
const struct esp_algorithm
*algo
,
360 struct secasvar
*sav
)
365 if ((sav
->flags
& SADB_X_EXT_OLD
) && (sav
->flags
& SADB_X_EXT_IV4B
))
367 if (!(sav
->flags
& SADB_X_EXT_OLD
) && (sav
->flags
& SADB_X_EXT_DERIV
))
374 __unused
const struct esp_algorithm
*algo
)
377 return sizeof(des_key_schedule
);
382 __unused
const struct esp_algorithm
*algo
,
383 struct secasvar
*sav
)
386 lck_mtx_assert(sadb_mutex
, LCK_MTX_ASSERT_OWNED
);
387 if (des_key_sched((des_cblock
*)_KEYBUF(sav
->key_enc
),
388 *(des_key_schedule
*)sav
->sched
))
395 esp_des_blockdecrypt(
396 __unused
const struct esp_algorithm
*algo
,
397 struct secasvar
*sav
,
402 /* assumption: d has a good alignment */
403 bcopy(s
, d
, sizeof(DES_LONG
) * 2);
404 des_ecb_encrypt((des_cblock
*)d
, (des_cblock
*)d
,
405 *(des_key_schedule
*)sav
->sched
, DES_DECRYPT
);
410 esp_des_blockencrypt(
411 __unused
const struct esp_algorithm
*algo
,
412 struct secasvar
*sav
,
417 /* assumption: d has a good alignment */
418 bcopy(s
, d
, sizeof(DES_LONG
) * 2);
419 des_ecb_encrypt((des_cblock
*)d
, (des_cblock
*)d
,
420 *(des_key_schedule
*)sav
->sched
, DES_ENCRYPT
);
426 struct secasvar
*sav
;
429 const struct esp_algorithm
*algo
;
431 if (sav
->flags
& SADB_X_EXT_OLD
) {
433 "esp_cbc_mature: algorithm incompatible with esp-old\n"));
436 if (sav
->flags
& SADB_X_EXT_DERIV
) {
438 "esp_cbc_mature: algorithm incompatible with derived\n"));
443 ipseclog((LOG_ERR
, "esp_cbc_mature: no key is given.\n"));
447 algo
= esp_algorithm_lookup(sav
->alg_enc
);
450 "esp_cbc_mature %s: unsupported algorithm.\n", algo
->name
));
454 keylen
= sav
->key_enc
->sadb_key_bits
;
455 if (keylen
< algo
->keymin
|| algo
->keymax
< keylen
) {
457 "esp_cbc_mature %s: invalid key length %d.\n",
458 algo
->name
, sav
->key_enc
->sadb_key_bits
));
461 switch (sav
->alg_enc
) {
462 case SADB_EALG_3DESCBC
:
464 if (des_is_weak_key((des_cblock
*)_KEYBUF(sav
->key_enc
)) ||
465 des_is_weak_key((des_cblock
*)(_KEYBUF(sav
->key_enc
) + 8)) ||
466 des_is_weak_key((des_cblock
*)(_KEYBUF(sav
->key_enc
) + 16))) {
468 "esp_cbc_mature %s: weak key was passed.\n",
473 case SADB_X_EALG_BLOWFISHCBC
:
474 case SADB_X_EALG_CAST128CBC
:
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 esp_blowfish_schedlen(
493 __unused
const struct esp_algorithm
*algo
)
496 return sizeof(BF_KEY
);
500 esp_blowfish_schedule(
501 __unused
const struct esp_algorithm
*algo
,
502 struct secasvar
*sav
)
505 lck_mtx_assert(sadb_mutex
, LCK_MTX_ASSERT_OWNED
);
506 BF_set_key((BF_KEY
*)sav
->sched
, _KEYLEN(sav
->key_enc
),
507 _KEYBUF(sav
->key_enc
));
512 esp_blowfish_blockdecrypt(
513 __unused
const struct esp_algorithm
*algo
,
514 struct secasvar
*sav
,
518 /* HOLY COW! BF_decrypt() takes values in host byteorder */
521 bcopy(s
, t
, sizeof(t
));
524 BF_decrypt(t
, (BF_KEY
*)sav
->sched
);
527 bcopy(t
, d
, sizeof(t
));
532 esp_blowfish_blockencrypt(
533 __unused
const struct esp_algorithm
*algo
,
534 struct secasvar
*sav
,
538 /* HOLY COW! BF_encrypt() takes values in host byteorder */
541 bcopy(s
, t
, sizeof(t
));
544 BF_encrypt(t
, (BF_KEY
*)sav
->sched
);
547 bcopy(t
, d
, sizeof(t
));
552 esp_cast128_schedlen(
553 __unused
const struct esp_algorithm
*algo
)
556 return sizeof(u_int32_t
) * 32;
560 esp_cast128_schedule(
561 __unused
const struct esp_algorithm
*algo
,
562 struct secasvar
*sav
)
564 lck_mtx_assert(sadb_mutex
, LCK_MTX_ASSERT_OWNED
);
565 set_cast128_subkey((u_int32_t
*)sav
->sched
, _KEYBUF(sav
->key_enc
),
566 _KEYLEN(sav
->key_enc
));
571 esp_cast128_blockdecrypt(
572 __unused
const struct esp_algorithm
*algo
,
573 struct secasvar
*sav
,
578 if (_KEYLEN(sav
->key_enc
) <= 80 / 8)
579 cast128_decrypt_round12(d
, s
, (u_int32_t
*)sav
->sched
);
581 cast128_decrypt_round16(d
, s
, (u_int32_t
*)sav
->sched
);
586 esp_cast128_blockencrypt(
587 __unused
const struct esp_algorithm
*algo
,
588 struct secasvar
*sav
,
593 if (_KEYLEN(sav
->key_enc
) <= 80 / 8)
594 cast128_encrypt_round12(d
, s
, (u_int32_t
*)sav
->sched
);
596 cast128_encrypt_round16(d
, s
, (u_int32_t
*)sav
->sched
);
599 #endif /* ALLCRYPTO */
603 __unused
const struct esp_algorithm
*algo
)
606 return sizeof(des_key_schedule
) * 3;
611 __unused
const struct esp_algorithm
*algo
,
612 struct secasvar
*sav
)
619 lck_mtx_assert(sadb_mutex
, LCK_MTX_ASSERT_OWNED
);
620 p
= (des_key_schedule
*)sav
->sched
;
621 k
= _KEYBUF(sav
->key_enc
);
622 for (i
= 0; i
< 3; i
++) {
623 error
= des_key_sched((des_cblock
*)(k
+ 8 * i
), p
[i
]);
631 esp_3des_blockdecrypt(
632 __unused
const struct esp_algorithm
*algo
,
633 struct secasvar
*sav
,
639 /* assumption: d has a good alignment */
640 p
= (des_key_schedule
*)sav
->sched
;
641 bcopy(s
, d
, sizeof(DES_LONG
) * 2);
642 des_ecb3_encrypt((des_cblock
*)d
, (des_cblock
*)d
,
643 p
[0], p
[1], p
[2], DES_DECRYPT
);
648 esp_3des_blockencrypt(
649 __unused
const struct esp_algorithm
*algo
,
650 struct secasvar
*sav
,
656 /* assumption: d has a good alignment */
657 p
= (des_key_schedule
*)sav
->sched
;
658 bcopy(s
, d
, sizeof(DES_LONG
) * 2);
659 des_ecb3_encrypt((des_cblock
*)d
, (des_cblock
*)d
,
660 p
[0], p
[1], p
[2], DES_ENCRYPT
);
666 const struct esp_algorithm
*algo
,
667 __unused
struct secasvar
*sav
)
671 panic("esp_common_ivlen: unknown algorithm");
672 return algo
->ivlenval
;
676 esp_cbc_decrypt(m
, off
, sav
, algo
, ivlen
)
679 struct secasvar
*sav
;
680 const struct esp_algorithm
*algo
;
684 struct mbuf
*d
, *d0
, *dp
;
685 int soff
, doff
; /* offset from the head of chain, to head of this mbuf */
686 int sn
, dn
; /* offset from the head of the mbuf, to meat */
687 size_t ivoff
, bodyoff
;
688 u_int8_t iv
[MAXIVLEN
], *ivp
;
689 u_int8_t sbuf
[MAXIVLEN
], *sp
;
697 if (ivlen
!= sav
->ivlen
|| ivlen
> sizeof(iv
)) {
698 ipseclog((LOG_ERR
, "esp_cbc_decrypt %s: "
699 "unsupported ivlen %d\n", algo
->name
, ivlen
));
704 /* assumes blocklen == padbound */
705 blocklen
= algo
->padbound
;
708 if (blocklen
> sizeof(iv
)) {
709 ipseclog((LOG_ERR
, "esp_cbc_decrypt %s: "
710 "unsupported blocklen %d\n", algo
->name
, blocklen
));
716 if (sav
->flags
& SADB_X_EXT_OLD
) {
718 ivoff
= off
+ sizeof(struct esp
);
719 bodyoff
= off
+ sizeof(struct esp
) + ivlen
;
723 if (sav
->flags
& SADB_X_EXT_DERIV
) {
725 * draft-ietf-ipsec-ciph-des-derived-00.txt
726 * uses sequence number field as IV field.
728 ivoff
= off
+ sizeof(struct esp
);
729 bodyoff
= off
+ sizeof(struct esp
) + sizeof(u_int32_t
);
730 ivlen
= sizeof(u_int32_t
);
733 ivoff
= off
+ sizeof(struct newesp
);
734 bodyoff
= off
+ sizeof(struct newesp
) + ivlen
;
740 m_copydata(m
, ivoff
, ivlen
, iv
);
743 if (ivlen
== blocklen
)
745 else if (ivlen
== 4 && blocklen
== 8) {
746 bcopy(&iv
[0], &iv
[4], 4);
752 ipseclog((LOG_ERR
, "esp_cbc_encrypt %s: "
753 "unsupported ivlen/blocklen: %d %d\n",
754 algo
->name
, ivlen
, blocklen
));
759 if (m
->m_pkthdr
.len
< bodyoff
) {
760 ipseclog((LOG_ERR
, "esp_cbc_decrypt %s: bad len %d/%lu\n",
761 algo
->name
, m
->m_pkthdr
.len
, (unsigned long)bodyoff
));
765 if ((m
->m_pkthdr
.len
- bodyoff
) % blocklen
) {
766 ipseclog((LOG_ERR
, "esp_cbc_decrypt %s: "
767 "payload length must be multiple of %d\n",
768 algo
->name
, blocklen
));
775 soff
= doff
= sn
= dn
= 0;
779 while (soff
< bodyoff
) {
780 if (soff
+ s
->m_len
> bodyoff
) {
791 /* skip over empty mbuf */
792 while (s
&& s
->m_len
== 0)
795 while (soff
< m
->m_pkthdr
.len
) {
797 if (sn
+ blocklen
<= s
->m_len
) {
798 /* body is continuous */
799 sp
= mtod(s
, u_int8_t
*) + sn
;
801 /* body is non-continuous */
802 m_copydata(s
, sn
, blocklen
, sbuf
);
807 if (!d
|| dn
+ blocklen
> d
->m_len
) {
810 MGET(d
, M_DONTWAIT
, MT_DATA
);
811 i
= m
->m_pkthdr
.len
- (soff
+ sn
);
813 MCLGET(d
, M_DONTWAIT
);
814 if ((d
->m_flags
& M_EXT
) == 0) {
830 d
->m_len
= (M_TRAILINGSPACE(d
) / blocklen
) * blocklen
;
837 (*algo
->blockdecrypt
)(algo
, sav
, sp
, mtod(d
, u_int8_t
*) + dn
);
841 q
= mtod(d
, u_int8_t
*) + dn
;
842 for (i
= 0; i
< blocklen
; i
++)
847 bcopy(sbuf
, iv
, blocklen
);
855 /* find the next source block */
856 while (s
&& sn
>= s
->m_len
) {
863 m_freem(scut
->m_next
);
864 scut
->m_len
= scutoff
;
868 bzero(iv
, sizeof(iv
));
869 bzero(sbuf
, sizeof(sbuf
));
878 __unused
size_t plen
,
879 struct secasvar
*sav
,
880 const struct esp_algorithm
*algo
,
884 struct mbuf
*d
, *d0
, *dp
;
885 int soff
, doff
; /* offset from the head of chain, to head of this mbuf */
886 int sn
, dn
; /* offset from the head of the mbuf, to meat */
887 size_t ivoff
, bodyoff
;
888 u_int8_t iv
[MAXIVLEN
], *ivp
;
889 u_int8_t sbuf
[MAXIVLEN
], *sp
;
897 if (ivlen
!= sav
->ivlen
|| ivlen
> sizeof(iv
)) {
898 ipseclog((LOG_ERR
, "esp_cbc_encrypt %s: "
899 "unsupported ivlen %d\n", algo
->name
, ivlen
));
904 /* assumes blocklen == padbound */
905 blocklen
= algo
->padbound
;
908 if (blocklen
> sizeof(iv
)) {
909 ipseclog((LOG_ERR
, "esp_cbc_encrypt %s: "
910 "unsupported blocklen %d\n", algo
->name
, blocklen
));
916 if (sav
->flags
& SADB_X_EXT_OLD
) {
918 ivoff
= off
+ sizeof(struct esp
);
919 bodyoff
= off
+ sizeof(struct esp
) + ivlen
;
923 if (sav
->flags
& SADB_X_EXT_DERIV
) {
925 * draft-ietf-ipsec-ciph-des-derived-00.txt
926 * uses sequence number field as IV field.
928 ivoff
= off
+ sizeof(struct esp
);
929 bodyoff
= off
+ sizeof(struct esp
) + sizeof(u_int32_t
);
930 ivlen
= sizeof(u_int32_t
);
933 ivoff
= off
+ sizeof(struct newesp
);
934 bodyoff
= off
+ sizeof(struct newesp
) + ivlen
;
939 /* put iv into the packet. if we are in derived mode, use seqno. */
941 m_copydata(m
, ivoff
, ivlen
, iv
);
943 bcopy(sav
->iv
, iv
, ivlen
);
944 /* maybe it is better to overwrite dest, not source */
945 m_copyback(m
, ivoff
, ivlen
, iv
);
949 if (ivlen
== blocklen
)
951 else if (ivlen
== 4 && blocklen
== 8) {
952 bcopy(&iv
[0], &iv
[4], 4);
958 ipseclog((LOG_ERR
, "esp_cbc_encrypt %s: "
959 "unsupported ivlen/blocklen: %d %d\n",
960 algo
->name
, ivlen
, blocklen
));
965 if (m
->m_pkthdr
.len
< bodyoff
) {
966 ipseclog((LOG_ERR
, "esp_cbc_encrypt %s: bad len %d/%lu\n",
967 algo
->name
, m
->m_pkthdr
.len
, (unsigned long)bodyoff
));
971 if ((m
->m_pkthdr
.len
- bodyoff
) % blocklen
) {
972 ipseclog((LOG_ERR
, "esp_cbc_encrypt %s: "
973 "payload length must be multiple of %lu\n",
974 algo
->name
, (unsigned long)algo
->padbound
));
981 soff
= doff
= sn
= dn
= 0;
985 while (soff
< bodyoff
) {
986 if (soff
+ s
->m_len
> bodyoff
) {
997 /* skip over empty mbuf */
998 while (s
&& s
->m_len
== 0)
1001 while (soff
< m
->m_pkthdr
.len
) {
1003 if (sn
+ blocklen
<= s
->m_len
) {
1004 /* body is continuous */
1005 sp
= mtod(s
, u_int8_t
*) + sn
;
1007 /* body is non-continuous */
1008 m_copydata(s
, sn
, blocklen
, sbuf
);
1013 if (!d
|| dn
+ blocklen
> d
->m_len
) {
1016 MGET(d
, M_DONTWAIT
, MT_DATA
);
1017 i
= m
->m_pkthdr
.len
- (soff
+ sn
);
1018 if (d
&& i
> MLEN
) {
1019 MCLGET(d
, M_DONTWAIT
);
1020 if ((d
->m_flags
& M_EXT
) == 0) {
1036 d
->m_len
= (M_TRAILINGSPACE(d
) / blocklen
) * blocklen
;
1045 for (i
= 0; i
< blocklen
; i
++)
1049 (*algo
->blockencrypt
)(algo
, sav
, sp
, mtod(d
, u_int8_t
*) + dn
);
1052 ivp
= mtod(d
, u_int8_t
*) + dn
;
1057 /* find the next source block */
1058 while (s
&& sn
>= s
->m_len
) {
1065 m_freem(scut
->m_next
);
1066 scut
->m_len
= scutoff
;
1070 bzero(iv
, sizeof(iv
));
1071 bzero(sbuf
, sizeof(sbuf
));
1073 key_sa_stir_iv(sav
);
1078 /*------------------------------------------------------------*/
1080 /* does not free m0 on error */
1082 esp_auth(m0
, skip
, length
, sav
, sum
)
1084 size_t skip
; /* offset to ESP header */
1085 size_t length
; /* payload length */
1086 struct secasvar
*sav
;
1091 struct ah_algorithm_state s
;
1092 u_char sumbuf
[AH_MAXSUMSIZE
];
1093 const struct ah_algorithm
*algo
;
1098 if (m0
->m_pkthdr
.len
< skip
) {
1099 ipseclog((LOG_DEBUG
, "esp_auth: mbuf length < skip\n"));
1102 if (m0
->m_pkthdr
.len
< skip
+ length
) {
1103 ipseclog((LOG_DEBUG
,
1104 "esp_auth: mbuf length < skip + length\n"));
1108 KERNEL_DEBUG(DBG_FNC_ESPAUTH
| DBG_FUNC_START
, skip
,length
,0,0,0);
1110 * length of esp part (excluding authentication data) must be 4n,
1111 * since nexthdr must be at offset 4n+3.
1114 ipseclog((LOG_ERR
, "esp_auth: length is not multiple of 4\n"));
1115 KERNEL_DEBUG(DBG_FNC_ESPAUTH
| DBG_FUNC_END
, 1,0,0,0,0);
1119 ipseclog((LOG_DEBUG
, "esp_auth: NULL SA passed\n"));
1120 KERNEL_DEBUG(DBG_FNC_ESPAUTH
| DBG_FUNC_END
, 2,0,0,0,0);
1123 algo
= ah_algorithm_lookup(sav
->alg_auth
);
1126 "esp_auth: bad ESP auth algorithm passed: %d\n",
1128 KERNEL_DEBUG(DBG_FNC_ESPAUTH
| DBG_FUNC_END
, 3,0,0,0,0);
1135 siz
= (((*algo
->sumsiz
)(sav
) + 3) & ~(4 - 1));
1136 if (sizeof(sumbuf
) < siz
) {
1137 ipseclog((LOG_DEBUG
,
1138 "esp_auth: AH_MAXSUMSIZE is too small: siz=%lu\n",
1140 KERNEL_DEBUG(DBG_FNC_ESPAUTH
| DBG_FUNC_END
, 4,0,0,0,0);
1144 /* skip the header */
1147 panic("mbuf chain?");
1148 if (m
->m_len
<= skip
) {
1158 error
= (*algo
->init
)(&s
, sav
);
1160 KERNEL_DEBUG(DBG_FNC_ESPAUTH
| DBG_FUNC_END
, 5,0,0,0,0);
1163 while (0 < length
) {
1165 panic("mbuf chain?");
1167 if (m
->m_len
- off
< length
) {
1168 (*algo
->update
)(&s
, mtod(m
, u_char
*) + off
,
1170 length
-= m
->m_len
- off
;
1174 (*algo
->update
)(&s
, mtod(m
, u_char
*) + off
, length
);
1178 (*algo
->result
)(&s
, sumbuf
);
1179 bcopy(sumbuf
, sum
, siz
); /*XXX*/
1180 KERNEL_DEBUG(DBG_FNC_ESPAUTH
| DBG_FUNC_END
, 6,0,0,0,0);