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>
|
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>
|
|
|
|
|
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"
|
|
|
|
|
2013-02-05 18:46:25 +04:00
|
|
|
//#define LICENSE_NULL_CLIENT_RANDOM 1
|
|
|
|
#define LICENSE_NULL_PREMASTER_SECRET 1
|
2013-02-05 08:57:04 +04:00
|
|
|
|
2011-11-30 05:15:50 +04:00
|
|
|
#ifdef WITH_DEBUG_LICENSE
|
2013-02-05 08:57:04 +04:00
|
|
|
|
2011-11-30 05:15:50 +04:00
|
|
|
static const char* const LICENSE_MESSAGE_STRINGS[] =
|
2011-08-08 07:59:28 +04:00
|
|
|
{
|
|
|
|
"",
|
|
|
|
"License Request",
|
|
|
|
"Platform Challenge",
|
|
|
|
"New License",
|
|
|
|
"Upgrade License",
|
|
|
|
"", "", "", "", "", "",
|
|
|
|
"", "", "", "", "", "",
|
|
|
|
"",
|
|
|
|
"License Info",
|
|
|
|
"New License Request",
|
|
|
|
"",
|
|
|
|
"Platform Challenge Response",
|
|
|
|
"", "", "", "", "", "", "", "", "",
|
|
|
|
"Error Alert"
|
|
|
|
};
|
|
|
|
|
2011-11-30 05:15:50 +04:00
|
|
|
static const char* const error_codes[] =
|
2011-07-15 10:02:09 +04:00
|
|
|
{
|
|
|
|
"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"
|
|
|
|
};
|
|
|
|
|
2011-11-30 05:15:50 +04:00
|
|
|
static const char* const state_transitions[] =
|
2011-07-15 10:02:09 +04:00
|
|
|
{
|
|
|
|
"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
|
|
|
|
|
|
|
void license_print_product_info(PRODUCT_INFO* productInfo)
|
|
|
|
{
|
|
|
|
char* CompanyName = NULL;
|
|
|
|
char* ProductId = NULL;
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "ProductInfo:\n");
|
|
|
|
fprintf(stderr, "\tdwVersion: 0x%08X\n", productInfo->dwVersion);
|
|
|
|
fprintf(stderr, "\tCompanyName: %s\n", CompanyName);
|
|
|
|
fprintf(stderr, "\tProductId: %s\n", ProductId);
|
2013-02-05 08:57:04 +04:00
|
|
|
|
|
|
|
free(CompanyName);
|
|
|
|
free(ProductId);
|
|
|
|
}
|
|
|
|
|
2013-02-05 09:19:57 +04:00
|
|
|
void license_print_scope_list(SCOPE_LIST* scopeList)
|
|
|
|
{
|
|
|
|
int index;
|
|
|
|
LICENSE_BLOB* scope;
|
|
|
|
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "ScopeList (%d):\n", scopeList->count);
|
2013-02-05 09:19:57 +04:00
|
|
|
|
|
|
|
for (index = 0; index < scopeList->count; index++)
|
|
|
|
{
|
|
|
|
scope = &scopeList->array[index];
|
2013-07-15 12:20:24 +04:00
|
|
|
fprintf(stderr, "\t%s\n", (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
|
|
|
|
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
|
|
|
*/
|
|
|
|
|
2013-03-21 23:19:33 +04:00
|
|
|
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
|
|
|
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Read_UINT8(s, *bMsgType); /* bMsgType (1 byte) */
|
|
|
|
Stream_Read_UINT8(s, *flags); /* flags (1 byte) */
|
|
|
|
Stream_Read_UINT16(s, *wMsgSize); /* wMsgSize (2 bytes) */
|
2013-02-05 08:57:04 +04:00
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
|
2013-03-21 23:19:33 +04:00
|
|
|
void license_write_preamble(wStream* s, BYTE bMsgType, BYTE flags, UINT16 wMsgSize)
|
2011-07-12 09:16:59 +04:00
|
|
|
{
|
|
|
|
/* preamble (4 bytes) */
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Write_UINT8(s, bMsgType); /* bMsgType (1 byte) */
|
|
|
|
Stream_Write_UINT8(s, flags); /* flags (1 byte) */
|
|
|
|
Stream_Write_UINT16(s, wMsgSize); /* wMsgSize (2 bytes) */
|
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;
|
2013-02-05 08:57:04 +04:00
|
|
|
|
2013-05-15 21:17:29 +04:00
|
|
|
s = Stream_New(NULL, 4096);
|
2013-04-30 06:35:15 +04:00
|
|
|
Stream_Seek(s, LICENSE_PACKET_HEADER_MAX_LENGTH);
|
2013-02-05 08:57:04 +04:00
|
|
|
|
2011-07-12 09:16:59 +04:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send an RDP licensing packet.\n
|
|
|
|
* @msdn{cc240479}
|
|
|
|
* @param license license module
|
|
|
|
* @param s stream
|
|
|
|
*/
|
|
|
|
|
2013-03-21 23:19:33 +04:00
|
|
|
BOOL license_send(rdpLicense* license, wStream* s, BYTE type)
|
2011-07-12 09:16:59 +04:00
|
|
|
{
|
|
|
|
int length;
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE flags;
|
|
|
|
UINT16 wMsgSize;
|
|
|
|
UINT16 sec_flags;
|
2011-07-12 09:16:59 +04:00
|
|
|
|
2011-08-08 22:51:03 +04:00
|
|
|
DEBUG_LICENSE("Sending %s Packet", LICENSE_MESSAGE_STRINGS[type & 0x1F]);
|
2011-08-08 07:59:28 +04:00
|
|
|
|
2013-04-30 06:35:15 +04:00
|
|
|
length = Stream_GetPosition(s);
|
|
|
|
Stream_SetPosition(s, 0);
|
2011-07-12 09:16:59 +04:00
|
|
|
|
|
|
|
sec_flags = SEC_LICENSE_PKT;
|
2012-01-25 14:12:37 +04:00
|
|
|
wMsgSize = length - LICENSE_PACKET_HEADER_MAX_LENGTH + 4;
|
2013-02-05 08:57:04 +04:00
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
flags = PREAMBLE_VERSION_3_0;
|
2011-07-12 09:16:59 +04:00
|
|
|
|
2011-08-03 08:34:55 +04:00
|
|
|
rdp_write_header(license->rdp, s, length, MCS_GLOBAL_CHANNEL_ID);
|
2011-07-12 09:16:59 +04:00
|
|
|
rdp_write_security_header(s, sec_flags);
|
2011-07-15 10:02:09 +04:00
|
|
|
license_write_preamble(s, type, flags, wMsgSize);
|
2011-07-12 09:16:59 +04:00
|
|
|
|
2011-08-08 22:51:03 +04:00
|
|
|
#ifdef WITH_DEBUG_LICENSE
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "Sending %s Packet, length %d\n", LICENSE_MESSAGE_STRINGS[type & 0x1F], wMsgSize);
|
2013-05-15 20:14:26 +04:00
|
|
|
winpr_HexDump(Stream_Pointer(s) - 4, wMsgSize);
|
2011-08-08 22:51:03 +04:00
|
|
|
#endif
|
2011-08-08 20:57:19 +04:00
|
|
|
|
2013-04-30 06:35:15 +04:00
|
|
|
Stream_SetPosition(s, length);
|
2013-05-15 20:14:26 +04:00
|
|
|
Stream_SealLength(s);
|
2013-02-05 08:57:04 +04:00
|
|
|
|
2011-08-22 11:03:58 +04:00
|
|
|
if (transport_write(license->rdp->transport, s) < 0)
|
2012-10-09 10:31:28 +04:00
|
|
|
return FALSE;
|
2011-08-22 11:03:58 +04:00
|
|
|
|
2013-05-15 21:17:29 +04:00
|
|
|
Stream_Free(s, TRUE);
|
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
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-03-21 23:19:33 +04:00
|
|
|
BOOL 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;
|
|
|
|
UINT16 securityFlags;
|
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))
|
|
|
|
{
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "Incorrect RDP header.\n");
|
2012-10-09 10:31:28 +04:00
|
|
|
return FALSE;
|
2011-08-22 11:03:58 +04:00
|
|
|
}
|
|
|
|
|
2013-02-05 01:39:05 +04:00
|
|
|
if (!rdp_read_security_header(s, &securityFlags))
|
2013-01-12 17:49:01 +04:00
|
|
|
return FALSE;
|
2013-01-25 22:47:56 +04:00
|
|
|
|
2013-02-05 01:39:05 +04:00
|
|
|
if (securityFlags & SEC_ENCRYPT)
|
|
|
|
{
|
|
|
|
if (!rdp_decrypt(license->rdp, s, length - 4, securityFlags))
|
|
|
|
{
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "rdp_decrypt failed\n");
|
2013-02-05 01:39:05 +04:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(securityFlags & SEC_LICENSE_PKT))
|
2011-08-22 11:03:58 +04:00
|
|
|
{
|
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
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
if (rdp_recv_out_of_sequence_pdu(license->rdp, s) != TRUE)
|
2011-09-03 05:34:51 +04:00
|
|
|
{
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "Unexpected license packet.\n");
|
2012-10-09 10:31:28 +04:00
|
|
|
return FALSE;
|
2011-09-03 05:34:51 +04:00
|
|
|
}
|
2013-02-05 01:39:05 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
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-01-12 17:49:01 +04:00
|
|
|
return FALSE;
|
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))
|
|
|
|
return FALSE;
|
2011-07-12 09:16:59 +04:00
|
|
|
license_send_new_license_request_packet(license);
|
2011-07-12 04:46:03 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PLATFORM_CHALLENGE:
|
2013-01-14 02:37:50 +04:00
|
|
|
if (!license_read_platform_challenge_packet(license, s))
|
|
|
|
return FALSE;
|
2011-07-12 09:57:09 +04:00
|
|
|
license_send_platform_challenge_response_packet(license);
|
2011-07-12 04:46:03 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case NEW_LICENSE:
|
|
|
|
license_read_new_license_packet(license, s);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UPGRADE_LICENSE:
|
|
|
|
license_read_upgrade_license_packet(license, s);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case ERROR_ALERT:
|
2013-01-14 02:37:50 +04:00
|
|
|
if (!license_read_error_alert_packet(license, s))
|
|
|
|
return FALSE;
|
2011-07-12 04:46:03 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "invalid bMsgType:%d\n", bMsgType);
|
2012-10-09 10:31:28 +04:00
|
|
|
return FALSE;
|
2011-07-12 04:46:03 +04:00
|
|
|
}
|
2011-08-22 11:03:58 +04:00
|
|
|
|
2012-10-09 10:31:28 +04:00
|
|
|
return TRUE;
|
2011-07-12 04:46:03 +04:00
|
|
|
}
|
|
|
|
|
2011-07-13 19:40:19 +04:00
|
|
|
void license_generate_randoms(rdpLicense* license)
|
|
|
|
{
|
2013-02-05 08:57:04 +04:00
|
|
|
ZeroMemory(license->ClientRandom, CLIENT_RANDOM_LENGTH); /* ClientRandom */
|
|
|
|
ZeroMemory(license->PremasterSecret, PREMASTER_SECRET_LENGTH); /* PremasterSecret */
|
2013-02-05 18:46:25 +04:00
|
|
|
|
|
|
|
#ifndef LICENSE_NULL_CLIENT_RANDOM
|
2013-02-05 08:57:04 +04:00
|
|
|
crypto_nonce(license->ClientRandom, CLIENT_RANDOM_LENGTH); /* ClientRandom */
|
2013-02-05 18:46:25 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef LICENSE_NULL_PREMASTER_SECRET
|
2013-02-05 08:57:04 +04:00
|
|
|
crypto_nonce(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
|
|
|
|
*/
|
|
|
|
|
|
|
|
void license_generate_keys(rdpLicense* license)
|
|
|
|
{
|
2013-02-05 08:57:04 +04:00
|
|
|
security_master_secret(license->PremasterSecret, license->ClientRandom,
|
|
|
|
license->ServerRandom, license->MasterSecret); /* MasterSecret */
|
2011-07-12 23:10:43 +04:00
|
|
|
|
2013-02-05 08:57:04 +04:00
|
|
|
security_session_key_blob(license->MasterSecret, license->ClientRandom,
|
|
|
|
license->ServerRandom, license->SessionKeyBlob); /* SessionKeyBlob */
|
2011-07-12 23:10:43 +04:00
|
|
|
|
2013-02-05 08:57:04 +04:00
|
|
|
security_mac_salt_key(license->SessionKeyBlob, license->ClientRandom,
|
|
|
|
license->ServerRandom, license->MacSaltKey); /* MacSaltKey */
|
2011-07-12 23:10:43 +04:00
|
|
|
|
2013-02-05 08:57:04 +04:00
|
|
|
security_licensing_encryption_key(license->SessionKeyBlob, license->ClientRandom,
|
|
|
|
license->ServerRandom, license->LicensingEncryptionKey); /* LicensingEncryptionKey */
|
2011-08-08 20:57:19 +04:00
|
|
|
|
2011-08-08 22:51:03 +04:00
|
|
|
#ifdef WITH_DEBUG_LICENSE
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "ClientRandom:\n");
|
2013-02-05 08:57:04 +04:00
|
|
|
winpr_HexDump(license->ClientRandom, CLIENT_RANDOM_LENGTH);
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "\n");
|
2011-08-08 20:57:19 +04:00
|
|
|
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "ServerRandom:\n");
|
2013-02-05 08:57:04 +04:00
|
|
|
winpr_HexDump(license->ServerRandom, SERVER_RANDOM_LENGTH);
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "\n");
|
2011-08-08 20:57:19 +04:00
|
|
|
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "PremasterSecret:\n");
|
2013-02-05 08:57:04 +04:00
|
|
|
winpr_HexDump(license->PremasterSecret, PREMASTER_SECRET_LENGTH);
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "\n");
|
2011-08-08 20:57:19 +04:00
|
|
|
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "MasterSecret:\n");
|
2013-02-05 08:57:04 +04:00
|
|
|
winpr_HexDump(license->MasterSecret, MASTER_SECRET_LENGTH);
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "\n");
|
2011-08-08 20:57:19 +04:00
|
|
|
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "SessionKeyBlob:\n");
|
2013-02-05 08:57:04 +04:00
|
|
|
winpr_HexDump(license->SessionKeyBlob, SESSION_KEY_BLOB_LENGTH);
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "\n");
|
2011-08-08 20:57:19 +04:00
|
|
|
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "MacSaltKey:\n");
|
2013-02-05 08:57:04 +04:00
|
|
|
winpr_HexDump(license->MacSaltKey, MAC_SALT_KEY_LENGTH);
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "\n");
|
2011-08-08 20:57:19 +04:00
|
|
|
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "LicensingEncryptionKey:\n");
|
2013-02-05 08:57:04 +04:00
|
|
|
winpr_HexDump(license->LicensingEncryptionKey, LICENSING_ENCRYPTION_KEY_LENGTH);
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "\n");
|
2011-08-08 22:51:03 +04:00
|
|
|
#endif
|
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
|
|
|
|
*/
|
|
|
|
|
|
|
|
void license_generate_hwid(rdpLicense* license)
|
|
|
|
{
|
|
|
|
CryptoMd5 md5;
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* mac_address;
|
2011-07-12 10:53:26 +04:00
|
|
|
|
2013-02-05 08:57:04 +04:00
|
|
|
ZeroMemory(license->HardwareId, HWID_LENGTH);
|
2012-11-15 05:46:51 +04:00
|
|
|
mac_address = license->rdp->transport->TcpIn->mac_address;
|
2011-07-12 10:53:26 +04:00
|
|
|
|
|
|
|
md5 = crypto_md5_init();
|
|
|
|
crypto_md5_update(md5, mac_address, 6);
|
2013-02-05 08:57:04 +04:00
|
|
|
crypto_md5_final(md5, &license->HardwareId[HWID_PLATFORM_ID_LENGTH]);
|
2011-07-12 10:53:26 +04:00
|
|
|
}
|
|
|
|
|
2013-02-05 19:02:06 +04:00
|
|
|
void 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;
|
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
|
|
|
{
|
2013-02-05 19:02:06 +04:00
|
|
|
certificate_read_server_certificate(license->certificate,
|
|
|
|
license->rdp->settings->ServerCertificate,
|
|
|
|
license->rdp->settings->ServerCertificateLength);
|
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;
|
|
|
|
license->Modulus = (BYTE*) malloc(ModulusLength);
|
|
|
|
ZeroMemory(license->Modulus, ModulusLength);
|
2013-02-05 19:02:06 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void license_encrypt_premaster_secret(rdpLicense* license)
|
|
|
|
{
|
|
|
|
BYTE* EncryptedPremasterSecret;
|
|
|
|
|
|
|
|
license_get_server_rsa_public_key(license);
|
2011-07-15 09:11:09 +04:00
|
|
|
|
2011-08-08 22:51:03 +04:00
|
|
|
#ifdef WITH_DEBUG_LICENSE
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "Modulus (%d bits):\n", license->ModulusLength * 8);
|
2013-02-05 19:02:06 +04:00
|
|
|
winpr_HexDump(license->Modulus, license->ModulusLength);
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "\n");
|
2011-08-08 20:57:19 +04:00
|
|
|
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "Exponent:\n");
|
2013-02-05 19:02:06 +04:00
|
|
|
winpr_HexDump(license->Exponent, 4);
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "\n");
|
2011-08-08 22:51:03 +04:00
|
|
|
#endif
|
2011-08-08 20:57:19 +04:00
|
|
|
|
2013-02-05 19:02:06 +04:00
|
|
|
EncryptedPremasterSecret = (BYTE*) malloc(license->ModulusLength);
|
|
|
|
ZeroMemory(EncryptedPremasterSecret, license->ModulusLength);
|
2011-07-15 09:11:09 +04:00
|
|
|
|
2013-02-05 18:46:25 +04:00
|
|
|
#ifndef LICENSE_NULL_PREMASTER_SECRET
|
2013-02-05 08:57:04 +04:00
|
|
|
crypto_rsa_public_encrypt(license->PremasterSecret, PREMASTER_SECRET_LENGTH,
|
2013-02-05 19:02:06 +04:00
|
|
|
license->ModulusLength, license->Modulus, license->Exponent, EncryptedPremasterSecret);
|
2013-02-05 18:46:25 +04:00
|
|
|
#endif
|
2011-07-15 09:11:09 +04:00
|
|
|
|
2013-02-05 08:57:04 +04:00
|
|
|
license->EncryptedPremasterSecret->type = BB_RANDOM_BLOB;
|
|
|
|
license->EncryptedPremasterSecret->length = PREMASTER_SECRET_LENGTH;
|
|
|
|
license->EncryptedPremasterSecret->data = EncryptedPremasterSecret;
|
2011-07-15 09:11:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void license_decrypt_platform_challenge(rdpLicense* license)
|
|
|
|
{
|
|
|
|
CryptoRc4 rc4;
|
|
|
|
|
2013-02-05 08:57:04 +04:00
|
|
|
license->PlatformChallenge->data = (BYTE*) malloc(license->EncryptedPlatformChallenge->length);
|
|
|
|
license->PlatformChallenge->length = license->EncryptedPlatformChallenge->length;
|
2011-07-15 09:11:09 +04:00
|
|
|
|
2013-02-05 08:57:04 +04:00
|
|
|
rc4 = crypto_rc4_init(license->LicensingEncryptionKey, LICENSING_ENCRYPTION_KEY_LENGTH);
|
2011-07-15 09:11:09 +04:00
|
|
|
|
2013-02-05 08:57:04 +04:00
|
|
|
crypto_rc4(rc4, license->EncryptedPlatformChallenge->length,
|
|
|
|
license->EncryptedPlatformChallenge->data,
|
|
|
|
license->PlatformChallenge->data);
|
2011-07-15 09:11:09 +04:00
|
|
|
|
|
|
|
crypto_rc4_free(rc4);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
|
2013-03-21 23:19:33 +04:00
|
|
|
BOOL license_read_product_info(wStream* s, 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
|
|
|
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Read_UINT32(s, productInfo->dwVersion); /* dwVersion (4 bytes) */
|
2011-07-12 04:46:03 +04:00
|
|
|
|
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
|
|
|
|
2013-04-30 06:35:15 +04:00
|
|
|
if (Stream_GetRemainingLength(s) < productInfo->cbCompanyName + 4)
|
2013-01-12 17:49:01 +04:00
|
|
|
return FALSE;
|
2011-07-12 04:46:03 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
productInfo->pbCompanyName = (BYTE*) malloc(productInfo->cbCompanyName);
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Read(s, productInfo->pbCompanyName, productInfo->cbCompanyName);
|
2011-07-12 04:46:03 +04:00
|
|
|
|
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
|
|
|
|
2013-04-30 06:35:15 +04:00
|
|
|
if (Stream_GetRemainingLength(s) < productInfo->cbProductId)
|
2013-01-12 17:49:01 +04:00
|
|
|
{
|
|
|
|
free(productInfo->pbCompanyName);
|
|
|
|
productInfo->pbCompanyName = NULL;
|
|
|
|
return FALSE;
|
|
|
|
}
|
2011-07-12 04:46:03 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
productInfo->pbProductId = (BYTE*) malloc(productInfo->cbProductId);
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Read(s, productInfo->pbProductId, productInfo->cbProductId);
|
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 Product Information (PRODUCT_INFO).\n
|
|
|
|
* @msdn{cc241915}
|
|
|
|
* @return new product information
|
|
|
|
*/
|
|
|
|
|
|
|
|
PRODUCT_INFO* license_new_product_info()
|
|
|
|
{
|
|
|
|
PRODUCT_INFO* productInfo;
|
|
|
|
|
2012-10-09 07:21:26 +04:00
|
|
|
productInfo = (PRODUCT_INFO*) malloc(sizeof(PRODUCT_INFO));
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Free Product Information (PRODUCT_INFO).\n
|
|
|
|
* @msdn{cc241915}
|
|
|
|
* @param productInfo product information
|
|
|
|
*/
|
|
|
|
|
|
|
|
void license_free_product_info(PRODUCT_INFO* productInfo)
|
|
|
|
{
|
|
|
|
if (productInfo->pbCompanyName != NULL)
|
2012-10-09 07:21:26 +04:00
|
|
|
free(productInfo->pbCompanyName);
|
2011-07-12 09:16:59 +04:00
|
|
|
|
|
|
|
if (productInfo->pbProductId != NULL)
|
2012-10-09 07:21:26 +04:00
|
|
|
free(productInfo->pbProductId);
|
2011-07-12 09:16:59 +04:00
|
|
|
|
2012-10-09 07:21:26 +04: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
|
|
|
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Read_UINT16(s, wBlobType); /* wBlobType (2 bytes) */
|
|
|
|
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
|
|
|
/*
|
2013-02-05 10:07:34 +04:00
|
|
|
* Server can choose to not send data by setting length to 0.
|
2011-09-17 00:37:20 +04:00
|
|
|
* 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
|
|
|
{
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "license binary blob type (%x) does not match expected type (%x).\n", wBlobType, blob->type);
|
2011-07-12 04:46:03 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
blob->type = wBlobType;
|
2012-10-09 11:01:37 +04:00
|
|
|
blob->data = (BYTE*) malloc(blob->length);
|
2011-07-12 04:46:03 +04:00
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
|
2013-03-21 23:19:33 +04:00
|
|
|
void license_write_binary_blob(wStream* s, LICENSE_BLOB* blob)
|
2011-07-12 09:16:59 +04:00
|
|
|
{
|
2013-05-15 21:17:29 +04:00
|
|
|
Stream_EnsureRemainingCapacity(s, blob->length + 4);
|
|
|
|
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Write_UINT16(s, blob->type); /* wBlobType (2 bytes) */
|
|
|
|
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 */
|
2011-07-12 09:16:59 +04:00
|
|
|
}
|
|
|
|
|
2013-03-21 23:19:33 +04:00
|
|
|
void license_write_encrypted_premaster_secret_blob(wStream* s, 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)
|
|
|
|
{
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "license_write_encrypted_premaster_secret_blob: invalid blob\n");
|
2013-02-05 18:30:53 +04:00
|
|
|
return;
|
|
|
|
}
|
2011-09-19 19:44:13 +04:00
|
|
|
|
2013-05-15 21:17:29 +04:00
|
|
|
Stream_EnsureRemainingCapacity(s, length + 4);
|
|
|
|
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Write_UINT16(s, blob->type); /* wBlobType (2 bytes) */
|
|
|
|
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);
|
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;
|
|
|
|
|
2012-10-09 07:21:26 +04:00
|
|
|
blob = (LICENSE_BLOB*) malloc(sizeof(LICENSE_BLOB));
|
2011-07-12 09:16:59 +04:00
|
|
|
blob->type = type;
|
|
|
|
blob->length = 0;
|
|
|
|
blob->data = NULL;
|
|
|
|
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
if (blob->data != NULL)
|
2012-10-09 07:21:26 +04:00
|
|
|
free(blob->data);
|
2011-07-12 09:16:59 +04:00
|
|
|
|
2012-10-09 07:21:26 +04: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) */
|
2011-07-12 04:46:03 +04:00
|
|
|
|
|
|
|
scopeList->count = scopeCount;
|
2012-10-09 07:21:26 +04:00
|
|
|
scopeList->array = (LICENSE_BLOB*) malloc(sizeof(LICENSE_BLOB) * scopeCount);
|
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()
|
|
|
|
{
|
|
|
|
SCOPE_LIST* scopeList;
|
|
|
|
|
2012-10-09 07:21:26 +04:00
|
|
|
scopeList = (SCOPE_LIST*) malloc(sizeof(SCOPE_LIST));
|
2011-07-12 09:16:59 +04:00
|
|
|
scopeList->count = 0;
|
|
|
|
scopeList->array = NULL;
|
|
|
|
|
|
|
|
return scopeList;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
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
|
|
|
}
|
|
|
|
|
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 */
|
2013-01-14 02:37:50 +04:00
|
|
|
if (!certificate_read_server_certificate(license->certificate,
|
2013-02-05 08:57:04 +04:00
|
|
|
license->ServerCertificate->data, license->ServerCertificate->length) < 0)
|
2013-01-14 02:37:50 +04:00
|
|
|
return FALSE;
|
2011-07-13 18:21:12 +04:00
|
|
|
|
|
|
|
license_generate_keys(license);
|
|
|
|
license_generate_hwid(license);
|
2011-07-15 09:11:09 +04:00
|
|
|
license_encrypt_premaster_secret(license);
|
2013-01-25 22:47:56 +04:00
|
|
|
|
2013-02-05 08:57:04 +04:00
|
|
|
#ifdef WITH_DEBUG_LICENSE
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "ServerRandom:\n");
|
2013-02-05 08:57:04 +04:00
|
|
|
winpr_HexDump(license->ServerRandom, 32);
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "\n");
|
2013-02-05 08:57:04 +04:00
|
|
|
|
|
|
|
license_print_product_info(license->ProductInfo);
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "\n");
|
2013-02-05 09:19:57 +04:00
|
|
|
|
|
|
|
license_print_scope_list(license->ScopeList);
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "\n");
|
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
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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
|
|
|
{
|
2013-02-05 09:19:57 +04:00
|
|
|
BYTE MacData[16];
|
|
|
|
UINT32 ConnectFlags = 0;
|
|
|
|
|
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) */
|
2011-07-12 09:57:09 +04:00
|
|
|
|
|
|
|
/* EncryptedPlatformChallenge */
|
2013-02-05 08:57:04 +04:00
|
|
|
license->EncryptedPlatformChallenge->type = BB_ANY_BLOB;
|
|
|
|
license_read_binary_blob(s, license->EncryptedPlatformChallenge);
|
|
|
|
license->EncryptedPlatformChallenge->type = BB_ENCRYPTED_DATA_BLOB;
|
2011-07-13 05:43:52 +04:00
|
|
|
|
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
|
|
|
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Read(s, MacData, 16); /* MACData (16 bytes) */
|
2013-02-05 09:19:57 +04:00
|
|
|
|
2011-07-15 09:11:09 +04:00
|
|
|
license_decrypt_platform_challenge(license);
|
2013-02-05 01:39:05 +04:00
|
|
|
|
2013-02-05 09:19:57 +04:00
|
|
|
#ifdef WITH_DEBUG_LICENSE
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "ConnectFlags: 0x%08X\n", ConnectFlags);
|
|
|
|
fprintf(stderr, "\n");
|
2013-02-05 09:19:57 +04:00
|
|
|
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "EncryptedPlatformChallenge:\n");
|
2013-07-15 12:20:24 +04:00
|
|
|
winpr_HexDump(license->EncryptedPlatformChallenge->data, license->EncryptedPlatformChallenge->length);
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "\n");
|
2013-02-05 09:19:57 +04:00
|
|
|
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "PlatformChallenge:\n");
|
2013-07-15 12:20:24 +04:00
|
|
|
winpr_HexDump(license->PlatformChallenge->data, license->PlatformChallenge->length);
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "\n");
|
2013-02-05 09:19:57 +04:00
|
|
|
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "MacData:\n");
|
2013-02-05 09:19:57 +04:00
|
|
|
winpr_HexDump(MacData, 16);
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "\n");
|
2013-02-05 09:19:57 +04:00
|
|
|
#endif
|
|
|
|
|
2013-01-12 17:49:01 +04:00
|
|
|
return TRUE;
|
2011-07-12 04:46:03 +04: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
|
|
|
|
*/
|
|
|
|
|
2013-03-21 23:19:33 +04:00
|
|
|
void license_read_new_license_packet(rdpLicense* license, wStream* s)
|
2011-07-12 04:46:03 +04:00
|
|
|
{
|
2011-07-12 09:57:09 +04:00
|
|
|
DEBUG_LICENSE("Receiving New License Packet");
|
2011-08-08 22:32:18 +04:00
|
|
|
license->state = LICENSE_STATE_COMPLETED;
|
2011-07-12 04:46:03 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Read an UPGRADE_LICENSE packet.\n
|
|
|
|
* @msdn{cc241924}
|
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
|
|
|
void license_read_upgrade_license_packet(rdpLicense* license, wStream* s)
|
2011-07-12 04:46:03 +04:00
|
|
|
{
|
2011-07-12 09:57:09 +04:00
|
|
|
DEBUG_LICENSE("Receiving Upgrade License Packet");
|
2011-08-08 22:32:18 +04:00
|
|
|
license->state = LICENSE_STATE_COMPLETED;
|
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
|
|
|
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Read_UINT32(s, dwErrorCode); /* dwErrorCode (4 bytes) */
|
|
|
|
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
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "dwErrorCode: %s, dwStateTransition: %s\n",
|
2011-07-15 10:02:09 +04:00
|
|
|
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
|
|
|
|
*/
|
|
|
|
|
2013-03-21 23:19:33 +04:00
|
|
|
void license_write_new_license_request_packet(rdpLicense* license, wStream* s)
|
2011-07-12 09:16:59 +04:00
|
|
|
{
|
2013-02-05 10:07:34 +04:00
|
|
|
UINT32 PlatformId;
|
|
|
|
UINT32 PreferredKeyExchangeAlg = KEY_EXCHANGE_ALG_RSA;
|
|
|
|
|
|
|
|
PlatformId = CLIENT_OS_ID_WINNT_POST_52 | CLIENT_IMAGE_ID_MICROSOFT;
|
|
|
|
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Write_UINT32(s, PreferredKeyExchangeAlg); /* PreferredKeyExchangeAlg (4 bytes) */
|
|
|
|
Stream_Write_UINT32(s, PlatformId); /* PlatformId (4 bytes) */
|
|
|
|
Stream_Write(s, license->ClientRandom, 32); /* ClientRandom (32 bytes) */
|
2013-02-05 18:30:53 +04:00
|
|
|
license_write_encrypted_premaster_secret_blob(s, license->EncryptedPremasterSecret, license->ModulusLength); /* EncryptedPremasterSecret */
|
2013-02-05 08:57:04 +04:00
|
|
|
license_write_binary_blob(s, license->ClientUserName); /* ClientUserName */
|
|
|
|
license_write_binary_blob(s, license->ClientMachineName); /* ClientMachineName */
|
2013-02-05 10:07:34 +04:00
|
|
|
|
|
|
|
#ifdef WITH_DEBUG_LICENSE
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "PreferredKeyExchangeAlg: 0x%08X\n", PreferredKeyExchangeAlg);
|
|
|
|
fprintf(stderr, "\n");
|
2013-02-05 10:07:34 +04:00
|
|
|
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "ClientRandom:\n");
|
2013-02-05 10:07:34 +04:00
|
|
|
winpr_HexDump(license->ClientRandom, 32);
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "\n");
|
2013-02-05 10:07:34 +04:00
|
|
|
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "EncryptedPremasterSecret\n");
|
2013-07-15 12:20:24 +04:00
|
|
|
winpr_HexDump(license->EncryptedPremasterSecret->data, license->EncryptedPremasterSecret->length);
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "\n");
|
2013-02-05 10:07:34 +04:00
|
|
|
|
2013-07-15 12:20:24 +04:00
|
|
|
fprintf(stderr, "ClientUserName (%d): %s\n", license->ClientUserName->length, (char*) license->ClientUserName->data);
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "\n");
|
2013-02-05 10:07:34 +04:00
|
|
|
|
2013-07-15 12:20:24 +04:00
|
|
|
fprintf(stderr, "ClientMachineName (%d): %s\n", license->ClientMachineName->length, (char*) license->ClientMachineName->data);
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "\n");
|
2013-02-05 10:07:34 +04:00
|
|
|
#endif
|
2011-07-12 09:16:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send a NEW_LICENSE_REQUEST packet.\n
|
|
|
|
* @msdn{cc241918}
|
|
|
|
* @param license license module
|
|
|
|
*/
|
|
|
|
|
|
|
|
void license_send_new_license_request_packet(rdpLicense* license)
|
|
|
|
{
|
2013-03-21 23:19:33 +04:00
|
|
|
wStream* s;
|
2011-10-05 03:06:39 +04:00
|
|
|
char* username;
|
2011-07-12 09:16:59 +04:00
|
|
|
|
2013-02-05 10:07:34 +04:00
|
|
|
DEBUG_LICENSE("Sending New License Packet");
|
|
|
|
|
2011-07-12 09:16:59 +04:00
|
|
|
s = license_send_stream_init(license);
|
|
|
|
|
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";
|
|
|
|
|
2013-02-05 08:57:04 +04:00
|
|
|
license->ClientUserName->data = (BYTE*) username;
|
|
|
|
license->ClientUserName->length = strlen(username) + 1;
|
2011-07-12 09:57:09 +04:00
|
|
|
|
2013-02-05 08:57:04 +04:00
|
|
|
license->ClientMachineName->data = (BYTE*) license->rdp->settings->ClientHostname;
|
|
|
|
license->ClientMachineName->length = strlen(license->rdp->settings->ClientHostname) + 1;
|
2011-07-12 09:57:09 +04:00
|
|
|
|
2011-07-12 09:16:59 +04:00
|
|
|
license_write_new_license_request_packet(license, s);
|
|
|
|
|
|
|
|
license_send(license, s, NEW_LICENSE_REQUEST);
|
2011-07-12 09:57:09 +04:00
|
|
|
|
2013-02-05 08:57:04 +04:00
|
|
|
license->ClientUserName->data = NULL;
|
|
|
|
license->ClientUserName->length = 0;
|
2011-07-12 09:57:09 +04:00
|
|
|
|
2013-02-05 08:57:04 +04:00
|
|
|
license->ClientMachineName->data = NULL;
|
|
|
|
license->ClientMachineName->length = 0;
|
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
|
|
|
*/
|
|
|
|
|
2013-03-21 23:19:33 +04:00
|
|
|
void license_write_platform_challenge_response_packet(rdpLicense* license, wStream* s, BYTE* macData)
|
2011-07-12 09:57:09 +04:00
|
|
|
{
|
2013-02-05 08:57:04 +04:00
|
|
|
license_write_binary_blob(s, license->EncryptedPlatformChallenge); /* EncryptedPlatformChallengeResponse */
|
|
|
|
license_write_binary_blob(s, license->EncryptedHardwareId); /* EncryptedHWID */
|
2013-05-15 21:17:29 +04:00
|
|
|
|
|
|
|
Stream_EnsureRemainingCapacity(s, 16);
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Write(s, macData, 16); /* MACData */
|
2011-07-12 09:57:09 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send Client Challenge Response Packet.\n
|
|
|
|
* @msdn{cc241922}
|
|
|
|
* @param license license module
|
|
|
|
*/
|
|
|
|
|
|
|
|
void license_send_platform_challenge_response_packet(rdpLicense* license)
|
|
|
|
{
|
2013-03-21 23:19:33 +04:00
|
|
|
wStream* s;
|
2011-07-13 18:21:12 +04:00
|
|
|
int length;
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE* buffer;
|
2011-07-13 18:21:12 +04:00
|
|
|
CryptoRc4 rc4;
|
2012-10-09 11:01:37 +04:00
|
|
|
BYTE mac_data[16];
|
2011-07-12 09:57:09 +04:00
|
|
|
|
|
|
|
DEBUG_LICENSE("Sending Platform Challenge Response Packet");
|
|
|
|
|
2013-02-05 10:07:34 +04:00
|
|
|
s = license_send_stream_init(license);
|
|
|
|
|
2013-02-05 08:57:04 +04:00
|
|
|
license->EncryptedPlatformChallenge->type = BB_DATA_BLOB;
|
|
|
|
length = license->PlatformChallenge->length + HWID_LENGTH;
|
2013-02-05 09:19:57 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
buffer = (BYTE*) malloc(length);
|
2013-02-05 09:19:57 +04:00
|
|
|
CopyMemory(buffer, license->PlatformChallenge->data, license->PlatformChallenge->length);
|
|
|
|
CopyMemory(&buffer[license->PlatformChallenge->length], license->HardwareId, HWID_LENGTH);
|
2013-02-05 08:57:04 +04:00
|
|
|
security_mac_data(license->MacSaltKey, buffer, length, mac_data);
|
2012-10-09 07:21:26 +04:00
|
|
|
free(buffer);
|
2011-07-13 18:21:12 +04:00
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
buffer = (BYTE*) malloc(HWID_LENGTH);
|
2013-02-05 08:57:04 +04:00
|
|
|
rc4 = crypto_rc4_init(license->LicensingEncryptionKey, LICENSING_ENCRYPTION_KEY_LENGTH);
|
|
|
|
crypto_rc4(rc4, HWID_LENGTH, license->HardwareId, buffer);
|
2012-02-02 03:42:20 +04:00
|
|
|
crypto_rc4_free(rc4);
|
2011-07-13 18:21:12 +04:00
|
|
|
|
2013-02-05 09:19:57 +04:00
|
|
|
license->EncryptedHardwareId->type = BB_DATA_BLOB;
|
|
|
|
license->EncryptedHardwareId->data = buffer;
|
|
|
|
license->EncryptedHardwareId->length = HWID_LENGTH;
|
|
|
|
|
2011-08-08 22:51:03 +04:00
|
|
|
#ifdef WITH_DEBUG_LICENSE
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "LicensingEncryptionKey:\n");
|
2013-02-05 08:57:04 +04:00
|
|
|
winpr_HexDump(license->LicensingEncryptionKey, 16);
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "\n");
|
2011-08-08 20:57:19 +04:00
|
|
|
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "HardwareId:\n");
|
2013-02-05 08:57:04 +04:00
|
|
|
winpr_HexDump(license->HardwareId, 20);
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "\n");
|
2011-08-08 20:57:19 +04:00
|
|
|
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "EncryptedHardwareId:\n");
|
2013-07-15 12:20:24 +04:00
|
|
|
winpr_HexDump(license->EncryptedHardwareId->data, 20);
|
2013-03-29 02:06:34 +04:00
|
|
|
fprintf(stderr, "\n");
|
2011-08-08 22:51:03 +04:00
|
|
|
#endif
|
2011-08-08 20:57:19 +04:00
|
|
|
|
2011-07-13 18:21:12 +04:00
|
|
|
license_write_platform_challenge_response_packet(license, s, mac_data);
|
2011-07-12 09:57:09 +04:00
|
|
|
|
|
|
|
license_send(license, s, PLATFORM_CHALLENGE_RESPONSE);
|
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
|
|
|
|
*/
|
|
|
|
|
2012-10-09 10:38:39 +04:00
|
|
|
BOOL license_send_valid_client_error_packet(rdpLicense* license)
|
2011-08-20 17:41:40 +04:00
|
|
|
{
|
2013-03-21 23:19:33 +04:00
|
|
|
wStream* s;
|
2011-08-20 17:41:40 +04:00
|
|
|
|
|
|
|
s = license_send_stream_init(license);
|
|
|
|
|
2013-02-05 10:07:34 +04:00
|
|
|
DEBUG_LICENSE("Sending Error Alert Packet");
|
|
|
|
|
2013-05-09 00:09:16 +04:00
|
|
|
Stream_Write_UINT32(s, STATUS_VALID_CLIENT); /* dwErrorCode */
|
|
|
|
Stream_Write_UINT32(s, ST_NO_TRANSITION); /* dwStateTransition */
|
2011-08-20 17:41:40 +04:00
|
|
|
|
2013-02-05 08:57:04 +04:00
|
|
|
license_write_binary_blob(s, license->ErrorInfo);
|
2011-08-20 17:41:40 +04:00
|
|
|
|
2013-01-15 02:40:34 +04:00
|
|
|
return license_send(license, s, ERROR_ALERT);
|
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;
|
|
|
|
|
2012-11-22 04:22:41 +04:00
|
|
|
license = (rdpLicense*) malloc(sizeof(rdpLicense));
|
2011-07-12 04:46:03 +04:00
|
|
|
|
|
|
|
if (license != NULL)
|
|
|
|
{
|
2012-11-22 04:22:41 +04:00
|
|
|
ZeroMemory(license, sizeof(rdpLicense));
|
|
|
|
|
2011-07-12 09:16:59 +04:00
|
|
|
license->rdp = rdp;
|
2011-07-15 10:02:09 +04:00
|
|
|
license->state = LICENSE_STATE_AWAIT;
|
2011-09-05 22:02:52 +04:00
|
|
|
license->certificate = certificate_new();
|
2013-02-05 08:57:04 +04:00
|
|
|
license->ProductInfo = license_new_product_info();
|
|
|
|
license->ErrorInfo = license_new_binary_blob(BB_ERROR_BLOB);
|
|
|
|
license->KeyExchangeList = license_new_binary_blob(BB_KEY_EXCHG_ALG_BLOB);
|
|
|
|
license->ServerCertificate = license_new_binary_blob(BB_CERTIFICATE_BLOB);
|
|
|
|
license->ClientUserName = license_new_binary_blob(BB_CLIENT_USER_NAME_BLOB);
|
|
|
|
license->ClientMachineName = license_new_binary_blob(BB_CLIENT_MACHINE_NAME_BLOB);
|
|
|
|
license->PlatformChallenge = license_new_binary_blob(BB_ANY_BLOB);
|
|
|
|
license->EncryptedPlatformChallenge = license_new_binary_blob(BB_ANY_BLOB);
|
|
|
|
license->EncryptedPremasterSecret = license_new_binary_blob(BB_ANY_BLOB);
|
|
|
|
license->EncryptedHardwareId = license_new_binary_blob(BB_ENCRYPTED_DATA_BLOB);
|
|
|
|
license->ScopeList = license_new_scope_list();
|
2011-07-13 19:40:19 +04:00
|
|
|
license_generate_randoms(license);
|
2011-07-12 04:46:03 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return license;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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);
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|