1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
|
/* ****************************************************************************
* eID Middleware Project.
* Copyright (C) 2008-2009 FedICT.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License version
* 3.0 as published by the Free Software Foundation.
*
* This software 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, see
* http://www.gnu.org/licenses/.
**************************************************************************** */
#include "ProviderContext.h"
#include "csputil.h"
using namespace eIDMW;
CProviderContext::CProviderContext(HCRYPTPROV hProv, LPCSTR szContainer,
DWORD dwFlags, PVTableProvStruc pVTable)
{
m_hProv = hProv;
m_szContainer = szContainer == NULL ? "" : szContainer;
m_dwFlags = dwFlags;
m_csSerialNr = szContainer == NULL ? "" : ExtractSerialNr(szContainer);
m_HashCounter = 0;
m_poReader = NULL;
}
CProviderContext::~CProviderContext()
{
CAutoMutex oAutoMutex(&m_oHashMutex);
while (m_hashPool.size() > 0)
{
tHashPool::iterator it = m_hashPool.begin();
delete it->second;
m_hashPool.erase(it);
}
}
std::string CProviderContext::GetContainerName()
{
return m_szContainer;
}
std::string CProviderContext::GetSerialNr()
{
return m_csSerialNr;
}
HCRYPTHASH CProviderContext::AddHash(ALG_ID Algid)
{
tHashAlgo algo = GetHashAlgo(Algid);
CAutoMutex oAutoMutex(&m_oHashMutex);
HCRYPTHASH hHash = ++m_HashCounter;
CProviderHash *poProvHash = new CProviderHash(Algid, algo);
if (poProvHash == NULL)
throw CMWEXCEPTION(EIDMW_ERR_MEMORY);
m_hashPool[hHash] = poProvHash;
return hHash;
}
HCRYPTHASH CProviderContext::DuplicateHash(HCRYPTHASH hOldHash)
{
CProviderHash *poOldHash = GetHash(hOldHash);
CAutoMutex oAutoMutex(&m_oHashMutex);
HCRYPTHASH hNewHash = ++m_HashCounter;
CProviderHash * poNewHash = new CProviderHash(*poOldHash);
if (poNewHash == NULL)
throw CMWEXCEPTION(EIDMW_ERR_MEMORY);
m_hashPool[hNewHash] = poNewHash;
return hNewHash;
}
CProviderHash * CProviderContext::GetHash(HCRYPTHASH hHash, bool bThrowException)
{
CProviderHash *poProvHash = NULL;
CAutoMutex oAutoMutex(&m_oHashMutex);
tHashPool::iterator it = m_hashPool.begin();
for( ; it != m_hashPool.end(); it++)
{
if (it->first == hHash)
poProvHash = it->second;
}
if (poProvHash == NULL && bThrowException)
throw CMWEXCEPTION(EIDMW_ERR_PARAM_BAD);
return poProvHash;
}
BOOL CProviderContext::DeleteHash(HCRYPTHASH hHash)
{
bool bRet = FALSE;
CAutoMutex oAutoMutex(&m_oHashMutex);
tHashPool::iterator it = m_hashPool.begin();
for( ; it != m_hashPool.end(); it++)
{
if (it->first == hHash)
{
delete it->second;
m_hashPool.erase(it);
bRet = TRUE;
break;
}
}
return bRet;
}
/**
* Old container name format:
* Signature(534C494E336600296CFF2623660B0826)
* Authentication(534C494E336600296CFF2491AA090425)
* New container name format:
* 534C494E336600296CFF2623660B0826_2
* 534C494E336600296CFF2491AA090425_3
* => the number after the _ is the key/cert ID
*/
std::string CProviderContext::ExtractSerialNr(LPCSTR szContainer)
{
char csSerial[129];
csSerial[0] = '\0';
const char *csStart = strstr(szContainer, "(");
if (csStart != NULL)
{
csStart++;
const char *csEnd = strstr(csStart, ")");
if (csEnd != NULL)
{
size_t len = csEnd - csStart;
if (len < sizeof(csSerial) - 1)
{
memcpy(csSerial, csStart, len);
csSerial[len] = '\0';
}
}
}
else
{
csStart = szContainer;
while (*csStart != '\0' && (*csStart > '9' || *csStart < '0'))
csStart++;
const char *csEnd = strstr(csStart, "_");
if (csEnd != NULL)
{
size_t len = csEnd - csStart;
if (len < sizeof(csSerial) - 1)
{
memcpy(csSerial, csStart, len);
csSerial[len] = '\0';
}
}
}
return csSerial;
}
CBaseProvider & CProviderContext::GetBaseProvider()
{
return m_BaseProvider;
}
CReader *CProviderContext::GetReader()
{
return m_poReader;
}
void CProviderContext:: SetReader(CReader *poReader)
{
m_poReader = poReader;
}
|