This reverts commit a38318a6ac
.
This commit is contained in:
parent
aefe20e362
commit
f38b2e8209
|
@ -121,7 +121,6 @@ struct EncryptionOpsWorkload : TestWorkload {
|
||||||
EncryptCipherDomainId maxDomainId;
|
EncryptCipherDomainId maxDomainId;
|
||||||
EncryptCipherBaseKeyId minBaseCipherId;
|
EncryptCipherBaseKeyId minBaseCipherId;
|
||||||
EncryptCipherBaseKeyId headerBaseCipherId;
|
EncryptCipherBaseKeyId headerBaseCipherId;
|
||||||
EncryptCipherRandomSalt headerRandomSalt;
|
|
||||||
|
|
||||||
EncryptionOpsWorkload(WorkloadContext const& wcx) : TestWorkload(wcx) {
|
EncryptionOpsWorkload(WorkloadContext const& wcx) : TestWorkload(wcx) {
|
||||||
mode = getOption(options, LiteralStringRef("fixedSize"), 1);
|
mode = getOption(options, LiteralStringRef("fixedSize"), 1);
|
||||||
|
@ -135,7 +134,6 @@ struct EncryptionOpsWorkload : TestWorkload {
|
||||||
maxDomainId = deterministicRandom()->randomInt(minDomainId, minDomainId + 10) + 5;
|
maxDomainId = deterministicRandom()->randomInt(minDomainId, minDomainId + 10) + 5;
|
||||||
minBaseCipherId = 100;
|
minBaseCipherId = 100;
|
||||||
headerBaseCipherId = wcx.clientId * 100 + 1;
|
headerBaseCipherId = wcx.clientId * 100 + 1;
|
||||||
headerRandomSalt = wcx.clientId * 100 + 1;
|
|
||||||
|
|
||||||
metrics = std::make_unique<WorkloadMetrics>();
|
metrics = std::make_unique<WorkloadMetrics>();
|
||||||
|
|
||||||
|
@ -185,8 +183,7 @@ struct EncryptionOpsWorkload : TestWorkload {
|
||||||
|
|
||||||
// insert the Encrypt Header cipherKey
|
// insert the Encrypt Header cipherKey
|
||||||
generateRandomBaseCipher(AES_256_KEY_LENGTH, &buff[0], &cipherLen);
|
generateRandomBaseCipher(AES_256_KEY_LENGTH, &buff[0], &cipherLen);
|
||||||
cipherKeyCache->insertCipherKey(
|
cipherKeyCache->insertCipherKey(ENCRYPT_HEADER_DOMAIN_ID, headerBaseCipherId, buff, cipherLen);
|
||||||
ENCRYPT_HEADER_DOMAIN_ID, headerBaseCipherId, buff, cipherLen, headerRandomSalt);
|
|
||||||
|
|
||||||
TraceEvent("SetupCipherEssentials_Done").detail("MinDomainId", minDomainId).detail("MaxDomainId", maxDomainId);
|
TraceEvent("SetupCipherEssentials_Done").detail("MinDomainId", minDomainId).detail("MaxDomainId", maxDomainId);
|
||||||
}
|
}
|
||||||
|
@ -212,29 +209,6 @@ struct EncryptionOpsWorkload : TestWorkload {
|
||||||
TraceEvent("UpdateBaseCipher").detail("DomainId", encryptDomainId).detail("BaseCipherId", *nextBaseCipherId);
|
TraceEvent("UpdateBaseCipher").detail("DomainId", encryptDomainId).detail("BaseCipherId", *nextBaseCipherId);
|
||||||
}
|
}
|
||||||
|
|
||||||
Reference<BlobCipherKey> getEncryptionKey(const EncryptCipherDomainId& domainId,
|
|
||||||
const EncryptCipherBaseKeyId& baseCipherId,
|
|
||||||
const EncryptCipherRandomSalt& salt) {
|
|
||||||
const bool simCacheMiss = deterministicRandom()->randomInt(1, 100) < 15;
|
|
||||||
|
|
||||||
Reference<BlobCipherKeyCache> cipherKeyCache = BlobCipherKeyCache::getInstance();
|
|
||||||
Reference<BlobCipherKey> cipherKey = cipherKeyCache->getCipherKey(domainId, baseCipherId, salt);
|
|
||||||
|
|
||||||
if (simCacheMiss) {
|
|
||||||
TraceEvent("SimKeyCacheMiss").detail("EncyrptDomainId", domainId).detail("BaseCipherId", baseCipherId);
|
|
||||||
// simulate KeyCache miss that may happen during decryption; insert a CipherKey with known 'salt'
|
|
||||||
cipherKeyCache->insertCipherKey(domainId,
|
|
||||||
baseCipherId,
|
|
||||||
cipherKey->rawBaseCipher(),
|
|
||||||
cipherKey->getBaseCipherLen(),
|
|
||||||
cipherKey->getSalt());
|
|
||||||
// Ensure the update was a NOP
|
|
||||||
Reference<BlobCipherKey> cKey = cipherKeyCache->getCipherKey(domainId, baseCipherId, salt);
|
|
||||||
ASSERT(cKey->isEqual(cipherKey));
|
|
||||||
}
|
|
||||||
return cipherKey;
|
|
||||||
}
|
|
||||||
|
|
||||||
Reference<EncryptBuf> doEncryption(Reference<BlobCipherKey> textCipherKey,
|
Reference<EncryptBuf> doEncryption(Reference<BlobCipherKey> textCipherKey,
|
||||||
Reference<BlobCipherKey> headerCipherKey,
|
Reference<BlobCipherKey> headerCipherKey,
|
||||||
uint8_t* payload,
|
uint8_t* payload,
|
||||||
|
@ -266,12 +240,11 @@ struct EncryptionOpsWorkload : TestWorkload {
|
||||||
ASSERT_EQ(header.flags.headerVersion, EncryptBlobCipherAes265Ctr::ENCRYPT_HEADER_VERSION);
|
ASSERT_EQ(header.flags.headerVersion, EncryptBlobCipherAes265Ctr::ENCRYPT_HEADER_VERSION);
|
||||||
ASSERT_EQ(header.flags.encryptMode, ENCRYPT_CIPHER_MODE_AES_256_CTR);
|
ASSERT_EQ(header.flags.encryptMode, ENCRYPT_CIPHER_MODE_AES_256_CTR);
|
||||||
|
|
||||||
Reference<BlobCipherKey> cipherKey = getEncryptionKey(header.cipherTextDetails.encryptDomainId,
|
Reference<BlobCipherKeyCache> cipherKeyCache = BlobCipherKeyCache::getInstance();
|
||||||
header.cipherTextDetails.baseCipherId,
|
Reference<BlobCipherKey> cipherKey = cipherKeyCache->getCipherKey(header.cipherTextDetails.encryptDomainId,
|
||||||
header.cipherTextDetails.salt);
|
header.cipherTextDetails.baseCipherId);
|
||||||
Reference<BlobCipherKey> headerCipherKey = getEncryptionKey(header.cipherHeaderDetails.encryptDomainId,
|
Reference<BlobCipherKey> headerCipherKey = cipherKeyCache->getCipherKey(
|
||||||
header.cipherHeaderDetails.baseCipherId,
|
header.cipherHeaderDetails.encryptDomainId, header.cipherHeaderDetails.baseCipherId);
|
||||||
header.cipherHeaderDetails.salt);
|
|
||||||
ASSERT(cipherKey.isValid());
|
ASSERT(cipherKey.isValid());
|
||||||
ASSERT(cipherKey->isEqual(orgCipherKey));
|
ASSERT(cipherKey->isEqual(orgCipherKey));
|
||||||
|
|
||||||
|
@ -324,7 +297,7 @@ struct EncryptionOpsWorkload : TestWorkload {
|
||||||
Reference<BlobCipherKey> cipherKey = cipherKeyCache->getLatestCipherKey(encryptDomainId);
|
Reference<BlobCipherKey> cipherKey = cipherKeyCache->getLatestCipherKey(encryptDomainId);
|
||||||
// Each client working with their own version of encryptHeaderCipherKey, avoid using getLatest()
|
// Each client working with their own version of encryptHeaderCipherKey, avoid using getLatest()
|
||||||
Reference<BlobCipherKey> headerCipherKey =
|
Reference<BlobCipherKey> headerCipherKey =
|
||||||
cipherKeyCache->getCipherKey(ENCRYPT_HEADER_DOMAIN_ID, headerBaseCipherId, headerRandomSalt);
|
cipherKeyCache->getCipherKey(ENCRYPT_HEADER_DOMAIN_ID, headerBaseCipherId);
|
||||||
auto end = std::chrono::high_resolution_clock::now();
|
auto end = std::chrono::high_resolution_clock::now();
|
||||||
metrics->updateKeyDerivationTime(std::chrono::duration<double, std::nano>(end - start).count());
|
metrics->updateKeyDerivationTime(std::chrono::duration<double, std::nano>(end - start).count());
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,6 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "flow/BlobCipher.h"
|
#include "flow/BlobCipher.h"
|
||||||
|
|
||||||
#include "flow/EncryptUtils.h"
|
#include "flow/EncryptUtils.h"
|
||||||
#include "flow/Knobs.h"
|
#include "flow/Knobs.h"
|
||||||
#include "flow/Error.h"
|
#include "flow/Error.h"
|
||||||
|
@ -33,7 +32,6 @@
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <utility>
|
|
||||||
|
|
||||||
#if ENCRYPTION_ENABLED
|
#if ENCRYPTION_ENABLED
|
||||||
|
|
||||||
|
@ -56,14 +54,12 @@ BlobCipherKey::BlobCipherKey(const EncryptCipherDomainId& domainId,
|
||||||
salt = nondeterministicRandom()->randomUInt64();
|
salt = nondeterministicRandom()->randomUInt64();
|
||||||
}
|
}
|
||||||
initKey(domainId, baseCiph, baseCiphLen, baseCiphId, salt);
|
initKey(domainId, baseCiph, baseCiphLen, baseCiphId, salt);
|
||||||
}
|
/*TraceEvent("BlobCipherKey")
|
||||||
|
.detail("DomainId", domainId)
|
||||||
BlobCipherKey::BlobCipherKey(const EncryptCipherDomainId& domainId,
|
.detail("BaseCipherId", baseCipherId)
|
||||||
const EncryptCipherBaseKeyId& baseCiphId,
|
.detail("BaseCipherLen", baseCipherLen)
|
||||||
const uint8_t* baseCiph,
|
.detail("RandomSalt", randomSalt)
|
||||||
int baseCiphLen,
|
.detail("CreationTime", creationTime);*/
|
||||||
const EncryptCipherRandomSalt& salt) {
|
|
||||||
initKey(domainId, baseCiph, baseCiphLen, baseCiphId, salt);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void BlobCipherKey::initKey(const EncryptCipherDomainId& domainId,
|
void BlobCipherKey::initKey(const EncryptCipherDomainId& domainId,
|
||||||
|
@ -86,13 +82,6 @@ void BlobCipherKey::initKey(const EncryptCipherDomainId& domainId,
|
||||||
applyHmacSha256Derivation();
|
applyHmacSha256Derivation();
|
||||||
// update the key creation time
|
// update the key creation time
|
||||||
creationTime = now();
|
creationTime = now();
|
||||||
|
|
||||||
TraceEvent("BlobCipherKey")
|
|
||||||
.detail("DomainId", domainId)
|
|
||||||
.detail("BaseCipherId", baseCipherId)
|
|
||||||
.detail("BaseCipherLen", baseCipherLen)
|
|
||||||
.detail("RandomSalt", randomSalt)
|
|
||||||
.detail("CreationTime", creationTime);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void BlobCipherKey::applyHmacSha256Derivation() {
|
void BlobCipherKey::applyHmacSha256Derivation() {
|
||||||
|
@ -123,77 +112,25 @@ BlobCipherKeyIdCache::BlobCipherKeyIdCache(EncryptCipherDomainId dId)
|
||||||
TraceEvent("Init_BlobCipherKeyIdCache").detail("DomainId", domainId);
|
TraceEvent("Init_BlobCipherKeyIdCache").detail("DomainId", domainId);
|
||||||
}
|
}
|
||||||
|
|
||||||
BlobCipherKeyIdCacheKey BlobCipherKeyIdCache::getCacheKey(const EncryptCipherBaseKeyId& baseCipherKeyId,
|
|
||||||
const EncryptCipherRandomSalt& salt) {
|
|
||||||
return std::make_pair(baseCipherKeyId, salt);
|
|
||||||
}
|
|
||||||
|
|
||||||
Reference<BlobCipherKey> BlobCipherKeyIdCache::getLatestCipherKey() {
|
Reference<BlobCipherKey> BlobCipherKeyIdCache::getLatestCipherKey() {
|
||||||
return getCipherByBaseCipherId(latestBaseCipherKeyId, latestRandomSalt);
|
return getCipherByBaseCipherId(latestBaseCipherKeyId);
|
||||||
}
|
}
|
||||||
|
|
||||||
Reference<BlobCipherKey> BlobCipherKeyIdCache::getCipherByBaseCipherId(const EncryptCipherBaseKeyId& baseCipherKeyId,
|
Reference<BlobCipherKey> BlobCipherKeyIdCache::getCipherByBaseCipherId(EncryptCipherBaseKeyId baseCipherKeyId) {
|
||||||
const EncryptCipherRandomSalt& salt) {
|
BlobCipherKeyIdCacheMapCItr itr = keyIdCache.find(baseCipherKeyId);
|
||||||
BlobCipherKeyIdCacheMapCItr itr = keyIdCache.find(getCacheKey(baseCipherKeyId, salt));
|
|
||||||
if (itr == keyIdCache.end()) {
|
if (itr == keyIdCache.end()) {
|
||||||
TraceEvent("CipherByBaseCipherId_KeyMissing")
|
|
||||||
.detail("DomainId", domainId)
|
|
||||||
.detail("BaseCipherId", baseCipherKeyId)
|
|
||||||
.detail("Salt", salt);
|
|
||||||
throw encrypt_key_not_found();
|
throw encrypt_key_not_found();
|
||||||
}
|
}
|
||||||
return itr->second;
|
return itr->second;
|
||||||
}
|
}
|
||||||
|
|
||||||
void BlobCipherKeyIdCache::insertBaseCipherKey(const EncryptCipherBaseKeyId& baseCipherId,
|
void BlobCipherKeyIdCache::insertBaseCipherKey(EncryptCipherBaseKeyId baseCipherId,
|
||||||
const uint8_t* baseCipher,
|
const uint8_t* baseCipher,
|
||||||
int baseCipherLen) {
|
int baseCipherLen) {
|
||||||
ASSERT_GT(baseCipherId, ENCRYPT_INVALID_CIPHER_KEY_ID);
|
ASSERT_GT(baseCipherId, ENCRYPT_INVALID_CIPHER_KEY_ID);
|
||||||
|
|
||||||
// BaseCipherKeys are immutable, given the routine invocation updates 'latestCipher',
|
|
||||||
// ensure no key-tampering is done
|
|
||||||
try {
|
|
||||||
Reference<BlobCipherKey> cipherKey = getLatestCipherKey();
|
|
||||||
if (cipherKey->getBaseCipherId() == baseCipherId) {
|
|
||||||
if (memcmp(cipherKey->rawBaseCipher(), baseCipher, baseCipherLen) == 0) {
|
|
||||||
TraceEvent("InsertBaseCipherKey_AlreadyPresent")
|
|
||||||
.detail("BaseCipherKeyId", baseCipherId)
|
|
||||||
.detail("DomainId", domainId);
|
|
||||||
// Key is already present; nothing more to do.
|
|
||||||
return;
|
|
||||||
} else {
|
|
||||||
TraceEvent("InsertBaseCipherKey_UpdateCipher")
|
|
||||||
.detail("BaseCipherKeyId", baseCipherId)
|
|
||||||
.detail("DomainId", domainId);
|
|
||||||
throw encrypt_update_cipher();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} catch (Error& e) {
|
|
||||||
if (e.code() != error_code_encrypt_key_not_found) {
|
|
||||||
throw e;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Reference<BlobCipherKey> cipherKey =
|
|
||||||
makeReference<BlobCipherKey>(domainId, baseCipherId, baseCipher, baseCipherLen);
|
|
||||||
BlobCipherKeyIdCacheKey cacheKey = getCacheKey(cipherKey->getBaseCipherId(), cipherKey->getSalt());
|
|
||||||
keyIdCache.emplace(cacheKey, cipherKey);
|
|
||||||
|
|
||||||
// Update the latest BaseCipherKeyId for the given encryption domain
|
|
||||||
latestBaseCipherKeyId = baseCipherId;
|
|
||||||
latestRandomSalt = cipherKey->getSalt();
|
|
||||||
}
|
|
||||||
|
|
||||||
void BlobCipherKeyIdCache::insertBaseCipherKey(const EncryptCipherBaseKeyId& baseCipherId,
|
|
||||||
const uint8_t* baseCipher,
|
|
||||||
int baseCipherLen,
|
|
||||||
const EncryptCipherRandomSalt& salt) {
|
|
||||||
ASSERT_GT(baseCipherId, ENCRYPT_INVALID_CIPHER_KEY_ID);
|
|
||||||
|
|
||||||
BlobCipherKeyIdCacheKey cacheKey = getCacheKey(baseCipherId, salt);
|
|
||||||
|
|
||||||
// BaseCipherKeys are immutable, ensure that cached value doesn't get updated.
|
// BaseCipherKeys are immutable, ensure that cached value doesn't get updated.
|
||||||
BlobCipherKeyIdCacheMapCItr itr = keyIdCache.find(cacheKey);
|
BlobCipherKeyIdCacheMapCItr itr = keyIdCache.find(baseCipherId);
|
||||||
if (itr != keyIdCache.end()) {
|
if (itr != keyIdCache.end()) {
|
||||||
if (memcmp(itr->second->rawBaseCipher(), baseCipher, baseCipherLen) == 0) {
|
if (memcmp(itr->second->rawBaseCipher(), baseCipher, baseCipherLen) == 0) {
|
||||||
TraceEvent("InsertBaseCipherKey_AlreadyPresent")
|
TraceEvent("InsertBaseCipherKey_AlreadyPresent")
|
||||||
|
@ -209,9 +146,9 @@ void BlobCipherKeyIdCache::insertBaseCipherKey(const EncryptCipherBaseKeyId& bas
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Reference<BlobCipherKey> cipherKey =
|
keyIdCache.emplace(baseCipherId, makeReference<BlobCipherKey>(domainId, baseCipherId, baseCipher, baseCipherLen));
|
||||||
makeReference<BlobCipherKey>(domainId, baseCipherId, baseCipher, baseCipherLen, salt);
|
// Update the latest BaseCipherKeyId for the given encryption domain
|
||||||
keyIdCache.emplace(cacheKey, cipherKey);
|
latestBaseCipherKeyId = baseCipherId;
|
||||||
}
|
}
|
||||||
|
|
||||||
void BlobCipherKeyIdCache::cleanup() {
|
void BlobCipherKeyIdCache::cleanup() {
|
||||||
|
@ -260,41 +197,6 @@ void BlobCipherKeyCache::insertCipherKey(const EncryptCipherDomainId& domainId,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void BlobCipherKeyCache::insertCipherKey(const EncryptCipherDomainId& domainId,
|
|
||||||
const EncryptCipherBaseKeyId& baseCipherId,
|
|
||||||
const uint8_t* baseCipher,
|
|
||||||
int baseCipherLen,
|
|
||||||
const EncryptCipherRandomSalt& salt) {
|
|
||||||
if (domainId == ENCRYPT_INVALID_DOMAIN_ID || baseCipherId == ENCRYPT_INVALID_CIPHER_KEY_ID) {
|
|
||||||
throw encrypt_invalid_id();
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
auto domainItr = domainCacheMap.find(domainId);
|
|
||||||
if (domainItr == domainCacheMap.end()) {
|
|
||||||
// Add mapping to track new encryption domain
|
|
||||||
Reference<BlobCipherKeyIdCache> keyIdCache = makeReference<BlobCipherKeyIdCache>(domainId);
|
|
||||||
keyIdCache->insertBaseCipherKey(baseCipherId, baseCipher, baseCipherLen, salt);
|
|
||||||
domainCacheMap.emplace(domainId, keyIdCache);
|
|
||||||
} else {
|
|
||||||
// Track new baseCipher keys
|
|
||||||
Reference<BlobCipherKeyIdCache> keyIdCache = domainItr->second;
|
|
||||||
keyIdCache->insertBaseCipherKey(baseCipherId, baseCipher, baseCipherLen, salt);
|
|
||||||
}
|
|
||||||
|
|
||||||
TraceEvent("InsertCipherKey")
|
|
||||||
.detail("DomainId", domainId)
|
|
||||||
.detail("BaseCipherKeyId", baseCipherId)
|
|
||||||
.detail("Salt", salt);
|
|
||||||
} catch (Error& e) {
|
|
||||||
TraceEvent("InsertCipherKey_Failed")
|
|
||||||
.detail("BaseCipherKeyId", baseCipherId)
|
|
||||||
.detail("DomainId", domainId)
|
|
||||||
.detail("Salt", salt);
|
|
||||||
throw;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Reference<BlobCipherKey> BlobCipherKeyCache::getLatestCipherKey(const EncryptCipherDomainId& domainId) {
|
Reference<BlobCipherKey> BlobCipherKeyCache::getLatestCipherKey(const EncryptCipherDomainId& domainId) {
|
||||||
auto domainItr = domainCacheMap.find(domainId);
|
auto domainItr = domainCacheMap.find(domainId);
|
||||||
if (domainItr == domainCacheMap.end()) {
|
if (domainItr == domainCacheMap.end()) {
|
||||||
|
@ -315,19 +217,17 @@ Reference<BlobCipherKey> BlobCipherKeyCache::getLatestCipherKey(const EncryptCip
|
||||||
}
|
}
|
||||||
|
|
||||||
Reference<BlobCipherKey> BlobCipherKeyCache::getCipherKey(const EncryptCipherDomainId& domainId,
|
Reference<BlobCipherKey> BlobCipherKeyCache::getCipherKey(const EncryptCipherDomainId& domainId,
|
||||||
const EncryptCipherBaseKeyId& baseCipherId,
|
const EncryptCipherBaseKeyId& baseCipherId) {
|
||||||
const EncryptCipherRandomSalt& salt) {
|
|
||||||
auto domainItr = domainCacheMap.find(domainId);
|
auto domainItr = domainCacheMap.find(domainId);
|
||||||
if (domainItr == domainCacheMap.end()) {
|
if (domainItr == domainCacheMap.end()) {
|
||||||
TraceEvent("GetCipherKey_MissingDomainId").detail("DomainId", domainId);
|
|
||||||
throw encrypt_key_not_found();
|
throw encrypt_key_not_found();
|
||||||
}
|
}
|
||||||
|
|
||||||
Reference<BlobCipherKeyIdCache> keyIdCache = domainItr->second;
|
Reference<BlobCipherKeyIdCache> keyIdCache = domainItr->second;
|
||||||
return keyIdCache->getCipherByBaseCipherId(baseCipherId, salt);
|
return keyIdCache->getCipherByBaseCipherId(baseCipherId);
|
||||||
}
|
}
|
||||||
|
|
||||||
void BlobCipherKeyCache::resetEncryptDomainId(const EncryptCipherDomainId domainId) {
|
void BlobCipherKeyCache::resetEncyrptDomainId(const EncryptCipherDomainId domainId) {
|
||||||
auto domainItr = domainCacheMap.find(domainId);
|
auto domainItr = domainCacheMap.find(domainId);
|
||||||
if (domainItr == domainCacheMap.end()) {
|
if (domainItr == domainCacheMap.end()) {
|
||||||
throw encrypt_key_not_found();
|
throw encrypt_key_not_found();
|
||||||
|
@ -391,8 +291,8 @@ Reference<EncryptBuf> EncryptBlobCipherAes265Ctr::encrypt(const uint8_t* plainte
|
||||||
|
|
||||||
memset(reinterpret_cast<uint8_t*>(header), 0, sizeof(BlobCipherEncryptHeader));
|
memset(reinterpret_cast<uint8_t*>(header), 0, sizeof(BlobCipherEncryptHeader));
|
||||||
|
|
||||||
// Alloc buffer computation accounts for 'header authentication' generation scheme. If single-auth-token needs
|
// Alloc buffer computation accounts for 'header authentication' generation scheme. If single-auth-token needs to be
|
||||||
// to be generated, allocate buffer sufficient to append header to the cipherText optimizing memcpy cost.
|
// generated, allocate buffer sufficient to append header to the cipherText optimizing memcpy cost.
|
||||||
|
|
||||||
const int allocSize = authTokenMode == ENCRYPT_HEADER_AUTH_TOKEN_MODE_SINGLE
|
const int allocSize = authTokenMode == ENCRYPT_HEADER_AUTH_TOKEN_MODE_SINGLE
|
||||||
? plaintextLen + AES_BLOCK_SIZE + sizeof(BlobCipherEncryptHeader)
|
? plaintextLen + AES_BLOCK_SIZE + sizeof(BlobCipherEncryptHeader)
|
||||||
|
@ -440,7 +340,6 @@ Reference<EncryptBuf> EncryptBlobCipherAes265Ctr::encrypt(const uint8_t* plainte
|
||||||
// Populate header encryption-key details
|
// Populate header encryption-key details
|
||||||
header->cipherHeaderDetails.encryptDomainId = headerCipherKey->getDomainId();
|
header->cipherHeaderDetails.encryptDomainId = headerCipherKey->getDomainId();
|
||||||
header->cipherHeaderDetails.baseCipherId = headerCipherKey->getBaseCipherId();
|
header->cipherHeaderDetails.baseCipherId = headerCipherKey->getBaseCipherId();
|
||||||
header->cipherHeaderDetails.salt = headerCipherKey->getSalt();
|
|
||||||
|
|
||||||
// Populate header authToken details
|
// Populate header authToken details
|
||||||
if (header->flags.authTokenMode == ENCRYPT_HEADER_AUTH_TOKEN_MODE_SINGLE) {
|
if (header->flags.authTokenMode == ENCRYPT_HEADER_AUTH_TOKEN_MODE_SINGLE) {
|
||||||
|
@ -725,8 +624,8 @@ void forceLinkBlobCipherTests() {}
|
||||||
// 3. Inserting of 'identical' cipherKey (already cached) more than once works as desired.
|
// 3. Inserting of 'identical' cipherKey (already cached) more than once works as desired.
|
||||||
// 4. Inserting of 'non-identical' cipherKey (already cached) more than once works as desired.
|
// 4. Inserting of 'non-identical' cipherKey (already cached) more than once works as desired.
|
||||||
// 5. Validation encryption ops (correctness):
|
// 5. Validation encryption ops (correctness):
|
||||||
// 5.1. Encrypt a buffer followed by decryption of the buffer, validate the contents.
|
// 5.1. Encyrpt a buffer followed by decryption of the buffer, validate the contents.
|
||||||
// 5.2. Simulate anomalies such as: EncryptionHeader corruption, authToken mismatch / encryptionMode mismatch etc.
|
// 5.2. Simulate anomalies such as: EncyrptionHeader corruption, authToken mismatch / encryptionMode mismatch etc.
|
||||||
// 6. Cache cleanup
|
// 6. Cache cleanup
|
||||||
// 6.1 cleanup cipherKeys by given encryptDomainId
|
// 6.1 cleanup cipherKeys by given encryptDomainId
|
||||||
// 6.2. Cleanup all cached cipherKeys
|
// 6.2. Cleanup all cached cipherKeys
|
||||||
|
@ -740,7 +639,6 @@ TEST_CASE("flow/BlobCipher") {
|
||||||
int len;
|
int len;
|
||||||
EncryptCipherBaseKeyId keyId;
|
EncryptCipherBaseKeyId keyId;
|
||||||
std::unique_ptr<uint8_t[]> key;
|
std::unique_ptr<uint8_t[]> key;
|
||||||
EncryptCipherRandomSalt generatedSalt;
|
|
||||||
|
|
||||||
BaseCipher(const EncryptCipherDomainId& dId, const EncryptCipherBaseKeyId& kId)
|
BaseCipher(const EncryptCipherDomainId& dId, const EncryptCipherBaseKeyId& kId)
|
||||||
: domainId(dId), len(deterministicRandom()->randomInt(AES_256_KEY_LENGTH / 2, AES_256_KEY_LENGTH + 1)),
|
: domainId(dId), len(deterministicRandom()->randomInt(AES_256_KEY_LENGTH / 2, AES_256_KEY_LENGTH + 1)),
|
||||||
|
@ -773,8 +671,6 @@ TEST_CASE("flow/BlobCipher") {
|
||||||
|
|
||||||
cipherKeyCache->insertCipherKey(
|
cipherKeyCache->insertCipherKey(
|
||||||
baseCipher->domainId, baseCipher->keyId, baseCipher->key.get(), baseCipher->len);
|
baseCipher->domainId, baseCipher->keyId, baseCipher->key.get(), baseCipher->len);
|
||||||
Reference<BlobCipherKey> fetchedKey = cipherKeyCache->getLatestCipherKey(baseCipher->domainId);
|
|
||||||
baseCipher->generatedSalt = fetchedKey->getSalt();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// insert EncryptHeader BlobCipher key
|
// insert EncryptHeader BlobCipher key
|
||||||
|
@ -788,8 +684,7 @@ TEST_CASE("flow/BlobCipher") {
|
||||||
for (auto& domainItr : domainKeyMap) {
|
for (auto& domainItr : domainKeyMap) {
|
||||||
for (auto& baseKeyItr : domainItr.second) {
|
for (auto& baseKeyItr : domainItr.second) {
|
||||||
Reference<BaseCipher> baseCipher = baseKeyItr.second;
|
Reference<BaseCipher> baseCipher = baseKeyItr.second;
|
||||||
Reference<BlobCipherKey> cipherKey =
|
Reference<BlobCipherKey> cipherKey = cipherKeyCache->getCipherKey(baseCipher->domainId, baseCipher->keyId);
|
||||||
cipherKeyCache->getCipherKey(baseCipher->domainId, baseCipher->keyId, baseCipher->generatedSalt);
|
|
||||||
ASSERT(cipherKey.isValid());
|
ASSERT(cipherKey.isValid());
|
||||||
// validate common cipher properties - domainId, baseCipherId, baseCipherLen, rawBaseCipher
|
// validate common cipher properties - domainId, baseCipherId, baseCipherLen, rawBaseCipher
|
||||||
ASSERT_EQ(cipherKey->getBaseCipherId(), baseCipher->keyId);
|
ASSERT_EQ(cipherKey->getBaseCipherId(), baseCipher->keyId);
|
||||||
|
@ -864,8 +759,7 @@ TEST_CASE("flow/BlobCipher") {
|
||||||
.detail("BaseCipherId", header.cipherTextDetails.baseCipherId);
|
.detail("BaseCipherId", header.cipherTextDetails.baseCipherId);
|
||||||
|
|
||||||
Reference<BlobCipherKey> tCipherKeyKey = cipherKeyCache->getCipherKey(header.cipherTextDetails.encryptDomainId,
|
Reference<BlobCipherKey> tCipherKeyKey = cipherKeyCache->getCipherKey(header.cipherTextDetails.encryptDomainId,
|
||||||
header.cipherTextDetails.baseCipherId,
|
header.cipherTextDetails.baseCipherId);
|
||||||
header.cipherTextDetails.salt);
|
|
||||||
ASSERT(tCipherKeyKey->isEqual(cipherKey));
|
ASSERT(tCipherKeyKey->isEqual(cipherKey));
|
||||||
DecryptBlobCipherAes256Ctr decryptor(
|
DecryptBlobCipherAes256Ctr decryptor(
|
||||||
tCipherKeyKey, Reference<BlobCipherKey>(), &header.cipherTextDetails.iv[0]);
|
tCipherKeyKey, Reference<BlobCipherKey>(), &header.cipherTextDetails.iv[0]);
|
||||||
|
@ -952,11 +846,9 @@ TEST_CASE("flow/BlobCipher") {
|
||||||
StringRef(arena, &header.singleAuthToken.authToken[0], AUTH_TOKEN_SIZE).toString());
|
StringRef(arena, &header.singleAuthToken.authToken[0], AUTH_TOKEN_SIZE).toString());
|
||||||
|
|
||||||
Reference<BlobCipherKey> tCipherKeyKey = cipherKeyCache->getCipherKey(header.cipherTextDetails.encryptDomainId,
|
Reference<BlobCipherKey> tCipherKeyKey = cipherKeyCache->getCipherKey(header.cipherTextDetails.encryptDomainId,
|
||||||
header.cipherTextDetails.baseCipherId,
|
header.cipherTextDetails.baseCipherId);
|
||||||
header.cipherTextDetails.salt);
|
|
||||||
Reference<BlobCipherKey> hCipherKey = cipherKeyCache->getCipherKey(header.cipherHeaderDetails.encryptDomainId,
|
Reference<BlobCipherKey> hCipherKey = cipherKeyCache->getCipherKey(header.cipherHeaderDetails.encryptDomainId,
|
||||||
header.cipherHeaderDetails.baseCipherId,
|
header.cipherHeaderDetails.baseCipherId);
|
||||||
header.cipherHeaderDetails.salt);
|
|
||||||
ASSERT(tCipherKeyKey->isEqual(cipherKey));
|
ASSERT(tCipherKeyKey->isEqual(cipherKey));
|
||||||
DecryptBlobCipherAes256Ctr decryptor(tCipherKeyKey, hCipherKey, &header.cipherTextDetails.iv[0]);
|
DecryptBlobCipherAes256Ctr decryptor(tCipherKeyKey, hCipherKey, &header.cipherTextDetails.iv[0]);
|
||||||
Reference<EncryptBuf> decrypted = decryptor.decrypt(encrypted->begin(), bufLen, header, arena);
|
Reference<EncryptBuf> decrypted = decryptor.decrypt(encrypted->begin(), bufLen, header, arena);
|
||||||
|
@ -1057,11 +949,9 @@ TEST_CASE("flow/BlobCipher") {
|
||||||
StringRef(arena, &header.singleAuthToken.authToken[0], AUTH_TOKEN_SIZE).toString());
|
StringRef(arena, &header.singleAuthToken.authToken[0], AUTH_TOKEN_SIZE).toString());
|
||||||
|
|
||||||
Reference<BlobCipherKey> tCipherKey = cipherKeyCache->getCipherKey(header.cipherTextDetails.encryptDomainId,
|
Reference<BlobCipherKey> tCipherKey = cipherKeyCache->getCipherKey(header.cipherTextDetails.encryptDomainId,
|
||||||
header.cipherTextDetails.baseCipherId,
|
header.cipherTextDetails.baseCipherId);
|
||||||
header.cipherTextDetails.salt);
|
|
||||||
Reference<BlobCipherKey> hCipherKey = cipherKeyCache->getCipherKey(header.cipherHeaderDetails.encryptDomainId,
|
Reference<BlobCipherKey> hCipherKey = cipherKeyCache->getCipherKey(header.cipherHeaderDetails.encryptDomainId,
|
||||||
header.cipherHeaderDetails.baseCipherId,
|
header.cipherHeaderDetails.baseCipherId);
|
||||||
header.cipherHeaderDetails.salt);
|
|
||||||
|
|
||||||
ASSERT(tCipherKey->isEqual(cipherKey));
|
ASSERT(tCipherKey->isEqual(cipherKey));
|
||||||
DecryptBlobCipherAes256Ctr decryptor(tCipherKey, hCipherKey, &header.cipherTextDetails.iv[0]);
|
DecryptBlobCipherAes256Ctr decryptor(tCipherKey, hCipherKey, &header.cipherTextDetails.iv[0]);
|
||||||
|
@ -1157,7 +1047,7 @@ TEST_CASE("flow/BlobCipher") {
|
||||||
|
|
||||||
// Validate dropping encyrptDomainId cached keys
|
// Validate dropping encyrptDomainId cached keys
|
||||||
const EncryptCipherDomainId candidate = deterministicRandom()->randomInt(minDomainId, maxDomainId);
|
const EncryptCipherDomainId candidate = deterministicRandom()->randomInt(minDomainId, maxDomainId);
|
||||||
cipherKeyCache->resetEncryptDomainId(candidate);
|
cipherKeyCache->resetEncyrptDomainId(candidate);
|
||||||
std::vector<Reference<BlobCipherKey>> cachedKeys = cipherKeyCache->getAllCiphers(candidate);
|
std::vector<Reference<BlobCipherKey>> cachedKeys = cipherKeyCache->getAllCiphers(candidate);
|
||||||
ASSERT(cachedKeys.empty());
|
ASSERT(cachedKeys.empty());
|
||||||
|
|
||||||
|
|
|
@ -82,11 +82,11 @@ private:
|
||||||
// This header is persisted along with encrypted buffer, it contains information necessary
|
// This header is persisted along with encrypted buffer, it contains information necessary
|
||||||
// to assist decrypting the buffers to serve read requests.
|
// to assist decrypting the buffers to serve read requests.
|
||||||
//
|
//
|
||||||
// The total space overhead is 104 bytes.
|
// The total space overhead is 96 bytes.
|
||||||
|
|
||||||
#pragma pack(push, 1) // exact fit - no padding
|
#pragma pack(push, 1) // exact fit - no padding
|
||||||
typedef struct BlobCipherEncryptHeader {
|
typedef struct BlobCipherEncryptHeader {
|
||||||
static constexpr int headerSize = 104;
|
static constexpr int headerSize = 96;
|
||||||
union {
|
union {
|
||||||
struct {
|
struct {
|
||||||
uint8_t size; // reading first byte is sufficient to determine header
|
uint8_t size; // reading first byte is sufficient to determine header
|
||||||
|
@ -101,7 +101,7 @@ typedef struct BlobCipherEncryptHeader {
|
||||||
|
|
||||||
// Cipher text encryption information
|
// Cipher text encryption information
|
||||||
struct {
|
struct {
|
||||||
// Encryption domain boundary identifier.
|
// Encyrption domain boundary identifier.
|
||||||
EncryptCipherDomainId encryptDomainId{};
|
EncryptCipherDomainId encryptDomainId{};
|
||||||
// BaseCipher encryption key identifier
|
// BaseCipher encryption key identifier
|
||||||
EncryptCipherBaseKeyId baseCipherId{};
|
EncryptCipherBaseKeyId baseCipherId{};
|
||||||
|
@ -116,8 +116,6 @@ typedef struct BlobCipherEncryptHeader {
|
||||||
EncryptCipherDomainId encryptDomainId{};
|
EncryptCipherDomainId encryptDomainId{};
|
||||||
// BaseCipher encryption key identifier.
|
// BaseCipher encryption key identifier.
|
||||||
EncryptCipherBaseKeyId baseCipherId{};
|
EncryptCipherBaseKeyId baseCipherId{};
|
||||||
// Random salt
|
|
||||||
EncryptCipherRandomSalt salt{};
|
|
||||||
} cipherHeaderDetails;
|
} cipherHeaderDetails;
|
||||||
|
|
||||||
// Encryption header is stored as plaintext on a persistent storage to assist reconstruction of cipher-key(s) for
|
// Encryption header is stored as plaintext on a persistent storage to assist reconstruction of cipher-key(s) for
|
||||||
|
@ -166,11 +164,6 @@ public:
|
||||||
const EncryptCipherBaseKeyId& baseCiphId,
|
const EncryptCipherBaseKeyId& baseCiphId,
|
||||||
const uint8_t* baseCiph,
|
const uint8_t* baseCiph,
|
||||||
int baseCiphLen);
|
int baseCiphLen);
|
||||||
BlobCipherKey(const EncryptCipherDomainId& domainId,
|
|
||||||
const EncryptCipherBaseKeyId& baseCiphId,
|
|
||||||
const uint8_t* baseCiph,
|
|
||||||
int baseCiphLen,
|
|
||||||
const EncryptCipherRandomSalt& salt);
|
|
||||||
|
|
||||||
uint8_t* data() const { return cipher.get(); }
|
uint8_t* data() const { return cipher.get(); }
|
||||||
uint64_t getCreationTime() const { return creationTime; }
|
uint64_t getCreationTime() const { return creationTime; }
|
||||||
|
@ -213,7 +206,7 @@ private:
|
||||||
// This interface allows FDB processes participating in encryption to store and
|
// This interface allows FDB processes participating in encryption to store and
|
||||||
// index recently used encyption cipher keys. FDB encryption has two dimensions:
|
// index recently used encyption cipher keys. FDB encryption has two dimensions:
|
||||||
// 1. Mapping on cipher encryption keys per "encryption domains"
|
// 1. Mapping on cipher encryption keys per "encryption domains"
|
||||||
// 2. Per encryption domain, the cipher keys are index using {baseCipherKeyId, salt} tuple.
|
// 2. Per encryption domain, the cipher keys are index using "baseCipherKeyId".
|
||||||
//
|
//
|
||||||
// The design supports NIST recommendation of limiting lifetime of an encryption
|
// The design supports NIST recommendation of limiting lifetime of an encryption
|
||||||
// key. For details refer to:
|
// key. For details refer to:
|
||||||
|
@ -221,10 +214,10 @@ private:
|
||||||
//
|
//
|
||||||
// Below gives a pictoral representation of in-memory datastructure implemented
|
// Below gives a pictoral representation of in-memory datastructure implemented
|
||||||
// to index encryption keys:
|
// to index encryption keys:
|
||||||
// { encryptionDomain -> { {baseCipherId, salt} -> cipherKey } }
|
// { encryptionDomain -> { baseCipherId -> cipherKey } }
|
||||||
//
|
//
|
||||||
// Supported cache lookups schemes:
|
// Supported cache lookups schemes:
|
||||||
// 1. Lookup cipher based on { encryptionDomainId, baseCipherKeyId, salt } triplet.
|
// 1. Lookup cipher based on { encryptionDomainId, baseCipherKeyId } tuple.
|
||||||
// 2. Lookup latest cipher key for a given encryptionDomainId.
|
// 2. Lookup latest cipher key for a given encryptionDomainId.
|
||||||
//
|
//
|
||||||
// Client is responsible to handle cache-miss usecase, the corrective operation
|
// Client is responsible to handle cache-miss usecase, the corrective operation
|
||||||
|
@ -233,29 +226,15 @@ private:
|
||||||
// required encryption key, however, CPs/SSs cache-miss would result in RPC to
|
// required encryption key, however, CPs/SSs cache-miss would result in RPC to
|
||||||
// EncryptKeyServer to refresh the desired encryption key.
|
// EncryptKeyServer to refresh the desired encryption key.
|
||||||
|
|
||||||
struct pair_hash {
|
using BlobCipherKeyIdCacheMap = std::unordered_map<EncryptCipherBaseKeyId, Reference<BlobCipherKey>>;
|
||||||
template <class T1, class T2>
|
|
||||||
std::size_t operator()(const std::pair<T1, T2>& pair) const {
|
|
||||||
auto hash1 = std::hash<T1>{}(pair.first);
|
|
||||||
auto hash2 = std::hash<T2>{}(pair.second);
|
|
||||||
|
|
||||||
// Equal hashes XOR would be ZERO.
|
|
||||||
return hash1 == hash2 ? hash1 : hash1 ^ hash2;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
using BlobCipherKeyIdCacheKey = std::pair<EncryptCipherBaseKeyId, EncryptCipherRandomSalt>;
|
|
||||||
using BlobCipherKeyIdCacheMap = std::unordered_map<BlobCipherKeyIdCacheKey, Reference<BlobCipherKey>, pair_hash>;
|
|
||||||
using BlobCipherKeyIdCacheMapCItr =
|
using BlobCipherKeyIdCacheMapCItr =
|
||||||
std::unordered_map<BlobCipherKeyIdCacheKey, Reference<BlobCipherKey>, pair_hash>::const_iterator;
|
std::unordered_map<EncryptCipherBaseKeyId, Reference<BlobCipherKey>>::const_iterator;
|
||||||
|
|
||||||
struct BlobCipherKeyIdCache : ReferenceCounted<BlobCipherKeyIdCache> {
|
struct BlobCipherKeyIdCache : ReferenceCounted<BlobCipherKeyIdCache> {
|
||||||
public:
|
public:
|
||||||
BlobCipherKeyIdCache();
|
BlobCipherKeyIdCache();
|
||||||
explicit BlobCipherKeyIdCache(EncryptCipherDomainId dId);
|
explicit BlobCipherKeyIdCache(EncryptCipherDomainId dId);
|
||||||
|
|
||||||
BlobCipherKeyIdCacheKey getCacheKey(const EncryptCipherBaseKeyId& baseCipherId,
|
|
||||||
const EncryptCipherRandomSalt& salt);
|
|
||||||
|
|
||||||
// API returns the last inserted cipherKey.
|
// API returns the last inserted cipherKey.
|
||||||
// If none exists, 'encrypt_key_not_found' is thrown.
|
// If none exists, 'encrypt_key_not_found' is thrown.
|
||||||
|
|
||||||
|
@ -264,33 +243,14 @@ public:
|
||||||
// API returns cipherKey corresponding to input 'baseCipherKeyId'.
|
// API returns cipherKey corresponding to input 'baseCipherKeyId'.
|
||||||
// If none exists, 'encrypt_key_not_found' is thrown.
|
// If none exists, 'encrypt_key_not_found' is thrown.
|
||||||
|
|
||||||
Reference<BlobCipherKey> getCipherByBaseCipherId(const EncryptCipherBaseKeyId& baseCipherKeyId,
|
Reference<BlobCipherKey> getCipherByBaseCipherId(EncryptCipherBaseKeyId baseCipherKeyId);
|
||||||
const EncryptCipherRandomSalt& salt);
|
|
||||||
|
|
||||||
// API enables inserting base encryption cipher details to the BlobCipherKeyIdCache.
|
// API enables inserting base encryption cipher details to the BlobCipherKeyIdCache.
|
||||||
// Given cipherKeys are immutable, attempting to re-insert same 'identical' cipherKey
|
// Given cipherKeys are immutable, attempting to re-insert same 'identical' cipherKey
|
||||||
// is treated as a NOP (success), however, an attempt to update cipherKey would throw
|
// is treated as a NOP (success), however, an attempt to update cipherKey would throw
|
||||||
// 'encrypt_update_cipher' exception.
|
// 'encrypt_update_cipher' exception.
|
||||||
//
|
|
||||||
// API NOTE: Recommended usecase is to update encryption cipher-key is updated the external
|
|
||||||
// keyManagementSolution to limit an encryption key lifetime
|
|
||||||
|
|
||||||
void insertBaseCipherKey(const EncryptCipherBaseKeyId& baseCipherId, const uint8_t* baseCipher, int baseCipherLen);
|
void insertBaseCipherKey(EncryptCipherBaseKeyId baseCipherId, const uint8_t* baseCipher, int baseCipherLen);
|
||||||
|
|
||||||
// API enables inserting base encryption cipher details to the BlobCipherKeyIdCache
|
|
||||||
// Given cipherKeys are immutable, attempting to re-insert same 'identical' cipherKey
|
|
||||||
// is treated as a NOP (success), however, an attempt to update cipherKey would throw
|
|
||||||
// 'encrypt_update_cipher' exception.
|
|
||||||
//
|
|
||||||
// API NOTE: Recommended usecase is to update encryption cipher-key regeneration while performing
|
|
||||||
// decryption. The encryptionheader would contain relevant details including: 'encryptDomainId',
|
|
||||||
// 'baseCipherId' & 'salt'. The caller needs to fetch 'baseCipherKey' detail and re-populate KeyCache.
|
|
||||||
// Also, the invocation will NOT update the latest cipher-key details.
|
|
||||||
|
|
||||||
void insertBaseCipherKey(const EncryptCipherBaseKeyId& baseCipherId,
|
|
||||||
const uint8_t* baseCipher,
|
|
||||||
int baseCipherLen,
|
|
||||||
const EncryptCipherRandomSalt& salt);
|
|
||||||
|
|
||||||
// API cleanup the cache by dropping all cached cipherKeys
|
// API cleanup the cache by dropping all cached cipherKeys
|
||||||
void cleanup();
|
void cleanup();
|
||||||
|
@ -302,7 +262,6 @@ private:
|
||||||
EncryptCipherDomainId domainId;
|
EncryptCipherDomainId domainId;
|
||||||
BlobCipherKeyIdCacheMap keyIdCache;
|
BlobCipherKeyIdCacheMap keyIdCache;
|
||||||
EncryptCipherBaseKeyId latestBaseCipherKeyId;
|
EncryptCipherBaseKeyId latestBaseCipherKeyId;
|
||||||
EncryptCipherRandomSalt latestRandomSalt;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
using BlobCipherDomainCacheMap = std::unordered_map<EncryptCipherDomainId, Reference<BlobCipherKeyIdCache>>;
|
using BlobCipherDomainCacheMap = std::unordered_map<EncryptCipherDomainId, Reference<BlobCipherKeyIdCache>>;
|
||||||
|
@ -318,32 +277,12 @@ public:
|
||||||
// The cipherKeys are indexed using 'baseCipherId', given cipherKeys are immutable,
|
// The cipherKeys are indexed using 'baseCipherId', given cipherKeys are immutable,
|
||||||
// attempting to re-insert same 'identical' cipherKey is treated as a NOP (success),
|
// attempting to re-insert same 'identical' cipherKey is treated as a NOP (success),
|
||||||
// however, an attempt to update cipherKey would throw 'encrypt_update_cipher' exception.
|
// however, an attempt to update cipherKey would throw 'encrypt_update_cipher' exception.
|
||||||
//
|
|
||||||
// API NOTE: Recommended usecase is to update encryption cipher-key is updated the external
|
|
||||||
// keyManagementSolution to limit an encryption key lifetime
|
|
||||||
|
|
||||||
void insertCipherKey(const EncryptCipherDomainId& domainId,
|
void insertCipherKey(const EncryptCipherDomainId& domainId,
|
||||||
const EncryptCipherBaseKeyId& baseCipherId,
|
const EncryptCipherBaseKeyId& baseCipherId,
|
||||||
const uint8_t* baseCipher,
|
const uint8_t* baseCipher,
|
||||||
int baseCipherLen);
|
int baseCipherLen);
|
||||||
|
// API returns the last insert cipherKey for a given encyryption domain Id.
|
||||||
// Enable clients to insert base encryption cipher details to the BlobCipherKeyCache.
|
|
||||||
// The cipherKeys are indexed using 'baseCipherId', given cipherKeys are immutable,
|
|
||||||
// attempting to re-insert same 'identical' cipherKey is treated as a NOP (success),
|
|
||||||
// however, an attempt to update cipherKey would throw 'encrypt_update_cipher' exception.
|
|
||||||
//
|
|
||||||
// API NOTE: Recommended usecase is to update encryption cipher-key regeneration while performing
|
|
||||||
// decryption. The encryptionheader would contain relevant details including: 'encryptDomainId',
|
|
||||||
// 'baseCipherId' & 'salt'. The caller needs to fetch 'baseCipherKey' detail and re-populate KeyCache.
|
|
||||||
// Also, the invocation will NOT update the latest cipher-key details.
|
|
||||||
|
|
||||||
void insertCipherKey(const EncryptCipherDomainId& domainId,
|
|
||||||
const EncryptCipherBaseKeyId& baseCipherId,
|
|
||||||
const uint8_t* baseCipher,
|
|
||||||
int baseCipherLen,
|
|
||||||
const EncryptCipherRandomSalt& salt);
|
|
||||||
|
|
||||||
// API returns the last insert cipherKey for a given encryption domain Id.
|
|
||||||
// If none exists, it would throw 'encrypt_key_not_found' exception.
|
// If none exists, it would throw 'encrypt_key_not_found' exception.
|
||||||
|
|
||||||
Reference<BlobCipherKey> getLatestCipherKey(const EncryptCipherDomainId& domainId);
|
Reference<BlobCipherKey> getLatestCipherKey(const EncryptCipherDomainId& domainId);
|
||||||
|
@ -352,16 +291,14 @@ public:
|
||||||
// If none exists, it would throw 'encrypt_key_not_found' exception.
|
// If none exists, it would throw 'encrypt_key_not_found' exception.
|
||||||
|
|
||||||
Reference<BlobCipherKey> getCipherKey(const EncryptCipherDomainId& domainId,
|
Reference<BlobCipherKey> getCipherKey(const EncryptCipherDomainId& domainId,
|
||||||
const EncryptCipherBaseKeyId& baseCipherId,
|
const EncryptCipherBaseKeyId& baseCipherId);
|
||||||
const EncryptCipherRandomSalt& salt);
|
|
||||||
|
|
||||||
// API returns point in time list of all 'cached' cipherKeys for a given encryption domainId.
|
// API returns point in time list of all 'cached' cipherKeys for a given encryption domainId.
|
||||||
std::vector<Reference<BlobCipherKey>> getAllCiphers(const EncryptCipherDomainId& domainId);
|
std::vector<Reference<BlobCipherKey>> getAllCiphers(const EncryptCipherDomainId& domainId);
|
||||||
|
|
||||||
// API enables dropping all 'cached' cipherKeys for a given encryption domain Id.
|
// API enables dropping all 'cached' cipherKeys for a given encryption domain Id.
|
||||||
// Useful to cleanup cache if an encryption domain gets removed/destroyed etc.
|
// Useful to cleanup cache if an encryption domain gets removed/destroyed etc.
|
||||||
|
|
||||||
void resetEncryptDomainId(const EncryptCipherDomainId domainId);
|
void resetEncyrptDomainId(const EncryptCipherDomainId domainId);
|
||||||
|
|
||||||
static Reference<BlobCipherKeyCache> getInstance() {
|
static Reference<BlobCipherKeyCache> getInstance() {
|
||||||
if (g_network->isSimulated()) {
|
if (g_network->isSimulated()) {
|
||||||
|
@ -427,7 +364,7 @@ public:
|
||||||
const BlobCipherEncryptHeader& header,
|
const BlobCipherEncryptHeader& header,
|
||||||
Arena&);
|
Arena&);
|
||||||
|
|
||||||
// Enable caller to validate encryption header auth-token (if available) without needing to read the full encrypted
|
// Enable caller to validate encryption header auth-token (if available) without needing to read the full encyrpted
|
||||||
// payload. The call is NOP unless header.flags.authTokenMode == ENCRYPT_HEADER_AUTH_TOKEN_MODE_MULTI.
|
// payload. The call is NOP unless header.flags.authTokenMode == ENCRYPT_HEADER_AUTH_TOKEN_MODE_MULTI.
|
||||||
|
|
||||||
void verifyHeaderAuthToken(const BlobCipherEncryptHeader& header, Arena& arena);
|
void verifyHeaderAuthToken(const BlobCipherEncryptHeader& header, Arena& arena);
|
||||||
|
|
Loading…
Reference in New Issue