Support isa-l_crypto for AES-XTS too

This commit is contained in:
Vitaliy Filippov
2026-05-19 17:19:47 +03:00
parent b1d9098904
commit 75dfafa0cf
3 changed files with 50 additions and 12 deletions
+1 -1
View File
@@ -101,7 +101,7 @@ add_executable(test_cluster_client
pg_states.cpp osd_ops.cpp cluster_client.cpp cluster_client_list.cpp cluster_client_wb.cpp cluster_client_icache.cpp msgr_op.cpp ../test/mock/messenger.cpp msgr_stop.cpp msgr_encrypt.cpp pg_states.cpp osd_ops.cpp cluster_client.cpp cluster_client_list.cpp cluster_client_wb.cpp cluster_client_icache.cpp msgr_op.cpp ../test/mock/messenger.cpp msgr_stop.cpp msgr_encrypt.cpp
etcd_state_client.cpp ../util/timerfd_manager.cpp ../util/addr_util.cpp ../util/str_util.cpp ../util/json_util.cpp ../util/xxh_x86dispatch.c ../../json11/json11.cpp etcd_state_client.cpp ../util/timerfd_manager.cpp ../util/addr_util.cpp ../util/str_util.cpp ../util/json_util.cpp ../util/xxh_x86dispatch.c ../../json11/json11.cpp
) )
target_link_libraries(test_cluster_client ${LIBURING_LIBRARIES} ${OPENSSL_LIBRARIES}) target_link_libraries(test_cluster_client ${LIBURING_LIBRARIES} ${OPENSSL_LIBRARIES} ${ISAL_CRYPTO_LIBRARIES})
target_compile_definitions(test_cluster_client PUBLIC -D__MOCK__) target_compile_definitions(test_cluster_client PUBLIC -D__MOCK__)
target_include_directories(test_cluster_client BEFORE PUBLIC ${CMAKE_SOURCE_DIR}/src/test/mock) target_include_directories(test_cluster_client BEFORE PUBLIC ${CMAKE_SOURCE_DIR}/src/test/mock)
add_dependencies(build_tests test_cluster_client) add_dependencies(build_tests test_cluster_client)
+41 -11
View File
@@ -3,12 +3,17 @@
#include <assert.h> #include <assert.h>
#ifdef WITH_ISAL_CRYPTO
#include <isa-l_crypto/isal_crypto_api.h>
#endif
#include "etcd_state_client.h" #include "etcd_state_client.h"
#include "messenger.h" #include "messenger.h"
#include "msgr_encrypt.h" #include "msgr_encrypt.h"
op_aes_xts_encrypt_t::op_aes_xts_encrypt_t() op_aes_xts_encrypt_t::op_aes_xts_encrypt_t()
{ {
#ifndef WITH_ISAL_CRYPTO
if (!(ctx = EVP_CIPHER_CTX_new())) if (!(ctx = EVP_CIPHER_CTX_new()))
{ {
ERR_print_errors_fp(stderr); ERR_print_errors_fp(stderr);
@@ -20,12 +25,15 @@ op_aes_xts_encrypt_t::op_aes_xts_encrypt_t()
ERR_print_errors_fp(stderr); ERR_print_errors_fp(stderr);
abort(); abort();
} }
#endif
} }
op_aes_xts_encrypt_t::~op_aes_xts_encrypt_t() op_aes_xts_encrypt_t::~op_aes_xts_encrypt_t()
{ {
assert(!encrypted); assert(!encrypted);
#ifndef WITH_ISAL_CRYPTO
EVP_CIPHER_CTX_free(ctx); EVP_CIPHER_CTX_free(ctx);
#endif
if (tmp) if (tmp)
free(tmp); free(tmp);
} }
@@ -45,17 +53,23 @@ void op_aes_xts_encrypt_t::start(uint8_t *key, uint64_t start_offset, size_t blo
tmp = NULL; tmp = NULL;
tmp_size = 0; tmp_size = 0;
} }
#ifndef WITH_ISAL_CRYPTO
if (EVP_EncryptInit_ex(ctx, NULL, NULL, key, NULL) != 1) if (EVP_EncryptInit_ex(ctx, NULL, NULL, key, NULL) != 1)
{ {
ERR_print_errors_fp(stderr); ERR_print_errors_fp(stderr);
abort(); abort();
} }
#endif
} }
void op_aes_xts_encrypt_t::encrypt_block(uint8_t *in, uint8_t *out) void op_aes_xts_encrypt_t::encrypt_block(uint8_t *in, uint8_t *out)
{ {
uint8_t iv[16] = { 0 }; uint8_t iv[16] = { 0 };
*((uint64_t*)iv) = start_offset + offset - offset%block_size; *((uint64_t*)iv) = start_offset + offset - offset%block_size;
#ifdef WITH_ISAL_CRYPTO
int r = isal_aes_xts_enc_256(key+32, key, iv, block_size, in, out);
assert(r == 0 || r == ISAL_CRYPTO_ERR_XTS_SAME_KEYS);
#else
if (EVP_EncryptInit_ex(ctx, NULL, NULL, NULL, iv) != 1) if (EVP_EncryptInit_ex(ctx, NULL, NULL, NULL, iv) != 1)
{ {
ERR_print_errors_fp(stderr); ERR_print_errors_fp(stderr);
@@ -68,6 +82,7 @@ void op_aes_xts_encrypt_t::encrypt_block(uint8_t *in, uint8_t *out)
abort(); abort();
} }
assert(actual_out == block_size); assert(actual_out == block_size);
#endif
} }
void op_aes_xts_encrypt_t::update(uint8_t *in, size_t max_in, uint8_t *out, size_t max_out, size_t & done_in, size_t & done_out) void op_aes_xts_encrypt_t::update(uint8_t *in, size_t max_in, uint8_t *out, size_t max_out, size_t & done_in, size_t & done_out)
@@ -150,6 +165,7 @@ void destroy_aes_xts_encrypt(op_aes_xts_encrypt_t *encrypt_ctx)
op_aes_xts_decrypt_t::op_aes_xts_decrypt_t() op_aes_xts_decrypt_t::op_aes_xts_decrypt_t()
{ {
#ifndef WITH_ISAL_CRYPTO
if (!(ctx = EVP_CIPHER_CTX_new())) if (!(ctx = EVP_CIPHER_CTX_new()))
{ {
ERR_print_errors_fp(stderr); ERR_print_errors_fp(stderr);
@@ -161,12 +177,15 @@ op_aes_xts_decrypt_t::op_aes_xts_decrypt_t()
ERR_print_errors_fp(stderr); ERR_print_errors_fp(stderr);
abort(); abort();
} }
#endif
} }
op_aes_xts_decrypt_t::~op_aes_xts_decrypt_t() op_aes_xts_decrypt_t::~op_aes_xts_decrypt_t()
{ {
assert(!decrypted); assert(!decrypted);
#ifndef WITH_ISAL_CRYPTO
EVP_CIPHER_CTX_free(ctx); EVP_CIPHER_CTX_free(ctx);
#endif
if (tmp) if (tmp)
free(tmp); free(tmp);
} }
@@ -175,9 +194,9 @@ void op_aes_xts_decrypt_t::start(uint8_t **key_chain, size_t chain_size, void *k
{ {
assert(!decrypted); assert(!decrypted);
this->start_offset = start_offset; this->start_offset = start_offset;
this->key_chain = chain_size > 1 ? key_chain : 0; this->key_chain = key_chain;
this->chain_size = chain_size > 1 ? chain_size : 0; this->chain_size = chain_size;
this->key_indexes = chain_size > 1 ? key_indexes : NULL; this->key_indexes = key_indexes;
this->key_index_bytes = osd_op_rw_t::chain_info_bytes(chain_size); this->key_index_bytes = osd_op_rw_t::chain_info_bytes(chain_size);
assert(chain_size <= 1 || key_indexes != NULL); assert(chain_size <= 1 || key_indexes != NULL);
this->block_size = block_size; this->block_size = block_size;
@@ -189,17 +208,19 @@ void op_aes_xts_decrypt_t::start(uint8_t **key_chain, size_t chain_size, void *k
tmp = NULL; tmp = NULL;
tmp_size = 0; tmp_size = 0;
} }
#ifndef WITH_ISAL_CRYPTO
if (chain_size == 1 && key_chain[0] && EVP_DecryptInit_ex(ctx, NULL, NULL, key_chain[0], NULL) != 1) if (chain_size == 1 && key_chain[0] && EVP_DecryptInit_ex(ctx, NULL, NULL, key_chain[0], NULL) != 1)
{ {
ERR_print_errors_fp(stderr); ERR_print_errors_fp(stderr);
abort(); abort();
} }
#endif
} }
void op_aes_xts_decrypt_t::decrypt_block(uint8_t *in, uint8_t *out) void op_aes_xts_decrypt_t::decrypt_block(uint8_t *in, uint8_t *out)
{ {
uint8_t *key = NULL; uint8_t *key = NULL;
if (chain_size) if (chain_size > 1)
{ {
uint32_t key_index = key_index_bytes == 1 uint32_t key_index = key_index_bytes == 1
? ((uint8_t*)key_indexes)[offset/block_size] ? ((uint8_t*)key_indexes)[offset/block_size]
@@ -210,16 +231,24 @@ void op_aes_xts_decrypt_t::decrypt_block(uint8_t *in, uint8_t *out)
: UINT32_MAX)); : UINT32_MAX));
assert(key_index < chain_size); assert(key_index < chain_size);
key = key_chain[key_index]; key = key_chain[key_index];
if (!key) }
{ else
if (in != out) {
memcpy(out, in, block_size); key = key_chain[0];
return; }
} if (!key)
{
if (in != out)
memcpy(out, in, block_size);
return;
} }
uint8_t iv[16] = { 0 }; uint8_t iv[16] = { 0 };
*((uint64_t*)iv) = start_offset + offset - offset%block_size; *((uint64_t*)iv) = start_offset + offset - offset%block_size;
if (EVP_DecryptInit_ex(ctx, NULL, NULL, key, iv) != 1) #ifdef WITH_ISAL_CRYPTO
int r = isal_aes_xts_dec_256(key+32, key, iv, block_size, in, out);
assert(r == 0 || r == ISAL_CRYPTO_ERR_XTS_SAME_KEYS);
#else
if (EVP_DecryptInit_ex(ctx, NULL, NULL, chain_size == 1 ? NULL : key, iv) != 1)
{ {
ERR_print_errors_fp(stderr); ERR_print_errors_fp(stderr);
abort(); abort();
@@ -231,6 +260,7 @@ void op_aes_xts_decrypt_t::decrypt_block(uint8_t *in, uint8_t *out)
abort(); abort();
} }
assert(actual_out == block_size); assert(actual_out == block_size);
#endif
} }
// out may be NULL, in this case all input is still decrypted to calculate checksums, // out may be NULL, in this case all input is still decrypted to calculate checksums,
+8
View File
@@ -3,6 +3,10 @@
#include <stdint.h> #include <stdint.h>
#ifdef WITH_ISAL_CRYPTO
#include <isa-l_crypto/aes_xts.h>
#endif
#include "../util/xxh_x86dispatch.h" #include "../util/xxh_x86dispatch.h"
#include <openssl/conf.h> #include <openssl/conf.h>
#include <openssl/evp.h> #include <openssl/evp.h>
@@ -10,7 +14,9 @@
class op_aes_xts_encrypt_t class op_aes_xts_encrypt_t
{ {
#ifndef WITH_ISAL_CRYPTO
EVP_CIPHER_CTX *ctx = NULL; EVP_CIPHER_CTX *ctx = NULL;
#endif
uint64_t start_offset = 0; uint64_t start_offset = 0;
uint8_t *key = NULL; uint8_t *key = NULL;
size_t offset = 0; size_t offset = 0;
@@ -34,7 +40,9 @@ void destroy_aes_xts_encrypt(op_aes_xts_encrypt_t *encrypt_ctx);
class op_aes_xts_decrypt_t class op_aes_xts_decrypt_t
{ {
#ifndef WITH_ISAL_CRYPTO
EVP_CIPHER_CTX *ctx = NULL; EVP_CIPHER_CTX *ctx = NULL;
#endif
uint64_t start_offset = 0; uint64_t start_offset = 0;
uint8_t **key_chain = NULL; uint8_t **key_chain = NULL;
size_t chain_size = 0; size_t chain_size = 0;