FreeRDP/libfreerdp/crypto/certificate_data.c

257 lines
6.4 KiB
C
Raw Normal View History

/**
* FreeRDP: A Remote Desktop Protocol Implementation
* Certificate Handling
*
* Copyright 2011 Jiten Pathy
* Copyright 2011-2012 Marc-Andre Moreau <marcandre.moreau@gmail.com>
2023-02-09 10:48:11 +03:00
* Copyright 2023 Armin Novak <anovak@thincast.com>
* Copyright 2023 Thincast Technologies GmbH
*
* 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 <ctype.h>
#include <freerdp/config.h>
#include <winpr/assert.h>
#include <winpr/path.h>
#include <freerdp/settings.h>
#include <freerdp/crypto/crypto.h>
#include <freerdp/crypto/certificate_data.h>
#include "certificate.h"
#include <freerdp/log.h>
#define TAG FREERDP_TAG("crypto")
struct rdp_certificate_data
{
char* hostname;
UINT16 port;
rdpCertificate* cert;
char cached_hash[MAX_PATH + 10];
char* cached_subject;
char* cached_issuer;
char* cached_fingerprint;
char* cached_pem;
};
static const char* freerdp_certificate_data_hash_(const char* hostname, UINT16 port, char* name,
size_t length)
{
_snprintf(name, length, "%s_%" PRIu16 ".pem", hostname, port);
return name;
}
static BOOL freerdp_certificate_data_load_cache(rdpCertificateData* data)
{
BOOL rc = FALSE;
WINPR_ASSERT(data);
freerdp_certificate_data_hash_(data->hostname, data->port, data->cached_hash,
sizeof(data->cached_hash));
if (strnlen(data->cached_hash, sizeof(data->cached_hash)) == 0)
goto fail;
data->cached_subject = freerdp_certificate_get_subject(data->cert);
if (!data->cached_subject)
data->cached_subject = calloc(1, 1);
size_t pemlen = 0;
data->cached_pem = freerdp_certificate_get_pem(data->cert, &pemlen);
if (!data->cached_pem)
goto fail;
data->cached_fingerprint = freerdp_certificate_get_fingerprint(data->cert);
if (!data->cached_fingerprint)
goto fail;
data->cached_issuer = freerdp_certificate_get_issuer(data->cert);
if (!data->cached_issuer)
data->cached_issuer = calloc(1, 1);
rc = TRUE;
fail:
return rc;
}
static rdpCertificateData* freerdp_certificate_data_new_nocopy(const char* hostname, UINT16 port,
rdpCertificate* xcert)
{
size_t i;
rdpCertificateData* certdata = NULL;
if (!hostname || !xcert)
goto fail;
certdata = (rdpCertificateData*)calloc(1, sizeof(rdpCertificateData));
if (!certdata)
goto fail;
certdata->port = port;
certdata->hostname = _strdup(hostname);
if (!certdata->hostname)
goto fail;
for (i = 0; i < strlen(hostname); i++)
certdata->hostname[i] = tolower(certdata->hostname[i]);
certdata->cert = xcert;
if (!freerdp_certificate_data_load_cache(certdata))
{
certdata->cert = NULL;
goto fail;
}
return certdata;
fail:
freerdp_certificate_data_free(certdata);
return NULL;
}
rdpCertificateData* freerdp_certificate_data_new(const char* hostname, UINT16 port,
const rdpCertificate* xcert)
{
rdpCertificate* copy = freerdp_certificate_clone(xcert);
rdpCertificateData* data = freerdp_certificate_data_new_nocopy(hostname, port, copy);
if (!data)
freerdp_certificate_free(copy);
return data;
}
rdpCertificateData* freerdp_certificate_data_new_from_pem(const char* hostname, UINT16 port,
const char* pem, size_t length)
{
if (!pem || (length == 0))
return NULL;
rdpCertificate* cert = freerdp_certificate_new_from_pem(pem);
rdpCertificateData* data = freerdp_certificate_data_new_nocopy(hostname, port, cert);
if (!data)
freerdp_certificate_free(cert);
return data;
}
rdpCertificateData* freerdp_certificate_data_new_from_file(const char* hostname, UINT16 port,
const char* file)
{
if (!file)
return NULL;
rdpCertificate* cert = freerdp_certificate_new_from_file(file);
rdpCertificateData* data = freerdp_certificate_data_new_nocopy(hostname, port, cert);
if (!data)
freerdp_certificate_free(cert);
return data;
}
void freerdp_certificate_data_free(rdpCertificateData* data)
{
if (data == NULL)
return;
free(data->hostname);
freerdp_certificate_free(data->cert);
free(data->cached_subject);
free(data->cached_issuer);
free(data->cached_fingerprint);
free(data->cached_pem);
free(data);
}
const char* freerdp_certificate_data_get_host(const rdpCertificateData* cert)
{
WINPR_ASSERT(cert);
return cert->hostname;
}
UINT16 freerdp_certificate_data_get_port(const rdpCertificateData* cert)
{
WINPR_ASSERT(cert);
return cert->port;
}
const char* freerdp_certificate_data_get_pem(const rdpCertificateData* cert)
{
WINPR_ASSERT(cert);
WINPR_ASSERT(cert->cached_pem);
return cert->cached_pem;
}
const char* freerdp_certificate_data_get_subject(const rdpCertificateData* cert)
{
WINPR_ASSERT(cert);
WINPR_ASSERT(cert->cached_subject);
return cert->cached_subject;
}
const char* freerdp_certificate_data_get_issuer(const rdpCertificateData* cert)
{
WINPR_ASSERT(cert);
WINPR_ASSERT(cert->cached_issuer);
return cert->cached_issuer;
}
const char* freerdp_certificate_data_get_fingerprint(const rdpCertificateData* cert)
{
WINPR_ASSERT(cert);
WINPR_ASSERT(cert->cached_fingerprint);
return cert->cached_fingerprint;
}
BOOL freerdp_certificate_data_equal(const rdpCertificateData* a, const rdpCertificateData* b)
{
BOOL rc = FALSE;
WINPR_ASSERT(a);
WINPR_ASSERT(b);
if (strcmp(a->hostname, b->hostname) != 0)
return FALSE;
if (a->port != b->port)
return FALSE;
const char* pem1 = freerdp_certificate_data_get_fingerprint(a);
const char* pem2 = freerdp_certificate_data_get_fingerprint(b);
if (pem1 && pem2)
rc = strcmp(pem1, pem2) == 0;
else
rc = pem1 == pem2;
return rc;
}
const char* freerdp_certificate_data_get_hash(const rdpCertificateData* cert)
{
WINPR_ASSERT(cert);
WINPR_ASSERT(cert->cached_hash);
return cert->cached_hash;
}
char* freerdp_certificate_data_hash(const char* hostname, UINT16 port)
{
char name[MAX_PATH + 10] = { 0 };
freerdp_certificate_data_hash_(hostname, port, name, sizeof(name));
return _strdup(name);
}