2011-07-12 04:46:03 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Client
|
|
|
|
* RDP Licensing
|
|
|
|
*
|
|
|
|
* Copyright 2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "license.h"
|
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
|
|
|
|
void license_read_preamble(STREAM* s, uint8* bMsgType, uint8* flags, uint16* wMsgSize)
|
|
|
|
{
|
|
|
|
/* preamble (4 bytes) */
|
|
|
|
stream_read_uint8(s, *bMsgType); /* bMsgType (1 byte) */
|
|
|
|
stream_read_uint8(s, *flags); /* flags (1 byte) */
|
|
|
|
stream_read_uint16(s, *wMsgSize); /* wMsgSize (2 bytes) */
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Write a licensing preamble.\n
|
|
|
|
* @msdn{cc240480}
|
|
|
|
* @param s stream
|
|
|
|
* @param bMsgType license message type
|
|
|
|
* @param flags message flags
|
|
|
|
* @param wMsgSize message size
|
|
|
|
*/
|
|
|
|
|
|
|
|
void license_write_preamble(STREAM* s, uint8 bMsgType, uint8 flags, uint16 wMsgSize)
|
|
|
|
{
|
|
|
|
/* preamble (4 bytes) */
|
|
|
|
stream_write_uint8(s, bMsgType); /* bMsgType (1 byte) */
|
|
|
|
stream_write_uint8(s, flags); /* flags (1 byte) */
|
|
|
|
stream_write_uint16(s, wMsgSize); /* wMsgSize (2 bytes) */
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initialize a license packet stream.\n
|
|
|
|
* @param license license module
|
|
|
|
* @return stream
|
|
|
|
*/
|
|
|
|
|
|
|
|
STREAM* license_send_stream_init(rdpLicense* license)
|
|
|
|
{
|
|
|
|
STREAM* s;
|
|
|
|
s = transport_send_stream_init(license->rdp->transport, 4096);
|
|
|
|
stream_seek(s, LICENSE_PACKET_HEADER_LENGTH);
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send an RDP licensing packet.\n
|
|
|
|
* @msdn{cc240479}
|
|
|
|
* @param license license module
|
|
|
|
* @param s stream
|
|
|
|
*/
|
|
|
|
|
|
|
|
void license_send(rdpLicense* license, STREAM* s, uint8 type)
|
|
|
|
{
|
|
|
|
int length;
|
|
|
|
uint16 wMsgSize;
|
|
|
|
uint16 sec_flags;
|
|
|
|
|
|
|
|
length = stream_get_length(s);
|
|
|
|
stream_set_pos(s, 0);
|
|
|
|
|
|
|
|
sec_flags = SEC_LICENSE_PKT;
|
|
|
|
wMsgSize = length - LICENSE_PACKET_HEADER_LENGTH;
|
|
|
|
|
|
|
|
rdp_write_header(license->rdp, s, length);
|
|
|
|
rdp_write_security_header(s, sec_flags);
|
|
|
|
license_write_preamble(s, type, PREAMBLE_VERSION_2_0, wMsgSize);
|
|
|
|
|
|
|
|
stream_set_pos(s, length);
|
|
|
|
transport_write(license->rdp->transport, s);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
|
2011-07-12 09:16:59 +04:00
|
|
|
void license_recv(rdpLicense* license, STREAM* s)
|
2011-07-12 04:46:03 +04:00
|
|
|
{
|
|
|
|
uint8 flags;
|
|
|
|
uint8 bMsgType;
|
|
|
|
uint16 wMsgSize;
|
|
|
|
|
2011-07-12 09:16:59 +04:00
|
|
|
license_read_preamble(s, &bMsgType, &flags, &wMsgSize); /* preamble (4 bytes) */
|
2011-07-12 04:46:03 +04:00
|
|
|
|
|
|
|
switch (bMsgType)
|
|
|
|
{
|
|
|
|
case LICENSE_REQUEST:
|
|
|
|
license_read_license_request_packet(license, s);
|
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:
|
|
|
|
license_read_platform_challenge_packet(license, s);
|
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:
|
|
|
|
license_read_error_alert_packet(license, s);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
printf("invalid bMsgType:%d\n", bMsgType);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-07-12 09:57:09 +04:00
|
|
|
/**
|
|
|
|
* Generate License Cryptographic Keys.
|
|
|
|
* @param license license module
|
|
|
|
*/
|
|
|
|
|
|
|
|
void license_generate_keys(rdpLicense* license)
|
|
|
|
{
|
2011-07-12 23:10:43 +04:00
|
|
|
crypto_nonce(license->client_random, CLIENT_RANDOM_LENGTH); /* ClientRandom */
|
|
|
|
crypto_nonce(license->premaster_secret, PREMASTER_SECRET_LENGTH); /* PremasterSecret */
|
2011-07-12 09:57:09 +04:00
|
|
|
|
2011-07-12 23:10:43 +04:00
|
|
|
security_master_secret(license->premaster_secret, license->client_random,
|
|
|
|
license->server_random, license->master_secret); /* MasterSecret */
|
|
|
|
|
|
|
|
security_session_key_blob(license->master_secret, license->client_random,
|
|
|
|
license->server_random, license->session_key_blob); /* SessionKeyBlob */
|
|
|
|
|
|
|
|
security_mac_salt_key(license->session_key_blob, license->client_random,
|
|
|
|
license->server_random, license->mac_salt_key); /* MacSaltKey */
|
|
|
|
|
|
|
|
security_licensing_encryption_key(license->session_key_blob, license->client_random,
|
|
|
|
license->server_random, license->licensing_encryption_key); /* LicensingEncryptionKey */
|
2011-07-12 09:57:09 +04:00
|
|
|
|
|
|
|
license->encrypted_pre_master_secret->length = 72;
|
|
|
|
license->encrypted_pre_master_secret->data = (uint8*) xzalloc(72);
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
uint8* mac_address;
|
|
|
|
|
2011-07-12 23:10:43 +04:00
|
|
|
memset(license->hwid, 0, HWID_LENGTH);
|
2011-07-12 10:53:26 +04:00
|
|
|
mac_address = license->rdp->transport->tcp->mac_address;
|
|
|
|
|
|
|
|
md5 = crypto_md5_init();
|
|
|
|
crypto_md5_update(md5, mac_address, 6);
|
2011-07-12 23:10:43 +04:00
|
|
|
crypto_md5_final(md5, &license->hwid[HWID_PLATFORM_ID_LENGTH]);
|
2011-07-12 10:53:26 +04: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
|
|
|
|
*/
|
|
|
|
|
|
|
|
void license_read_product_info(STREAM* s, PRODUCT_INFO* productInfo)
|
|
|
|
{
|
|
|
|
stream_read_uint32(s, productInfo->dwVersion); /* dwVersion (4 bytes) */
|
|
|
|
|
|
|
|
stream_read_uint32(s, productInfo->cbCompanyName); /* cbCompanyName (4 bytes) */
|
|
|
|
|
|
|
|
productInfo->pbCompanyName = (uint8*) xmalloc(productInfo->cbCompanyName);
|
|
|
|
stream_read(s, productInfo->pbCompanyName, productInfo->cbCompanyName);
|
|
|
|
|
|
|
|
stream_read_uint32(s, productInfo->cbProductId); /* cbProductId (4 bytes) */
|
|
|
|
|
|
|
|
productInfo->pbProductId = (uint8*) xmalloc(productInfo->cbProductId);
|
|
|
|
stream_read(s, productInfo->pbProductId, productInfo->cbProductId);
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
productInfo = (PRODUCT_INFO*) xmalloc(sizeof(PRODUCT_INFO));
|
|
|
|
|
|
|
|
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)
|
|
|
|
xfree(productInfo->pbCompanyName);
|
|
|
|
|
|
|
|
if (productInfo->pbProductId != NULL)
|
|
|
|
xfree(productInfo->pbProductId);
|
|
|
|
|
|
|
|
xfree(productInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Read License Binary Blob (LICENSE_BINARY_BLOB).\n
|
|
|
|
* @msdn{cc240481}
|
|
|
|
* @param s stream
|
|
|
|
* @param blob license binary blob
|
|
|
|
*/
|
|
|
|
|
2011-07-12 04:46:03 +04:00
|
|
|
void license_read_binary_blob(STREAM* s, LICENSE_BLOB* blob)
|
|
|
|
{
|
|
|
|
uint16 wBlobType;
|
|
|
|
|
|
|
|
stream_read_uint16(s, wBlobType); /* wBlobType (2 bytes) */
|
|
|
|
|
2011-07-12 09:16:59 +04:00
|
|
|
if (blob->type != wBlobType && blob->type != BB_ANY_BLOB)
|
2011-07-12 04:46:03 +04:00
|
|
|
{
|
|
|
|
printf("license binary blob type does not match expected type.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
blob->type = wBlobType;
|
|
|
|
|
|
|
|
stream_read_uint16(s, blob->length); /* wBlobLen (2 bytes) */
|
|
|
|
|
|
|
|
blob->data = (uint8*) xmalloc(blob->length);
|
|
|
|
|
|
|
|
stream_read(s, blob->data, blob->length); /* blobData */
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
|
|
|
|
void license_write_binary_blob(STREAM* s, LICENSE_BLOB* blob)
|
|
|
|
{
|
|
|
|
stream_write_uint16(s, blob->type); /* wBlobType (2 bytes) */
|
|
|
|
stream_write_uint16(s, blob->length); /* wBlobLen (2 bytes) */
|
|
|
|
|
|
|
|
if (blob->length > 0)
|
|
|
|
stream_write(s, blob->data, blob->length); /* blobData */
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Allocate New License Binary Blob (LICENSE_BINARY_BLOB).\n
|
|
|
|
* @msdn{cc240481}
|
|
|
|
* @return new license binary blob
|
|
|
|
*/
|
|
|
|
|
|
|
|
LICENSE_BLOB* license_new_binary_blob(uint16 type)
|
|
|
|
{
|
|
|
|
LICENSE_BLOB* blob;
|
|
|
|
|
|
|
|
blob = (LICENSE_BLOB*) xmalloc(sizeof(LICENSE_BLOB));
|
|
|
|
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)
|
|
|
|
xfree(blob->data);
|
|
|
|
|
|
|
|
xfree(blob);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Read License Scope List (SCOPE_LIST).\n
|
|
|
|
* @msdn{cc241916}
|
|
|
|
* @param s stream
|
|
|
|
* @param scopeList scope list
|
|
|
|
*/
|
|
|
|
|
2011-07-12 04:46:03 +04:00
|
|
|
void license_read_scope_list(STREAM* s, SCOPE_LIST* scopeList)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
uint32 scopeCount;
|
|
|
|
|
|
|
|
stream_read_uint32(s, scopeCount); /* ScopeCount (4 bytes) */
|
|
|
|
|
|
|
|
scopeList->count = scopeCount;
|
|
|
|
scopeList->array = (LICENSE_BLOB*) xmalloc(sizeof(LICENSE_BLOB) * scopeCount);
|
|
|
|
|
|
|
|
/* ScopeArray */
|
|
|
|
for (i = 0; i < scopeCount; i++)
|
|
|
|
{
|
|
|
|
scopeList->array[i].type = BB_SCOPE_BLOB;
|
|
|
|
license_read_binary_blob(s, &scopeList->array[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
scopeList = (SCOPE_LIST*) xmalloc(sizeof(SCOPE_LIST));
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < scopeList->count; i++)
|
|
|
|
{
|
|
|
|
license_free_binary_blob(&scopeList->array[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
xfree(scopeList);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
|
|
|
|
void license_read_license_request_packet(rdpLicense* license, STREAM* s)
|
|
|
|
{
|
2011-07-12 09:57:09 +04:00
|
|
|
DEBUG_LICENSE("Receiving License Request Packet");
|
2011-07-12 04:46:03 +04:00
|
|
|
|
|
|
|
/* ServerRandom (32 bytes) */
|
|
|
|
stream_read(s, license->server_random, 32);
|
|
|
|
|
|
|
|
/* ProductInfo */
|
2011-07-12 09:16:59 +04:00
|
|
|
license_read_product_info(s, license->product_info);
|
2011-07-12 04:46:03 +04:00
|
|
|
|
|
|
|
/* KeyExchangeList */
|
2011-07-12 09:16:59 +04:00
|
|
|
license_read_binary_blob(s, license->key_exchange_list);
|
2011-07-12 04:46:03 +04:00
|
|
|
|
|
|
|
/* ServerCertificate */
|
2011-07-12 09:16:59 +04:00
|
|
|
license_read_binary_blob(s, license->server_certificate);
|
2011-07-12 04:46:03 +04:00
|
|
|
|
|
|
|
/* ScopeList */
|
2011-07-12 09:16:59 +04:00
|
|
|
license_read_scope_list(s, license->scope_list);
|
2011-07-13 02:18:24 +04:00
|
|
|
|
|
|
|
/* Parse Server Certificate */
|
|
|
|
certificate_read_server_certificate(license->certificate,
|
|
|
|
license->server_certificate->data, license->server_certificate->length);
|
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
|
|
|
|
*/
|
|
|
|
|
|
|
|
void license_read_platform_challenge_packet(rdpLicense* license, STREAM* s)
|
|
|
|
{
|
2011-07-12 09:57:09 +04:00
|
|
|
DEBUG_LICENSE("Receiving Platform Challenge Packet");
|
2011-07-12 04:46:03 +04:00
|
|
|
|
2011-07-12 09:57:09 +04:00
|
|
|
stream_seek(s, 4); /* ConnectFlags, Reserved (4 bytes) */
|
|
|
|
|
|
|
|
/* EncryptedPlatformChallenge */
|
|
|
|
|
|
|
|
/* MACData (16 bytes) */
|
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
|
|
|
|
*/
|
|
|
|
|
|
|
|
void license_read_new_license_packet(rdpLicense* license, STREAM* s)
|
|
|
|
{
|
2011-07-12 09:57:09 +04:00
|
|
|
DEBUG_LICENSE("Receiving New License Packet");
|
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
|
|
|
|
*/
|
|
|
|
|
|
|
|
void license_read_upgrade_license_packet(rdpLicense* license, STREAM* s)
|
|
|
|
{
|
2011-07-12 09:57:09 +04:00
|
|
|
DEBUG_LICENSE("Receiving Upgrade License Packet");
|
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
|
|
|
|
*/
|
|
|
|
|
|
|
|
void license_read_error_alert_packet(rdpLicense* license, STREAM* s)
|
|
|
|
{
|
2011-07-12 09:57:09 +04:00
|
|
|
DEBUG_LICENSE("Receiving Error Alert Packet");
|
2011-07-12 04:46:03 +04:00
|
|
|
}
|
|
|
|
|
2011-07-12 09:16:59 +04:00
|
|
|
/**
|
|
|
|
* Write Platform ID.\n
|
|
|
|
* @msdn{cc241918}
|
|
|
|
* @param license license module
|
|
|
|
* @param s stream
|
|
|
|
*/
|
|
|
|
|
|
|
|
void license_write_platform_id(rdpLicense* license, STREAM* s)
|
|
|
|
{
|
|
|
|
stream_write_uint8(s, 0); /* Client Operating System Version */
|
|
|
|
stream_write_uint8(s, 0); /* Independent Software Vendor (ISV) */
|
2011-07-12 10:53:26 +04:00
|
|
|
stream_write_uint16(s, 0); /* Client Software Build */
|
2011-07-12 09:16:59 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Write a NEW_LICENSE_REQUEST packet.\n
|
|
|
|
* @msdn{cc241918}
|
|
|
|
* @param license license module
|
|
|
|
* @param s stream
|
|
|
|
*/
|
|
|
|
|
|
|
|
void license_write_new_license_request_packet(rdpLicense* license, STREAM* s)
|
|
|
|
{
|
|
|
|
stream_write_uint32(s, KEY_EXCHANGE_ALG_RSA); /* PreferredKeyExchangeAlg (4 bytes) */
|
|
|
|
license_write_platform_id(license, s); /* PlatformId (4 bytes) */
|
|
|
|
stream_write(s, license->client_random, 32); /* ClientRandom (32 bytes) */
|
|
|
|
license_write_binary_blob(s, license->encrypted_pre_master_secret); /* EncryptedPreMasterSecret */
|
|
|
|
license_write_binary_blob(s, license->client_user_name); /* ClientUserName */
|
|
|
|
license_write_binary_blob(s, license->client_machine_name); /* ClientMachineName */
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send a NEW_LICENSE_REQUEST packet.\n
|
|
|
|
* @msdn{cc241918}
|
|
|
|
* @param license license module
|
|
|
|
*/
|
|
|
|
|
|
|
|
void license_send_new_license_request_packet(rdpLicense* license)
|
|
|
|
{
|
|
|
|
STREAM* s;
|
|
|
|
|
|
|
|
s = license_send_stream_init(license);
|
2011-07-12 09:57:09 +04:00
|
|
|
DEBUG_LICENSE("Sending New License Request Packet");
|
2011-07-12 09:16:59 +04:00
|
|
|
|
2011-07-12 09:57:09 +04:00
|
|
|
license->client_user_name->data = license->rdp->settings->username;
|
|
|
|
license->client_user_name->length = strlen(license->rdp->settings->username);
|
|
|
|
|
|
|
|
license->client_machine_name->data = license->rdp->settings->hostname;
|
|
|
|
license->client_machine_name->length = strlen(license->rdp->settings->hostname);
|
|
|
|
|
|
|
|
license_generate_keys(license);
|
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
|
|
|
|
|
|
|
license->client_user_name->data = NULL;
|
|
|
|
license->client_user_name->length = 0;
|
|
|
|
|
|
|
|
license->client_machine_name->data = NULL;
|
|
|
|
license->client_machine_name->length = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Write Client Challenge Response Packet.\n
|
|
|
|
* @msdn{cc241922}
|
|
|
|
* @param license license module
|
|
|
|
* @param s stream
|
|
|
|
*/
|
|
|
|
|
|
|
|
void license_write_platform_challenge_response_packet(rdpLicense* license, STREAM* s)
|
|
|
|
{
|
2011-07-12 10:53:26 +04:00
|
|
|
license_generate_hwid(license);
|
|
|
|
|
2011-07-12 09:57:09 +04:00
|
|
|
/* EncryptedPlatformChallengeResponse */
|
|
|
|
|
|
|
|
/* EncryptedHWID */
|
|
|
|
|
|
|
|
/* MACData */
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Send Client Challenge Response Packet.\n
|
|
|
|
* @msdn{cc241922}
|
|
|
|
* @param license license module
|
|
|
|
*/
|
|
|
|
|
|
|
|
void license_send_platform_challenge_response_packet(rdpLicense* license)
|
|
|
|
{
|
|
|
|
STREAM* s;
|
|
|
|
|
|
|
|
s = license_send_stream_init(license);
|
|
|
|
DEBUG_LICENSE("Sending Platform Challenge Response Packet");
|
|
|
|
|
|
|
|
license_write_platform_challenge_response_packet(license, s);
|
|
|
|
|
|
|
|
license_send(license, s, PLATFORM_CHALLENGE_RESPONSE);
|
2011-07-12 09:16:59 +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;
|
|
|
|
|
|
|
|
license = (rdpLicense*) xzalloc(sizeof(rdpLicense));
|
|
|
|
|
|
|
|
if (license != NULL)
|
|
|
|
{
|
2011-07-12 09:16:59 +04:00
|
|
|
license->rdp = rdp;
|
2011-07-13 02:18:24 +04:00
|
|
|
license->certificate = certificate_new(rdp);
|
2011-07-12 09:16:59 +04:00
|
|
|
license->product_info = license_new_product_info();
|
|
|
|
license->key_exchange_list = license_new_binary_blob(BB_KEY_EXCHG_ALG_BLOB);
|
|
|
|
license->server_certificate = license_new_binary_blob(BB_CERTIFICATE_BLOB);
|
|
|
|
license->encrypted_pre_master_secret = license_new_binary_blob(BB_RANDOM_BLOB);
|
|
|
|
license->client_user_name = license_new_binary_blob(BB_CLIENT_USER_NAME_BLOB);
|
|
|
|
license->client_machine_name = license_new_binary_blob(BB_CLIENT_MACHINE_NAME_BLOB);
|
|
|
|
license->scope_list = license_new_scope_list();
|
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)
|
|
|
|
{
|
|
|
|
if (license != NULL)
|
|
|
|
{
|
2011-07-13 02:18:24 +04:00
|
|
|
certificate_free(license->certificate);
|
2011-07-12 09:16:59 +04:00
|
|
|
license_free_product_info(license->product_info);
|
|
|
|
license_free_binary_blob(license->key_exchange_list);
|
|
|
|
license_free_binary_blob(license->server_certificate);
|
|
|
|
license_free_binary_blob(license->encrypted_pre_master_secret);
|
|
|
|
license_free_binary_blob(license->client_user_name);
|
|
|
|
license_free_binary_blob(license->client_machine_name);
|
|
|
|
license_free_scope_list(license->scope_list);
|
2011-07-12 04:46:03 +04:00
|
|
|
xfree(license);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|