2011-07-13 02:18:24 +04:00
|
|
|
/**
|
|
|
|
* FreeRDP: A Remote Desktop Protocol Client
|
|
|
|
* Certificate Handling
|
|
|
|
*
|
|
|
|
* 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 "certificate.h"
|
|
|
|
|
2011-07-13 05:43:52 +04:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* X.509 Certificate Structure
|
|
|
|
*
|
|
|
|
* Certificate ::= SEQUENCE
|
|
|
|
* {
|
|
|
|
* tbsCertificate TBSCertificate,
|
|
|
|
* signatureAlgorithm AlgorithmIdentifier,
|
|
|
|
* signatureValue BIT_STRING
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* TBSCertificate ::= SEQUENCE
|
|
|
|
* {
|
|
|
|
* version [0] EXPLICIT Version DEFAULT v1,
|
|
|
|
* serialNumber CertificateSerialNumber,
|
|
|
|
* signature AlgorithmIdentifier,
|
|
|
|
* issuer Name,
|
|
|
|
* validity Validity,
|
|
|
|
* subject Name,
|
|
|
|
* subjectPublicKeyInfo SubjectPublicKeyInfo,
|
|
|
|
* issuerUniqueID [1] IMPLICIT UniqueIdentifier OPTIONAL,
|
|
|
|
* subjectUniqueId [2] IMPLICIT UniqueIdentifier OPTIONAL,
|
|
|
|
* extensions [3] EXPLICIT Extensions OPTIONAL
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* Version ::= INTEGER { v1(0), v2(1), v3(2) }
|
|
|
|
*
|
|
|
|
* CertificateSerialNumber ::= INTEGER
|
|
|
|
*
|
|
|
|
* AlgorithmIdentifier ::= SEQUENCE
|
|
|
|
* {
|
|
|
|
* algorithm OBJECT_IDENTIFIER,
|
|
|
|
* parameters ANY DEFINED BY algorithm OPTIONAL
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* Name ::= CHOICE { RDNSequence }
|
|
|
|
*
|
|
|
|
* RDNSequence ::= SEQUENCE OF RelativeDistinguishedName
|
|
|
|
*
|
|
|
|
* RelativeDistinguishedName ::= SET OF AttributeTypeAndValue
|
|
|
|
*
|
|
|
|
* AttributeTypeAndValue ::= SEQUENCE
|
|
|
|
* {
|
|
|
|
* type AttributeType,
|
|
|
|
* value AttributeValue
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* AttributeType ::= OBJECT_IDENTIFIER
|
|
|
|
*
|
|
|
|
* AttributeValue ::= ANY DEFINED BY AttributeType
|
|
|
|
*
|
|
|
|
* Validity ::= SEQUENCE
|
|
|
|
* {
|
|
|
|
* notBefore Time,
|
|
|
|
* notAfter Time
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* Time ::= CHOICE
|
|
|
|
* {
|
|
|
|
* utcTime UTCTime,
|
|
|
|
* generalTime GeneralizedTime
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* UniqueIdentifier ::= BIT_STRING
|
|
|
|
*
|
|
|
|
* SubjectPublicKeyInfo ::= SEQUENCE
|
|
|
|
* {
|
|
|
|
* algorithm AlgorithmIdentifier,
|
|
|
|
* subjectPublicKey BIT_STRING
|
|
|
|
* }
|
|
|
|
*
|
2011-07-13 07:50:51 +04:00
|
|
|
* RSAPublicKey ::= SEQUENCE
|
|
|
|
* {
|
|
|
|
* modulus INTEGER
|
|
|
|
* publicExponent INTEGER
|
|
|
|
* }
|
|
|
|
*
|
2011-07-13 05:43:52 +04:00
|
|
|
* Extensions ::= SEQUENCE SIZE (1..MAX) OF Extension
|
|
|
|
*
|
|
|
|
* Extension ::= SEQUENCE
|
|
|
|
* {
|
|
|
|
* extnID OBJECT_IDENTIFIER
|
|
|
|
* critical BOOLEAN DEFAULT FALSE,
|
|
|
|
* extnValue OCTET_STRING
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Read X.509 Certificate
|
|
|
|
* @param certificate certificate module
|
|
|
|
* @param cert X.509 certificate
|
|
|
|
*/
|
|
|
|
|
2011-08-16 23:00:25 +04:00
|
|
|
void certificate_read_x509_certificate(rdpCertBlob* cert, rdpCertInfo* info)
|
2011-07-13 05:43:52 +04:00
|
|
|
{
|
|
|
|
STREAM* s;
|
|
|
|
int length;
|
2011-07-13 07:50:51 +04:00
|
|
|
uint8 padding;
|
2011-07-13 05:43:52 +04:00
|
|
|
uint32 version;
|
2011-07-13 07:50:51 +04:00
|
|
|
int modulus_length;
|
|
|
|
int exponent_length;
|
2011-07-13 05:43:52 +04:00
|
|
|
|
|
|
|
s = stream_new(0);
|
|
|
|
s->p = s->data = cert->data;
|
|
|
|
|
2011-07-19 01:02:06 +04:00
|
|
|
ber_read_sequence_tag(s, &length); /* Certificate (SEQUENCE) */
|
2011-07-13 05:43:52 +04:00
|
|
|
|
2011-07-19 01:02:06 +04:00
|
|
|
ber_read_sequence_tag(s, &length); /* TBSCertificate (SEQUENCE) */
|
2011-07-13 05:43:52 +04:00
|
|
|
|
|
|
|
/* Explicit Contextual Tag [0] */
|
2011-11-19 21:19:16 +04:00
|
|
|
ber_read_contextual_tag(s, 0, &length, true);
|
2011-07-13 05:43:52 +04:00
|
|
|
ber_read_integer(s, &version); /* version (INTEGER) */
|
|
|
|
version++;
|
|
|
|
|
|
|
|
/* serialNumber */
|
|
|
|
ber_read_integer(s, NULL); /* CertificateSerialNumber (INTEGER) */
|
|
|
|
|
|
|
|
/* signature */
|
2011-07-19 01:02:06 +04:00
|
|
|
ber_read_sequence_tag(s, &length); /* AlgorithmIdentifier (SEQUENCE) */
|
2011-07-13 05:43:52 +04:00
|
|
|
stream_seek(s, length);
|
|
|
|
|
|
|
|
/* issuer */
|
2011-07-19 01:02:06 +04:00
|
|
|
ber_read_sequence_tag(s, &length); /* Name (SEQUENCE) */
|
2011-07-13 05:43:52 +04:00
|
|
|
stream_seek(s, length);
|
|
|
|
|
|
|
|
/* validity */
|
2011-07-19 01:02:06 +04:00
|
|
|
ber_read_sequence_tag(s, &length); /* Validity (SEQUENCE) */
|
2011-07-13 05:43:52 +04:00
|
|
|
stream_seek(s, length);
|
|
|
|
|
|
|
|
/* subject */
|
2011-07-19 01:02:06 +04:00
|
|
|
ber_read_sequence_tag(s, &length); /* Name (SEQUENCE) */
|
2011-07-13 05:43:52 +04:00
|
|
|
stream_seek(s, length);
|
|
|
|
|
|
|
|
/* subjectPublicKeyInfo */
|
2011-07-19 01:02:06 +04:00
|
|
|
ber_read_sequence_tag(s, &length); /* SubjectPublicKeyInfo (SEQUENCE) */
|
2011-07-13 05:43:52 +04:00
|
|
|
|
|
|
|
/* subjectPublicKeyInfo::AlgorithmIdentifier */
|
2011-07-19 01:02:06 +04:00
|
|
|
ber_read_sequence_tag(s, &length); /* AlgorithmIdentifier (SEQUENCE) */
|
2011-07-13 05:43:52 +04:00
|
|
|
stream_seek(s, length);
|
|
|
|
|
|
|
|
/* subjectPublicKeyInfo::subjectPublicKey */
|
2011-07-13 07:50:51 +04:00
|
|
|
ber_read_bit_string(s, &length, &padding); /* BIT_STRING */
|
|
|
|
|
|
|
|
/* RSAPublicKey (SEQUENCE) */
|
2011-07-19 01:02:06 +04:00
|
|
|
ber_read_sequence_tag(s, &length); /* SEQUENCE */
|
2011-07-13 07:50:51 +04:00
|
|
|
|
|
|
|
ber_read_integer_length(s, &modulus_length); /* modulus (INTEGER) */
|
2011-07-13 23:10:43 +04:00
|
|
|
|
|
|
|
/* skip zero padding, if any */
|
|
|
|
do
|
|
|
|
{
|
|
|
|
stream_peek_uint8(s, padding);
|
|
|
|
|
|
|
|
if (padding == 0)
|
|
|
|
{
|
|
|
|
stream_seek(s, 1);
|
|
|
|
modulus_length--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while (padding == 0);
|
|
|
|
|
2011-07-13 07:50:51 +04:00
|
|
|
freerdp_blob_alloc(&info->modulus, modulus_length);
|
|
|
|
stream_read(s, info->modulus.data, modulus_length);
|
|
|
|
|
|
|
|
ber_read_integer_length(s, &exponent_length); /* publicExponent (INTEGER) */
|
|
|
|
stream_read(s, &info->exponent[4 - exponent_length], exponent_length);
|
2011-09-19 19:56:12 +04:00
|
|
|
crypto_reverse(info->modulus.data, modulus_length);
|
|
|
|
crypto_reverse(info->exponent, 4);
|
2011-07-13 05:43:52 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Instantiate new X.509 Certificate Chain.
|
|
|
|
* @param count certificate chain count
|
|
|
|
* @return new X.509 certificate chain
|
|
|
|
*/
|
|
|
|
|
2011-08-16 23:00:25 +04:00
|
|
|
rdpX509CertChain* certificate_new_x509_certificate_chain(uint32 count)
|
2011-07-13 02:18:24 +04:00
|
|
|
{
|
2011-08-16 23:00:25 +04:00
|
|
|
rdpX509CertChain* x509_cert_chain;
|
2011-07-13 02:18:24 +04:00
|
|
|
|
2011-08-16 23:00:25 +04:00
|
|
|
x509_cert_chain = (rdpX509CertChain*) xmalloc(sizeof(rdpX509CertChain));
|
2011-07-13 02:18:24 +04:00
|
|
|
|
|
|
|
x509_cert_chain->count = count;
|
2011-08-16 23:00:25 +04:00
|
|
|
x509_cert_chain->array = (rdpCertBlob*) xzalloc(sizeof(rdpCertBlob) * count);
|
2011-07-13 02:18:24 +04:00
|
|
|
|
|
|
|
return x509_cert_chain;
|
|
|
|
}
|
|
|
|
|
2011-07-13 05:43:52 +04:00
|
|
|
/**
|
|
|
|
* Free X.509 Certificate Chain.
|
|
|
|
* @param x509_cert_chain X.509 certificate chain to be freed
|
|
|
|
*/
|
|
|
|
|
2011-08-16 23:00:25 +04:00
|
|
|
void certificate_free_x509_certificate_chain(rdpX509CertChain* x509_cert_chain)
|
2011-07-13 02:18:24 +04:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (x509_cert_chain == NULL)
|
|
|
|
return;
|
|
|
|
|
2011-08-17 05:08:14 +04:00
|
|
|
for (i = 0; i < (int) x509_cert_chain->count; i++)
|
2011-07-13 02:18:24 +04:00
|
|
|
{
|
|
|
|
if (x509_cert_chain->array[i].data != NULL)
|
|
|
|
xfree(x509_cert_chain->array[i].data);
|
|
|
|
}
|
|
|
|
|
|
|
|
xfree(x509_cert_chain);
|
|
|
|
}
|
|
|
|
|
2011-09-05 22:02:52 +04:00
|
|
|
static boolean certificate_process_server_public_key(rdpCertificate* certificate, STREAM* s, uint32 length)
|
|
|
|
{
|
|
|
|
uint8 magic[4];
|
|
|
|
uint32 keylen;
|
|
|
|
uint32 bitlen;
|
|
|
|
uint32 datalen;
|
|
|
|
uint32 modlen;
|
|
|
|
|
2012-01-16 05:50:02 +04:00
|
|
|
stream_read(s, magic, 4);
|
2011-09-05 22:02:52 +04:00
|
|
|
if (memcmp(magic, "RSA1", 4) != 0)
|
|
|
|
{
|
|
|
|
printf("gcc_process_server_public_key: magic error\n");
|
2011-11-19 21:19:16 +04:00
|
|
|
return false;
|
2011-09-05 22:02:52 +04:00
|
|
|
}
|
2011-09-15 06:09:33 +04:00
|
|
|
|
2011-09-05 22:02:52 +04:00
|
|
|
stream_read_uint32(s, keylen);
|
|
|
|
stream_read_uint32(s, bitlen);
|
|
|
|
stream_read_uint32(s, datalen);
|
2012-01-16 05:50:02 +04:00
|
|
|
stream_read(s, certificate->cert_info.exponent, 4);
|
2011-09-05 22:02:52 +04:00
|
|
|
modlen = keylen - 8;
|
|
|
|
freerdp_blob_alloc(&(certificate->cert_info.modulus), modlen);
|
2012-01-16 05:50:02 +04:00
|
|
|
stream_read(s, certificate->cert_info.modulus.data, modlen);
|
|
|
|
stream_seek(s, 8);
|
2011-09-15 06:09:33 +04:00
|
|
|
|
2011-11-19 21:19:16 +04:00
|
|
|
return true;
|
2011-09-05 22:02:52 +04:00
|
|
|
}
|
|
|
|
|
2012-01-19 07:42:19 +04:00
|
|
|
static boolean certificate_process_server_public_signature(rdpCertificate* certificate, uint8* sigdata, int sigdatalen, STREAM* s, uint32 siglen)
|
2011-09-05 22:02:52 +04:00
|
|
|
{
|
2012-01-19 07:42:19 +04:00
|
|
|
uint8 md5hash[CRYPTO_MD5_DIGEST_LENGTH];
|
|
|
|
uint8 encsig[TSSK_KEY_LENGTH + 8];
|
|
|
|
uint8 sig[TSSK_KEY_LENGTH];
|
|
|
|
CryptoMd5 md5ctx;
|
|
|
|
int i, sum;
|
|
|
|
|
|
|
|
md5ctx = crypto_md5_init();
|
|
|
|
crypto_md5_update(md5ctx, sigdata, sigdatalen);
|
|
|
|
crypto_md5_final(md5ctx, md5hash);
|
|
|
|
|
|
|
|
stream_read(s, encsig, siglen);
|
|
|
|
/* Last 8 bytes shall be all zero. */
|
|
|
|
for (sum = 0, i = sizeof(encsig) - 8; i < sizeof(encsig); i++)
|
|
|
|
sum += encsig[i];
|
|
|
|
if (sum != 0) {
|
|
|
|
printf("certificate_process_server_public_signature: invalid signature\n");
|
|
|
|
//return false;
|
|
|
|
}
|
|
|
|
siglen -= 8;
|
|
|
|
|
|
|
|
crypto_rsa_public_decrypt(encsig, siglen, TSSK_KEY_LENGTH, tssk_modulus, tssk_exponent, sig);
|
|
|
|
|
|
|
|
/* Verify signature. */
|
|
|
|
if (memcmp(md5hash, sig, sizeof(md5hash)) != 0) {
|
|
|
|
printf("certificate_process_server_public_signature: invalid signature\n");
|
|
|
|
//return false;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Verify rest of decrypted data:
|
|
|
|
* The 17th byte is 0x00.
|
|
|
|
* The 18th through 62nd bytes are each 0xFF.
|
|
|
|
* The 63rd byte is 0x01.
|
|
|
|
*/
|
|
|
|
for (sum = 0, i = 17; i < 62; i++)
|
|
|
|
sum += sig[i];
|
|
|
|
if (sig[16] != 0x00 || sum != 0xFF * (62 - 17) || sig[62] != 0x01) {
|
|
|
|
printf("certificate_process_server_public_signature: invalid signature\n");
|
|
|
|
//return false;
|
|
|
|
}
|
|
|
|
|
2011-11-19 21:19:16 +04:00
|
|
|
return true;
|
2011-09-05 22:02:52 +04:00
|
|
|
}
|
|
|
|
|
2011-07-13 05:43:52 +04:00
|
|
|
/**
|
|
|
|
* Read a Server Proprietary Certificate.\n
|
|
|
|
* @param certificate certificate module
|
|
|
|
* @param s stream
|
|
|
|
*/
|
|
|
|
|
2011-09-05 22:02:52 +04:00
|
|
|
boolean certificate_read_server_proprietary_certificate(rdpCertificate* certificate, STREAM* s)
|
2011-07-13 02:18:24 +04:00
|
|
|
{
|
2011-09-05 22:02:52 +04:00
|
|
|
uint32 dwSigAlgId;
|
|
|
|
uint32 dwKeyAlgId;
|
|
|
|
uint32 wPublicKeyBlobType;
|
|
|
|
uint32 wPublicKeyBlobLen;
|
|
|
|
uint32 wSignatureBlobType;
|
|
|
|
uint32 wSignatureBlobLen;
|
2012-01-19 07:42:19 +04:00
|
|
|
uint8* sigdata;
|
|
|
|
int sigdatalen;
|
2011-09-05 22:02:52 +04:00
|
|
|
|
2012-01-19 07:42:19 +04:00
|
|
|
/* -4, because we need to include dwVersion */
|
|
|
|
sigdata = stream_get_tail(s) - 4;
|
2011-09-05 22:02:52 +04:00
|
|
|
stream_read_uint32(s, dwSigAlgId);
|
|
|
|
stream_read_uint32(s, dwKeyAlgId);
|
2012-01-17 20:55:31 +04:00
|
|
|
if (!(dwSigAlgId == SIGNATURE_ALG_RSA && dwKeyAlgId == KEY_EXCHANGE_ALG_RSA))
|
2011-09-05 22:02:52 +04:00
|
|
|
{
|
|
|
|
printf("certificate_read_server_proprietary_certificate: parse error 1\n");
|
2011-11-19 21:19:16 +04:00
|
|
|
return false;
|
2011-09-05 22:02:52 +04:00
|
|
|
}
|
|
|
|
stream_read_uint16(s, wPublicKeyBlobType);
|
|
|
|
if (wPublicKeyBlobType != BB_RSA_KEY_BLOB)
|
|
|
|
{
|
|
|
|
printf("certificate_read_server_proprietary_certificate: parse error 2\n");
|
2011-11-19 21:19:16 +04:00
|
|
|
return false;
|
2011-09-05 22:02:52 +04:00
|
|
|
}
|
|
|
|
stream_read_uint16(s, wPublicKeyBlobLen);
|
|
|
|
if (!certificate_process_server_public_key(certificate, s, wPublicKeyBlobLen))
|
|
|
|
{
|
|
|
|
printf("certificate_read_server_proprietary_certificate: parse error 3\n");
|
2011-11-19 21:19:16 +04:00
|
|
|
return false;
|
2011-09-05 22:02:52 +04:00
|
|
|
}
|
2012-01-19 07:42:19 +04:00
|
|
|
sigdatalen = stream_get_tail(s) - sigdata;
|
2011-09-05 22:02:52 +04:00
|
|
|
stream_read_uint16(s, wSignatureBlobType);
|
|
|
|
if (wSignatureBlobType != BB_RSA_SIGNATURE_BLOB)
|
|
|
|
{
|
|
|
|
printf("certificate_read_server_proprietary_certificate: parse error 4\n");
|
2011-11-19 21:19:16 +04:00
|
|
|
return false;
|
2011-09-05 22:02:52 +04:00
|
|
|
}
|
|
|
|
stream_read_uint16(s, wSignatureBlobLen);
|
2012-01-19 07:42:19 +04:00
|
|
|
if (wSignatureBlobLen != 72) {
|
|
|
|
printf("certificate_process_server_public_signature: invalid signature length (got %d, expected %d)\n", wSignatureBlobLen, 64);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!certificate_process_server_public_signature(certificate, sigdata, sigdatalen, s, wSignatureBlobLen))
|
2011-09-05 22:02:52 +04:00
|
|
|
{
|
|
|
|
printf("certificate_read_server_proprietary_certificate: parse error 5\n");
|
2011-11-19 21:19:16 +04:00
|
|
|
return false;
|
2011-09-05 22:02:52 +04:00
|
|
|
}
|
2011-09-15 06:09:33 +04:00
|
|
|
|
2011-11-19 21:19:16 +04:00
|
|
|
return true;
|
2011-07-13 02:18:24 +04:00
|
|
|
}
|
|
|
|
|
2011-07-13 05:43:52 +04:00
|
|
|
/**
|
|
|
|
* Read an X.509 Certificate Chain.\n
|
|
|
|
* @param certificate certificate module
|
|
|
|
* @param s stream
|
|
|
|
*/
|
|
|
|
|
2011-09-05 22:02:52 +04:00
|
|
|
boolean certificate_read_server_x509_certificate_chain(rdpCertificate* certificate, STREAM* s)
|
2011-07-13 02:18:24 +04:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
uint32 certLength;
|
|
|
|
uint32 numCertBlobs;
|
|
|
|
|
2011-07-15 09:11:09 +04:00
|
|
|
DEBUG_CERTIFICATE("Server X.509 Certificate Chain");
|
2011-07-13 02:18:24 +04:00
|
|
|
|
|
|
|
stream_read_uint32(s, numCertBlobs); /* numCertBlobs */
|
|
|
|
|
|
|
|
certificate->x509_cert_chain = certificate_new_x509_certificate_chain(numCertBlobs);
|
|
|
|
|
2011-08-17 05:08:14 +04:00
|
|
|
for (i = 0; i < (int) numCertBlobs; i++)
|
2011-07-13 02:18:24 +04:00
|
|
|
{
|
|
|
|
stream_read_uint32(s, certLength);
|
|
|
|
|
2011-07-15 09:11:09 +04:00
|
|
|
DEBUG_CERTIFICATE("\nX.509 Certificate #%d, length:%d", i + 1, certLength);
|
2011-07-13 02:18:24 +04:00
|
|
|
|
2011-07-13 07:50:51 +04:00
|
|
|
certificate->x509_cert_chain->array[i].data = (uint8*) xmalloc(certLength);
|
|
|
|
stream_read(s, certificate->x509_cert_chain->array[i].data, certLength);
|
|
|
|
certificate->x509_cert_chain->array[i].length = certLength;
|
|
|
|
|
2011-07-13 02:18:24 +04:00
|
|
|
if (numCertBlobs - i == 2)
|
2011-07-13 07:50:51 +04:00
|
|
|
{
|
2011-08-16 23:00:25 +04:00
|
|
|
rdpCertInfo cert_info;
|
2011-07-15 09:11:09 +04:00
|
|
|
DEBUG_CERTIFICATE("License Server Certificate");
|
|
|
|
certificate_read_x509_certificate(&certificate->x509_cert_chain->array[i], &cert_info);
|
|
|
|
DEBUG_LICENSE("modulus length:%d", cert_info.modulus.length);
|
2011-07-13 07:50:51 +04:00
|
|
|
}
|
2011-07-13 02:18:24 +04:00
|
|
|
else if (numCertBlobs - i == 1)
|
2011-07-13 07:50:51 +04:00
|
|
|
{
|
2011-07-15 09:11:09 +04:00
|
|
|
DEBUG_CERTIFICATE("Terminal Server Certificate");
|
2011-07-13 18:21:12 +04:00
|
|
|
certificate_read_x509_certificate(&certificate->x509_cert_chain->array[i], &certificate->cert_info);
|
2011-07-15 09:11:09 +04:00
|
|
|
DEBUG_CERTIFICATE("modulus length:%d", certificate->cert_info.modulus.length);
|
2011-07-13 07:50:51 +04:00
|
|
|
}
|
2011-07-13 02:18:24 +04:00
|
|
|
}
|
2011-09-15 06:09:33 +04:00
|
|
|
|
2011-11-19 21:19:16 +04:00
|
|
|
return true;
|
2011-07-13 02:18:24 +04:00
|
|
|
}
|
|
|
|
|
2011-07-13 05:43:52 +04:00
|
|
|
/**
|
|
|
|
* Read a Server Certificate.\n
|
|
|
|
* @param certificate certificate module
|
|
|
|
* @param server_cert server certificate
|
|
|
|
* @param length certificate length
|
|
|
|
*/
|
|
|
|
|
2011-09-05 22:02:52 +04:00
|
|
|
boolean certificate_read_server_certificate(rdpCertificate* certificate, uint8* server_cert, int length)
|
2011-07-13 02:18:24 +04:00
|
|
|
{
|
|
|
|
STREAM* s;
|
|
|
|
uint32 dwVersion;
|
|
|
|
|
|
|
|
s = stream_new(0);
|
|
|
|
s->p = s->data = server_cert;
|
|
|
|
|
|
|
|
if (length < 1)
|
|
|
|
{
|
|
|
|
printf("null server certificate\n");
|
2011-11-19 21:19:16 +04:00
|
|
|
return false;
|
2011-07-13 02:18:24 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
stream_read_uint32(s, dwVersion); /* dwVersion (4 bytes) */
|
|
|
|
|
|
|
|
switch (dwVersion & CERT_CHAIN_VERSION_MASK)
|
|
|
|
{
|
|
|
|
case CERT_CHAIN_VERSION_1:
|
|
|
|
certificate_read_server_proprietary_certificate(certificate, s);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CERT_CHAIN_VERSION_2:
|
|
|
|
certificate_read_server_x509_certificate_chain(certificate, s);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
printf("invalid certificate chain version:%d\n", dwVersion & CERT_CHAIN_VERSION_MASK);
|
|
|
|
break;
|
|
|
|
}
|
2011-09-05 22:02:52 +04:00
|
|
|
|
|
|
|
xfree(s);
|
2011-11-19 21:19:16 +04:00
|
|
|
return true;
|
2011-07-13 02:18:24 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Instantiate new certificate module.\n
|
|
|
|
* @param rdp RDP module
|
|
|
|
* @return new certificate module
|
|
|
|
*/
|
|
|
|
|
2011-09-05 22:02:52 +04:00
|
|
|
rdpCertificate* certificate_new(void)
|
2011-07-13 02:18:24 +04:00
|
|
|
{
|
|
|
|
rdpCertificate* certificate;
|
|
|
|
|
|
|
|
certificate = (rdpCertificate*) xzalloc(sizeof(rdpCertificate));
|
|
|
|
|
|
|
|
if (certificate != NULL)
|
|
|
|
{
|
|
|
|
certificate->x509_cert_chain = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return certificate;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Free certificate module.
|
|
|
|
* @param certificate certificate module to be freed
|
|
|
|
*/
|
|
|
|
|
|
|
|
void certificate_free(rdpCertificate* certificate)
|
|
|
|
{
|
|
|
|
if (certificate != NULL)
|
|
|
|
{
|
|
|
|
certificate_free_x509_certificate_chain(certificate->x509_cert_chain);
|
|
|
|
xfree(certificate);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|