n2n/src/transform_aes.c

481 lines
17 KiB
C
Raw Normal View History

/**
2020-04-24 00:36:32 +02:00
* (C) 2007-20 - ntop.org and contributors
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not see see <http://www.gnu.org/licenses/>
*
2016-10-23 10:46:15 +02:00
*/
#include "n2n.h"
#ifdef N2N_HAVE_AES
2016-10-23 10:46:15 +02:00
2019-07-06 23:38:49 +02:00
#include <openssl/aes.h>
#include <openssl/sha.h>
#include <openssl/evp.h>
#include <openssl/err.h>
2016-10-23 10:46:15 +02:00
#define N2N_AES_TRANSFORM_VERSION 1 /* version of the transform encoding */
#define N2N_AES_IVEC_SIZE (AES_BLOCK_SIZE)
2016-10-23 10:46:15 +02:00
#define AES256_KEY_BYTES (256/8)
#define AES192_KEY_BYTES (192/8)
#define AES128_KEY_BYTES (128/8)
/* AES plaintext preamble */
#define TRANSOP_AES_VER_SIZE 1 /* Support minor variants in encoding in one module. */
2020-05-05 22:22:01 +02:00
#define TRANSOP_AES_IV_SEED_SIZE 8 /* size of transmitted random part of IV in bytes; could range
* from 0=lowest security (constant IV) to 16=higest security
* (fully random IV); default=8 */
#define TRANSOP_AES_IV_PADDING_SIZE (N2N_AES_IVEC_SIZE - TRANSOP_AES_IV_SEED_SIZE)
#define TRANSOP_AES_IV_KEY_BYTES (AES128_KEY_BYTES) /* use AES128 for IV encryption */
#define TRANSOP_AES_PREAMBLE_SIZE (TRANSOP_AES_VER_SIZE + TRANSOP_AES_IV_SEED_SIZE)
2016-10-23 10:46:15 +02:00
typedef unsigned char n2n_aes_ivec_t[N2N_AES_IVEC_SIZE];
typedef struct transop_aes {
2020-04-25 23:46:50 +02:00
#ifdef HAVE_OPENSSL_1_1
2020-04-24 08:21:12 +02:00
EVP_CIPHER_CTX *enc_ctx; /* openssl's reusable evp_* encryption context */
EVP_CIPHER_CTX *dec_ctx; /* openssl's reusable evp_* decryption context */
const EVP_CIPHER *cipher; /* cipher to use: e.g. EVP_aes_128_cbc */
uint8_t key[32]; /* the pure key data for payload encryption & decryption */
#else
AES_KEY enc_key; /* tx key */
AES_KEY dec_key; /* tx key */
#endif
2020-04-24 00:36:32 +02:00
AES_KEY iv_enc_key; /* key used to encrypt the IV */
uint8_t iv_pad_val[TRANSOP_AES_IV_PADDING_SIZE]; /* key used to pad the random IV seed to full block size */
} transop_aes_t;
2016-10-23 10:46:15 +02:00
2020-04-24 08:21:12 +02:00
/* ****************************************************** */
static int transop_deinit_aes(n2n_trans_op_t *arg) {
2020-04-24 00:36:32 +02:00
transop_aes_t *priv = (transop_aes_t *)arg->priv;
2016-10-23 10:46:15 +02:00
2020-04-25 23:46:50 +02:00
#ifdef HAVE_OPENSSL_1_1
2020-04-24 00:36:32 +02:00
EVP_CIPHER_CTX_free(priv->enc_ctx);
EVP_CIPHER_CTX_free(priv->dec_ctx);
2020-04-24 08:21:12 +02:00
#endif
2020-03-30 11:48:48 +02:00
2020-04-24 00:36:32 +02:00
if(priv)
free(priv);
2016-10-23 10:46:15 +02:00
2020-04-24 00:36:32 +02:00
return 0;
2016-10-23 10:46:15 +02:00
}
2020-04-24 08:21:12 +02:00
/* ****************************************************** */
2020-04-25 23:46:50 +02:00
#ifdef HAVE_OPENSSL_1_1
/* get any erorr message out of openssl
taken from https://en.wikibooks.org/wiki/OpenSSL/Error_handling */
static char *openssl_err_as_string (void) {
2020-04-24 00:36:32 +02:00
BIO *bio = BIO_new (BIO_s_mem ());
ERR_print_errors (bio);
char *buf = NULL;
size_t len = BIO_get_mem_data (bio, &buf);
char *ret = (char *) calloc (1, 1 + len);
2020-04-24 08:45:33 +02:00
2020-04-24 08:21:12 +02:00
if(ret)
2020-04-24 00:36:32 +02:00
memcpy (ret, buf, len);
2020-04-24 08:45:33 +02:00
2020-04-24 00:36:32 +02:00
BIO_free (bio);
return ret;
}
2020-04-24 08:21:12 +02:00
#endif
/* ****************************************************** */
2020-05-05 22:22:01 +02:00
/* convert a given number of bytes from memory to hex string; taken (and modified) from
https://stackoverflow.com/questions/6357031/how-do-you-convert-a-byte-array-to-a-hexadecimal-string-in-c */
const char* to_hex(unsigned char * in, size_t insz, char * out, size_t outsz)
{
unsigned char * pin = in;
const char * hex = "0123456789abcdef";
char * pout = out;
for(; pin < in+insz; pout +=2, pin++){
pout[0] = hex[(*pin>>4) & 0xF];
pout[1] = hex[ *pin & 0xF];
if (pout + 2 - out > outsz){
/* Better to truncate output string than overflow buffer */
/* it would be still better to either return a status */
/* or ensure the target buffer is large enough and it never happen */
break;
}
}
pout[2] = 0;
return out;
}
/* ****************************************************** */
static void set_aes_cbc_iv(transop_aes_t *priv, n2n_aes_ivec_t ivec, uint8_t * iv_seed) {
2020-04-24 00:36:32 +02:00
uint8_t iv_full[N2N_AES_IVEC_SIZE];
/* Extend the seed to full block size with padding value */
memcpy(iv_full, priv->iv_pad_val, TRANSOP_AES_IV_PADDING_SIZE);
2020-05-05 22:22:01 +02:00
memcpy(iv_full + TRANSOP_AES_IV_PADDING_SIZE, iv_seed, TRANSOP_AES_IV_SEED_SIZE);
2020-04-24 00:36:32 +02:00
/* Encrypt the IV with secret key to make it unpredictable.
* As discussed in https://github.com/ntop/n2n/issues/72, it's important to
* have an unpredictable IV since the initial part of the packet plaintext
* can be easily reconstructed from plaintext headers and used by an attacker
* to perform differential analysis.
*/
AES_ecb_encrypt(iv_full, ivec, &priv->iv_enc_key, AES_ENCRYPT);
}
2020-04-24 08:21:12 +02:00
/* ****************************************************** */
2016-10-23 10:46:15 +02:00
/** The aes packet format consists of:
*
* - a 8-bit aes encoding version in clear text
2020-05-05 22:22:01 +02:00
* - a TRANSOP_AES_IV_SEED_SIZE-sized [bytes] random IV seed
* - encrypted payload.
2016-10-23 10:46:15 +02:00
*
* [V|II|DDDDDDDDDDDDDDDDDDDDD]
* |<---- encrypted ---->|
2016-10-23 10:46:15 +02:00
*/
2020-04-24 08:45:33 +02:00
static int transop_encode_aes(n2n_trans_op_t * arg,
uint8_t * outbuf,
size_t out_len,
const uint8_t * inbuf,
size_t in_len,
const uint8_t * peer_mac) {
2020-04-24 00:36:32 +02:00
int len2=-1;
transop_aes_t * priv = (transop_aes_t *)arg->priv;
uint8_t assembly[N2N_PKT_BUF_SIZE] = {0};
2020-04-24 08:21:12 +02:00
if(in_len <= N2N_PKT_BUF_SIZE) {
if((in_len + TRANSOP_AES_PREAMBLE_SIZE) <= out_len) {
2020-04-24 00:36:32 +02:00
int len=-1;
size_t idx=0;
2020-05-05 22:22:01 +02:00
uint8_t iv_seed[TRANSOP_AES_IV_SEED_SIZE];
2020-04-24 00:36:32 +02:00
uint8_t padding = 0;
n2n_aes_ivec_t enc_ivec = {0};
traceEvent(TRACE_DEBUG, "encode_aes %lu", in_len);
/* Encode the aes format version. */
2020-04-24 08:45:33 +02:00
encode_uint8(outbuf, &idx, N2N_AES_TRANSFORM_VERSION);
2020-04-24 00:36:32 +02:00
/* Generate and encode the IV seed using as many calls to n2n_rand() as neccessary.
2020-05-05 22:22:01 +02:00
* Note: ( N2N_AES_IV_SEED_SIZE % sizeof(rand_value) ) not neccessarily equals 0. */
uint64_t rand_value;
2020-05-05 22:22:01 +02:00
int8_t i;
for (i = TRANSOP_AES_IV_SEED_SIZE; i >= sizeof(rand_value); i -= sizeof(rand_value)) {
rand_value = n2n_rand();
2020-05-05 22:22:01 +02:00
memcpy(iv_seed + TRANSOP_AES_IV_SEED_SIZE - i, &rand_value, sizeof(rand_value));
}
/* Are there bytes left to fill? */
if (i != 0) {
rand_value = n2n_rand();
2020-05-05 22:22:01 +02:00
memcpy(iv_seed, &rand_value, i);
}
encode_buf(outbuf, &idx, iv_seed, TRANSOP_AES_IV_SEED_SIZE);
2020-04-24 00:36:32 +02:00
/* Encrypt the assembly contents and write the ciphertext after the iv seed. */
/* len is set to the length of the cipher plain text to be encrpyted
which is (in this case) identical to original packet lentgh */
len = in_len;
/* The assembly buffer is a source for encrypting data.
* The whole contents of assembly are encrypted. */
2020-04-24 08:45:33 +02:00
memcpy(assembly, inbuf, in_len);
2020-04-24 00:36:32 +02:00
/* Need at least one encrypted byte at the end for the padding. */
2020-04-24 08:45:33 +02:00
len2 = ((len / AES_BLOCK_SIZE) + 1) * AES_BLOCK_SIZE; /* Round up to next whole AES adding at least one byte. */
2020-04-24 00:36:32 +02:00
padding = (len2-len);
assembly[len2 - 1] = padding;
2020-05-05 22:22:01 +02:00
char iv_seed_hex[2 * N2N_AES_IVEC_SIZE + 1];
traceEvent(TRACE_DEBUG, "padding = %u, seed = 0x%s", padding, to_hex (iv_seed, TRANSOP_AES_IV_SEED_SIZE, iv_seed_hex, 2 * N2N_AES_IVEC_SIZE + 1) );
2020-04-24 00:36:32 +02:00
set_aes_cbc_iv(priv, enc_ivec, iv_seed);
2020-04-25 23:46:50 +02:00
#ifdef HAVE_OPENSSL_1_1
2020-04-24 00:36:32 +02:00
EVP_CIPHER_CTX *ctx = priv->enc_ctx;
int evp_len;
int evp_ciphertext_len;
2020-04-24 08:21:12 +02:00
if(1 == EVP_EncryptInit_ex(ctx, priv->cipher, NULL, priv->key, enc_ivec)) {
if(1 == EVP_CIPHER_CTX_set_padding(ctx, 0)) {
if(1 == EVP_EncryptUpdate(ctx, outbuf + TRANSOP_AES_PREAMBLE_SIZE, &evp_len, assembly, len2)) {
2020-04-24 00:36:32 +02:00
evp_ciphertext_len = evp_len;
2020-04-24 08:21:12 +02:00
if(1 == EVP_EncryptFinal_ex(ctx, outbuf + TRANSOP_AES_PREAMBLE_SIZE + evp_len, &evp_len)) {
2020-04-24 00:36:32 +02:00
evp_ciphertext_len += evp_len;
2020-04-24 08:21:12 +02:00
if(evp_ciphertext_len != len2)
traceEvent(TRACE_ERROR, "encode_aes openssl encryption: encrypted %u bytes where %u were expected.\n",
2020-04-24 08:45:33 +02:00
evp_ciphertext_len, len2);
2020-03-30 11:48:48 +02:00
} else
2020-04-24 00:36:32 +02:00
traceEvent(TRACE_ERROR, "encode_aes openssl final encryption: %s\n", openssl_err_as_string());
} else
traceEvent(TRACE_ERROR, "encode_aes openssl encrpytion: %s\n", openssl_err_as_string());
} else
traceEvent(TRACE_ERROR, "encode_aes openssl padding setup: %s\n", openssl_err_as_string());
} else
traceEvent(TRACE_ERROR, "encode_aes openssl init: %s\n", openssl_err_as_string());
2020-04-24 08:21:12 +02:00
2020-04-24 00:36:32 +02:00
EVP_CIPHER_CTX_reset(ctx);
2020-04-24 08:21:12 +02:00
#else
2020-04-24 08:45:33 +02:00
AES_cbc_encrypt(assembly, /* source */
outbuf + TRANSOP_AES_PREAMBLE_SIZE, /* dest */
len2, /* enc size */
&(priv->enc_key), enc_ivec, AES_ENCRYPT);
2020-04-24 08:21:12 +02:00
#endif
2020-04-24 00:36:32 +02:00
len2 += TRANSOP_AES_PREAMBLE_SIZE; /* size of data carried in UDP. */
} else
2020-04-24 00:36:32 +02:00
traceEvent(TRACE_ERROR, "encode_aes outbuf too small.");
} else
traceEvent(TRACE_ERROR, "encode_aes inbuf too big to encrypt.");
2016-10-23 10:46:15 +02:00
2020-04-24 00:36:32 +02:00
return len2;
2016-10-23 10:46:15 +02:00
}
2020-04-24 08:21:12 +02:00
/* ****************************************************** */
/* See transop_encode_aes for packet format */
2020-04-24 08:45:33 +02:00
static int transop_decode_aes(n2n_trans_op_t * arg,
uint8_t * outbuf,
size_t out_len,
const uint8_t * inbuf,
size_t in_len,
const uint8_t * peer_mac) {
2020-04-24 00:36:32 +02:00
int len=0;
transop_aes_t * priv = (transop_aes_t *)arg->priv;
uint8_t assembly[N2N_PKT_BUF_SIZE];
2020-04-24 08:45:33 +02:00
if(((in_len - TRANSOP_AES_PREAMBLE_SIZE) <= N2N_PKT_BUF_SIZE) /* Cipher text fits in assembly */
&& (in_len >= TRANSOP_AES_PREAMBLE_SIZE) /* Has at least version, iv seed */
)
2016-10-23 10:46:15 +02:00
{
2020-04-24 00:36:32 +02:00
size_t rem=in_len;
size_t idx=0;
uint8_t aes_enc_ver=0;
2020-05-05 22:22:01 +02:00
uint8_t iv_seed[TRANSOP_AES_IV_SEED_SIZE];
2020-04-24 00:36:32 +02:00
/* Get the encoding version to make sure it is supported */
2020-04-24 08:45:33 +02:00
decode_uint8(&aes_enc_ver, inbuf, &rem, &idx );
2020-04-24 00:36:32 +02:00
2020-04-24 08:21:12 +02:00
if(N2N_AES_TRANSFORM_VERSION == aes_enc_ver) {
2020-04-24 00:36:32 +02:00
/* Get the IV seed */
decode_buf((uint8_t *)&iv_seed, TRANSOP_AES_IV_SEED_SIZE, inbuf, &rem, &idx);
2020-05-05 22:22:01 +02:00
char iv_seed_hex[2 * N2N_AES_IVEC_SIZE + 1];
traceEvent(TRACE_DEBUG, "decode_aes %lu with seed 0x%s", in_len, to_hex (iv_seed, TRANSOP_AES_IV_SEED_SIZE, iv_seed_hex, 2 * N2N_AES_IVEC_SIZE + 1) );
2020-04-24 00:36:32 +02:00
len = (in_len - TRANSOP_AES_PREAMBLE_SIZE);
2020-04-24 08:21:12 +02:00
if(0 == (len % AES_BLOCK_SIZE)) {
2020-04-24 00:36:32 +02:00
uint8_t padding;
n2n_aes_ivec_t dec_ivec = {0};
set_aes_cbc_iv(priv, dec_ivec, iv_seed);
2020-04-25 23:46:50 +02:00
#ifdef HAVE_OPENSSL_1_1
2020-04-24 00:36:32 +02:00
EVP_CIPHER_CTX *ctx = priv->dec_ctx;
int evp_len;
int evp_plaintext_len;
2020-04-24 08:21:12 +02:00
if(1 == EVP_DecryptInit_ex(ctx, priv->cipher, NULL, priv->key, dec_ivec)) {
if(1 == EVP_CIPHER_CTX_set_padding(ctx, 0)) {
if(1 == EVP_DecryptUpdate(ctx, assembly, &evp_len, inbuf + TRANSOP_AES_PREAMBLE_SIZE, len)) {
2020-04-24 00:36:32 +02:00
evp_plaintext_len = evp_len;
2020-04-24 08:21:12 +02:00
if(1 == EVP_DecryptFinal_ex(ctx, assembly + evp_len, &evp_len)) {
2020-04-24 00:36:32 +02:00
evp_plaintext_len += evp_len;
2020-04-25 23:55:14 +02:00
2020-04-24 08:21:12 +02:00
if(evp_plaintext_len != len)
traceEvent(TRACE_ERROR, "decode_aes openssl decryption: decrypted %u bytes where %u were expected.\n",
2020-04-24 08:45:33 +02:00
evp_plaintext_len, len);
2020-03-30 11:48:48 +02:00
} else
2020-04-24 00:36:32 +02:00
traceEvent(TRACE_ERROR, "decode_aes openssl final decryption: %s\n", openssl_err_as_string());
} else
traceEvent(TRACE_ERROR, "decode_aes openssl decrpytion: %s\n", openssl_err_as_string());
} else
traceEvent(TRACE_ERROR, "decode_aes openssl padding setup: %s\n", openssl_err_as_string());
2020-04-24 08:21:12 +02:00
2020-04-24 00:36:32 +02:00
} else
traceEvent(TRACE_ERROR, "decode_aes openssl init: %s\n", openssl_err_as_string());
2020-04-24 08:21:12 +02:00
EVP_CIPHER_CTX_reset(ctx);
#else
2020-04-24 08:45:33 +02:00
AES_cbc_encrypt((inbuf + TRANSOP_AES_PREAMBLE_SIZE),
assembly, /* destination */
len,
&(priv->dec_key),
dec_ivec, AES_DECRYPT);
2020-04-24 08:21:12 +02:00
#endif
2020-04-24 00:36:32 +02:00
/* last byte is how much was padding: max value should be
* AES_BLOCKSIZE-1 */
padding = assembly[ len-1 ] & 0xff;
2020-04-24 08:21:12 +02:00
if(len >= padding) {
2020-04-24 08:45:33 +02:00
/* strictly speaking for this to be an ethernet packet
* it is going to need to be even bigger; but this is
* enough to prevent segfaults. */
traceEvent(TRACE_DEBUG, "padding = %u", padding);
len -= padding;
memcpy(outbuf,
assembly,
len);
} else
2020-04-24 00:36:32 +02:00
traceEvent(TRACE_WARNING, "UDP payload decryption failed.");
} else {
traceEvent(TRACE_WARNING, "Encrypted length %d is not a multiple of AES_BLOCK_SIZE (%d)", len, AES_BLOCK_SIZE);
len = 0;
}
} else
traceEvent(TRACE_ERROR, "decode_aes unsupported aes version %u.", aes_enc_ver);
} else
2020-04-24 00:36:32 +02:00
traceEvent(TRACE_ERROR, "decode_aes inbuf wrong size (%ul) to decrypt.", in_len);
2016-10-23 10:46:15 +02:00
2020-04-24 00:36:32 +02:00
return len;
2016-10-23 10:46:15 +02:00
}
2020-04-24 08:21:12 +02:00
/* ****************************************************** */
static int setup_aes_key(transop_aes_t *priv, const uint8_t *key, ssize_t key_size) {
2020-04-24 00:36:32 +02:00
size_t aes_key_size_bytes;
size_t aes_key_size_bits;
uint8_t key_mat_buf[SHA512_DIGEST_LENGTH + SHA256_DIGEST_LENGTH];
size_t key_mat_buf_length;
/* Clear out any old possibly longer key matter. */
2020-04-25 23:46:50 +02:00
#ifdef HAVE_OPENSSL_1_1
2020-04-24 08:45:33 +02:00
memset(&(priv->key), 0, sizeof(priv->key) );
2020-04-24 08:21:12 +02:00
#else
2020-04-24 08:45:33 +02:00
memset(&(priv->enc_key), 0, sizeof(priv->enc_key) );
memset(&(priv->dec_key), 0, sizeof(priv->dec_key) );
2020-04-24 08:21:12 +02:00
#endif
2020-04-24 08:45:33 +02:00
memset(&(priv->iv_enc_key), 0, sizeof(priv->iv_enc_key) );
memset(&(priv->iv_pad_val), 0, sizeof(priv->iv_pad_val) );
2020-04-24 00:36:32 +02:00
/* Let the user choose the degree of encryption:
* Long input keys will pick AES192 or AES256 with more robust but expensive encryption.
*
* The input key always gets hashed to make a more unpredictable use of the key space and
* also to derive some additional material (key for IV encrpytion, IV padding).
*
* The following scheme for key setup was discussed on github:
* https://github.com/ntop/n2n/issues/101
*/
/* create a working buffer of maximal occuring hashes size and generate
* the hashes for the aes key material, key_mat_buf_lengh indicates the
* actual "filling level" of the buffer
*/
2020-04-24 08:21:12 +02:00
if(key_size >= 65) {
2020-04-25 23:46:50 +02:00
#ifdef HAVE_OPENSSL_1_1
2020-04-25 23:55:14 +02:00
priv->cipher = EVP_aes_256_cbc();
2020-04-24 08:21:12 +02:00
#endif
2020-04-24 08:45:33 +02:00
aes_key_size_bytes = AES256_KEY_BYTES;
SHA512(key, key_size, key_mat_buf);
key_mat_buf_length = SHA512_DIGEST_LENGTH;
} else if(key_size >= 44) {
2020-04-25 23:46:50 +02:00
#ifdef HAVE_OPENSSL_1_1
2020-04-25 23:55:14 +02:00
priv->cipher = EVP_aes_192_cbc();
2020-04-24 08:21:12 +02:00
#endif
2020-04-24 08:45:33 +02:00
aes_key_size_bytes = AES192_KEY_BYTES;
SHA384(key, key_size, key_mat_buf);
/* append a hash of the first hash to create enough material for IV padding */
SHA256(key_mat_buf, SHA384_DIGEST_LENGTH, key_mat_buf + SHA384_DIGEST_LENGTH);
key_mat_buf_length = SHA384_DIGEST_LENGTH + SHA256_DIGEST_LENGTH;
} else {
2020-04-25 23:46:50 +02:00
#ifdef HAVE_OPENSSL_1_1
2020-04-25 23:55:14 +02:00
priv->cipher = EVP_aes_128_cbc();
2020-04-24 08:21:12 +02:00
#endif
2020-04-24 08:45:33 +02:00
aes_key_size_bytes = AES128_KEY_BYTES;
SHA256(key, key_size, key_mat_buf);
/* append a hash of the first hash to create enough material for IV padding */
SHA256(key_mat_buf, SHA256_DIGEST_LENGTH, key_mat_buf + SHA256_DIGEST_LENGTH);
key_mat_buf_length = 2 * SHA256_DIGEST_LENGTH;
}
2020-04-24 00:36:32 +02:00
/* is there enough material available? */
2020-04-24 08:21:12 +02:00
if(key_mat_buf_length < (aes_key_size_bytes + TRANSOP_AES_IV_KEY_BYTES + TRANSOP_AES_IV_PADDING_SIZE)) {
2020-04-24 08:45:33 +02:00
/* this should never happen */
traceEvent(TRACE_ERROR, "AES missing %u bits hashed key material\n",
(aes_key_size_bytes + TRANSOP_AES_IV_KEY_BYTES + TRANSOP_AES_IV_PADDING_SIZE - key_mat_buf_length) * 8);
return(1);
}
2020-04-24 00:36:32 +02:00
/* setup of key, used for the CBC encryption */
aes_key_size_bits = 8 * aes_key_size_bytes;
2020-04-24 08:21:12 +02:00
2020-04-25 23:46:50 +02:00
#ifdef HAVE_OPENSSL_1_1
2020-04-24 00:36:32 +02:00
memcpy (priv->key, key_mat_buf, aes_key_size_bytes);
2020-04-24 08:21:12 +02:00
#else
AES_set_encrypt_key(key_mat_buf, aes_key_size_bits, &(priv->enc_key));
AES_set_decrypt_key(key_mat_buf, aes_key_size_bits, &(priv->dec_key));
#endif
2020-04-24 00:36:32 +02:00
/* setup of iv_enc_key (AES128 key) and iv_pad_val, used for generating the CBC IV */
AES_set_encrypt_key(key_mat_buf + aes_key_size_bytes, TRANSOP_AES_IV_KEY_BYTES * 8, &(priv->iv_enc_key));
memcpy(priv->iv_pad_val, key_mat_buf + aes_key_size_bytes + TRANSOP_AES_IV_KEY_BYTES, TRANSOP_AES_IV_PADDING_SIZE);
2020-04-24 00:36:32 +02:00
traceEvent(TRACE_DEBUG, "AES %u bits setup completed\n",
aes_key_size_bits);
2020-04-24 00:36:32 +02:00
return(0);
}
2020-04-24 08:21:12 +02:00
/* ****************************************************** */
static void transop_tick_aes(n2n_trans_op_t * arg, time_t now) { ; }
/* ****************************************************** */
/* AES initialization function */
int n2n_transop_aes_cbc_init(const n2n_edge_conf_t *conf, n2n_trans_op_t *ttt) {
transop_aes_t *priv;
const u_char *encrypt_key = (const u_char *)conf->encrypt_key;
size_t encrypt_key_len = strlen(conf->encrypt_key);
2016-10-23 10:46:15 +02:00
memset(ttt, 0, sizeof(*ttt));
ttt->transform_id = N2N_TRANSFORM_ID_AESCBC;
2016-10-23 10:46:15 +02:00
ttt->tick = transop_tick_aes;
ttt->deinit = transop_deinit_aes;
ttt->fwd = transop_encode_aes;
ttt->rev = transop_decode_aes;
2016-10-23 10:46:15 +02:00
priv = (transop_aes_t*) calloc(1, sizeof(transop_aes_t));
if(!priv) {
traceEvent(TRACE_ERROR, "cannot allocate transop_aes_t memory");
return(-1);
}
ttt->priv = priv;
2016-10-23 10:46:15 +02:00
2020-04-25 23:46:50 +02:00
#ifdef HAVE_OPENSSL_1_1
2020-03-30 11:48:48 +02:00
/* Setup openssl's reusable evp_* contexts for encryption and decryption*/
2020-04-24 08:21:12 +02:00
if(!(priv->enc_ctx = EVP_CIPHER_CTX_new())) {
2020-03-30 11:48:48 +02:00
traceEvent(TRACE_ERROR, "openssl's evp_* encryption context creation: %s\n", openssl_err_as_string());
return(-1);
}
2020-04-24 08:21:12 +02:00
if(!(priv->dec_ctx = EVP_CIPHER_CTX_new())) {
2020-03-30 11:48:48 +02:00
traceEvent(TRACE_ERROR, "openssl's evp_* decryption context creation: %s\n", openssl_err_as_string());
return(-1);
}
2020-04-24 08:21:12 +02:00
#endif
2020-03-30 11:48:48 +02:00
/* Setup the cipher and key */
return(setup_aes_key(priv, encrypt_key, encrypt_key_len));
2016-10-23 10:46:15 +02:00
}
#endif /* N2N_HAVE_AES */