Skip to content

Commit

Permalink
Merge pull request #32675 from rosinL/openssl-evp
Browse files Browse the repository at this point in the history
crypto/openssl: update to use evp functions

Reviewed-by: Kefu Chai <kchai@redhat.com>
  • Loading branch information
tchaikov committed Mar 12, 2020
2 parents 6033836 + 4872968 commit 3ed616c
Showing 1 changed file with 70 additions and 15 deletions.
85 changes: 70 additions & 15 deletions src/crypto/openssl/openssl_crypto_accel.cc
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,68 @@
*/

#include "crypto/openssl/openssl_crypto_accel.h"
#include <openssl/aes.h>
#include <openssl/evp.h>
#include <openssl/engine.h>
#include "common/debug.h"

// -----------------------------------------------------------------------------
#define dout_context g_ceph_context
#define dout_subsys ceph_subsys_crypto
#undef dout_prefix
#define dout_prefix _prefix(_dout)

static ostream&
_prefix(std::ostream* _dout)
{
return *_dout << "OpensslCryptoAccel: ";
}
// -----------------------------------------------------------------------------

#define EVP_SUCCESS 1
#define AES_ENCRYPT 1
#define AES_DECRYPT 0

bool evp_transform(unsigned char* out, const unsigned char* in, size_t size,
const unsigned char* iv,
const unsigned char* key,
ENGINE* engine,
const EVP_CIPHER* const type,
const int encrypt)
{
using pctx_t = std::unique_ptr<EVP_CIPHER_CTX, decltype(&::EVP_CIPHER_CTX_free)>;
pctx_t pctx{ EVP_CIPHER_CTX_new(), EVP_CIPHER_CTX_free };

if (!pctx) {
derr << "failed to create evp cipher context" << dendl;
return false;
}

if (EVP_CipherInit_ex(pctx.get(), type, engine, key, iv, encrypt) != EVP_SUCCESS) {
derr << "EVP_CipherInit_ex failed" << dendl;
return false;
}

if (EVP_CIPHER_CTX_set_padding(pctx.get(), 0) != EVP_SUCCESS) {
derr << "failed to disable PKCS padding" << dendl;
return false;
}

int len_update = 0;
if (EVP_CipherUpdate(pctx.get(), out, &len_update, in, size) != EVP_SUCCESS) {
derr << "EVP_CipherUpdate failed" << dendl;
return false;
}

int len_final = 0;
if (EVP_CipherFinal_ex(pctx.get(), out + len_update, &len_final) != EVP_SUCCESS) {
derr << "EVP_CipherFinal_ex failed" << dendl;
return false;
}

ceph_assert(len_final == 0);
return (len_update + len_final) == static_cast<int>(size);
}

bool OpenSSLCryptoAccel::cbc_encrypt(unsigned char* out, const unsigned char* in, size_t size,
const unsigned char (&iv)[AES_256_IVSIZE],
const unsigned char (&key)[AES_256_KEYSIZE])
Expand All @@ -23,14 +83,12 @@ bool OpenSSLCryptoAccel::cbc_encrypt(unsigned char* out, const unsigned char* in
return false;
}

AES_KEY aes_key;
if (AES_set_encrypt_key(const_cast<unsigned char*>(&key[0]), 256, &aes_key) < 0)
return false;

AES_cbc_encrypt(const_cast<unsigned char*>(in), out, size, &aes_key,
const_cast<unsigned char*>(&iv[0]), AES_ENCRYPT);
return true;
return evp_transform(out, in, size, const_cast<unsigned char*>(&iv[0]),
const_cast<unsigned char*>(&key[0]),
nullptr, // Hardware acceleration engine can be used in the future
EVP_aes_256_cbc(), AES_ENCRYPT);
}

bool OpenSSLCryptoAccel::cbc_decrypt(unsigned char* out, const unsigned char* in, size_t size,
const unsigned char (&iv)[AES_256_IVSIZE],
const unsigned char (&key)[AES_256_KEYSIZE])
Expand All @@ -39,11 +97,8 @@ bool OpenSSLCryptoAccel::cbc_decrypt(unsigned char* out, const unsigned char* in
return false;
}

AES_KEY aes_key;
if (AES_set_decrypt_key(const_cast<unsigned char*>(&key[0]), 256, &aes_key) < 0)
return false;

AES_cbc_encrypt(const_cast<unsigned char*>(in), out, size, &aes_key,
const_cast<unsigned char*>(&iv[0]), AES_DECRYPT);
return true;
return evp_transform(out, in, size, const_cast<unsigned char*>(&iv[0]),
const_cast<unsigned char*>(&key[0]),
nullptr, // Hardware acceleration engine can be used in the future
EVP_aes_256_cbc(), AES_DECRYPT);
}

0 comments on commit 3ed616c

Please sign in to comment.