git: e71680049bb8 - main - crypto: Add a simple API for [X]ChaCha20-Poly1035 on flat buffers.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 18 Jan 2022 22:50:29 UTC
The branch main has been updated by jhb: URL: https://cgit.FreeBSD.org/src/commit/?id=e71680049bb8ff395aeaa144377dd9e49331f45e commit e71680049bb8ff395aeaa144377dd9e49331f45e Author: John Baldwin <jhb@FreeBSD.org> AuthorDate: 2022-01-18 22:47:13 +0000 Commit: John Baldwin <jhb@FreeBSD.org> CommitDate: 2022-01-18 22:47:13 +0000 crypto: Add a simple API for [X]ChaCha20-Poly1035 on flat buffers. This is a synchronous software API which wraps the existing software implementation shared with OCF. Note that this will not currently use optimized backends (such as ossl(4)) but may be appropriate for operations on small buffers. Reviewed by: markj Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D33524 --- sys/conf/files | 1 + sys/crypto/chacha20_poly1305.c | 241 +++++++++++++++++++++++++++++++++++++++++ sys/crypto/chacha20_poly1305.h | 54 +++++++++ sys/modules/crypto/Makefile | 1 + 4 files changed, 297 insertions(+) diff --git a/sys/conf/files b/sys/conf/files index 0ec329436658..675cf0a6a2a2 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -713,6 +713,7 @@ crypto/camellia/camellia.c optional crypto | ipsec | ipsec_support crypto/camellia/camellia-api.c optional crypto | ipsec | ipsec_support crypto/chacha20/chacha.c standard crypto/chacha20/chacha-sw.c optional crypto | ipsec | ipsec_support +crypto/chacha20_poly1305.c optional crypto crypto/des/des_ecb.c optional netsmb crypto/des/des_setkey.c optional netsmb crypto/openssl/ossl.c optional ossl diff --git a/sys/crypto/chacha20_poly1305.c b/sys/crypto/chacha20_poly1305.c new file mode 100644 index 000000000000..938400c0feef --- /dev/null +++ b/sys/crypto/chacha20_poly1305.c @@ -0,0 +1,241 @@ +/*- + * SPDX-License-Identifier: BSD-2-Clause-FreeBSD + * + * Copyright (c) 2021 The FreeBSD Foundation + * + * This software was developed by Ararat River Consulting, LLC under + * sponsorship from the FreeBSD Foundation. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + +#include <sys/endian.h> +#include <crypto/chacha20_poly1305.h> +#include <opencrypto/xform_enc.h> + +static const uint8_t zeroes[POLY1305_BLOCK_LEN]; + +void +chacha20_poly1305_encrypt(uint8_t *dst, const uint8_t *src, + const size_t src_len, const uint8_t *aad, const size_t aad_len, + const uint8_t *nonce, const size_t nonce_len, const uint8_t *key) +{ + const struct enc_xform *exf; + void *ctx; + size_t resid, todo; + uint64_t lengths[2]; + + exf = &enc_xform_chacha20_poly1305; + ctx = __builtin_alloca(exf->ctxsize); + exf->setkey(ctx, key, CHACHA20_POLY1305_KEY); + exf->reinit(ctx, nonce, nonce_len); + + exf->update(ctx, aad, aad_len); + if (aad_len % POLY1305_BLOCK_LEN != 0) + exf->update(ctx, zeroes, + POLY1305_BLOCK_LEN - aad_len % POLY1305_BLOCK_LEN); + + resid = src_len; + todo = rounddown2(resid, CHACHA20_NATIVE_BLOCK_LEN); + if (todo > 0) { + exf->encrypt_multi(ctx, src, dst, todo); + exf->update(ctx, dst, todo); + src += todo; + dst += todo; + resid -= todo; + } + if (resid > 0) { + exf->encrypt_last(ctx, src, dst, resid); + exf->update(ctx, dst, resid); + dst += resid; + if (resid % POLY1305_BLOCK_LEN != 0) + exf->update(ctx, zeroes, + POLY1305_BLOCK_LEN - resid % POLY1305_BLOCK_LEN); + } + + lengths[0] = htole64(aad_len); + lengths[1] = htole64(src_len); + exf->update(ctx, lengths, sizeof(lengths)); + exf->final(dst, ctx); + + explicit_bzero(ctx, exf->ctxsize); + explicit_bzero(lengths, sizeof(lengths)); +} + +bool +chacha20_poly1305_decrypt(uint8_t *dst, const uint8_t *src, + const size_t src_len, const uint8_t *aad, const size_t aad_len, + const uint8_t *nonce, const size_t nonce_len, const uint8_t *key) +{ + const struct enc_xform *exf; + void *ctx; + size_t resid, todo; + union { + uint64_t lengths[2]; + char tag[POLY1305_HASH_LEN]; + } u; + bool result; + + if (src_len < POLY1305_HASH_LEN) + return (false); + resid = src_len - POLY1305_HASH_LEN; + + exf = &enc_xform_chacha20_poly1305; + ctx = __builtin_alloca(exf->ctxsize); + exf->setkey(ctx, key, CHACHA20_POLY1305_KEY); + exf->reinit(ctx, nonce, nonce_len); + + exf->update(ctx, aad, aad_len); + if (aad_len % POLY1305_BLOCK_LEN != 0) + exf->update(ctx, zeroes, + POLY1305_BLOCK_LEN - aad_len % POLY1305_BLOCK_LEN); + exf->update(ctx, src, resid); + if (resid % POLY1305_BLOCK_LEN != 0) + exf->update(ctx, zeroes, + POLY1305_BLOCK_LEN - resid % POLY1305_BLOCK_LEN); + + u.lengths[0] = htole64(aad_len); + u.lengths[1] = htole64(resid); + exf->update(ctx, u.lengths, sizeof(u.lengths)); + exf->final(u.tag, ctx); + result = (timingsafe_bcmp(u.tag, src + resid, POLY1305_HASH_LEN) == 0); + if (!result) + goto out; + + todo = rounddown2(resid, CHACHA20_NATIVE_BLOCK_LEN); + if (todo > 0) { + exf->decrypt_multi(ctx, src, dst, todo); + src += todo; + dst += todo; + resid -= todo; + } + if (resid > 0) + exf->decrypt_last(ctx, src, dst, resid); + +out: + explicit_bzero(ctx, exf->ctxsize); + explicit_bzero(&u, sizeof(u)); + return (result); +} + +void +xchacha20_poly1305_encrypt(uint8_t *dst, const uint8_t *src, + const size_t src_len, const uint8_t *aad, const size_t aad_len, + const uint8_t *nonce, const uint8_t *key) +{ + const struct enc_xform *exf; + void *ctx; + size_t resid, todo; + uint64_t lengths[2]; + + exf = &enc_xform_xchacha20_poly1305; + ctx = __builtin_alloca(exf->ctxsize); + exf->setkey(ctx, key, XCHACHA20_POLY1305_KEY); + exf->reinit(ctx, nonce, XCHACHA20_POLY1305_IV_LEN); + + exf->update(ctx, aad, aad_len); + if (aad_len % POLY1305_BLOCK_LEN != 0) + exf->update(ctx, zeroes, + POLY1305_BLOCK_LEN - aad_len % POLY1305_BLOCK_LEN); + + resid = src_len; + todo = rounddown2(resid, CHACHA20_NATIVE_BLOCK_LEN); + if (todo > 0) { + exf->encrypt_multi(ctx, src, dst, todo); + exf->update(ctx, dst, todo); + src += todo; + dst += todo; + resid -= todo; + } + if (resid > 0) { + exf->encrypt_last(ctx, src, dst, resid); + exf->update(ctx, dst, resid); + dst += resid; + if (resid % POLY1305_BLOCK_LEN != 0) + exf->update(ctx, zeroes, + POLY1305_BLOCK_LEN - resid % POLY1305_BLOCK_LEN); + } + + lengths[0] = htole64(aad_len); + lengths[1] = htole64(src_len); + exf->update(ctx, lengths, sizeof(lengths)); + exf->final(dst, ctx); + + explicit_bzero(ctx, exf->ctxsize); + explicit_bzero(lengths, sizeof(lengths)); +} + +bool +xchacha20_poly1305_decrypt(uint8_t *dst, const uint8_t *src, + const size_t src_len, const uint8_t *aad, const size_t aad_len, + const uint8_t *nonce, const uint8_t *key) +{ + const struct enc_xform *exf; + void *ctx; + size_t resid, todo; + union { + uint64_t lengths[2]; + char tag[POLY1305_HASH_LEN]; + } u; + bool result; + + if (src_len < POLY1305_HASH_LEN) + return (false); + resid = src_len - POLY1305_HASH_LEN; + + exf = &enc_xform_xchacha20_poly1305; + ctx = __builtin_alloca(exf->ctxsize); + exf->setkey(ctx, key, XCHACHA20_POLY1305_KEY); + exf->reinit(ctx, nonce, XCHACHA20_POLY1305_IV_LEN); + + exf->update(ctx, aad, aad_len); + if (aad_len % POLY1305_BLOCK_LEN != 0) + exf->update(ctx, zeroes, + POLY1305_BLOCK_LEN - aad_len % POLY1305_BLOCK_LEN); + exf->update(ctx, src, resid); + if (resid % POLY1305_BLOCK_LEN != 0) + exf->update(ctx, zeroes, + POLY1305_BLOCK_LEN - resid % POLY1305_BLOCK_LEN); + + u.lengths[0] = htole64(aad_len); + u.lengths[1] = htole64(resid); + exf->update(ctx, u.lengths, sizeof(u.lengths)); + exf->final(u.tag, ctx); + result = (timingsafe_bcmp(u.tag, src + resid, POLY1305_HASH_LEN) == 0); + if (!result) + goto out; + + todo = rounddown2(resid, CHACHA20_NATIVE_BLOCK_LEN); + if (todo > 0) { + exf->decrypt_multi(ctx, src, dst, todo); + src += todo; + dst += todo; + resid -= todo; + } + if (resid > 0) + exf->decrypt_last(ctx, src, dst, resid); + +out: + explicit_bzero(ctx, exf->ctxsize); + explicit_bzero(&u, sizeof(u)); + return (result); +} diff --git a/sys/crypto/chacha20_poly1305.h b/sys/crypto/chacha20_poly1305.h new file mode 100644 index 000000000000..505a5ef9d6f0 --- /dev/null +++ b/sys/crypto/chacha20_poly1305.h @@ -0,0 +1,54 @@ +/*- + * SPDX-License-Identifier: BSD-2-Clause-FreeBSD + * + * Copyright (c) 2021 The FreeBSD Foundation + * + * This software was developed by Ararat River Consulting, LLC under + * sponsorship from the FreeBSD Foundation. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND + * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS + * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) + * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT + * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY + * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + * SUCH DAMAGE. + */ + +#ifndef __CRYPTO_CHACHA20_POLY1305_H__ +#define __CRYPTO_CHACHA20_POLY1305_H__ + +#include <sys/types.h> + +/* The Poly1305 tag is appended to the cipher text. */ + +void chacha20_poly1305_encrypt(uint8_t *dst, const uint8_t *src, + const size_t src_len, const uint8_t *aad, const size_t aad_len, + const uint8_t *nonce, const size_t nonce_len, const uint8_t *key); + +bool chacha20_poly1305_decrypt(uint8_t *dst, const uint8_t *src, + const size_t src_len, const uint8_t *aad, const size_t aad_len, + const uint8_t *nonce, const size_t nonce_len, const uint8_t *key); + +void xchacha20_poly1305_encrypt(uint8_t *dst, const uint8_t *src, + const size_t src_len, const uint8_t *aad, const size_t aad_len, + const uint8_t *nonce, const uint8_t *key); + +bool xchacha20_poly1305_decrypt(uint8_t *dst, const uint8_t *src, + const size_t src_len, const uint8_t *aad, const size_t aad_len, + const uint8_t *nonce, const uint8_t *key); + +#endif /* !__CRYPTO_CHACHA20_POLY1305_H__ */ diff --git a/sys/modules/crypto/Makefile b/sys/modules/crypto/Makefile index 4b14cd784ebe..f56bb94a4ce6 100644 --- a/sys/modules/crypto/Makefile +++ b/sys/modules/crypto/Makefile @@ -55,6 +55,7 @@ CWARNFLAGS.blake2b-ref.c += -Wno-cast-qual -Wno-unused-function CWARNFLAGS.blake2s-ref.c += -Wno-cast-qual -Wno-unused-function SRCS += chacha.c SRCS += chacha-sw.c +SRCS += chacha20_poly1305.c LIBSODIUM_INC=${LIBSODIUM}/include LIBSODIUM_COMPAT=${SRCTOP}/sys/crypto/libsodium