Files
lib3mf/Source/API/lib3mf_keystore.cpp
SaraP f8c998f6ff lib3mf :
- primo commit.
2021-09-07 16:50:23 +02:00

162 lines
6.4 KiB
C++

#include "lib3mf_types.hpp"
#include "lib3mf_keystore.hpp"
#include "lib3mf_interfaceexception.hpp"
#include "lib3mf_consumer.hpp"
#include "lib3mf_resourcedatagroup.hpp"
#include "lib3mf_resourcedata.hpp"
#include "lib3mf_packagepart.hpp"
#include "lib3mf_utils.hpp"
#include "Model/Classes/NMR_KeyStoreFactory.h"
#include "Model/Classes/NMR_PackageResourceID.h"
#include "Model/Classes/NMR_Model.h"
#include "Common/NMR_SecureContentTypes.h"
#include "Common/NMR_Types.h"
#include <vector>
using namespace Lib3MF::Impl;
Lib3MF::Impl::CKeyStore::CKeyStore(NMR::PModel const & pModel)
:m_pModel(pModel)
{
if (nullptr == pModel)
throw ELib3MFInterfaceException(LIB3MF_ERROR_INVALIDKEYSTORE);
m_pKeyStore = pModel->getKeyStore();
}
IConsumer * Lib3MF::Impl::CKeyStore::AddConsumer(const std::string & sConsumerID, const std::string & sKeyID, const std::string & sKeyValue)
{
NMR::PKeyStoreConsumer consumer = NMR::CKeyStoreFactory::makeConsumer(sConsumerID);
consumer->setKeyID(sKeyID);
consumer->setKeyValue(sKeyValue);
m_pKeyStore->addConsumer(consumer);
return new CConsumer(consumer);
}
Lib3MF_uint64 Lib3MF::Impl::CKeyStore::GetConsumerCount()
{
return m_pKeyStore->getConsumerCount();
}
IConsumer * Lib3MF::Impl::CKeyStore::GetConsumer(const Lib3MF_uint64 nConsumerIndex)
{
NMR::PKeyStoreConsumer consumer = m_pKeyStore->getConsumer(nConsumerIndex);
return new CConsumer(consumer);
}
IConsumer * Lib3MF::Impl::CKeyStore::FindConsumer(const std::string & sConsumerID)
{
NMR::PKeyStoreConsumer consumer = m_pKeyStore->findConsumerById(sConsumerID);
if (!consumer)
return nullptr;
return new CConsumer(consumer);
}
void Lib3MF::Impl::CKeyStore::RemoveConsumer(IConsumer * pConsumerInstance)
{
CConsumer * pConsumer = dynamic_cast<CConsumer *>(pConsumerInstance);
if (!pConsumer) {
throw ELib3MFInterfaceException(LIB3MF_ERROR_INVALIDKEYSTORECONSUMER);
}
m_pKeyStore->removeConsumer(pConsumer->consumer());
}
std::string Lib3MF::Impl::CKeyStore::GetUUID(bool & bHasUUID) {
bHasUUID = m_pKeyStore->getUUID() != nullptr;
if (bHasUUID)
return m_pKeyStore->getUUID()->toString();
return "";
}
void Lib3MF::Impl::CKeyStore::SetUUID(const std::string & sUUID)
{
NMR::PUUID pUUID = std::make_shared<NMR::CUUID>(sUUID);
m_pKeyStore->setUUID(pUUID);
}
Lib3MF_uint64 Lib3MF::Impl::CKeyStore::GetResourceDataGroupCount()
{
return (Lib3MF_uint32)m_pKeyStore->getResourceDataGroupCount();
}
IResourceDataGroup * Lib3MF::Impl::CKeyStore::GetResourceDataGroup(const Lib3MF_uint64 nResourceDataIndex)
{
NMR::PKeyStoreResourceDataGroup dg = m_pKeyStore->getResourceDataGroup(nResourceDataIndex);
return new CResourceDataGroup(dg);
}
IResourceDataGroup * Lib3MF::Impl::CKeyStore::AddResourceDataGroup() {
//this is not ideal, as key size is determined by the encryptionalgorithm inside resourcedata.
//in any case, the spec does not state what happens if different resource datas have different algorithms,
//but resourcedatagroups are supposed to group the same key for a group of resources...
//so far, this should work as aes256 is the only thing we support.
std::vector<NMR::nfByte> key(NMR::fnGetAlgorithmKeySize(NMR::eKeyStoreEncryptAlgorithm::AES256_GCM), 0);
m_pModel->generateRandomBytes(key.data(), key.size());
NMR::PKeyStoreResourceDataGroup dg = NMR::CKeyStoreFactory::makeResourceDataGroup(std::make_shared<NMR::CUUID>(), key);
m_pKeyStore->addResourceDataGroup(dg);
return new CResourceDataGroup(dg);
}
void Lib3MF::Impl::CKeyStore::RemoveResourceDataGroup(IResourceDataGroup * pTheResourceDataGroup) {
CResourceDataGroup * dg = dynamic_cast<CResourceDataGroup *>(pTheResourceDataGroup);
if (!dg)
throw ELib3MFInterfaceException(LIB3MF_ERROR_INVALIDPARAM);
m_pKeyStore->removeResourceDataGroup(dg->resourceDataGroup());
}
Lib3MF::Impl::IResourceDataGroup * Lib3MF::Impl::CKeyStore::FindResourceDataGroup(Lib3MF::Impl::IPackagePart *pPartPath) {
NMR::PPackageModelPath pPath = m_pModel->findOrCreateModelPath(pPartPath->GetPath());
if (!pPath)
throw ELib3MFInterfaceException(LIB3MF_ERROR_INVALIDPARAM);
NMR::PKeyStoreResourceDataGroup dg = m_pKeyStore->findResourceDataGroupByResourceDataPath(pPath);
if (!dg)
return nullptr;
return new CResourceDataGroup(dg);
}
Lib3MF::Impl::IResourceData * Lib3MF::Impl::CKeyStore::AddResourceData(Lib3MF::Impl::IResourceDataGroup *pResourceDataGroup, Lib3MF::Impl::IPackagePart *pPartPath, Lib3MF::eEncryptionAlgorithm eAlgorithm, Lib3MF::eCompression eCompression, Lib3MF_uint64 nAdditionalAuthenticationDataBufferSize, const Lib3MF_uint8 *pAdditionalAuthenticationDataBuffer) {
bool compression = translateCompression(eCompression);
NMR::eKeyStoreEncryptAlgorithm algorithm = translateEncryptionAlgorithm(eAlgorithm);
CResourceDataGroup * dg = dynamic_cast<CResourceDataGroup *>(pResourceDataGroup);
if (!dg)
throw ELib3MFInterfaceException(LIB3MF_ERROR_INVALIDPARAM);
//pPartPath might have different implementations, so asking model get us right to what we need.
NMR::PPackageModelPath pPath = m_pModel->findOrCreateModelPath(pPartPath->GetPath());
if (!pPath)
throw ELib3MFInterfaceException(LIB3MF_ERROR_INVALIDPARAM);
std::vector<NMR::nfByte> aad(pAdditionalAuthenticationDataBuffer, pAdditionalAuthenticationDataBuffer + nAdditionalAuthenticationDataBufferSize);
NMR::PKeyStoreCEKParams params = NMR::CKeyStoreFactory::makeCEKParams(compression, algorithm, aad);
NMR::PKeyStoreResourceData rd = NMR::CKeyStoreFactory::makeResourceData(dg->resourceDataGroup(), pPath, params);
m_pKeyStore->addResourceData(rd);
return new CResourceData(rd);
}
void Lib3MF::Impl::CKeyStore::RemoveResourceData(Lib3MF::Impl::IResourceData *pResourceData) {
CResourceData * rd = dynamic_cast<CResourceData *>(pResourceData);
if (!rd)
throw ELib3MFInterfaceException(LIB3MF_ERROR_INVALIDPARAM);
m_pKeyStore->removeResourceData(rd->resourceData());
}
Lib3MF_uint64 Lib3MF::Impl::CKeyStore::GetResourceDataCount() {
return m_pKeyStore->getResourceDataCount();
}
Lib3MF::Impl::IResourceData * Lib3MF::Impl::CKeyStore::GetResourceData(Lib3MF_uint64 nResourceDataIndex) {
NMR::PKeyStoreResourceData rd = m_pKeyStore->getResourceData(nResourceDataIndex);
return new CResourceData(rd);
}
IResourceData * Lib3MF::Impl::CKeyStore::FindResourceData(IPackagePart * pResourcePath) {
NMR::PPackageModelPath pPath = m_pModel->findOrCreateModelPath(pResourcePath->GetPath());
if (!pPath)
throw ELib3MFInterfaceException(LIB3MF_ERROR_INVALIDPARAM);
NMR::PKeyStoreResourceData rd = m_pKeyStore->findResourceData(pPath);
if (!rd)
return nullptr;
return new CResourceData(rd);
}