2011-07-12 04:46:03 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-07-12 04:46:03 +04:00
|
|
|
* RDP Licensing
|
|
|
|
*
|
2013-02-05 10:07:34 +04:00
|
|
|
* Copyright 2011-2013 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
2014-04-02 16:17:39 +04:00
|
|
|
* Copyright 2014 Norbert Federa <norbert.federa@thincast.com>
|
2018-10-31 12:27:31 +03:00
|
|
|
* Copyright 2018 David Fort <contact@hardening-consulting.com>
|
2011-07-12 04:46:03 +04:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2012-08-15 01:09:01 +04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2012-11-22 04:22:41 +04:00
|
|
|
#include <winpr/crt.h>
|
2016-02-24 18:46:25 +03:00
|
|
|
#include <winpr/crypto.h>
|
2018-10-31 12:27:31 +03:00
|
|
|
#include <winpr/shell.h>
|
|
|
|
#include <winpr/path.h>
|
|
|
|
|
2014-08-19 20:26:39 +04:00
|
|
|
#include <freerdp/log.h>
|
2014-09-12 16:36:29 +04:00
|
|
|
|
2011-09-03 05:34:51 +04:00
|
|
|
#include "redirection.h"
|
2012-02-17 09:58:30 +04:00
|
|
|
#include "certificate.h"
|
2011-09-03 05:34:51 +04:00
|
|
|
|
2011-07-12 04:46:03 +04:00
|
|
|
#include "license.h"
|
|
|
|
|
2014-09-12 16:36:29 +04:00
|
|
|
#define TAG FREERDP_TAG("core.license")
|
2014-08-19 20:26:39 +04:00
|
|
|
|
2018-10-31 12:27:31 +03:00
|
|
|
#if 0
|
2019-11-06 17:24:51 +03:00
|
|
|
#define LICENSE_NULL_CLIENT_RANDOM 1
|
|
|
|
#define LICENSE_NULL_PREMASTER_SECRET 1
|
2018-10-31 12:27:31 +03:00
|
|
|
#endif
|
2013-02-05 08:57:04 +04:00
|
|
|
|
2017-05-29 11:50:22 +03:00
|
|
|
static wStream* license_send_stream_init(rdpLicense* license);
|
|
|
|
|
|
|
|
static void license_generate_randoms(rdpLicense* license);
|
|
|
|
static BOOL license_generate_keys(rdpLicense* license);
|
|
|
|
static BOOL license_generate_hwid(rdpLicense* license);
|
|
|
|
static BOOL license_encrypt_premaster_secret(rdpLicense* license);
|
|
|
|
|
|
|
|
static LICENSE_PRODUCT_INFO* license_new_product_info(void);
|
|
|
|
static void license_free_product_info(LICENSE_PRODUCT_INFO* productInfo);
|
|
|
|
static BOOL license_read_product_info(wStream* s, LICENSE_PRODUCT_INFO* productInfo);
|
|
|
|
|
|
|
|
static LICENSE_BLOB* license_new_binary_blob(UINT16 type);
|
|
|
|
static void license_free_binary_blob(LICENSE_BLOB* blob);
|
|
|
|
static BOOL license_read_binary_blob(wStream* s, LICENSE_BLOB* blob);
|
2018-10-31 12:27:31 +03:00
|
|
|
static BOOL license_write_binary_blob(wStream* s, const LICENSE_BLOB* blob);
|
2017-05-29 11:50:22 +03:00
|
|
|
|
|
|
|
static SCOPE_LIST* license_new_scope_list(void);
|
|
|
|
static void license_free_scope_list(SCOPE_LIST* scopeList);
|
|
|
|
static BOOL license_read_scope_list(wStream* s, SCOPE_LIST* scopeList);
|
|
|
|
|
|
|
|
static BOOL license_read_license_request_packet(rdpLicense* license, wStream* s);
|
|
|
|
static BOOL license_read_platform_challenge_packet(rdpLicense* license, wStream* s);
|
2018-10-31 12:27:31 +03:00
|
|
|
static BOOL license_read_new_or_upgrade_license_packet(rdpLicense* license, wStream* s);
|
2017-05-29 11:50:22 +03:00
|
|
|
static BOOL license_read_error_alert_packet(rdpLicense* license, wStream* s);
|
|
|
|
|
|
|
|
static BOOL license_write_new_license_request_packet(rdpLicense* license, wStream* s);
|
2018-10-31 12:27:31 +03:00
|
|
|
static BOOL license_answer_license_request(rdpLicense* license);
|
2017-05-29 11:50:22 +03:00
|
|
|
|
2018-10-31 12:27:31 +03:00
|
|
|
static BOOL license_write_platform_challenge_response_packet(rdpLicense* license, wStream* s,
|
2019-11-06 17:24:51 +03:00
|
|
|
const BYTE* mac_data);
|
2017-05-29 11:50:22 +03:00
|
|
|
static BOOL license_send_platform_challenge_response_packet(rdpLicense* license);
|
2019-11-06 17:24:51 +03:00
|
|
|
static BOOL license_send_client_info(rdpLicense* license, const LICENSE_BLOB* calBlob,
|
|
|
|
BYTE* signature);
|
2018-10-31 12:27:31 +03:00
|
|
|
|
|
|
|
#define PLATFORMID (CLIENT_OS_ID_WINNT_POST_52 | CLIENT_IMAGE_ID_MICROSOFT)
|
2017-05-29 11:50:22 +03:00
|
|
|
|
2011-11-30 05:15:50 +04:00
|
|
|
#ifdef WITH_DEBUG_LICENSE
|
2013-02-05 08:57:04 +04:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
static const char* const LICENSE_MESSAGE_STRINGS[] = { "",
|
|
|
|
"License Request",
|
|
|
|
"Platform Challenge",
|
|
|
|
"New License",
|
|
|
|
"Upgrade License",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"License Info",
|
|
|
|
"New License Request",
|
|
|
|
"",
|
|
|
|
"Platform Challenge Response",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"Error Alert" };
|
|
|
|
|
|
|
|
static const char* const error_codes[] = { "ERR_UNKNOWN",
|
|
|
|
"ERR_INVALID_SERVER_CERTIFICATE",
|
|
|
|
"ERR_NO_LICENSE",
|
|
|
|
"ERR_INVALID_MAC",
|
|
|
|
"ERR_INVALID_SCOPE",
|
|
|
|
"ERR_UNKNOWN",
|
|
|
|
"ERR_NO_LICENSE_SERVER",
|
|
|
|
"STATUS_VALID_CLIENT",
|
|
|
|
"ERR_INVALID_CLIENT",
|
|
|
|
"ERR_UNKNOWN",
|
|
|
|
"ERR_UNKNOWN",
|
|
|
|
"ERR_INVALID_PRODUCT_ID",
|
|
|
|
"ERR_INVALID_MESSAGE_LENGTH" };
|
|
|
|
|
|
|
|
static const char* const state_transitions[] = { "ST_UNKNOWN", "ST_TOTAL_ABORT", "ST_NO_TRANSITION",
|
|
|
|
"ST_RESET_PHASE_TO_START",
|
|
|
|
"ST_RESEND_LAST_MESSAGE" };
|
2013-02-05 08:57:04 +04:00
|
|
|
|
2018-10-31 12:27:31 +03:00
|
|
|
static void license_print_product_info(const LICENSE_PRODUCT_INFO* productInfo)
|
2013-02-05 08:57:04 +04:00
|
|
|
{
|
|
|
|
char* CompanyName = NULL;
|
|
|
|
char* ProductId = NULL;
|
2019-11-06 17:24:51 +03:00
|
|
|
ConvertFromUnicode(CP_UTF8, 0, (WCHAR*)productInfo->pbCompanyName,
|
|
|
|
productInfo->cbCompanyName / 2, &CompanyName, 0, NULL, NULL);
|
|
|
|
ConvertFromUnicode(CP_UTF8, 0, (WCHAR*)productInfo->pbProductId, productInfo->cbProductId / 2,
|
|
|
|
&ProductId, 0, NULL, NULL);
|
2014-09-12 16:36:29 +04:00
|
|
|
WLog_INFO(TAG, "ProductInfo:");
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_INFO(TAG, "\tdwVersion: 0x%08" PRIX32 "", productInfo->dwVersion);
|
2014-09-12 16:36:29 +04:00
|
|
|
WLog_INFO(TAG, "\tCompanyName: %s", CompanyName);
|
|
|
|
WLog_INFO(TAG, "\tProductId: %s", ProductId);
|
2013-02-05 08:57:04 +04:00
|
|
|
free(CompanyName);
|
|
|
|
free(ProductId);
|
|
|
|
}
|
|
|
|
|
2018-10-31 12:27:31 +03:00
|
|
|
static void license_print_scope_list(const SCOPE_LIST* scopeList)
|
2013-02-05 09:19:57 +04:00
|
|
|
{
|
2019-10-16 15:54:05 +03:00
|
|
|
UINT32 index;
|
2018-10-31 12:27:31 +03:00
|
|
|
const LICENSE_BLOB* scope;
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_INFO(TAG, "ScopeList (%" PRIu32 "):", scopeList->count);
|
2013-02-05 09:19:57 +04:00
|
|
|
|
|
|
|
for (index = 0; index < scopeList->count; index++)
|
|
|
|
{
|
|
|
|
scope = &scopeList->array[index];
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_INFO(TAG, "\t%s", (const char*)scope->data);
|
2013-02-05 09:19:57 +04:00
|
|
|
}
|
|
|
|
}
|
2011-11-30 05:15:50 +04:00
|
|
|
#endif
|
2011-07-15 10:02:09 +04:00
|
|
|
|
2018-10-31 12:27:31 +03:00
|
|
|
static const char licenseStore[] = "licenses";
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
static BOOL computeCalHash(const char* hostname, char* hashStr)
|
2018-10-31 12:27:31 +03:00
|
|
|
{
|
|
|
|
WINPR_DIGEST_CTX* sha1 = NULL;
|
|
|
|
BOOL ret = FALSE;
|
|
|
|
BYTE hash[20];
|
2019-02-07 16:22:28 +03:00
|
|
|
size_t i;
|
2018-10-31 12:27:31 +03:00
|
|
|
|
|
|
|
if (!(sha1 = winpr_Digest_New()))
|
|
|
|
goto out;
|
|
|
|
if (!winpr_Digest_Init(sha1, WINPR_MD_SHA1))
|
|
|
|
goto out;
|
2019-11-06 17:24:51 +03:00
|
|
|
if (!winpr_Digest_Update(sha1, (const BYTE*)hostname, strlen(hostname)))
|
2018-10-31 12:27:31 +03:00
|
|
|
goto out;
|
|
|
|
if (!winpr_Digest_Final(sha1, hash, sizeof(hash)))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
for (i = 0; i < sizeof(hash); i++, hashStr += 2)
|
|
|
|
sprintf_s(hashStr, 3, "%.2x", hash[i]);
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
ret = TRUE;
|
2018-10-31 12:27:31 +03:00
|
|
|
out:
|
|
|
|
winpr_Digest_Free(sha1);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
static BOOL saveCal(rdpSettings* settings, const BYTE* data, int length, char* hostname)
|
2018-10-31 12:27:31 +03:00
|
|
|
{
|
|
|
|
char hash[41];
|
2019-11-06 17:24:51 +03:00
|
|
|
FILE* fp;
|
|
|
|
char* licenseStorePath = NULL;
|
2018-10-31 12:27:31 +03:00
|
|
|
char filename[MAX_PATH], filenameNew[MAX_PATH];
|
|
|
|
char *filepath = NULL, *filepathNew = NULL;
|
|
|
|
size_t written;
|
|
|
|
BOOL ret = FALSE;
|
|
|
|
|
|
|
|
if (!PathFileExistsA(settings->ConfigPath))
|
|
|
|
{
|
|
|
|
if (!PathMakePathA(settings->ConfigPath, 0))
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "error creating directory '%s'", settings->ConfigPath);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
WLog_INFO(TAG, "creating directory %s", settings->ConfigPath);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(licenseStorePath = GetCombinedPath(settings->ConfigPath, licenseStore)))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
if (!PathFileExistsA(licenseStorePath))
|
|
|
|
{
|
|
|
|
if (!PathMakePathA(licenseStorePath, 0))
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "error creating directory '%s'", licenseStorePath);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
WLog_INFO(TAG, "creating directory %s", licenseStorePath);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!computeCalHash(hostname, hash))
|
|
|
|
goto out;
|
2019-11-06 17:24:51 +03:00
|
|
|
sprintf_s(filename, sizeof(filename) - 1, "%s.cal", hash);
|
|
|
|
sprintf_s(filenameNew, sizeof(filenameNew) - 1, "%s.cal.new", hash);
|
2018-10-31 12:27:31 +03:00
|
|
|
|
|
|
|
if (!(filepath = GetCombinedPath(licenseStorePath, filename)))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
if (!(filepathNew = GetCombinedPath(licenseStorePath, filenameNew)))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
fp = fopen(filepathNew, "wb");
|
|
|
|
if (!fp)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
written = fwrite(data, length, 1, fp);
|
|
|
|
fclose(fp);
|
|
|
|
|
|
|
|
if (written != 1)
|
|
|
|
{
|
|
|
|
DeleteFile(filepathNew);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = MoveFileEx(filepathNew, filepath, MOVEFILE_REPLACE_EXISTING);
|
|
|
|
|
|
|
|
out:
|
|
|
|
free(filepathNew);
|
|
|
|
free(filepath);
|
|
|
|
free(licenseStorePath);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
static BYTE* loadCalFile(rdpSettings* settings, const char* hostname, int* dataLen)
|
2018-10-31 12:27:31 +03:00
|
|
|
{
|
|
|
|
char *licenseStorePath = NULL, *calPath = NULL;
|
|
|
|
char calFilename[MAX_PATH];
|
|
|
|
char hash[41];
|
|
|
|
int length, status;
|
2019-11-06 17:24:51 +03:00
|
|
|
FILE* fp;
|
|
|
|
BYTE* ret = NULL;
|
2018-10-31 12:27:31 +03:00
|
|
|
|
|
|
|
if (!computeCalHash(hostname, hash))
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "loadCalFile: unable to compute hostname hash");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
sprintf_s(calFilename, sizeof(calFilename) - 1, "%s.cal", hash);
|
2018-10-31 12:27:31 +03:00
|
|
|
|
|
|
|
if (!(licenseStorePath = GetCombinedPath(settings->ConfigPath, licenseStore)))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (!(calPath = GetCombinedPath(licenseStorePath, calFilename)))
|
|
|
|
goto error_path;
|
|
|
|
|
|
|
|
fp = fopen(calPath, "rb");
|
|
|
|
if (!fp)
|
|
|
|
goto error_open;
|
|
|
|
|
|
|
|
_fseeki64(fp, 0, SEEK_END);
|
|
|
|
length = _ftelli64(fp);
|
|
|
|
_fseeki64(fp, 0, SEEK_SET);
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
ret = (BYTE*)malloc(length);
|
2018-10-31 12:27:31 +03:00
|
|
|
if (!ret)
|
|
|
|
goto error_malloc;
|
|
|
|
|
|
|
|
status = fread(ret, length, 1, fp);
|
|
|
|
if (status <= 0)
|
|
|
|
goto error_read;
|
|
|
|
|
|
|
|
*dataLen = length;
|
|
|
|
|
|
|
|
fclose(fp);
|
|
|
|
free(calPath);
|
|
|
|
free(licenseStorePath);
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
error_read:
|
|
|
|
free(ret);
|
|
|
|
error_malloc:
|
|
|
|
fclose(fp);
|
|
|
|
error_open:
|
|
|
|
free(calPath);
|
|
|
|
error_path:
|
|
|
|
free(licenseStorePath);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2011-07-12 09:16:59 +04:00
|
|
|
/**
|
|
|
|
* Read a licensing preamble.\n
|
|
|
|
* @msdn{cc240480}
|
|
|
|
* @param s stream
|
|
|
|
* @param bMsgType license message type
|
|
|
|
* @param flags message flags
|
|
|
|
* @param wMsgSize message size
|
2013-01-12 17:49:01 +04:00
|
|
|
* @return if the operation completed successfully
|
2011-07-12 09:16:59 +04:00
|
|
|
*/
|
|
|
|
|
2019-11-20 13:30:14 +03:00
|
|
|
static BOOL license_read_preamble(wStream* s, BYTE* bMsgType, BYTE* flags, UINT16* wMsgSize)
|
2011-07-12 09:16:59 +04:00
|
|
|
{
|
|
|
|
/* preamble (4 bytes) */
|
2013-04-30 06:35:15 +04:00
|
|
|
if (Stream_GetRemainingLength(s) < 4)
|
2013-01-12 17:49:01 +04:00
|
|
|
return FALSE;
|
2013-02-05 08:57:04 +04:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
Stream_Read_UINT8(s, *bMsgType); /* bMsgType (1 byte) */
|
|
|
|
Stream_Read_UINT8(s, *flags); /* flags (1 byte) */
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Read_UINT16(s, *wMsgSize); /* wMsgSize (2 bytes) */
|
2013-01-12 17:49:01 +04:00
|
|
|
return TRUE;
|
2011-07-12 09:16:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Write a licensing preamble.\n
|
|
|
|
* @msdn{cc240480}
|
|
|
|
* @param s stream
|
|
|
|
* @param bMsgType license message type
|
|
|
|
* @param flags message flags
|
|
|
|
* @param wMsgSize message size
|
|
|
|
*/
|
|
|
|
|
2018-10-02 14:18:13 +03:00
|
|
|
static BOOL license_write_preamble(wStream* s, BYTE bMsgType, BYTE flags, UINT16 wMsgSize)
|
2011-07-12 09:16:59 +04:00
|
|
|
{
|
2018-10-02 14:18:13 +03:00
|
|
|
if (!Stream_EnsureRemainingCapacity(s, 4))
|
|
|
|
return FALSE;
|
|
|
|
|
2011-07-12 09:16:59 +04:00
|
|
|
/* preamble (4 bytes) */
|
2019-11-06 17:24:51 +03:00
|
|
|
Stream_Write_UINT8(s, bMsgType); /* bMsgType (1 byte) */
|
|
|
|
Stream_Write_UINT8(s, flags); /* flags (1 byte) */
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Write_UINT16(s, wMsgSize); /* wMsgSize (2 bytes) */
|
2018-10-02 14:18:13 +03:00
|
|
|
return TRUE;
|
2011-07-12 09:16:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize a license packet stream.\n
|
|
|
|
* @param license license module
|
|
|
|
* @return stream
|
|
|
|
*/
|
|
|
|
|
2013-03-21 23:19:33 +04:00
|
|
|
wStream* license_send_stream_init(rdpLicense* license)
|
2011-07-12 09:16:59 +04:00
|
|
|
{
|
2013-03-21 23:19:33 +04:00
|
|
|
wStream* s;
|
2015-01-12 13:31:18 +03:00
|
|
|
BOOL do_crypt = license->rdp->do_crypt;
|
2018-10-31 12:27:31 +03:00
|
|
|
|
2014-04-02 16:17:39 +04:00
|
|
|
license->rdp->sec_flags = SEC_LICENSE_PKT;
|
2014-08-19 20:26:39 +04:00
|
|
|
|
2015-01-12 13:31:18 +03:00
|
|
|
/**
|
|
|
|
* Encryption of licensing packets is optional even if the rdp security
|
|
|
|
* layer is used. If the peer has not indicated that it is capable of
|
|
|
|
* processing encrypted licensing packets (rdp->do_crypt_license) we turn
|
|
|
|
* off encryption (via rdp->do_crypt) before initializing the rdp stream
|
|
|
|
* and reenable it afterwards.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (do_crypt)
|
|
|
|
{
|
2014-08-19 20:26:39 +04:00
|
|
|
license->rdp->sec_flags |= SEC_LICENSE_ENCRYPT_CS;
|
2015-01-12 13:31:18 +03:00
|
|
|
license->rdp->do_crypt = license->rdp->do_crypt_license;
|
|
|
|
}
|
2014-04-02 16:17:39 +04:00
|
|
|
|
2018-10-02 14:18:13 +03:00
|
|
|
s = rdp_send_stream_init(license->rdp);
|
2015-04-01 12:38:53 +03:00
|
|
|
if (!s)
|
|
|
|
return NULL;
|
2014-04-02 16:17:39 +04:00
|
|
|
|
2015-01-12 13:31:18 +03:00
|
|
|
license->rdp->do_crypt = do_crypt;
|
2014-04-02 16:17:39 +04:00
|
|
|
license->PacketHeaderLength = Stream_GetPosition(s);
|
2018-10-02 14:18:13 +03:00
|
|
|
if (!Stream_SafeSeek(s, LICENSE_PREAMBLE_LENGTH))
|
|
|
|
goto fail;
|
2011-07-12 09:16:59 +04:00
|
|
|
return s;
|
2018-10-31 12:27:31 +03:00
|
|
|
|
2018-10-02 14:18:13 +03:00
|
|
|
fail:
|
|
|
|
Stream_Release(s);
|
|
|
|
return NULL;
|
2011-07-12 09:16:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send an RDP licensing packet.\n
|
|
|
|
* @msdn{cc240479}
|
|
|
|
* @param license license module
|
|
|
|
* @param s stream
|
|
|
|
*/
|
|
|
|
|
2018-10-31 12:27:31 +03:00
|
|
|
static BOOL license_send(rdpLicense* license, wStream* s, BYTE type)
|
2011-07-12 09:16:59 +04:00
|
|
|
{
|
2017-12-11 12:25:21 +03:00
|
|
|
size_t length;
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE flags;
|
|
|
|
UINT16 wMsgSize;
|
2018-10-31 12:27:31 +03:00
|
|
|
rdpRdp* rdp = license->rdp;
|
|
|
|
BOOL ret;
|
2018-10-02 14:18:13 +03:00
|
|
|
|
2011-08-08 22:51:03 +04:00
|
|
|
DEBUG_LICENSE("Sending %s Packet", LICENSE_MESSAGE_STRINGS[type & 0x1F]);
|
2013-04-30 06:35:15 +04:00
|
|
|
length = Stream_GetPosition(s);
|
2014-04-02 16:17:39 +04:00
|
|
|
wMsgSize = length - license->PacketHeaderLength;
|
|
|
|
Stream_SetPosition(s, license->PacketHeaderLength);
|
2013-09-06 02:53:55 +04:00
|
|
|
flags = PREAMBLE_VERSION_3_0;
|
|
|
|
|
2011-08-21 06:57:01 +04:00
|
|
|
/**
|
|
|
|
* Using EXTENDED_ERROR_MSG_SUPPORTED here would cause mstsc to crash when
|
|
|
|
* running in server mode! This flag seems to be incorrectly documented.
|
|
|
|
*/
|
2013-09-06 02:53:55 +04:00
|
|
|
|
2014-04-02 16:17:39 +04:00
|
|
|
if (!rdp->settings->ServerMode)
|
2013-09-06 02:53:55 +04:00
|
|
|
flags |= EXTENDED_ERROR_MSG_SUPPORTED;
|
2011-07-12 09:16:59 +04:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
if (!license_write_preamble(s, type, flags, wMsgSize))
|
2018-10-31 12:27:31 +03:00
|
|
|
return FALSE;
|
2018-10-02 14:18:13 +03:00
|
|
|
|
2011-08-08 22:51:03 +04:00
|
|
|
#ifdef WITH_DEBUG_LICENSE
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_DBG(TAG, "Sending %s Packet, length %" PRIu16 "", LICENSE_MESSAGE_STRINGS[type & 0x1F],
|
|
|
|
wMsgSize);
|
2014-08-19 20:26:39 +04:00
|
|
|
winpr_HexDump(TAG, WLOG_DEBUG, Stream_Pointer(s) - LICENSE_PREAMBLE_LENGTH, wMsgSize);
|
2011-08-08 22:51:03 +04:00
|
|
|
#endif
|
2013-04-30 06:35:15 +04:00
|
|
|
Stream_SetPosition(s, length);
|
2018-10-31 12:27:31 +03:00
|
|
|
ret = rdp_send(rdp, s, MCS_GLOBAL_CHANNEL_ID);
|
2014-04-02 16:17:39 +04:00
|
|
|
rdp->sec_flags = 0;
|
2018-10-31 12:27:31 +03:00
|
|
|
return ret;
|
2011-07-12 09:16:59 +04:00
|
|
|
}
|
|
|
|
|
2011-07-12 04:46:03 +04:00
|
|
|
/**
|
|
|
|
* Receive an RDP licensing packet.\n
|
|
|
|
* @msdn{cc240479}
|
2011-07-12 09:16:59 +04:00
|
|
|
* @param license license module
|
2011-07-12 04:46:03 +04:00
|
|
|
* @param s stream
|
2013-01-12 17:49:01 +04:00
|
|
|
* @return if the operation completed successfully
|
2011-07-12 04:46:03 +04:00
|
|
|
*/
|
|
|
|
|
2013-11-05 00:52:29 +04:00
|
|
|
int license_recv(rdpLicense* license, wStream* s)
|
2011-07-12 04:46:03 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE flags;
|
|
|
|
BYTE bMsgType;
|
|
|
|
UINT16 wMsgSize;
|
2013-02-05 01:39:05 +04:00
|
|
|
UINT16 length;
|
|
|
|
UINT16 channelId;
|
2016-12-02 12:46:43 +03:00
|
|
|
UINT16 securityFlags = 0;
|
2011-07-12 04:46:03 +04:00
|
|
|
|
2011-08-22 11:03:58 +04:00
|
|
|
if (!rdp_read_header(license->rdp, s, &length, &channelId))
|
|
|
|
{
|
2014-09-12 16:36:29 +04:00
|
|
|
WLog_ERR(TAG, "Incorrect RDP header.");
|
2013-11-05 00:52:29 +04:00
|
|
|
return -1;
|
2011-08-22 11:03:58 +04:00
|
|
|
}
|
|
|
|
|
2017-05-29 11:50:22 +03:00
|
|
|
if (!rdp_read_security_header(s, &securityFlags, &length))
|
2013-11-05 00:52:29 +04:00
|
|
|
return -1;
|
2013-01-25 22:47:56 +04:00
|
|
|
|
2013-02-05 01:39:05 +04:00
|
|
|
if (securityFlags & SEC_ENCRYPT)
|
|
|
|
{
|
2017-05-29 11:50:22 +03:00
|
|
|
if (!rdp_decrypt(license->rdp, s, length, securityFlags))
|
2013-02-05 01:39:05 +04:00
|
|
|
{
|
2014-09-12 16:36:29 +04:00
|
|
|
WLog_ERR(TAG, "rdp_decrypt failed");
|
2013-11-05 00:52:29 +04:00
|
|
|
return -1;
|
2013-02-05 01:39:05 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(securityFlags & SEC_LICENSE_PKT))
|
2011-08-22 11:03:58 +04:00
|
|
|
{
|
2013-11-05 00:52:29 +04:00
|
|
|
int status;
|
|
|
|
|
2013-02-05 01:39:05 +04:00
|
|
|
if (!(securityFlags & SEC_ENCRYPT))
|
2013-04-30 06:35:15 +04:00
|
|
|
Stream_Rewind(s, RDP_SECURITY_HEADER_LENGTH);
|
2013-02-05 01:39:05 +04:00
|
|
|
|
2013-11-05 00:52:29 +04:00
|
|
|
status = rdp_recv_out_of_sequence_pdu(license->rdp, s);
|
|
|
|
if (status < 0)
|
2011-09-03 05:34:51 +04:00
|
|
|
{
|
2014-09-12 16:36:29 +04:00
|
|
|
WLog_ERR(TAG, "unexpected license packet.");
|
2013-11-05 00:52:29 +04:00
|
|
|
return status;
|
2011-09-03 05:34:51 +04:00
|
|
|
}
|
2013-02-05 01:39:05 +04:00
|
|
|
|
2013-11-05 00:52:29 +04:00
|
|
|
return 0;
|
2011-08-22 11:03:58 +04:00
|
|
|
}
|
|
|
|
|
2013-01-25 22:47:56 +04:00
|
|
|
if (!license_read_preamble(s, &bMsgType, &flags, &wMsgSize)) /* preamble (4 bytes) */
|
2013-11-05 00:52:29 +04:00
|
|
|
return -1;
|
2011-07-12 04:46:03 +04:00
|
|
|
|
2011-08-08 07:59:28 +04:00
|
|
|
DEBUG_LICENSE("Receiving %s Packet", LICENSE_MESSAGE_STRINGS[bMsgType & 0x1F]);
|
|
|
|
|
2011-07-12 04:46:03 +04:00
|
|
|
switch (bMsgType)
|
|
|
|
{
|
|
|
|
case LICENSE_REQUEST:
|
2013-01-14 02:37:50 +04:00
|
|
|
if (!license_read_license_request_packet(license, s))
|
2013-11-05 00:52:29 +04:00
|
|
|
return -1;
|
2014-08-19 20:26:39 +04:00
|
|
|
|
2018-10-31 12:27:31 +03:00
|
|
|
if (!license_answer_license_request(license))
|
2015-04-01 12:38:53 +03:00
|
|
|
return -1;
|
2011-07-12 04:46:03 +04:00
|
|
|
break;
|
2014-08-19 20:26:39 +04:00
|
|
|
|
2015-04-01 12:38:53 +03:00
|
|
|
case PLATFORM_CHALLENGE:
|
2013-01-14 02:37:50 +04:00
|
|
|
if (!license_read_platform_challenge_packet(license, s))
|
2013-11-05 00:52:29 +04:00
|
|
|
return -1;
|
2014-08-19 20:26:39 +04:00
|
|
|
|
2015-04-01 12:11:37 +03:00
|
|
|
if (!license_send_platform_challenge_response_packet(license))
|
|
|
|
return -1;
|
2011-07-12 04:46:03 +04:00
|
|
|
break;
|
2015-04-01 12:38:53 +03:00
|
|
|
|
2011-07-12 04:46:03 +04:00
|
|
|
case NEW_LICENSE:
|
|
|
|
case UPGRADE_LICENSE:
|
2018-10-31 12:27:31 +03:00
|
|
|
if (!license_read_new_or_upgrade_license_packet(license, s))
|
|
|
|
return -1;
|
2011-07-12 04:46:03 +04:00
|
|
|
break;
|
2014-08-19 20:26:39 +04:00
|
|
|
|
2015-04-01 12:38:53 +03:00
|
|
|
case ERROR_ALERT:
|
2013-01-14 02:37:50 +04:00
|
|
|
if (!license_read_error_alert_packet(license, s))
|
2013-11-05 00:52:29 +04:00
|
|
|
return -1;
|
2014-08-19 20:26:39 +04:00
|
|
|
break;
|
2015-04-01 12:38:53 +03:00
|
|
|
|
2011-07-12 04:46:03 +04:00
|
|
|
default:
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_ERR(TAG, "invalid bMsgType:%" PRIu8 "", bMsgType);
|
2018-10-31 12:27:31 +03:00
|
|
|
return -1;
|
2011-07-12 04:46:03 +04:00
|
|
|
}
|
2011-08-22 11:03:58 +04:00
|
|
|
|
2013-11-05 00:52:29 +04:00
|
|
|
return 0;
|
2011-07-12 04:46:03 +04:00
|
|
|
}
|
|
|
|
|
2011-07-13 19:40:19 +04:00
|
|
|
void license_generate_randoms(rdpLicense* license)
|
|
|
|
{
|
2018-10-31 12:27:31 +03:00
|
|
|
#ifdef LICENSE_NULL_CLIENT_RANDOM
|
2013-02-05 08:57:04 +04:00
|
|
|
ZeroMemory(license->ClientRandom, CLIENT_RANDOM_LENGTH); /* ClientRandom */
|
2018-10-31 12:27:31 +03:00
|
|
|
#else
|
2019-11-06 17:24:51 +03:00
|
|
|
winpr_RAND(license->ClientRandom, CLIENT_RANDOM_LENGTH); /* ClientRandom */
|
2013-02-05 18:46:25 +04:00
|
|
|
#endif
|
2018-10-31 12:27:31 +03:00
|
|
|
|
|
|
|
#ifdef LICENSE_NULL_PREMASTER_SECRET
|
|
|
|
ZeroMemory(license->PremasterSecret, PREMASTER_SECRET_LENGTH); /* PremasterSecret */
|
|
|
|
#else
|
2016-02-28 00:39:45 +03:00
|
|
|
winpr_RAND(license->PremasterSecret, PREMASTER_SECRET_LENGTH); /* PremasterSecret */
|
2011-08-08 20:57:19 +04:00
|
|
|
#endif
|
2011-07-13 19:40:19 +04:00
|
|
|
}
|
|
|
|
|
2011-07-12 09:57:09 +04:00
|
|
|
/**
|
|
|
|
* Generate License Cryptographic Keys.
|
|
|
|
* @param license license module
|
|
|
|
*/
|
|
|
|
|
2018-10-31 12:27:31 +03:00
|
|
|
static BOOL license_generate_keys(rdpLicense* license)
|
2011-07-12 09:57:09 +04:00
|
|
|
{
|
2015-04-01 12:38:53 +03:00
|
|
|
BOOL ret;
|
|
|
|
|
2015-04-01 12:11:37 +03:00
|
|
|
if (
|
2019-11-06 17:24:51 +03:00
|
|
|
/* MasterSecret */
|
|
|
|
!security_master_secret(license->PremasterSecret, license->ClientRandom,
|
|
|
|
license->ServerRandom, license->MasterSecret) ||
|
|
|
|
/* SessionKeyBlob */
|
|
|
|
!security_session_key_blob(license->MasterSecret, license->ClientRandom,
|
|
|
|
license->ServerRandom, license->SessionKeyBlob))
|
2015-04-01 12:11:37 +03:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
2019-11-06 17:24:51 +03:00
|
|
|
security_mac_salt_key(license->SessionKeyBlob, license->ClientRandom, license->ServerRandom,
|
|
|
|
license->MacSaltKey); /* MacSaltKey */
|
|
|
|
ret = security_licensing_encryption_key(
|
|
|
|
license->SessionKeyBlob, license->ClientRandom, license->ServerRandom,
|
|
|
|
license->LicensingEncryptionKey); /* LicensingEncryptionKey */
|
2011-08-08 22:51:03 +04:00
|
|
|
#ifdef WITH_DEBUG_LICENSE
|
2014-09-12 16:36:29 +04:00
|
|
|
WLog_DBG(TAG, "ClientRandom:");
|
2014-08-19 20:26:39 +04:00
|
|
|
winpr_HexDump(TAG, WLOG_DEBUG, license->ClientRandom, CLIENT_RANDOM_LENGTH);
|
2014-09-12 16:36:29 +04:00
|
|
|
WLog_DBG(TAG, "ServerRandom:");
|
2014-08-19 20:26:39 +04:00
|
|
|
winpr_HexDump(TAG, WLOG_DEBUG, license->ServerRandom, SERVER_RANDOM_LENGTH);
|
2014-09-12 16:36:29 +04:00
|
|
|
WLog_DBG(TAG, "PremasterSecret:");
|
2014-08-19 20:26:39 +04:00
|
|
|
winpr_HexDump(TAG, WLOG_DEBUG, license->PremasterSecret, PREMASTER_SECRET_LENGTH);
|
2014-09-12 16:36:29 +04:00
|
|
|
WLog_DBG(TAG, "MasterSecret:");
|
2014-08-19 20:26:39 +04:00
|
|
|
winpr_HexDump(TAG, WLOG_DEBUG, license->MasterSecret, MASTER_SECRET_LENGTH);
|
2014-09-12 16:36:29 +04:00
|
|
|
WLog_DBG(TAG, "SessionKeyBlob:");
|
2014-08-19 20:26:39 +04:00
|
|
|
winpr_HexDump(TAG, WLOG_DEBUG, license->SessionKeyBlob, SESSION_KEY_BLOB_LENGTH);
|
2014-09-12 16:36:29 +04:00
|
|
|
WLog_DBG(TAG, "MacSaltKey:");
|
2014-08-19 20:26:39 +04:00
|
|
|
winpr_HexDump(TAG, WLOG_DEBUG, license->MacSaltKey, MAC_SALT_KEY_LENGTH);
|
2014-09-12 16:36:29 +04:00
|
|
|
WLog_DBG(TAG, "LicensingEncryptionKey:");
|
2019-11-06 17:24:51 +03:00
|
|
|
winpr_HexDump(TAG, WLOG_DEBUG, license->LicensingEncryptionKey,
|
|
|
|
LICENSING_ENCRYPTION_KEY_LENGTH);
|
2011-08-08 22:51:03 +04:00
|
|
|
#endif
|
2015-04-01 12:38:53 +03:00
|
|
|
return ret;
|
2011-07-12 09:57:09 +04:00
|
|
|
}
|
|
|
|
|
2011-07-12 10:53:26 +04:00
|
|
|
/**
|
|
|
|
* Generate Unique Hardware Identifier (CLIENT_HARDWARE_ID).\n
|
|
|
|
* @param license license module
|
|
|
|
*/
|
|
|
|
|
2015-04-01 12:11:37 +03:00
|
|
|
BOOL license_generate_hwid(rdpLicense* license)
|
2011-07-12 10:53:26 +04:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
const BYTE* hashTarget;
|
2018-10-31 12:27:31 +03:00
|
|
|
size_t targetLen;
|
2015-02-11 19:57:02 +03:00
|
|
|
BYTE macAddress[6];
|
2018-10-31 12:27:31 +03:00
|
|
|
|
2013-02-05 08:57:04 +04:00
|
|
|
ZeroMemory(license->HardwareId, HWID_LENGTH);
|
2015-02-11 19:57:02 +03:00
|
|
|
|
2018-10-31 12:27:31 +03:00
|
|
|
if (license->rdp->settings->OldLicenseBehaviour)
|
|
|
|
{
|
|
|
|
ZeroMemory(macAddress, sizeof(macAddress));
|
|
|
|
hashTarget = macAddress;
|
|
|
|
targetLen = sizeof(macAddress);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-11-01 13:02:54 +03:00
|
|
|
wStream s;
|
2019-11-06 17:24:51 +03:00
|
|
|
const char* hostname = license->rdp->settings->ClientHostname;
|
2018-11-01 13:02:54 +03:00
|
|
|
Stream_StaticInit(&s, license->HardwareId, 4);
|
|
|
|
Stream_Write_UINT32(&s, PLATFORMID);
|
|
|
|
Stream_Free(&s, TRUE);
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
hashTarget = (const BYTE*)hostname;
|
2018-10-31 12:27:31 +03:00
|
|
|
targetLen = strlen(hostname);
|
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
/* Allow FIPS override for use of MD5 here, really this does not have to be MD5 as we are just
|
|
|
|
* taking a MD5 hash of the 6 bytes of 0's(macAddress) */
|
|
|
|
/* and filling in the Data1-Data4 fields of the CLIENT_HARDWARE_ID structure(from MS-RDPELE
|
|
|
|
* section 2.2.2.3.1). This is for RDP licensing packets */
|
|
|
|
/* which will already be encrypted under FIPS, so the use of MD5 here is not for sensitive data
|
|
|
|
* protection. */
|
2018-10-31 12:27:31 +03:00
|
|
|
return winpr_Digest_Allow_FIPS(WINPR_MD_MD5, hashTarget, targetLen,
|
2019-11-06 17:24:51 +03:00
|
|
|
&license->HardwareId[HWID_PLATFORM_ID_LENGTH],
|
|
|
|
WINPR_MD5_DIGEST_LENGTH);
|
2011-07-12 10:53:26 +04:00
|
|
|
}
|
|
|
|
|
2019-11-20 13:30:14 +03:00
|
|
|
static BOOL license_get_server_rsa_public_key(rdpLicense* license)
|
2011-07-15 09:11:09 +04:00
|
|
|
{
|
2013-02-05 18:30:53 +04:00
|
|
|
BYTE* Exponent;
|
|
|
|
BYTE* Modulus;
|
|
|
|
int ModulusLength;
|
2015-02-11 19:57:02 +03:00
|
|
|
rdpSettings* settings = license->rdp->settings;
|
2011-07-15 09:11:09 +04:00
|
|
|
|
2013-02-05 19:02:06 +04:00
|
|
|
if (license->ServerCertificate->length < 1)
|
2013-02-05 08:57:04 +04:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
if (!certificate_read_server_certificate(license->certificate, settings->ServerCertificate,
|
|
|
|
settings->ServerCertificateLength))
|
|
|
|
return FALSE;
|
2013-02-05 08:57:04 +04:00
|
|
|
}
|
2011-09-17 00:37:20 +04:00
|
|
|
|
2013-02-05 19:02:06 +04:00
|
|
|
Exponent = license->certificate->cert_info.exponent;
|
|
|
|
Modulus = license->certificate->cert_info.Modulus;
|
|
|
|
ModulusLength = license->certificate->cert_info.ModulusLength;
|
2013-02-05 18:30:53 +04:00
|
|
|
CopyMemory(license->Exponent, Exponent, 4);
|
|
|
|
license->ModulusLength = ModulusLength;
|
2019-11-06 17:24:51 +03:00
|
|
|
license->Modulus = (BYTE*)malloc(ModulusLength);
|
2015-06-16 16:42:07 +03:00
|
|
|
if (!license->Modulus)
|
|
|
|
return FALSE;
|
2015-02-11 19:57:02 +03:00
|
|
|
CopyMemory(license->Modulus, Modulus, ModulusLength);
|
2015-04-01 12:38:53 +03:00
|
|
|
return TRUE;
|
2013-02-05 19:02:06 +04:00
|
|
|
}
|
|
|
|
|
2015-04-01 12:11:37 +03:00
|
|
|
BOOL license_encrypt_premaster_secret(rdpLicense* license)
|
2013-02-05 19:02:06 +04:00
|
|
|
{
|
|
|
|
BYTE* EncryptedPremasterSecret;
|
2015-04-01 12:38:53 +03:00
|
|
|
|
|
|
|
if (!license_get_server_rsa_public_key(license))
|
|
|
|
return FALSE;
|
|
|
|
|
2011-08-08 22:51:03 +04:00
|
|
|
#ifdef WITH_DEBUG_LICENSE
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_DBG(TAG, "Modulus (%" PRIu32 " bits):", license->ModulusLength * 8);
|
2014-08-19 20:26:39 +04:00
|
|
|
winpr_HexDump(TAG, WLOG_DEBUG, license->Modulus, license->ModulusLength);
|
2014-09-12 16:36:29 +04:00
|
|
|
WLog_DBG(TAG, "Exponent:");
|
2014-08-19 20:26:39 +04:00
|
|
|
winpr_HexDump(TAG, WLOG_DEBUG, license->Exponent, 4);
|
2011-08-08 22:51:03 +04:00
|
|
|
#endif
|
2018-10-02 14:18:13 +03:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
EncryptedPremasterSecret = (BYTE*)calloc(1, license->ModulusLength);
|
2015-04-01 12:11:37 +03:00
|
|
|
if (!EncryptedPremasterSecret)
|
|
|
|
return FALSE;
|
2015-02-11 19:57:02 +03:00
|
|
|
|
2013-08-08 02:28:31 +04:00
|
|
|
license->EncryptedPremasterSecret->type = BB_RANDOM_BLOB;
|
|
|
|
license->EncryptedPremasterSecret->length = PREMASTER_SECRET_LENGTH;
|
2013-02-05 18:46:25 +04:00
|
|
|
#ifndef LICENSE_NULL_PREMASTER_SECRET
|
2019-11-06 17:24:51 +03:00
|
|
|
license->EncryptedPremasterSecret->length = crypto_rsa_public_encrypt(
|
|
|
|
license->PremasterSecret, PREMASTER_SECRET_LENGTH, license->ModulusLength, license->Modulus,
|
|
|
|
license->Exponent, EncryptedPremasterSecret);
|
2013-02-05 18:46:25 +04:00
|
|
|
#endif
|
2013-02-05 08:57:04 +04:00
|
|
|
license->EncryptedPremasterSecret->data = EncryptedPremasterSecret;
|
2015-04-01 12:11:37 +03:00
|
|
|
return TRUE;
|
2011-07-15 09:11:09 +04:00
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
static BOOL license_rc4_with_licenseKey(const rdpLicense* license, const BYTE* input, size_t len,
|
|
|
|
LICENSE_BLOB* target)
|
2011-07-15 09:11:09 +04:00
|
|
|
{
|
2016-02-28 13:12:17 +03:00
|
|
|
WINPR_RC4_CTX* rc4;
|
2019-11-06 17:24:51 +03:00
|
|
|
BYTE* buffer = NULL;
|
2015-02-11 19:57:02 +03:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
rc4 =
|
|
|
|
winpr_RC4_New_Allow_FIPS(license->LicensingEncryptionKey, LICENSING_ENCRYPTION_KEY_LENGTH);
|
2018-10-31 12:27:31 +03:00
|
|
|
if (!rc4)
|
2015-04-01 12:38:53 +03:00
|
|
|
return FALSE;
|
2018-10-02 14:18:13 +03:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
buffer = (BYTE*)realloc(target->data, len);
|
2018-10-31 12:27:31 +03:00
|
|
|
if (!buffer)
|
|
|
|
goto error_buffer;
|
2015-02-11 19:57:02 +03:00
|
|
|
|
2018-10-31 12:27:31 +03:00
|
|
|
target->data = buffer;
|
|
|
|
target->length = len;
|
|
|
|
|
|
|
|
if (!winpr_RC4_Update(rc4, len, input, buffer))
|
2018-11-21 17:03:42 +03:00
|
|
|
goto error_buffer;
|
2015-02-11 19:57:02 +03:00
|
|
|
|
2016-02-28 13:12:17 +03:00
|
|
|
winpr_RC4_Free(rc4);
|
2018-10-31 12:27:31 +03:00
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
error_buffer:
|
|
|
|
winpr_RC4_Free(rc4);
|
|
|
|
return FALSE;
|
2011-07-15 09:11:09 +04:00
|
|
|
}
|
|
|
|
|
2018-10-31 12:27:31 +03:00
|
|
|
/**
|
|
|
|
* Encrypt the input using the license key and MAC the input for a signature
|
|
|
|
*
|
|
|
|
* @param license rdpLicense to get keys and salt from
|
|
|
|
* @param input the input data to encrypt and MAC
|
|
|
|
* @param len size of input
|
|
|
|
* @param target a target LICENSE_BLOB where the encrypted input will be stored
|
|
|
|
* @param mac the signature buffer (16 bytes)
|
|
|
|
* @return if the operation completed successfully
|
|
|
|
*/
|
2019-11-06 17:24:51 +03:00
|
|
|
static BOOL license_encrypt_and_MAC(rdpLicense* license, const BYTE* input, size_t len,
|
|
|
|
LICENSE_BLOB* target, BYTE* mac)
|
2018-10-31 12:27:31 +03:00
|
|
|
{
|
|
|
|
return license_rc4_with_licenseKey(license, input, len, target) &&
|
2019-11-06 17:24:51 +03:00
|
|
|
security_mac_data(license->MacSaltKey, input, len, mac);
|
2018-10-31 12:27:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Decrypt the input using the license key and check the MAC
|
|
|
|
*
|
|
|
|
* @param license rdpLicense to get keys and salt from
|
|
|
|
* @param input the input data to decrypt and MAC
|
|
|
|
* @param len size of input
|
|
|
|
* @param target a target LICENSE_BLOB where the decrypted input will be stored
|
|
|
|
* @param mac the signature buffer (16 bytes)
|
|
|
|
* @return if the operation completed successfully
|
|
|
|
*/
|
2019-11-06 17:24:51 +03:00
|
|
|
static BOOL license_decrypt_and_check_MAC(rdpLicense* license, const BYTE* input, size_t len,
|
|
|
|
LICENSE_BLOB* target, const BYTE* packetMac)
|
2018-10-31 12:27:31 +03:00
|
|
|
{
|
|
|
|
BYTE macData[16];
|
|
|
|
|
|
|
|
return license_rc4_with_licenseKey(license, input, len, target) &&
|
2019-11-06 17:24:51 +03:00
|
|
|
security_mac_data(license->MacSaltKey, target->data, len, macData) &&
|
|
|
|
(memcmp(packetMac, macData, sizeof(macData)) == 0);
|
2018-10-31 12:27:31 +03:00
|
|
|
}
|
|
|
|
|
2011-07-12 04:46:03 +04:00
|
|
|
/**
|
2011-07-12 09:16:59 +04:00
|
|
|
* Read Product Information (PRODUCT_INFO).\n
|
|
|
|
* @msdn{cc241915}
|
2011-07-12 04:46:03 +04:00
|
|
|
* @param s stream
|
|
|
|
* @param productInfo product information
|
|
|
|
*/
|
|
|
|
|
2014-02-17 03:02:50 +04:00
|
|
|
BOOL license_read_product_info(wStream* s, LICENSE_PRODUCT_INFO* productInfo)
|
2011-07-12 04:46:03 +04:00
|
|
|
{
|
2013-04-30 06:35:15 +04:00
|
|
|
if (Stream_GetRemainingLength(s) < 8)
|
2013-01-12 17:49:01 +04:00
|
|
|
return FALSE;
|
2013-02-05 08:57:04 +04:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
Stream_Read_UINT32(s, productInfo->dwVersion); /* dwVersion (4 bytes) */
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Read_UINT32(s, productInfo->cbCompanyName); /* cbCompanyName (4 bytes) */
|
2013-02-05 08:57:04 +04:00
|
|
|
|
2017-05-29 11:50:22 +03:00
|
|
|
/* Name must be >0, but there is no upper limit defined, use UINT32_MAX */
|
|
|
|
if ((productInfo->cbCompanyName < 2) || (productInfo->cbCompanyName % 2 != 0))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (Stream_GetRemainingLength(s) < productInfo->cbCompanyName)
|
2013-01-12 17:49:01 +04:00
|
|
|
return FALSE;
|
2011-07-12 04:46:03 +04:00
|
|
|
|
2017-05-29 11:50:22 +03:00
|
|
|
productInfo->pbProductId = NULL;
|
2019-11-06 17:24:51 +03:00
|
|
|
productInfo->pbCompanyName = (BYTE*)malloc(productInfo->cbCompanyName);
|
2015-06-16 16:42:07 +03:00
|
|
|
if (!productInfo->pbCompanyName)
|
|
|
|
return FALSE;
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Read(s, productInfo->pbCompanyName, productInfo->cbCompanyName);
|
2017-05-29 11:50:22 +03:00
|
|
|
|
|
|
|
if (Stream_GetRemainingLength(s) < 4)
|
|
|
|
goto out_fail;
|
|
|
|
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Read_UINT32(s, productInfo->cbProductId); /* cbProductId (4 bytes) */
|
2013-02-05 08:57:04 +04:00
|
|
|
|
2017-05-29 11:50:22 +03:00
|
|
|
if ((productInfo->cbProductId < 2) || (productInfo->cbProductId % 2 != 0))
|
|
|
|
goto out_fail;
|
|
|
|
|
2013-04-30 06:35:15 +04:00
|
|
|
if (Stream_GetRemainingLength(s) < productInfo->cbProductId)
|
2015-06-16 16:42:07 +03:00
|
|
|
goto out_fail;
|
2011-07-12 04:46:03 +04:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
productInfo->pbProductId = (BYTE*)malloc(productInfo->cbProductId);
|
2015-06-16 16:42:07 +03:00
|
|
|
if (!productInfo->pbProductId)
|
|
|
|
goto out_fail;
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Read(s, productInfo->pbProductId, productInfo->cbProductId);
|
2013-01-12 17:49:01 +04:00
|
|
|
return TRUE;
|
2018-10-31 12:27:31 +03:00
|
|
|
|
2015-06-16 16:42:07 +03:00
|
|
|
out_fail:
|
|
|
|
free(productInfo->pbCompanyName);
|
2017-05-29 11:50:22 +03:00
|
|
|
free(productInfo->pbProductId);
|
2015-06-16 16:42:07 +03:00
|
|
|
productInfo->pbCompanyName = NULL;
|
2017-05-29 11:50:22 +03:00
|
|
|
productInfo->pbProductId = NULL;
|
2015-06-16 16:42:07 +03:00
|
|
|
return FALSE;
|
2011-07-12 04:46:03 +04:00
|
|
|
}
|
|
|
|
|
2011-07-12 09:16:59 +04:00
|
|
|
/**
|
2014-02-17 03:02:50 +04:00
|
|
|
* Allocate New Product Information (LICENSE_PRODUCT_INFO).\n
|
2011-07-12 09:16:59 +04:00
|
|
|
* @msdn{cc241915}
|
|
|
|
* @return new product information
|
|
|
|
*/
|
|
|
|
|
2014-02-17 03:02:50 +04:00
|
|
|
LICENSE_PRODUCT_INFO* license_new_product_info()
|
2011-07-12 09:16:59 +04:00
|
|
|
{
|
2014-02-17 03:02:50 +04:00
|
|
|
LICENSE_PRODUCT_INFO* productInfo;
|
2019-11-06 17:24:51 +03:00
|
|
|
productInfo = (LICENSE_PRODUCT_INFO*)malloc(sizeof(LICENSE_PRODUCT_INFO));
|
2015-06-16 16:42:07 +03:00
|
|
|
if (!productInfo)
|
|
|
|
return NULL;
|
2011-07-12 09:16:59 +04:00
|
|
|
productInfo->dwVersion = 0;
|
|
|
|
productInfo->cbCompanyName = 0;
|
|
|
|
productInfo->pbCompanyName = NULL;
|
|
|
|
productInfo->cbProductId = 0;
|
|
|
|
productInfo->pbProductId = NULL;
|
|
|
|
return productInfo;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2014-02-17 03:02:50 +04:00
|
|
|
* Free Product Information (LICENSE_PRODUCT_INFO).\n
|
2011-07-12 09:16:59 +04:00
|
|
|
* @msdn{cc241915}
|
|
|
|
* @param productInfo product information
|
|
|
|
*/
|
|
|
|
|
2014-02-17 03:02:50 +04:00
|
|
|
void license_free_product_info(LICENSE_PRODUCT_INFO* productInfo)
|
2011-07-12 09:16:59 +04:00
|
|
|
{
|
2015-05-11 10:07:39 +03:00
|
|
|
if (productInfo)
|
|
|
|
{
|
2012-10-09 07:21:26 +04:00
|
|
|
free(productInfo->pbCompanyName);
|
|
|
|
free(productInfo->pbProductId);
|
2015-05-11 10:07:39 +03:00
|
|
|
free(productInfo);
|
|
|
|
}
|
2011-07-12 09:16:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Read License Binary Blob (LICENSE_BINARY_BLOB).\n
|
|
|
|
* @msdn{cc240481}
|
|
|
|
* @param s stream
|
|
|
|
* @param blob license binary blob
|
|
|
|
*/
|
|
|
|
|
2013-03-21 23:19:33 +04:00
|
|
|
BOOL license_read_binary_blob(wStream* s, LICENSE_BLOB* blob)
|
2011-07-12 04:46:03 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
UINT16 wBlobType;
|
2011-07-12 04:46:03 +04:00
|
|
|
|
2013-04-30 06:35:15 +04:00
|
|
|
if (Stream_GetRemainingLength(s) < 4)
|
2013-01-12 17:49:01 +04:00
|
|
|
return FALSE;
|
2013-02-05 08:57:04 +04:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
Stream_Read_UINT16(s, wBlobType); /* wBlobType (2 bytes) */
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Read_UINT16(s, blob->length); /* wBlobLen (2 bytes) */
|
2011-09-17 00:37:20 +04:00
|
|
|
|
2013-04-30 06:35:15 +04:00
|
|
|
if (Stream_GetRemainingLength(s) < blob->length)
|
2013-01-12 17:49:01 +04:00
|
|
|
return FALSE;
|
|
|
|
|
2011-09-17 00:37:20 +04:00
|
|
|
/*
|
2014-08-19 20:26:39 +04:00
|
|
|
* Server can choose to not send data by setting length to 0.
|
|
|
|
* If so, it may not bother to set the type, so shortcut the warning
|
|
|
|
*/
|
2013-02-05 10:07:34 +04:00
|
|
|
if ((blob->type != BB_ANY_BLOB) && (blob->length == 0))
|
2013-01-12 17:49:01 +04:00
|
|
|
return TRUE;
|
2011-07-12 04:46:03 +04:00
|
|
|
|
2013-02-05 10:07:34 +04:00
|
|
|
if ((blob->type != wBlobType) && (blob->type != BB_ANY_BLOB))
|
2011-07-12 04:46:03 +04:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_ERR(TAG,
|
|
|
|
"license binary blob type (0x%" PRIx16 ") does not match expected type (0x%" PRIx16
|
|
|
|
").",
|
|
|
|
wBlobType, blob->type);
|
2011-07-12 04:46:03 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
blob->type = wBlobType;
|
2019-11-06 17:24:51 +03:00
|
|
|
blob->data = (BYTE*)malloc(blob->length);
|
2015-06-16 16:42:07 +03:00
|
|
|
if (!blob->data)
|
|
|
|
return FALSE;
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Read(s, blob->data, blob->length); /* blobData */
|
2013-01-12 17:49:01 +04:00
|
|
|
return TRUE;
|
2011-07-12 04:46:03 +04:00
|
|
|
}
|
|
|
|
|
2011-07-12 09:16:59 +04:00
|
|
|
/**
|
|
|
|
* Write License Binary Blob (LICENSE_BINARY_BLOB).\n
|
|
|
|
* @msdn{cc240481}
|
|
|
|
* @param s stream
|
|
|
|
* @param blob license binary blob
|
|
|
|
*/
|
|
|
|
|
2018-10-31 12:27:31 +03:00
|
|
|
BOOL license_write_binary_blob(wStream* s, const LICENSE_BLOB* blob)
|
2011-07-12 09:16:59 +04:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
if (!Stream_EnsureRemainingCapacity(s, blob->length + 4))
|
2015-04-01 12:38:53 +03:00
|
|
|
return FALSE;
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
Stream_Write_UINT16(s, blob->type); /* wBlobType (2 bytes) */
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Write_UINT16(s, blob->length); /* wBlobLen (2 bytes) */
|
2011-07-12 09:16:59 +04:00
|
|
|
|
|
|
|
if (blob->length > 0)
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Write(s, blob->data, blob->length); /* blobData */
|
2015-04-01 12:38:53 +03:00
|
|
|
return TRUE;
|
2011-07-12 09:16:59 +04:00
|
|
|
}
|
|
|
|
|
2019-11-20 13:30:14 +03:00
|
|
|
static BOOL license_write_encrypted_premaster_secret_blob(wStream* s, const LICENSE_BLOB* blob,
|
|
|
|
UINT32 ModulusLength)
|
2011-07-15 09:11:09 +04:00
|
|
|
{
|
2013-02-05 18:30:53 +04:00
|
|
|
UINT32 length;
|
|
|
|
length = ModulusLength + 8;
|
|
|
|
|
|
|
|
if (blob->length > ModulusLength)
|
|
|
|
{
|
2014-09-12 16:36:29 +04:00
|
|
|
WLog_ERR(TAG, "license_write_encrypted_premaster_secret_blob: invalid blob");
|
2015-04-01 12:38:53 +03:00
|
|
|
return FALSE;
|
2013-02-05 18:30:53 +04:00
|
|
|
}
|
2011-09-19 19:44:13 +04:00
|
|
|
|
2015-04-01 12:38:53 +03:00
|
|
|
if (!Stream_EnsureRemainingCapacity(s, length + 4))
|
|
|
|
return FALSE;
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Write_UINT16(s, blob->type); /* wBlobType (2 bytes) */
|
2019-11-06 17:24:51 +03:00
|
|
|
Stream_Write_UINT16(s, length); /* wBlobLen (2 bytes) */
|
2011-07-15 09:11:09 +04:00
|
|
|
|
|
|
|
if (blob->length > 0)
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Write(s, blob->data, blob->length); /* blobData */
|
2011-07-15 09:11:09 +04:00
|
|
|
|
2013-05-09 00:27:21 +04:00
|
|
|
Stream_Zero(s, length - blob->length);
|
2015-04-01 12:38:53 +03:00
|
|
|
return TRUE;
|
2011-07-15 09:11:09 +04:00
|
|
|
}
|
|
|
|
|
2011-07-12 09:16:59 +04:00
|
|
|
/**
|
|
|
|
* Allocate New License Binary Blob (LICENSE_BINARY_BLOB).\n
|
|
|
|
* @msdn{cc240481}
|
|
|
|
* @return new license binary blob
|
|
|
|
*/
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
LICENSE_BLOB* license_new_binary_blob(UINT16 type)
|
2011-07-12 09:16:59 +04:00
|
|
|
{
|
|
|
|
LICENSE_BLOB* blob;
|
2019-11-06 17:24:51 +03:00
|
|
|
blob = (LICENSE_BLOB*)calloc(1, sizeof(LICENSE_BLOB));
|
2015-06-16 16:42:07 +03:00
|
|
|
if (blob)
|
|
|
|
blob->type = type;
|
2011-07-12 09:16:59 +04:00
|
|
|
return blob;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Free License Binary Blob (LICENSE_BINARY_BLOB).\n
|
|
|
|
* @msdn{cc240481}
|
|
|
|
* @param blob license binary blob
|
|
|
|
*/
|
|
|
|
|
|
|
|
void license_free_binary_blob(LICENSE_BLOB* blob)
|
|
|
|
{
|
2015-05-11 10:07:39 +03:00
|
|
|
if (blob)
|
|
|
|
{
|
2012-10-09 07:21:26 +04:00
|
|
|
free(blob->data);
|
2015-05-11 10:07:39 +03:00
|
|
|
free(blob);
|
|
|
|
}
|
2011-07-12 09:16:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Read License Scope List (SCOPE_LIST).\n
|
|
|
|
* @msdn{cc241916}
|
|
|
|
* @param s stream
|
|
|
|
* @param scopeList scope list
|
|
|
|
*/
|
|
|
|
|
2013-03-21 23:19:33 +04:00
|
|
|
BOOL license_read_scope_list(wStream* s, SCOPE_LIST* scopeList)
|
2011-07-12 04:46:03 +04:00
|
|
|
{
|
2012-10-09 11:26:39 +04:00
|
|
|
UINT32 i;
|
|
|
|
UINT32 scopeCount;
|
2011-07-12 04:46:03 +04:00
|
|
|
|
2013-04-30 06:35:15 +04:00
|
|
|
if (Stream_GetRemainingLength(s) < 4)
|
2013-01-12 17:49:01 +04:00
|
|
|
return FALSE;
|
2013-02-05 08:57:04 +04:00
|
|
|
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Read_UINT32(s, scopeCount); /* ScopeCount (4 bytes) */
|
2014-08-19 20:26:39 +04:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
if (scopeCount > Stream_GetRemainingLength(s) / 4) /* every blob is at least 4 bytes */
|
2014-01-08 19:12:51 +04:00
|
|
|
return FALSE;
|
2011-07-12 04:46:03 +04:00
|
|
|
|
|
|
|
scopeList->count = scopeCount;
|
2019-11-06 17:24:51 +03:00
|
|
|
scopeList->array = (LICENSE_BLOB*)calloc(scopeCount, sizeof(LICENSE_BLOB));
|
2015-06-16 16:42:07 +03:00
|
|
|
if (!scopeList->array)
|
|
|
|
return FALSE;
|
2011-07-12 04:46:03 +04:00
|
|
|
|
|
|
|
/* ScopeArray */
|
|
|
|
for (i = 0; i < scopeCount; i++)
|
|
|
|
{
|
|
|
|
scopeList->array[i].type = BB_SCOPE_BLOB;
|
2013-02-05 08:57:04 +04:00
|
|
|
|
|
|
|
if (!license_read_binary_blob(s, &scopeList->array[i]))
|
2013-01-12 17:49:01 +04:00
|
|
|
return FALSE;
|
2011-07-12 04:46:03 +04:00
|
|
|
}
|
2013-02-05 08:57:04 +04:00
|
|
|
|
2013-01-12 17:49:01 +04:00
|
|
|
return TRUE;
|
2011-07-12 04:46:03 +04:00
|
|
|
}
|
|
|
|
|
2011-07-12 09:16:59 +04:00
|
|
|
/**
|
|
|
|
* Allocate New License Scope List (SCOPE_LIST).\n
|
|
|
|
* @msdn{cc241916}
|
|
|
|
* @return new scope list
|
|
|
|
*/
|
|
|
|
|
|
|
|
SCOPE_LIST* license_new_scope_list()
|
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
return (SCOPE_LIST*)calloc(1, sizeof(SCOPE_LIST));
|
2011-07-12 09:16:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Free License Scope List (SCOPE_LIST).\n
|
|
|
|
* @msdn{cc241916}
|
|
|
|
* @param scopeList scope list
|
|
|
|
*/
|
|
|
|
|
|
|
|
void license_free_scope_list(SCOPE_LIST* scopeList)
|
|
|
|
{
|
2012-10-09 11:26:39 +04:00
|
|
|
UINT32 i;
|
2011-07-12 09:16:59 +04:00
|
|
|
|
2015-06-16 16:42:07 +03:00
|
|
|
if (!scopeList)
|
|
|
|
return;
|
|
|
|
|
2012-05-16 17:29:35 +04:00
|
|
|
/*
|
|
|
|
* We must NOT call license_free_binary_blob() on each scopelist->array[i] element,
|
2012-10-09 07:21:26 +04:00
|
|
|
* because scopelist->array was allocated at once, by a single call to malloc. The elements
|
2012-05-16 17:29:35 +04:00
|
|
|
* it contains cannot be deallocated separately then.
|
|
|
|
* To make things clean, we must deallocate each scopelist->array[].data,
|
2012-10-09 07:21:26 +04:00
|
|
|
* and finish by deallocating scopelist->array with a single call to free().
|
2012-05-16 17:29:35 +04:00
|
|
|
*/
|
2011-07-12 09:16:59 +04:00
|
|
|
for (i = 0; i < scopeList->count; i++)
|
|
|
|
{
|
2012-10-09 07:21:26 +04:00
|
|
|
free(scopeList->array[i].data);
|
2011-07-12 09:16:59 +04:00
|
|
|
}
|
|
|
|
|
2013-02-05 08:57:04 +04:00
|
|
|
free(scopeList->array);
|
2012-10-09 07:21:26 +04:00
|
|
|
free(scopeList);
|
2011-07-12 09:16:59 +04:00
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL license_send_client_info(rdpLicense* license, const LICENSE_BLOB* calBlob, BYTE* signature)
|
2018-10-31 12:27:31 +03:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
wStream* s;
|
2018-10-31 12:27:31 +03:00
|
|
|
|
|
|
|
/* Client License Information: */
|
|
|
|
UINT32 PlatformId = PLATFORMID;
|
|
|
|
UINT32 PreferredKeyExchangeAlg = KEY_EXCHANGE_ALG_RSA;
|
|
|
|
|
|
|
|
s = license_send_stream_init(license);
|
|
|
|
if (!s)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
Stream_Write_UINT32(s, PreferredKeyExchangeAlg); /* PreferredKeyExchangeAlg (4 bytes) */
|
2019-11-06 17:24:51 +03:00
|
|
|
Stream_Write_UINT32(s, PlatformId); /* PlatformId (4 bytes) */
|
2018-10-31 12:27:31 +03:00
|
|
|
|
|
|
|
/* ClientRandom (32 bytes) */
|
|
|
|
Stream_Write(s, license->ClientRandom, CLIENT_RANDOM_LENGTH);
|
|
|
|
|
|
|
|
/* Licensing Binary Blob with EncryptedPreMasterSecret: */
|
2019-11-06 17:24:51 +03:00
|
|
|
if (!license_write_encrypted_premaster_secret_blob(s, license->EncryptedPremasterSecret,
|
|
|
|
license->ModulusLength))
|
2018-10-31 12:27:31 +03:00
|
|
|
goto error;
|
|
|
|
|
|
|
|
/* Licensing Binary Blob with LicenseInfo: */
|
|
|
|
if (!license_write_binary_blob(s, calBlob))
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
/* Licensing Binary Blob with EncryptedHWID */
|
|
|
|
if (!license_write_binary_blob(s, license->EncryptedHardwareId))
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
/* MACData */
|
|
|
|
Stream_Write(s, signature, LICENSING_ENCRYPTION_KEY_LENGTH);
|
|
|
|
|
|
|
|
return license_send(license, s, LICENSE_INFO);
|
|
|
|
|
|
|
|
error:
|
|
|
|
Stream_Release(s);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2011-07-12 04:46:03 +04:00
|
|
|
/**
|
|
|
|
* Read a LICENSE_REQUEST packet.\n
|
|
|
|
* @msdn{cc241914}
|
2011-07-12 09:16:59 +04:00
|
|
|
* @param license license module
|
2011-07-12 04:46:03 +04:00
|
|
|
* @param s stream
|
|
|
|
*/
|
|
|
|
|
2013-03-21 23:19:33 +04:00
|
|
|
BOOL license_read_license_request_packet(rdpLicense* license, wStream* s)
|
2011-07-12 04:46:03 +04:00
|
|
|
{
|
|
|
|
/* ServerRandom (32 bytes) */
|
2013-04-30 06:35:15 +04:00
|
|
|
if (Stream_GetRemainingLength(s) < 32)
|
2013-01-12 17:49:01 +04:00
|
|
|
return FALSE;
|
2013-01-25 22:47:56 +04:00
|
|
|
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Read(s, license->ServerRandom, 32);
|
2011-07-12 04:46:03 +04:00
|
|
|
|
|
|
|
/* ProductInfo */
|
2013-02-05 08:57:04 +04:00
|
|
|
if (!license_read_product_info(s, license->ProductInfo))
|
2013-01-14 02:37:50 +04:00
|
|
|
return FALSE;
|
2011-07-12 04:46:03 +04:00
|
|
|
|
|
|
|
/* KeyExchangeList */
|
2013-02-05 08:57:04 +04:00
|
|
|
if (!license_read_binary_blob(s, license->KeyExchangeList))
|
2013-01-14 02:37:50 +04:00
|
|
|
return FALSE;
|
2011-07-12 04:46:03 +04:00
|
|
|
|
|
|
|
/* ServerCertificate */
|
2013-02-05 08:57:04 +04:00
|
|
|
if (!license_read_binary_blob(s, license->ServerCertificate))
|
2013-01-14 02:37:50 +04:00
|
|
|
return FALSE;
|
2011-07-12 04:46:03 +04:00
|
|
|
|
|
|
|
/* ScopeList */
|
2013-02-05 08:57:04 +04:00
|
|
|
if (!license_read_scope_list(s, license->ScopeList))
|
2013-01-14 02:37:50 +04:00
|
|
|
return FALSE;
|
2011-07-13 02:18:24 +04:00
|
|
|
|
|
|
|
/* Parse Server Certificate */
|
2019-11-06 17:24:51 +03:00
|
|
|
if (!certificate_read_server_certificate(license->certificate, license->ServerCertificate->data,
|
|
|
|
license->ServerCertificate->length))
|
2013-01-14 02:37:50 +04:00
|
|
|
return FALSE;
|
2011-07-13 18:21:12 +04:00
|
|
|
|
2015-04-01 12:11:37 +03:00
|
|
|
if (!license_generate_keys(license) || !license_generate_hwid(license) ||
|
2019-11-06 17:24:51 +03:00
|
|
|
!license_encrypt_premaster_secret(license))
|
2015-04-01 12:11:37 +03:00
|
|
|
return FALSE;
|
|
|
|
|
2013-02-05 08:57:04 +04:00
|
|
|
#ifdef WITH_DEBUG_LICENSE
|
2014-09-12 16:36:29 +04:00
|
|
|
WLog_DBG(TAG, "ServerRandom:");
|
2014-08-19 20:26:39 +04:00
|
|
|
winpr_HexDump(TAG, WLOG_DEBUG, license->ServerRandom, 32);
|
2013-02-05 08:57:04 +04:00
|
|
|
license_print_product_info(license->ProductInfo);
|
2013-02-05 09:19:57 +04:00
|
|
|
license_print_scope_list(license->ScopeList);
|
2013-02-05 08:57:04 +04:00
|
|
|
#endif
|
2013-01-12 17:49:01 +04:00
|
|
|
return TRUE;
|
2011-07-12 04:46:03 +04:00
|
|
|
}
|
|
|
|
|
2018-10-31 12:27:31 +03:00
|
|
|
/*
|
2011-07-12 04:46:03 +04:00
|
|
|
* Read a PLATFORM_CHALLENGE packet.\n
|
|
|
|
* @msdn{cc241921}
|
2011-07-12 09:16:59 +04:00
|
|
|
* @param license license module
|
2011-07-12 04:46:03 +04:00
|
|
|
* @param s stream
|
|
|
|
*/
|
|
|
|
|
2013-03-21 23:19:33 +04:00
|
|
|
BOOL license_read_platform_challenge_packet(rdpLicense* license, wStream* s)
|
2011-07-12 04:46:03 +04:00
|
|
|
{
|
2018-10-31 12:27:31 +03:00
|
|
|
BYTE macData[16];
|
2013-02-05 09:19:57 +04:00
|
|
|
UINT32 ConnectFlags = 0;
|
2018-10-31 12:27:31 +03:00
|
|
|
|
2011-07-12 09:57:09 +04:00
|
|
|
DEBUG_LICENSE("Receiving Platform Challenge Packet");
|
2013-02-05 01:39:05 +04:00
|
|
|
|
2013-04-30 06:35:15 +04:00
|
|
|
if (Stream_GetRemainingLength(s) < 4)
|
2013-01-12 17:49:01 +04:00
|
|
|
return FALSE;
|
2013-02-05 01:39:05 +04:00
|
|
|
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Read_UINT32(s, ConnectFlags); /* ConnectFlags, Reserved (4 bytes) */
|
2018-10-31 12:27:31 +03:00
|
|
|
|
2011-07-12 09:57:09 +04:00
|
|
|
/* EncryptedPlatformChallenge */
|
2013-02-05 08:57:04 +04:00
|
|
|
license->EncryptedPlatformChallenge->type = BB_ANY_BLOB;
|
2017-05-29 11:50:22 +03:00
|
|
|
if (!license_read_binary_blob(s, license->EncryptedPlatformChallenge))
|
|
|
|
return FALSE;
|
2013-02-05 08:57:04 +04:00
|
|
|
license->EncryptedPlatformChallenge->type = BB_ENCRYPTED_DATA_BLOB;
|
2011-07-13 05:43:52 +04:00
|
|
|
|
2018-10-31 12:27:31 +03:00
|
|
|
/* MACData (16 bytes) */
|
2013-04-30 06:35:15 +04:00
|
|
|
if (Stream_GetRemainingLength(s) < 16)
|
2013-01-12 17:49:01 +04:00
|
|
|
return FALSE;
|
2011-07-13 18:21:12 +04:00
|
|
|
|
2018-10-31 12:27:31 +03:00
|
|
|
Stream_Read(s, macData, 16);
|
|
|
|
if (!license_decrypt_and_check_MAC(license, license->EncryptedPlatformChallenge->data,
|
2019-11-06 17:24:51 +03:00
|
|
|
license->EncryptedPlatformChallenge->length,
|
|
|
|
license->PlatformChallenge, macData))
|
2015-04-07 22:06:53 +03:00
|
|
|
return FALSE;
|
2018-10-02 14:18:13 +03:00
|
|
|
|
2013-02-05 09:19:57 +04:00
|
|
|
#ifdef WITH_DEBUG_LICENSE
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_DBG(TAG, "ConnectFlags: 0x%08" PRIX32 "", ConnectFlags);
|
2014-09-12 16:36:29 +04:00
|
|
|
WLog_DBG(TAG, "EncryptedPlatformChallenge:");
|
2018-10-02 14:18:13 +03:00
|
|
|
winpr_HexDump(TAG, WLOG_DEBUG, license->EncryptedPlatformChallenge->data,
|
2019-11-06 17:24:51 +03:00
|
|
|
license->EncryptedPlatformChallenge->length);
|
2014-09-12 16:36:29 +04:00
|
|
|
WLog_DBG(TAG, "PlatformChallenge:");
|
2018-10-02 14:18:13 +03:00
|
|
|
winpr_HexDump(TAG, WLOG_DEBUG, license->PlatformChallenge->data,
|
2019-11-06 17:24:51 +03:00
|
|
|
license->PlatformChallenge->length);
|
2014-09-12 16:36:29 +04:00
|
|
|
WLog_DBG(TAG, "MacData:");
|
2018-10-31 12:27:31 +03:00
|
|
|
winpr_HexDump(TAG, WLOG_DEBUG, macData, 16);
|
2013-02-05 09:19:57 +04:00
|
|
|
#endif
|
2015-04-07 22:06:53 +03:00
|
|
|
return TRUE;
|
2011-07-12 04:46:03 +04:00
|
|
|
}
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
static BOOL license_read_encrypted_blob(const rdpLicense* license, wStream* s, LICENSE_BLOB* target)
|
2011-07-12 04:46:03 +04:00
|
|
|
{
|
2018-10-31 12:27:31 +03:00
|
|
|
UINT16 wBlobType, wBlobLen;
|
2019-11-06 17:24:51 +03:00
|
|
|
BYTE* encryptedData;
|
2018-10-31 12:27:31 +03:00
|
|
|
|
|
|
|
if (Stream_GetRemainingLength(s) < 4)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
Stream_Read_UINT16(s, wBlobType);
|
|
|
|
if (wBlobType != BB_ENCRYPTED_DATA_BLOB)
|
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_DBG(
|
|
|
|
TAG,
|
|
|
|
"expecting BB_ENCRYPTED_DATA_BLOB blob, probably a windows 2003 server, continuing...");
|
2018-10-31 12:27:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Stream_Read_UINT16(s, wBlobLen);
|
|
|
|
|
|
|
|
if (Stream_GetRemainingLength(s) < wBlobLen)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
encryptedData = Stream_Pointer(s);
|
|
|
|
Stream_Seek(s, wBlobLen);
|
|
|
|
return license_rc4_with_licenseKey(license, encryptedData, wBlobLen, target);
|
2011-07-12 04:46:03 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-10-31 12:27:31 +03:00
|
|
|
* Read a NEW_LICENSE packet.\n
|
|
|
|
* @msdn{cc241926}
|
2011-07-12 09:16:59 +04:00
|
|
|
* @param license license module
|
2011-07-12 04:46:03 +04:00
|
|
|
* @param s stream
|
|
|
|
*/
|
|
|
|
|
2018-10-31 12:27:31 +03:00
|
|
|
BOOL license_read_new_or_upgrade_license_packet(rdpLicense* license, wStream* s)
|
2011-07-12 04:46:03 +04:00
|
|
|
{
|
2018-10-31 12:27:31 +03:00
|
|
|
UINT32 os_major;
|
|
|
|
UINT32 os_minor;
|
|
|
|
UINT32 cbScope, cbCompanyName, cbProductId, cbLicenseInfo;
|
2019-11-06 17:24:51 +03:00
|
|
|
wStream* licenseStream = NULL;
|
2018-10-31 12:27:31 +03:00
|
|
|
BOOL ret = FALSE;
|
|
|
|
BYTE computedMac[16];
|
2019-11-06 17:24:51 +03:00
|
|
|
LICENSE_BLOB* calBlob;
|
2018-10-31 12:27:31 +03:00
|
|
|
|
|
|
|
DEBUG_LICENSE("Receiving Server New/Upgrade License Packet");
|
|
|
|
|
|
|
|
calBlob = license_new_binary_blob(BB_DATA_BLOB);
|
|
|
|
if (!calBlob)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* EncryptedLicenseInfo */
|
|
|
|
if (!license_read_encrypted_blob(license, s, calBlob))
|
|
|
|
goto out_free_blob;
|
|
|
|
|
|
|
|
/* compute MAC and check it */
|
|
|
|
if (Stream_GetRemainingLength(s) < 16)
|
|
|
|
goto out_free_blob;
|
|
|
|
|
|
|
|
if (!security_mac_data(license->MacSaltKey, calBlob->data, calBlob->length, computedMac))
|
|
|
|
goto out_free_blob;
|
|
|
|
|
|
|
|
if (memcmp(computedMac, Stream_Pointer(s), sizeof(computedMac)) != 0)
|
|
|
|
{
|
|
|
|
WLog_ERR(TAG, "new or upgrade license MAC mismatch");
|
|
|
|
goto out_free_blob;
|
|
|
|
}
|
|
|
|
|
|
|
|
licenseStream = Stream_New(calBlob->data, calBlob->length);
|
|
|
|
if (!licenseStream)
|
|
|
|
goto out_free_blob;
|
|
|
|
|
|
|
|
Stream_Read_UINT16(licenseStream, os_minor);
|
|
|
|
Stream_Read_UINT16(licenseStream, os_major);
|
|
|
|
|
|
|
|
/* Scope */
|
|
|
|
Stream_Read_UINT32(licenseStream, cbScope);
|
|
|
|
if (Stream_GetRemainingLength(licenseStream) < cbScope)
|
|
|
|
goto out_free_stream;
|
|
|
|
#ifdef WITH_DEBUG_LICENSE
|
|
|
|
WLog_DBG(TAG, "Scope:");
|
|
|
|
winpr_HexDump(TAG, WLOG_DEBUG, Stream_Pointer(licenseStream), cbScope);
|
|
|
|
#endif
|
|
|
|
Stream_Seek(licenseStream, cbScope);
|
|
|
|
|
|
|
|
/* CompanyName */
|
|
|
|
Stream_Read_UINT32(licenseStream, cbCompanyName);
|
|
|
|
if (Stream_GetRemainingLength(licenseStream) < cbCompanyName)
|
|
|
|
goto out_free_stream;
|
|
|
|
#ifdef WITH_DEBUG_LICENSE
|
|
|
|
WLog_DBG(TAG, "Company name:");
|
|
|
|
winpr_HexDump(TAG, WLOG_DEBUG, Stream_Pointer(licenseStream), cbCompanyName);
|
|
|
|
#endif
|
|
|
|
Stream_Seek(licenseStream, cbCompanyName);
|
|
|
|
|
|
|
|
/* productId */
|
|
|
|
Stream_Read_UINT32(licenseStream, cbProductId);
|
|
|
|
if (Stream_GetRemainingLength(licenseStream) < cbProductId)
|
|
|
|
goto out_free_stream;
|
|
|
|
#ifdef WITH_DEBUG_LICENSE
|
|
|
|
WLog_DBG(TAG, "Product id:");
|
|
|
|
winpr_HexDump(TAG, WLOG_DEBUG, Stream_Pointer(licenseStream), cbProductId);
|
|
|
|
#endif
|
|
|
|
Stream_Seek(licenseStream, cbProductId);
|
|
|
|
|
|
|
|
/* licenseInfo */
|
|
|
|
Stream_Read_UINT32(licenseStream, cbLicenseInfo);
|
|
|
|
if (Stream_GetRemainingLength(licenseStream) < cbLicenseInfo)
|
|
|
|
goto out_free_stream;
|
|
|
|
|
2011-08-08 22:32:18 +04:00
|
|
|
license->state = LICENSE_STATE_COMPLETED;
|
2019-11-06 17:24:51 +03:00
|
|
|
|
2019-04-08 10:42:02 +03:00
|
|
|
ret = TRUE;
|
|
|
|
if (!license->rdp->settings->OldLicenseBehaviour)
|
2019-11-06 17:24:51 +03:00
|
|
|
ret = saveCal(license->rdp->settings, Stream_Pointer(licenseStream), cbLicenseInfo,
|
|
|
|
license->rdp->settings->ClientHostname);
|
2018-10-31 12:27:31 +03:00
|
|
|
|
|
|
|
out_free_stream:
|
|
|
|
Stream_Free(licenseStream, FALSE);
|
|
|
|
out_free_blob:
|
|
|
|
license_free_binary_blob(calBlob);
|
|
|
|
return ret;
|
2011-07-12 04:46:03 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Read an ERROR_ALERT packet.\n
|
|
|
|
* @msdn{cc240482}
|
2011-07-12 09:16:59 +04:00
|
|
|
* @param license license module
|
2011-07-12 04:46:03 +04:00
|
|
|
* @param s stream
|
|
|
|
*/
|
|
|
|
|
2013-03-21 23:19:33 +04:00
|
|
|
BOOL license_read_error_alert_packet(rdpLicense* license, wStream* s)
|
2011-07-12 04:46:03 +04:00
|
|
|
{
|
2012-10-09 11:26:39 +04:00
|
|
|
UINT32 dwErrorCode;
|
|
|
|
UINT32 dwStateTransition;
|
2011-07-15 10:02:09 +04:00
|
|
|
|
2013-04-30 06:35:15 +04:00
|
|
|
if (Stream_GetRemainingLength(s) < 8)
|
2013-01-12 17:49:01 +04:00
|
|
|
return FALSE;
|
2013-02-05 01:39:05 +04:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
Stream_Read_UINT32(s, dwErrorCode); /* dwErrorCode (4 bytes) */
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Read_UINT32(s, dwStateTransition); /* dwStateTransition (4 bytes) */
|
2013-02-05 01:39:05 +04:00
|
|
|
|
2013-02-05 08:57:04 +04:00
|
|
|
if (!license_read_binary_blob(s, license->ErrorInfo)) /* bbErrorInfo */
|
2013-01-12 17:49:01 +04:00
|
|
|
return FALSE;
|
2011-07-15 10:02:09 +04:00
|
|
|
|
2011-08-08 22:51:03 +04:00
|
|
|
#ifdef WITH_DEBUG_LICENSE
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_DBG(TAG, "dwErrorCode: %s, dwStateTransition: %s", error_codes[dwErrorCode],
|
|
|
|
state_transitions[dwStateTransition]);
|
2011-08-08 22:51:03 +04:00
|
|
|
#endif
|
2011-07-15 10:02:09 +04:00
|
|
|
|
|
|
|
if (dwErrorCode == STATUS_VALID_CLIENT)
|
|
|
|
{
|
|
|
|
license->state = LICENSE_STATE_COMPLETED;
|
2013-01-12 17:49:01 +04:00
|
|
|
return TRUE;
|
2011-07-15 10:02:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (dwStateTransition)
|
|
|
|
{
|
|
|
|
case ST_TOTAL_ABORT:
|
|
|
|
license->state = LICENSE_STATE_ABORTED;
|
|
|
|
break;
|
|
|
|
case ST_NO_TRANSITION:
|
|
|
|
license->state = LICENSE_STATE_COMPLETED;
|
|
|
|
break;
|
|
|
|
case ST_RESET_PHASE_TO_START:
|
|
|
|
license->state = LICENSE_STATE_AWAIT;
|
|
|
|
break;
|
|
|
|
case ST_RESEND_LAST_MESSAGE:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2013-02-05 01:39:05 +04:00
|
|
|
|
2013-01-12 17:49:01 +04:00
|
|
|
return TRUE;
|
2011-07-12 04:46:03 +04:00
|
|
|
}
|
|
|
|
|
2011-07-12 09:16:59 +04:00
|
|
|
/**
|
|
|
|
* Write a NEW_LICENSE_REQUEST packet.\n
|
|
|
|
* @msdn{cc241918}
|
|
|
|
* @param license license module
|
|
|
|
* @param s stream
|
|
|
|
*/
|
|
|
|
|
2015-04-01 12:38:53 +03:00
|
|
|
BOOL license_write_new_license_request_packet(rdpLicense* license, wStream* s)
|
2011-07-12 09:16:59 +04:00
|
|
|
{
|
2018-10-31 12:27:31 +03:00
|
|
|
UINT32 PlatformId = PLATFORMID;
|
2013-02-05 10:07:34 +04:00
|
|
|
UINT32 PreferredKeyExchangeAlg = KEY_EXCHANGE_ALG_RSA;
|
2018-10-31 12:27:31 +03:00
|
|
|
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Write_UINT32(s, PreferredKeyExchangeAlg); /* PreferredKeyExchangeAlg (4 bytes) */
|
2019-11-06 17:24:51 +03:00
|
|
|
Stream_Write_UINT32(s, PlatformId); /* PlatformId (4 bytes) */
|
|
|
|
Stream_Write(s, license->ClientRandom, 32); /* ClientRandom (32 bytes) */
|
2018-10-31 12:27:31 +03:00
|
|
|
|
|
|
|
if (/* EncryptedPremasterSecret */
|
2019-11-06 17:24:51 +03:00
|
|
|
!license_write_encrypted_premaster_secret_blob(s, license->EncryptedPremasterSecret,
|
|
|
|
license->ModulusLength) ||
|
|
|
|
/* ClientUserName */
|
|
|
|
!license_write_binary_blob(s, license->ClientUserName) ||
|
|
|
|
/* ClientMachineName */
|
|
|
|
!license_write_binary_blob(s, license->ClientMachineName))
|
2015-04-01 12:38:53 +03:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2013-02-05 10:07:34 +04:00
|
|
|
#ifdef WITH_DEBUG_LICENSE
|
2019-11-06 17:24:51 +03:00
|
|
|
WLog_DBG(TAG, "PreferredKeyExchangeAlg: 0x%08" PRIX32 "", PreferredKeyExchangeAlg);
|
2014-09-12 16:36:29 +04:00
|
|
|
WLog_DBG(TAG, "ClientRandom:");
|
2014-08-19 20:26:39 +04:00
|
|
|
winpr_HexDump(TAG, WLOG_DEBUG, license->ClientRandom, 32);
|
2014-09-12 16:36:29 +04:00
|
|
|
WLog_DBG(TAG, "EncryptedPremasterSecret");
|
2018-10-02 14:18:13 +03:00
|
|
|
winpr_HexDump(TAG, WLOG_DEBUG, license->EncryptedPremasterSecret->data,
|
2019-11-06 17:24:51 +03:00
|
|
|
license->EncryptedPremasterSecret->length);
|
|
|
|
WLog_DBG(TAG, "ClientUserName (%" PRIu16 "): %s", license->ClientUserName->length,
|
|
|
|
(char*)license->ClientUserName->data);
|
|
|
|
WLog_DBG(TAG, "ClientMachineName (%" PRIu16 "): %s", license->ClientMachineName->length,
|
|
|
|
(char*)license->ClientMachineName->data);
|
2013-02-05 10:07:34 +04:00
|
|
|
#endif
|
2015-04-01 12:38:53 +03:00
|
|
|
return TRUE;
|
2011-07-12 09:16:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send a NEW_LICENSE_REQUEST packet.\n
|
|
|
|
* @msdn{cc241918}
|
|
|
|
* @param license license module
|
|
|
|
*/
|
|
|
|
|
2018-10-31 12:27:31 +03:00
|
|
|
BOOL license_answer_license_request(rdpLicense* license)
|
2011-07-12 09:16:59 +04:00
|
|
|
{
|
2018-10-31 12:27:31 +03:00
|
|
|
wStream* s;
|
2019-11-06 17:24:51 +03:00
|
|
|
BYTE* license_data = NULL;
|
2018-10-31 12:27:31 +03:00
|
|
|
int license_size = 0;
|
|
|
|
BOOL status;
|
2011-10-05 03:06:39 +04:00
|
|
|
char* username;
|
2018-10-31 12:27:31 +03:00
|
|
|
|
|
|
|
if (!license->rdp->settings->OldLicenseBehaviour)
|
2019-11-06 17:24:51 +03:00
|
|
|
license_data = loadCalFile(license->rdp->settings, license->rdp->settings->ClientHostname,
|
|
|
|
&license_size);
|
2018-10-31 12:27:31 +03:00
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
if (license_data)
|
2018-10-31 12:27:31 +03:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
LICENSE_BLOB* calBlob = NULL;
|
2018-10-31 12:27:31 +03:00
|
|
|
BYTE signature[LICENSING_ENCRYPTION_KEY_LENGTH];
|
|
|
|
|
|
|
|
DEBUG_LICENSE("Sending Saved License Packet");
|
|
|
|
|
|
|
|
license->EncryptedHardwareId->type = BB_ENCRYPTED_DATA_BLOB;
|
2019-11-06 17:24:51 +03:00
|
|
|
if (!license_encrypt_and_MAC(license, license->HardwareId, HWID_LENGTH,
|
|
|
|
license->EncryptedHardwareId, signature))
|
2018-11-29 14:14:20 +03:00
|
|
|
{
|
|
|
|
free(license_data);
|
2018-10-31 12:27:31 +03:00
|
|
|
return FALSE;
|
2018-11-29 14:14:20 +03:00
|
|
|
}
|
2018-10-31 12:27:31 +03:00
|
|
|
|
|
|
|
calBlob = license_new_binary_blob(BB_DATA_BLOB);
|
|
|
|
if (!calBlob)
|
2018-11-29 14:14:20 +03:00
|
|
|
{
|
|
|
|
free(license_data);
|
2018-10-31 12:27:31 +03:00
|
|
|
return FALSE;
|
2018-11-29 14:14:20 +03:00
|
|
|
}
|
2018-10-31 12:27:31 +03:00
|
|
|
calBlob->data = license_data;
|
|
|
|
calBlob->length = license_size;
|
|
|
|
|
|
|
|
status = license_send_client_info(license, calBlob, signature);
|
|
|
|
license_free_binary_blob(calBlob);
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2013-02-05 10:07:34 +04:00
|
|
|
DEBUG_LICENSE("Sending New License Packet");
|
2011-07-12 09:16:59 +04:00
|
|
|
|
2018-10-31 12:27:31 +03:00
|
|
|
s = license_send_stream_init(license);
|
|
|
|
if (!s)
|
|
|
|
return FALSE;
|
2012-11-08 00:13:14 +04:00
|
|
|
if (license->rdp->settings->Username != NULL)
|
|
|
|
username = license->rdp->settings->Username;
|
2011-10-05 03:06:39 +04:00
|
|
|
else
|
|
|
|
username = "username";
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
license->ClientUserName->data = (BYTE*)username;
|
2013-02-05 08:57:04 +04:00
|
|
|
license->ClientUserName->length = strlen(username) + 1;
|
2019-11-06 17:24:51 +03:00
|
|
|
license->ClientMachineName->data = (BYTE*)license->rdp->settings->ClientHostname;
|
2013-02-05 08:57:04 +04:00
|
|
|
license->ClientMachineName->length = strlen(license->rdp->settings->ClientHostname) + 1;
|
2018-10-02 14:18:13 +03:00
|
|
|
|
2018-10-31 12:27:31 +03:00
|
|
|
status = license_write_new_license_request_packet(license, s);
|
2015-04-01 12:38:53 +03:00
|
|
|
|
2013-02-05 08:57:04 +04:00
|
|
|
license->ClientUserName->data = NULL;
|
|
|
|
license->ClientUserName->length = 0;
|
|
|
|
license->ClientMachineName->data = NULL;
|
|
|
|
license->ClientMachineName->length = 0;
|
2018-10-31 12:27:31 +03:00
|
|
|
|
|
|
|
if (!status)
|
|
|
|
{
|
|
|
|
Stream_Release(s);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return license_send(license, s, NEW_LICENSE_REQUEST);
|
2011-07-12 09:57:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Write Client Challenge Response Packet.\n
|
|
|
|
* @msdn{cc241922}
|
|
|
|
* @param license license module
|
|
|
|
* @param s stream
|
2011-07-13 18:21:12 +04:00
|
|
|
* @param mac_data signature
|
2011-07-12 09:57:09 +04:00
|
|
|
*/
|
|
|
|
|
2019-11-06 17:24:51 +03:00
|
|
|
BOOL license_write_platform_challenge_response_packet(rdpLicense* license, wStream* s,
|
|
|
|
const BYTE* macData)
|
2011-07-12 09:57:09 +04:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
if (!license_write_binary_blob(
|
|
|
|
s,
|
|
|
|
license->EncryptedPlatformChallengeResponse) || /* EncryptedPlatformChallengeResponse */
|
|
|
|
!license_write_binary_blob(s, license->EncryptedHardwareId) || /* EncryptedHWID */
|
|
|
|
!Stream_EnsureRemainingCapacity(s, 16))
|
2015-04-01 12:38:53 +03:00
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Write(s, macData, 16); /* MACData */
|
2015-04-01 12:38:53 +03:00
|
|
|
return TRUE;
|
2011-07-12 09:57:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send Client Challenge Response Packet.\n
|
|
|
|
* @msdn{cc241922}
|
|
|
|
* @param license license module
|
|
|
|
*/
|
|
|
|
|
2015-04-01 12:11:37 +03:00
|
|
|
BOOL license_send_platform_challenge_response_packet(rdpLicense* license)
|
2011-07-12 09:57:09 +04:00
|
|
|
{
|
2018-10-31 12:27:31 +03:00
|
|
|
wStream* s;
|
2019-11-06 17:24:51 +03:00
|
|
|
wStream* challengeRespData;
|
2018-10-31 12:27:31 +03:00
|
|
|
int length;
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* buffer;
|
2018-10-31 12:27:31 +03:00
|
|
|
BYTE mac_data[16];
|
2015-04-01 12:11:37 +03:00
|
|
|
BOOL status;
|
2018-10-31 12:27:31 +03:00
|
|
|
|
2011-07-12 09:57:09 +04:00
|
|
|
DEBUG_LICENSE("Sending Platform Challenge Response Packet");
|
2018-10-31 12:27:31 +03:00
|
|
|
s = license_send_stream_init(license);
|
2013-02-05 08:57:04 +04:00
|
|
|
license->EncryptedPlatformChallenge->type = BB_DATA_BLOB;
|
2018-10-02 14:18:13 +03:00
|
|
|
|
2018-10-31 12:27:31 +03:00
|
|
|
/* prepare the PLATFORM_CHALLENGE_RESPONSE_DATA */
|
|
|
|
challengeRespData = Stream_New(NULL, 8 + license->PlatformChallenge->length);
|
|
|
|
if (!challengeRespData)
|
2016-02-28 13:12:17 +03:00
|
|
|
return FALSE;
|
2019-11-06 17:24:51 +03:00
|
|
|
Stream_Write_UINT16(challengeRespData, 0x0100); /* wVersion */
|
2018-10-31 12:27:31 +03:00
|
|
|
Stream_Write_UINT16(challengeRespData, OTHER_PLATFORM_CHALLENGE_TYPE); /* wClientType */
|
2019-11-06 17:24:51 +03:00
|
|
|
Stream_Write_UINT16(challengeRespData, LICENSE_DETAIL_DETAIL); /* wLicenseDetailLevel */
|
2018-10-31 12:27:31 +03:00
|
|
|
Stream_Write_UINT16(challengeRespData, license->PlatformChallenge->length); /* cbChallenge */
|
2019-11-06 17:24:51 +03:00
|
|
|
Stream_Write(challengeRespData, license->PlatformChallenge->data,
|
|
|
|
license->PlatformChallenge->length); /* pbChallenge */
|
2018-10-31 12:27:31 +03:00
|
|
|
Stream_SealLength(challengeRespData);
|
|
|
|
|
|
|
|
/* compute MAC of PLATFORM_CHALLENGE_RESPONSE_DATA + HWID */
|
|
|
|
length = Stream_Length(challengeRespData) + HWID_LENGTH;
|
2019-11-06 17:24:51 +03:00
|
|
|
buffer = (BYTE*)malloc(length);
|
2015-04-07 22:06:53 +03:00
|
|
|
if (!buffer)
|
2018-10-31 12:27:31 +03:00
|
|
|
{
|
|
|
|
Stream_Free(challengeRespData, TRUE);
|
2015-04-07 22:06:53 +03:00
|
|
|
return FALSE;
|
2018-10-31 12:27:31 +03:00
|
|
|
}
|
2015-04-07 22:06:53 +03:00
|
|
|
|
2018-10-31 12:27:31 +03:00
|
|
|
CopyMemory(buffer, Stream_Buffer(challengeRespData), Stream_Length(challengeRespData));
|
|
|
|
CopyMemory(&buffer[Stream_Length(challengeRespData)], license->HardwareId, HWID_LENGTH);
|
|
|
|
status = security_mac_data(license->MacSaltKey, buffer, length, mac_data);
|
|
|
|
free(buffer);
|
2018-10-02 14:18:13 +03:00
|
|
|
|
2016-02-28 13:12:17 +03:00
|
|
|
if (!status)
|
|
|
|
{
|
2018-10-31 12:27:31 +03:00
|
|
|
Stream_Free(challengeRespData, TRUE);
|
2016-02-28 13:12:17 +03:00
|
|
|
return FALSE;
|
|
|
|
}
|
2016-02-24 19:04:03 +03:00
|
|
|
|
2018-10-31 12:27:31 +03:00
|
|
|
license->EncryptedHardwareId->type = BB_ENCRYPTED_DATA_BLOB;
|
2019-11-06 17:24:51 +03:00
|
|
|
if (!license_rc4_with_licenseKey(license, license->HardwareId, HWID_LENGTH,
|
|
|
|
license->EncryptedHardwareId))
|
2018-10-31 12:27:31 +03:00
|
|
|
{
|
|
|
|
Stream_Free(challengeRespData, TRUE);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
status = license_rc4_with_licenseKey(license, Stream_Buffer(challengeRespData),
|
2019-11-06 17:24:51 +03:00
|
|
|
Stream_Length(challengeRespData),
|
|
|
|
license->EncryptedPlatformChallengeResponse);
|
2018-10-31 12:27:31 +03:00
|
|
|
Stream_Free(challengeRespData, TRUE);
|
|
|
|
if (!status)
|
|
|
|
return FALSE;
|
|
|
|
|
2011-08-08 22:51:03 +04:00
|
|
|
#ifdef WITH_DEBUG_LICENSE
|
2014-09-12 16:36:29 +04:00
|
|
|
WLog_DBG(TAG, "LicensingEncryptionKey:");
|
2014-08-19 20:26:39 +04:00
|
|
|
winpr_HexDump(TAG, WLOG_DEBUG, license->LicensingEncryptionKey, 16);
|
2014-09-12 16:36:29 +04:00
|
|
|
WLog_DBG(TAG, "HardwareId:");
|
2014-08-19 20:26:39 +04:00
|
|
|
winpr_HexDump(TAG, WLOG_DEBUG, license->HardwareId, HWID_LENGTH);
|
2014-09-12 16:36:29 +04:00
|
|
|
WLog_DBG(TAG, "EncryptedHardwareId:");
|
2014-08-19 20:26:39 +04:00
|
|
|
winpr_HexDump(TAG, WLOG_DEBUG, license->EncryptedHardwareId->data, HWID_LENGTH);
|
2011-08-08 22:51:03 +04:00
|
|
|
#endif
|
2018-10-31 12:27:31 +03:00
|
|
|
if (license_write_platform_challenge_response_packet(license, s, mac_data))
|
|
|
|
return license_send(license, s, PLATFORM_CHALLENGE_RESPONSE);
|
|
|
|
|
|
|
|
Stream_Release(s);
|
|
|
|
return FALSE;
|
2011-07-12 09:16:59 +04:00
|
|
|
}
|
|
|
|
|
2011-08-20 17:41:40 +04:00
|
|
|
/**
|
|
|
|
* Send Server License Error - Valid Client Packet.\n
|
|
|
|
* @msdn{cc241922}
|
|
|
|
* @param license license module
|
|
|
|
*/
|
|
|
|
|
2018-11-01 13:02:54 +03:00
|
|
|
BOOL license_send_valid_client_error_packet(rdpRdp* rdp)
|
2011-08-20 17:41:40 +04:00
|
|
|
{
|
2019-11-06 17:24:51 +03:00
|
|
|
rdpLicense* license = rdp->license;
|
2018-10-02 14:18:13 +03:00
|
|
|
wStream* s = license_send_stream_init(license);
|
2015-04-01 12:38:53 +03:00
|
|
|
if (!s)
|
|
|
|
return FALSE;
|
|
|
|
|
2013-02-05 10:07:34 +04:00
|
|
|
DEBUG_LICENSE("Sending Error Alert Packet");
|
2018-10-31 12:27:31 +03:00
|
|
|
Stream_Write_UINT32(s, STATUS_VALID_CLIENT); /* dwErrorCode */
|
2019-11-06 17:24:51 +03:00
|
|
|
Stream_Write_UINT32(s, ST_NO_TRANSITION); /* dwStateTransition */
|
2018-10-31 12:27:31 +03:00
|
|
|
|
|
|
|
if (license_write_binary_blob(s, license->ErrorInfo))
|
|
|
|
return license_send(license, s, ERROR_ALERT);
|
|
|
|
|
|
|
|
Stream_Release(s);
|
|
|
|
return FALSE;
|
2011-08-20 17:41:40 +04:00
|
|
|
}
|
|
|
|
|
2011-07-12 04:46:03 +04:00
|
|
|
/**
|
|
|
|
* Instantiate new license module.
|
2011-07-13 02:18:24 +04:00
|
|
|
* @param rdp RDP module
|
2011-07-12 04:46:03 +04:00
|
|
|
* @return new license module
|
|
|
|
*/
|
|
|
|
|
2011-07-12 09:16:59 +04:00
|
|
|
rdpLicense* license_new(rdpRdp* rdp)
|
2011-07-12 04:46:03 +04:00
|
|
|
{
|
|
|
|
rdpLicense* license;
|
2019-11-06 17:24:51 +03:00
|
|
|
license = (rdpLicense*)calloc(1, sizeof(rdpLicense));
|
2015-06-16 16:42:07 +03:00
|
|
|
if (!license)
|
|
|
|
return NULL;
|
2011-07-12 04:46:03 +04:00
|
|
|
|
2015-06-16 16:42:07 +03:00
|
|
|
license->rdp = rdp;
|
|
|
|
license->state = LICENSE_STATE_AWAIT;
|
|
|
|
if (!(license->certificate = certificate_new()))
|
|
|
|
goto out_error;
|
|
|
|
if (!(license->ProductInfo = license_new_product_info()))
|
|
|
|
goto out_error;
|
|
|
|
if (!(license->ErrorInfo = license_new_binary_blob(BB_ERROR_BLOB)))
|
|
|
|
goto out_error;
|
|
|
|
if (!(license->KeyExchangeList = license_new_binary_blob(BB_KEY_EXCHG_ALG_BLOB)))
|
|
|
|
goto out_error;
|
|
|
|
if (!(license->ServerCertificate = license_new_binary_blob(BB_CERTIFICATE_BLOB)))
|
|
|
|
goto out_error;
|
|
|
|
if (!(license->ClientUserName = license_new_binary_blob(BB_CLIENT_USER_NAME_BLOB)))
|
|
|
|
goto out_error;
|
|
|
|
if (!(license->ClientMachineName = license_new_binary_blob(BB_CLIENT_MACHINE_NAME_BLOB)))
|
|
|
|
goto out_error;
|
|
|
|
if (!(license->PlatformChallenge = license_new_binary_blob(BB_ANY_BLOB)))
|
|
|
|
goto out_error;
|
|
|
|
if (!(license->EncryptedPlatformChallenge = license_new_binary_blob(BB_ANY_BLOB)))
|
|
|
|
goto out_error;
|
2019-11-06 17:24:51 +03:00
|
|
|
if (!(license->EncryptedPlatformChallengeResponse =
|
|
|
|
license_new_binary_blob(BB_ENCRYPTED_DATA_BLOB)))
|
2018-10-31 12:27:31 +03:00
|
|
|
goto out_error;
|
2015-06-16 16:42:07 +03:00
|
|
|
if (!(license->EncryptedPremasterSecret = license_new_binary_blob(BB_ANY_BLOB)))
|
|
|
|
goto out_error;
|
|
|
|
if (!(license->EncryptedHardwareId = license_new_binary_blob(BB_ENCRYPTED_DATA_BLOB)))
|
|
|
|
goto out_error;
|
|
|
|
if (!(license->ScopeList = license_new_scope_list()))
|
|
|
|
goto out_error;
|
|
|
|
|
|
|
|
license_generate_randoms(license);
|
2018-10-31 12:27:31 +03:00
|
|
|
|
2011-07-12 04:46:03 +04:00
|
|
|
return license;
|
2018-10-31 12:27:31 +03:00
|
|
|
|
2015-06-16 16:42:07 +03:00
|
|
|
out_error:
|
|
|
|
license_free(license);
|
|
|
|
return NULL;
|
2011-07-12 04:46:03 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Free license module.
|
|
|
|
* @param license license module to be freed
|
|
|
|
*/
|
|
|
|
|
|
|
|
void license_free(rdpLicense* license)
|
|
|
|
{
|
2013-02-05 09:19:57 +04:00
|
|
|
if (license)
|
2011-07-12 04:46:03 +04:00
|
|
|
{
|
2013-02-05 18:30:53 +04:00
|
|
|
free(license->Modulus);
|
2011-07-13 02:18:24 +04:00
|
|
|
certificate_free(license->certificate);
|
2013-02-05 08:57:04 +04:00
|
|
|
license_free_product_info(license->ProductInfo);
|
|
|
|
license_free_binary_blob(license->ErrorInfo);
|
|
|
|
license_free_binary_blob(license->KeyExchangeList);
|
|
|
|
license_free_binary_blob(license->ServerCertificate);
|
|
|
|
license_free_binary_blob(license->ClientUserName);
|
|
|
|
license_free_binary_blob(license->ClientMachineName);
|
|
|
|
license_free_binary_blob(license->PlatformChallenge);
|
|
|
|
license_free_binary_blob(license->EncryptedPlatformChallenge);
|
2018-10-31 12:27:31 +03:00
|
|
|
license_free_binary_blob(license->EncryptedPlatformChallengeResponse);
|
2013-02-05 08:57:04 +04:00
|
|
|
license_free_binary_blob(license->EncryptedPremasterSecret);
|
|
|
|
license_free_binary_blob(license->EncryptedHardwareId);
|
|
|
|
license_free_scope_list(license->ScopeList);
|
2012-10-09 07:21:26 +04:00
|
|
|
free(license);
|
2011-07-12 04:46:03 +04:00
|
|
|
}
|
|
|
|
}
|