2013-03-18 19:02:42 +01:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2013-09-25 07:43:57 +02:00
|
|
|
* Copyright (C) 2012-2013 Icinga Development Team (http://www.icinga.org/) *
|
2013-03-18 19:02:42 +01:00
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU General Public License *
|
|
|
|
* as published by the Free Software Foundation; either version 2 *
|
|
|
|
* of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the Free Software Foundation *
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#include "base/tlsutility.h"
|
|
|
|
|
2013-03-18 22:40:40 +01:00
|
|
|
namespace icinga
|
|
|
|
{
|
2013-03-18 19:02:42 +01:00
|
|
|
|
|
|
|
static bool l_SSLInitialized = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes the OpenSSL library.
|
|
|
|
*/
|
|
|
|
static void InitializeOpenSSL(void)
|
|
|
|
{
|
|
|
|
if (l_SSLInitialized)
|
|
|
|
return;
|
|
|
|
|
|
|
|
SSL_library_init();
|
|
|
|
SSL_load_error_strings();
|
2013-09-11 17:12:28 +02:00
|
|
|
|
|
|
|
SSL_COMP_get_compression_methods();
|
2013-03-18 19:02:42 +01:00
|
|
|
|
|
|
|
l_SSLInitialized = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes an SSL context using the specified certificates.
|
|
|
|
*
|
|
|
|
* @param pubkey The public key.
|
|
|
|
* @param privkey The matching private key.
|
|
|
|
* @param cakey CA certificate chain file.
|
|
|
|
* @returns An SSL context.
|
|
|
|
*/
|
|
|
|
shared_ptr<SSL_CTX> MakeSSLContext(const String& pubkey, const String& privkey, const String& cakey)
|
|
|
|
{
|
|
|
|
InitializeOpenSSL();
|
|
|
|
|
|
|
|
shared_ptr<SSL_CTX> sslContext = shared_ptr<SSL_CTX>(SSL_CTX_new(TLSv1_method()), SSL_CTX_free);
|
|
|
|
|
2013-04-05 12:09:26 +02:00
|
|
|
SSL_CTX_set_mode(sslContext.get(), 0);
|
2013-03-18 19:02:42 +01:00
|
|
|
|
|
|
|
if (!SSL_CTX_use_certificate_chain_file(sslContext.get(), pubkey.CStr())) {
|
|
|
|
BOOST_THROW_EXCEPTION(openssl_error()
|
|
|
|
<< boost::errinfo_api_function("SSL_CTX_use_certificate_chain_file")
|
|
|
|
<< errinfo_openssl_error(ERR_get_error())
|
|
|
|
<< boost::errinfo_file_name(pubkey));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!SSL_CTX_use_PrivateKey_file(sslContext.get(), privkey.CStr(), SSL_FILETYPE_PEM)) {
|
|
|
|
BOOST_THROW_EXCEPTION(openssl_error()
|
|
|
|
<< boost::errinfo_api_function("SSL_CTX_use_PrivateKey_file")
|
|
|
|
<< errinfo_openssl_error(ERR_get_error())
|
|
|
|
<< boost::errinfo_file_name(privkey));
|
|
|
|
}
|
|
|
|
|
2013-10-15 21:24:55 +02:00
|
|
|
if (!SSL_CTX_check_private_key(sslContext.get())) {
|
|
|
|
BOOST_THROW_EXCEPTION(openssl_error()
|
|
|
|
<< boost::errinfo_api_function("SSL_CTX_check_private_key")
|
|
|
|
<< errinfo_openssl_error(ERR_get_error()));
|
|
|
|
}
|
|
|
|
|
2013-03-18 19:02:42 +01:00
|
|
|
if (!SSL_CTX_load_verify_locations(sslContext.get(), cakey.CStr(), NULL)) {
|
|
|
|
BOOST_THROW_EXCEPTION(openssl_error()
|
|
|
|
<< boost::errinfo_api_function("SSL_CTX_load_verify_locations")
|
|
|
|
<< errinfo_openssl_error(ERR_get_error())
|
|
|
|
<< boost::errinfo_file_name(cakey));
|
|
|
|
}
|
|
|
|
|
|
|
|
STACK_OF(X509_NAME) *cert_names;
|
|
|
|
|
|
|
|
cert_names = SSL_load_client_CA_file(cakey.CStr());
|
|
|
|
if (cert_names == NULL) {
|
|
|
|
BOOST_THROW_EXCEPTION(openssl_error()
|
|
|
|
<< boost::errinfo_api_function("SSL_load_client_CA_file")
|
|
|
|
<< errinfo_openssl_error(ERR_get_error())
|
|
|
|
<< boost::errinfo_file_name(cakey));
|
|
|
|
}
|
|
|
|
|
|
|
|
SSL_CTX_set_client_CA_list(sslContext.get(), cert_names);
|
|
|
|
|
|
|
|
return sslContext;
|
|
|
|
}
|
|
|
|
|
2013-11-13 10:30:40 +01:00
|
|
|
/**
|
|
|
|
* Loads a CRL and appends its certificates to the specified SSL context.
|
|
|
|
*
|
|
|
|
* @param context The SSL context.
|
|
|
|
* @param crlPath The path to the CRL file.
|
|
|
|
*/
|
|
|
|
void AddCRLToSSLContext(const shared_ptr<SSL_CTX>& context, const String& crlPath)
|
|
|
|
{
|
|
|
|
X509_STORE *x509_store = SSL_CTX_get_cert_store(context.get());
|
|
|
|
|
|
|
|
X509_LOOKUP *lookup;
|
|
|
|
lookup = X509_STORE_add_lookup(x509_store, X509_LOOKUP_file());
|
|
|
|
|
|
|
|
if (!lookup) {
|
|
|
|
BOOST_THROW_EXCEPTION(openssl_error()
|
|
|
|
<< boost::errinfo_api_function("X509_STORE_add_lookup")
|
|
|
|
<< errinfo_openssl_error(ERR_get_error()));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (X509_LOOKUP_load_file(lookup, crlPath.CStr(), X509_FILETYPE_PEM) != 0) {
|
|
|
|
BOOST_THROW_EXCEPTION(openssl_error()
|
|
|
|
<< boost::errinfo_api_function("X509_LOOKUP_load_file")
|
|
|
|
<< errinfo_openssl_error(ERR_get_error())
|
|
|
|
<< boost::errinfo_file_name(crlPath));
|
|
|
|
}
|
|
|
|
|
|
|
|
X509_VERIFY_PARAM *param = X509_VERIFY_PARAM_new();
|
|
|
|
X509_VERIFY_PARAM_set_flags(param, X509_V_FLAG_CRL_CHECK);
|
2013-11-13 10:36:57 +01:00
|
|
|
X509_STORE_set1_param(x509_store, param);
|
2013-11-13 10:30:40 +01:00
|
|
|
X509_VERIFY_PARAM_free(param);
|
|
|
|
}
|
|
|
|
|
2013-03-18 19:02:42 +01:00
|
|
|
/**
|
|
|
|
* Retrieves the common name for an X509 certificate.
|
|
|
|
*
|
|
|
|
* @param certificate The X509 certificate.
|
|
|
|
* @returns The common name.
|
|
|
|
*/
|
|
|
|
String GetCertificateCN(const shared_ptr<X509>& certificate)
|
|
|
|
{
|
|
|
|
char buffer[256];
|
|
|
|
|
|
|
|
int rc = X509_NAME_get_text_by_NID(X509_get_subject_name(certificate.get()),
|
|
|
|
NID_commonName, buffer, sizeof(buffer));
|
|
|
|
|
|
|
|
if (rc == -1) {
|
|
|
|
BOOST_THROW_EXCEPTION(openssl_error()
|
|
|
|
<< boost::errinfo_api_function("X509_NAME_get_text_by_NID")
|
|
|
|
<< errinfo_openssl_error(ERR_get_error()));
|
|
|
|
}
|
|
|
|
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieves an X509 certificate from the specified file.
|
|
|
|
*
|
|
|
|
* @param pemfile The filename.
|
|
|
|
* @returns An X509 certificate.
|
|
|
|
*/
|
|
|
|
shared_ptr<X509> GetX509Certificate(const String& pemfile)
|
|
|
|
{
|
|
|
|
X509 *cert;
|
|
|
|
BIO *fpcert = BIO_new(BIO_s_file());
|
|
|
|
|
|
|
|
if (fpcert == NULL) {
|
|
|
|
BOOST_THROW_EXCEPTION(openssl_error()
|
|
|
|
<< boost::errinfo_api_function("BIO_new")
|
|
|
|
<< errinfo_openssl_error(ERR_get_error()));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (BIO_read_filename(fpcert, pemfile.CStr()) < 0) {
|
|
|
|
BOOST_THROW_EXCEPTION(openssl_error()
|
|
|
|
<< boost::errinfo_api_function("BIO_read_filename")
|
|
|
|
<< errinfo_openssl_error(ERR_get_error())
|
|
|
|
<< boost::errinfo_file_name(pemfile));
|
|
|
|
}
|
|
|
|
|
|
|
|
cert = PEM_read_bio_X509_AUX(fpcert, NULL, NULL, NULL);
|
|
|
|
if (cert == NULL) {
|
|
|
|
BOOST_THROW_EXCEPTION(openssl_error()
|
|
|
|
<< boost::errinfo_api_function("PEM_read_bio_X509_AUX")
|
2013-10-17 15:52:26 +02:00
|
|
|
<< errinfo_openssl_error(ERR_get_error())
|
2013-10-17 15:46:50 +02:00
|
|
|
<< boost::errinfo_file_name(pemfile));
|
2013-03-18 19:02:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
BIO_free(fpcert);
|
|
|
|
|
|
|
|
return shared_ptr<X509>(cert, X509_free);
|
|
|
|
}
|
|
|
|
|
2013-09-04 15:47:15 +02:00
|
|
|
String SHA256(const String& s)
|
|
|
|
{
|
|
|
|
SHA256_CTX context;
|
|
|
|
unsigned char digest[SHA256_DIGEST_LENGTH];
|
|
|
|
|
|
|
|
if (!SHA256_Init(&context)) {
|
|
|
|
BOOST_THROW_EXCEPTION(openssl_error()
|
|
|
|
<< boost::errinfo_api_function("SHA256_Init")
|
|
|
|
<< errinfo_openssl_error(ERR_get_error()));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!SHA256_Update(&context, (unsigned char*)s.CStr(), s.GetLength())) {
|
|
|
|
BOOST_THROW_EXCEPTION(openssl_error()
|
|
|
|
<< boost::errinfo_api_function("SHA256_Update")
|
|
|
|
<< errinfo_openssl_error(ERR_get_error()));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!SHA256_Final(digest, &context)) {
|
|
|
|
BOOST_THROW_EXCEPTION(openssl_error()
|
|
|
|
<< boost::errinfo_api_function("SHA256_Final")
|
|
|
|
<< errinfo_openssl_error(ERR_get_error()));
|
|
|
|
}
|
|
|
|
|
|
|
|
int i;
|
|
|
|
char output[SHA256_DIGEST_LENGTH*2+1];
|
|
|
|
for (i = 0; i < 32; i++)
|
|
|
|
sprintf(output + 2 * i, "%02x", digest[i]);
|
|
|
|
|
|
|
|
return output;
|
|
|
|
}
|
|
|
|
|
2013-03-18 22:40:40 +01:00
|
|
|
}
|