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), internet(NULL), hAES(NULL), hRSA(NULL)
124 LONG lResult = RegOpenCurrentUser(KEY_READ, &cu);
125 assert(lResult == ERROR_SUCCESS);
126 if (lResult == ERROR_SUCCESS)
132 LONG lResult = RegOpenKeyEx(cu, updater_reg_path, 0, KEY_READ, &hkUpdater);
133 assert(lResult == ERROR_SUCCESS);
134 if (lResult != ERROR_SUCCESS)
139 GateKeeper::~GateKeeper()
143 RegCloseKey(hkUpdater);
148 time_t GateKeeper::time_diff()
151 static random_device rd;
152 static mt19937 gen(rd());
154 uniform_int_distribution<time_t> dist(0, cycle/fraction);
164 void GateKeeper::keep()
176 next = now + GateKeeper::cycle;
184 void GateKeeper::keep_plugin()
186 while (!_self->m_bComInitialized)
192 LONG lResult = RegGetValue(cu, plugin_reg_path, plugin_reg_value_name, RRF_RT_REG_DWORD, NULL, &value, &size);
193 if (lResult != ERROR_SUCCESS)
197 lResult = RegSetValue(cu, plugin_reg_path, RRF_RT_REG_DWORD, plugin_reg_value_name, 3);
198 assert(lResult == ERROR_SUCCESS);
202 string GateKeeper::update_key()
206 if (key.length() == 0) {
207 HRSRC res = FindResource(_self->hModule(), MAKEINTRESOURCE(IRD_UPDATEKEY), RT_RCDATA);
210 throw runtime_error("FindResource: IRD_UPDATEKEY");
212 HGLOBAL hRes = LoadResource(_self->hModule(), res);
215 throw runtime_error("LoadResource: IRD_UPDATEKEY");
217 key = string((char *)LockResource(hRes), SizeofResource(_self->hModule(), res));
218 UnlockResource(hRes);
224 BCRYPT_KEY_HANDLE GateKeeper::delivery_key()
228 static random_device rd;
229 static mt19937 gen(rd());
231 uniform_int_distribution<int64_t> dist(0, UINT32_MAX);
233 for (int i = 0; i < 8; i++)
234 key.dw_key[i] = (uint32_t) dist(gen);
236 BCRYPT_KEY_HANDLE hKey;
237 NTSTATUS status = BCryptGenerateSymmetricKey(hAES, &hKey, NULL, 0, (PUCHAR) &key, (ULONG) sizeof(aeskey_t), 0);
240 throw runtime_error("BCryptGenerateSymmetricKey");
244 status = BCryptGetProperty(hKey, BCRYPT_KEY_LENGTH, (PUCHAR) &keylength, sizeof(DWORD), &copied, 0);
245 assert(keylength == 256);
250 string GateKeeper::wrapped_delivery_key(BCRYPT_KEY_HANDLE hDeliveryKey)
254 BCRYPT_KEY_HANDLE hUpdateKey;
255 string _update_key = update_key();
257 PCERT_PUBLIC_KEY_INFO uk;
259 BOOL bResult = CryptDecodeObjectEx(X509_ASN_ENCODING, X509_PUBLIC_KEY_INFO,
260 (const BYTE *) _update_key.data(), _update_key.size(), CRYPT_DECODE_ALLOC_FLAG, NULL, &uk, &uk_size);
262 throw runtime_error("CryptDecodeObjectEx: X509_PUBLIC_KEY_INFO");
264 PUBLIC_KEY_VALUES *_uk;
266 bResult = CryptDecodeObjectEx(X509_ASN_ENCODING, RSA_CSP_PUBLICKEYBLOB,
267 uk->PublicKey.pbData, uk->PublicKey.cbData, CRYPT_DECODE_ALLOC_FLAG, NULL, &_uk, &_uk_size);
270 throw runtime_error("CryptDecodeObjectEx: X509_PUBLIC_KEY_INFO");
272 HRESULT hResult = ImportRsaPublicKey(hRSA, _uk, &hUpdateKey);
275 throw runtime_error("ImportRsaPublicKey");
278 NTSTATUS status = BCryptGetProperty(hUpdateKey, BCRYPT_ALGORITHM_NAME, NULL, 0, &psize, 0);
279 char *prop = new char[psize];
280 TCHAR *_prop = (TCHAR *) prop;
281 BCryptGetProperty(hUpdateKey, BCRYPT_ALGORITHM_NAME, (PUCHAR) prop, psize, &psize, 0);
284 status = BCryptExportKey(hDeliveryKey, NULL, BCRYPT_KEY_DATA_BLOB, NULL, NULL,
287 throw runtime_error("BCryptExportKey: measuring export size");
289 PUCHAR _delivery_key = new UCHAR[export_size];
291 status = BCryptExportKey(hDeliveryKey, NULL, BCRYPT_KEY_DATA_BLOB, _delivery_key, export_size,
294 delete[] _delivery_key;
295 throw runtime_error("BCryptExportKey: delivery_key");
298 BCRYPT_OAEP_PADDING_INFO pi;
299 memset(&pi, 0, sizeof(BCRYPT_OAEP_PADDING_INFO));
300 pi.pszAlgId = BCRYPT_SHA256_ALGORITHM;
303 PUCHAR _result = NULL;
304 ULONG blob_size = export_size - sizeof(BCRYPT_KEY_DATA_BLOB_HEADER);
305 PUCHAR blob = _delivery_key + sizeof(BCRYPT_KEY_DATA_BLOB_HEADER);
306 status = BCryptEncrypt(hUpdateKey, blob, blob_size, &pi, NULL, 0, NULL, 0, &result_size, BCRYPT_PAD_OAEP);
308 delete[] _delivery_key;
309 BCryptDestroyKey(hUpdateKey);
310 throw runtime_error("BCryptEncrypt: calculating result size");
313 _result = new UCHAR[result_size];
314 status = BCryptEncrypt(hUpdateKey, blob, blob_size, &pi, NULL, 0, _result, result_size, &copied, BCRYPT_PAD_OAEP);
315 delete[] _delivery_key;
317 BCryptDestroyKey(hUpdateKey);
319 throw runtime_error("BCryptEncrypt: encrypting using update_key");
322 BCryptDestroyKey(hUpdateKey);
325 for (ULONG i = 0; i < copied; i++) {
326 s << hex << setw(2) << setfill('0');
327 s << (int) _result[i];
335 GateKeeper::product_list& GateKeeper::registered_products()
337 static product_list products;
339 // https://msdn.microsoft.com/en-us/library/windows/desktop/ms724872(v=vs.85).aspx
340 static TCHAR value_name[16384];
341 DWORD value_name_size;
342 static TCHAR value[L_MAX_URL_LENGTH + 1];
347 LONG lResult = ERROR_SUCCESS;
348 for (DWORD i = 0; lResult == ERROR_SUCCESS; i++) {
349 value_size = L_MAX_URL_LENGTH + 1;
350 lResult = RegEnumValue(hkUpdater, 0, value_name, &value_name_size, NULL, NULL, (LPBYTE) value, &value_size);
351 if (lResult == ERROR_SUCCESS)
352 products.push_back({ value_name, value });
358 void GateKeeper::install_msi(tstring filename)
360 ShellExecute(NULL, _T("open"), filename.c_str(), NULL, NULL, SW_SHOW);
363 void GateKeeper::update_product(product p, DWORD context)
365 BCRYPT_KEY_HANDLE dk = delivery_key();
367 tstring delivery = utility::utf16_string(wrapped_delivery_key(dk));
369 tstring delivery = wrapped_delivery_key(delivery_key());
371 tstring url = p.second;
372 url += _T("&challenge=");
375 HINTERNET hUrl = InternetOpenUrl(internet, url.c_str(), headers.c_str(), headers.length(),
376 INTERNET_FLAG_EXISTING_CONNECT | INTERNET_FLAG_NO_UI | INTERNET_FLAG_SECURE, context);
383 UCHAR nonce[sizeof(iv)];
388 InternetReadFile(hUrl, iv, sizeof(iv), &reading);
391 static char buffer[1024*1024];
392 BOOL bResult = InternetReadFile(hUrl, buffer, 1024*1024, &reading);
393 if (!bResult || !reading)
395 crypted += string(buffer, reading);
398 catch (exception& e) {
399 MessageBox(NULL, utility::utf16_string(e.what()).c_str(), _T("exception"), MB_ICONSTOP);
402 InternetCloseHandle(hUrl);
405 memcpy(nonce, iv, sizeof(iv));
409 char *unencrypted_buffer = NULL;
411 BCRYPT_AUTHENTICATED_CIPHER_MODE_INFO authInfo;
412 BCRYPT_INIT_AUTH_MODE_INFO(authInfo);
413 authInfo.pbNonce = nonce;
414 authInfo.cbNonce = sizeof(nonce);
415 authInfo.pbTag = tag;
416 authInfo.cbTag = sizeof(tag);
418 ULONG unencrypted_size;
419 NTSTATUS status = BCryptDecrypt(dk, (PUCHAR) crypted.data(), crypted.size(),
420 &authInfo, iv, sizeof(iv), NULL, 0, &unencrypted_size, 0);
424 unencrypted_buffer = new char[unencrypted_size];
425 PUCHAR crypted_data = (PUCHAR) crypted.data();
426 ULONG crypted_size = (ULONG) crypted.size() - sizeof(tag);
427 memcpy(tag, crypted_data + crypted_size, sizeof(tag));
429 status = BCryptDecrypt(dk, crypted_data, crypted_size,
430 &authInfo, iv, sizeof(iv), (PUCHAR) unencrypted_buffer, unencrypted_size, &unencrypted_size, 0);
434 BCryptDestroyKey(dk);
436 TCHAR temp_path[MAX_PATH + 1];
437 GetTempPath(MAX_PATH, temp_path);
438 filename = temp_path;
439 filename += _T("\\pEp_");
440 filename += delivery.substr(0, 32);
441 filename += _T(".msi");
443 hFile = CreateFile(filename.c_str(), GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
447 WriteFile(hFile, unencrypted_buffer, unencrypted_size, &writing, NULL);
450 install_msi(filename);
455 if (unencrypted_buffer)
456 delete[] unencrypted_buffer;
460 InternetCloseHandle(hUrl);
461 BCryptDestroyKey(dk);
464 void GateKeeper::keep_updated()
466 NTSTATUS status = BCryptOpenAlgorithmProvider(&hAES, BCRYPT_AES_ALGORITHM, MS_PRIMITIVE_PROVIDER, 0);
470 status = BCryptSetProperty(hAES, BCRYPT_CHAINING_MODE, (PUCHAR) BCRYPT_CHAIN_MODE_GCM, sizeof(BCRYPT_CHAIN_MODE_GCM), 0);
474 status = BCryptOpenAlgorithmProvider(&hRSA, BCRYPT_RSA_ALGORITHM, MS_PRIMITIVE_PROVIDER, 0);
479 internet = InternetOpen(_T("pEp"), INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
483 product_list& products = registered_products();
485 for (auto i = products.begin(); i != products.end(); i++) {
487 update_product(*i, context++);
496 InternetCloseHandle(internet);
498 BCryptCloseAlgorithmProvider(hAES, 0);
500 BCryptCloseAlgorithmProvider(hRSA, 0);