COM-49: When system.db is missing, adapter keeps restaring in a loop with no error message.
- Code Reformat (whitespace only changes)
3 #include "GateKeeper.h"
4 #include "pEpCOMServerAdapter.h"
5 #include "utf8_helper.h"
9 // from https://msdn.microsoft.com/en-us/library/windows/desktop/dd388945(v=vs.85).aspx
11 struct PUBLIC_KEY_VALUES {
12 BLOBHEADER blobheader;
17 static void ReverseMemCopy(
19 _In_ BYTE const *pbSource,
23 for (DWORD i = 0; i < cb; i++) {
24 pbDest[cb - 1 - i] = pbSource[i];
28 static NTSTATUS ImportRsaPublicKey(
29 _In_ BCRYPT_ALG_HANDLE hAlg, // CNG provider
30 _In_ PUBLIC_KEY_VALUES *pKey, // Pointer to the RSAPUBKEY blob.
31 _In_ BCRYPT_KEY_HANDLE *phKey // Receives a handle the imported public key.
36 BYTE *pbPublicKey = NULL;
39 // Layout of the RSA public key blob:
41 // +----------------------------------------------------------------+
42 // | BCRYPT_RSAKEY_BLOB | BE( dwExp ) | BE( Modulus ) |
43 // +----------------------------------------------------------------+
45 // sizeof(BCRYPT_RSAKEY_BLOB) cbExp cbModulus
46 // <--------------------------><------------><---------------------->
48 // BE = Big Endian Format
50 DWORD cbModulus = (pKey->rsapubkey.bitlen + 7) / 8;
51 DWORD dwExp = pKey->rsapubkey.pubexp;
52 DWORD cbExp = (dwExp & 0xFF000000) ? 4 :
53 (dwExp & 0x00FF0000) ? 3 :
54 (dwExp & 0x0000FF00) ? 2 : 1;
56 BCRYPT_RSAKEY_BLOB *pRsaBlob;
59 if (!SUCCEEDED(hr = DWordAdd(cbModulus, sizeof(BCRYPT_RSAKEY_BLOB), &cbKey))) {
65 pbPublicKey = (PBYTE)CoTaskMemAlloc(cbKey);
66 if (pbPublicKey == NULL) {
71 ZeroMemory(pbPublicKey, cbKey);
72 pRsaBlob = (BCRYPT_RSAKEY_BLOB *)(pbPublicKey);
75 // Make the Public Key Blob Header
78 pRsaBlob->Magic = BCRYPT_RSAPUBLIC_MAGIC;
79 pRsaBlob->BitLength = pKey->rsapubkey.bitlen;
80 pRsaBlob->cbPublicExp = cbExp;
81 pRsaBlob->cbModulus = cbModulus;
82 pRsaBlob->cbPrime1 = 0;
83 pRsaBlob->cbPrime2 = 0;
85 pbCurrent = (PBYTE)(pRsaBlob + 1);
88 // Copy pubExp Big Endian
91 ReverseMemCopy(pbCurrent, (PBYTE)&dwExp, cbExp);
95 // Copy Modulus Big Endian
98 ReverseMemCopy(pbCurrent, pKey->modulus, cbModulus);
101 // Import the public key
104 hr = BCryptImportKeyPair(hAlg, NULL, BCRYPT_RSAPUBLIC_BLOB, phKey, (PUCHAR)pbPublicKey, cbKey, 0);
107 CoTaskMemFree(pbPublicKey);
113 const LPCTSTR GateKeeper::plugin_reg_path = _T("Software\\Microsoft\\Office\\Outlook\\Addins\\pEp");
114 const LPCTSTR GateKeeper::plugin_reg_value_name = _T("LoadBehavior");
115 const LPCTSTR GateKeeper::updater_reg_path = _T("Software\\pEp\\Updater");
117 const time_t GateKeeper::cycle = 7200; // 7200 sec is 2 h
118 const time_t GateKeeper::fraction = 10; // first update is at 10% of cycle
119 const DWORD GateKeeper::waiting = 10000; // 10000 ms is 10 sec
121 GateKeeper::GateKeeper(CpEpCOMServerAdapterModule * self)
122 : _self(self), now(time(NULL)), next(now /*+ time_diff()*/), hkUpdater(NULL),
123 internet(NULL), hAES(NULL), hRSA(NULL)
125 DeleteFile(get_lockFile().c_str());
127 LONG lResult = RegOpenCurrentUser(KEY_READ, &cu);
128 assert(lResult == ERROR_SUCCESS);
129 if (lResult == ERROR_SUCCESS)
135 LONG lResult = RegOpenKeyEx(cu, updater_reg_path, 0, KEY_READ, &hkUpdater);
136 if (lResult != ERROR_SUCCESS)
137 RegCreateKeyEx(cu, updater_reg_path, 0, NULL, REG_OPTION_NON_VOLATILE, KEY_READ, NULL, &hkUpdater, NULL);
141 GateKeeper::~GateKeeper()
145 RegCloseKey(hkUpdater);
150 time_t GateKeeper::time_diff()
153 static random_device rd;
154 static mt19937 gen(rd());
156 uniform_int_distribution<time_t> dist(0, cycle / fraction);
166 void GateKeeper::keep()
178 next = now + GateKeeper::cycle;
186 void GateKeeper::keep_plugin()
188 HKEY hkPluginStart = NULL;
190 LONG lResult = RegOpenKeyEx(cu, plugin_reg_path, 0, KEY_WRITE, &hkPluginStart);
191 if (lResult != ERROR_SUCCESS)
195 lResult = RegSetValueEx(hkPluginStart, plugin_reg_value_name, 0, REG_DWORD, (const BYTE *)&v, sizeof(DWORD));
196 assert(lResult == ERROR_SUCCESS);
198 RegCloseKey(hkPluginStart);
201 string GateKeeper::update_key()
205 if (key.length() == 0) {
206 HRSRC res = FindResource(_self->hModule(), MAKEINTRESOURCE(IRD_UPDATEKEY), RT_RCDATA);
209 throw runtime_error("FindResource: IRD_UPDATEKEY");
211 HGLOBAL hRes = LoadResource(_self->hModule(), res);
214 throw runtime_error("LoadResource: IRD_UPDATEKEY");
216 key = string((char *)LockResource(hRes), SizeofResource(_self->hModule(), res));
217 UnlockResource(hRes);
223 BCRYPT_KEY_HANDLE GateKeeper::delivery_key()
227 static random_device rd;
228 static mt19937 gen(rd());
230 uniform_int_distribution<int64_t> dist(0, UINT32_MAX);
232 for (int i = 0; i < 8; i++)
233 key.dw_key[i] = (uint32_t)dist(gen);
235 BCRYPT_KEY_HANDLE hKey;
237 NTSTATUS status = BCryptGenerateSymmetricKey(hAES, &hKey, NULL, 0, (PUCHAR)&key, (ULONG) sizeof(aeskey_t), 0);
240 throw runtime_error("BCryptGenerateSymmetricKey");
245 status = BCryptGetProperty(hKey, BCRYPT_KEY_LENGTH, (PUCHAR)&keylength, sizeof(DWORD), &copied, 0);
246 assert(keylength == 256);
252 string GateKeeper::wrapped_delivery_key(BCRYPT_KEY_HANDLE hDeliveryKey)
256 BCRYPT_KEY_HANDLE hUpdateKey;
257 string _update_key = update_key();
259 PCERT_PUBLIC_KEY_INFO uk;
262 BOOL bResult = CryptDecodeObjectEx(X509_ASN_ENCODING, X509_PUBLIC_KEY_INFO,
263 (const BYTE *)_update_key.data(), _update_key.size(), CRYPT_DECODE_ALLOC_FLAG, NULL, &uk, &uk_size);
265 throw runtime_error("CryptDecodeObjectEx: X509_PUBLIC_KEY_INFO");
267 PUBLIC_KEY_VALUES *_uk;
270 bResult = CryptDecodeObjectEx(X509_ASN_ENCODING, RSA_CSP_PUBLICKEYBLOB,
271 uk->PublicKey.pbData, uk->PublicKey.cbData, CRYPT_DECODE_ALLOC_FLAG, NULL, &_uk, &_uk_size);
274 throw runtime_error("CryptDecodeObjectEx: X509_PUBLIC_KEY_INFO");
276 HRESULT hResult = ImportRsaPublicKey(hRSA, _uk, &hUpdateKey);
279 throw runtime_error("ImportRsaPublicKey");
282 NTSTATUS status = BCryptGetProperty(hUpdateKey, BCRYPT_ALGORITHM_NAME, NULL, 0, &psize, 0);
283 char *prop = new char[psize];
284 TCHAR *_prop = (TCHAR *)prop;
285 BCryptGetProperty(hUpdateKey, BCRYPT_ALGORITHM_NAME, (PUCHAR)prop, psize, &psize, 0);
288 status = BCryptExportKey(hDeliveryKey, NULL, BCRYPT_KEY_DATA_BLOB, NULL, NULL,
291 throw runtime_error("BCryptExportKey: measuring export size");
293 PUCHAR _delivery_key = new UCHAR[export_size];
295 status = BCryptExportKey(hDeliveryKey, NULL, BCRYPT_KEY_DATA_BLOB, _delivery_key, export_size,
298 delete[] _delivery_key;
299 throw runtime_error("BCryptExportKey: delivery_key");
302 BCRYPT_OAEP_PADDING_INFO pi;
303 memset(&pi, 0, sizeof(BCRYPT_OAEP_PADDING_INFO));
304 pi.pszAlgId = BCRYPT_SHA256_ALGORITHM;
307 PUCHAR _result = NULL;
308 ULONG blob_size = export_size - sizeof(BCRYPT_KEY_DATA_BLOB_HEADER);
309 PUCHAR blob = _delivery_key + sizeof(BCRYPT_KEY_DATA_BLOB_HEADER);
310 status = BCryptEncrypt(hUpdateKey, blob, blob_size, &pi, NULL, 0, NULL, 0, &result_size, BCRYPT_PAD_OAEP);
312 delete[] _delivery_key;
313 BCryptDestroyKey(hUpdateKey);
314 throw runtime_error("BCryptEncrypt: calculating result size");
317 _result = new UCHAR[result_size];
318 status = BCryptEncrypt(hUpdateKey, blob, blob_size, &pi, NULL, 0, _result, result_size, &copied, BCRYPT_PAD_OAEP);
319 delete[] _delivery_key;
321 BCryptDestroyKey(hUpdateKey);
323 throw runtime_error("BCryptEncrypt: encrypting using update_key");
326 BCryptDestroyKey(hUpdateKey);
329 for (ULONG i = 0; i < copied; i++) {
330 s << hex << setw(2) << setfill('0');
331 s << (int)_result[i];
339 GateKeeper::product_list GateKeeper::registered_products()
341 product_list products;
343 // https://msdn.microsoft.com/en-us/library/windows/desktop/ms724872(v=vs.85).aspx
344 TCHAR value_name[16384];
345 DWORD value_name_size;
346 TCHAR value[L_MAX_URL_LENGTH + 1];
349 LONG lResult = ERROR_SUCCESS;
350 for (DWORD i = 0; lResult == ERROR_SUCCESS; i++) {
351 value_name_size = 16383;
352 value_size = L_MAX_URL_LENGTH + 1;
353 lResult = RegEnumValue(hkUpdater, i, value_name, &value_name_size, NULL, NULL, (LPBYTE)value, &value_size);
354 if (lResult == ERROR_SUCCESS) {
355 products.push_back({ value_name, value });
362 void GateKeeper::install_msi(tstring filename)
364 HANDLE hMutex = CreateMutex(NULL, TRUE, _T("PEPINSTALLERMUTEX"));
367 ShellExecute(NULL, _T("open"), filename.c_str(), NULL, NULL, SW_SHOW);
371 tstring GateKeeper::get_lockFile()
373 static const tstring _fileName = _T("\\pEpSetup.lck");
374 static tstring fileName;
376 if (fileName.length() == 0) {
377 unique_ptr < TCHAR[] > _pathName(new TCHAR[MAX_PATH + 1]);
378 DWORD size = GetTempPath(MAX_PATH, _pathName.get());
379 if (size > MAX_PATH - _fileName.size())
380 throw runtime_error("TEMP path too long");
382 fileName = _pathName.get();
383 fileName += _fileName;
389 void GateKeeper::update_product(product p, DWORD context)
392 HANDLE file = CreateFile(get_lockFile().c_str(), GENERIC_READ | GENERIC_WRITE, 0, NULL, CREATE_NEW, FILE_ATTRIBUTE_NORMAL, NULL);
393 if (file == INVALID_HANDLE_VALUE) {
398 DeleteFile(get_lockFile().c_str());
402 BCRYPT_KEY_HANDLE dk = delivery_key();
404 tstring delivery = utility::utf16_string(wrapped_delivery_key(dk));
406 tstring delivery = wrapped_delivery_key(delivery_key());
408 tstring url = p.second;
409 url += _T("&challenge=");
412 HINTERNET hUrl = InternetOpenUrl(internet, url.c_str(), headers.c_str(), headers.length(),
413 INTERNET_FLAG_EXISTING_CONNECT | INTERNET_FLAG_NO_UI | INTERNET_FLAG_SECURE, context);
420 UCHAR nonce[sizeof(iv)];
424 char *unencrypted_buffer = NULL;
428 InternetReadFile(hUrl, iv, sizeof(iv), &reading);
431 static char buffer[1024 * 1024];
432 BOOL bResult = InternetReadFile(hUrl, buffer, 1024 * 1024, &reading);
433 if (!bResult || !reading)
435 crypted += string(buffer, reading);
442 InternetCloseHandle(hUrl);
445 memcpy(nonce, iv, sizeof(iv));
447 BCRYPT_AUTHENTICATED_CIPHER_MODE_INFO authInfo;
448 BCRYPT_INIT_AUTH_MODE_INFO(authInfo);
449 authInfo.pbNonce = nonce;
450 authInfo.cbNonce = sizeof(nonce);
451 authInfo.pbTag = tag;
452 authInfo.cbTag = sizeof(tag);
454 ULONG unencrypted_size;
455 NTSTATUS status = BCryptDecrypt(dk, (PUCHAR)crypted.data(), crypted.size(),
456 &authInfo, iv, sizeof(iv), NULL, 0, &unencrypted_size, 0);
460 unencrypted_buffer = new char[unencrypted_size];
461 PUCHAR crypted_data = (PUCHAR)crypted.data();
462 ULONG crypted_size = (ULONG)crypted.size() - sizeof(tag);
463 memcpy(tag, crypted_data + crypted_size, sizeof(tag));
465 status = BCryptDecrypt(dk, crypted_data, crypted_size,
466 &authInfo, iv, sizeof(iv), (PUCHAR)unencrypted_buffer, unencrypted_size, &unencrypted_size, 0);
470 BCryptDestroyKey(dk);
472 TCHAR temp_path[MAX_PATH + 1];
473 GetTempPath(MAX_PATH, temp_path);
474 filename = temp_path;
475 filename += _T("\\pEp_");
476 filename += delivery.substr(0, 32);
477 filename += _T(".msi");
479 hFile = CreateFile(filename.c_str(), GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
483 WriteFile(hFile, unencrypted_buffer, unencrypted_size, &writing, NULL);
486 install_msi(filename);
491 if (unencrypted_buffer)
492 delete[] unencrypted_buffer;
496 InternetCloseHandle(hUrl);
497 BCryptDestroyKey(dk);
500 void GateKeeper::keep_updated()
502 NTSTATUS status = BCryptOpenAlgorithmProvider(&hAES, BCRYPT_AES_ALGORITHM, MS_PRIMITIVE_PROVIDER, 0);
506 status = BCryptSetProperty(hAES, BCRYPT_CHAINING_MODE, (PUCHAR)BCRYPT_CHAIN_MODE_GCM, sizeof(BCRYPT_CHAIN_MODE_GCM), 0);
510 status = BCryptOpenAlgorithmProvider(&hRSA, BCRYPT_RSA_ALGORITHM, MS_PRIMITIVE_PROVIDER, 0);
515 internet = InternetOpen(_T("pEp"), INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
520 product_list products = registered_products();
523 for (auto i = products.begin(); i != products.end(); i++) {
525 update_product(*i, context++);
535 InternetCloseHandle(internet);
537 BCryptCloseAlgorithmProvider(hAES, 0);
539 BCryptCloseAlgorithmProvider(hRSA, 0);