2016-02-25 13:33:48 +00:00
|
|
|
/* Author: Adam Eijdenberg <adam.eijdenberg@gmail.com>. */
|
|
|
|
/* ====================================================================
|
|
|
|
* Copyright (c) 1998-2016 The OpenSSL Project. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
*
|
|
|
|
* 3. All advertising materials mentioning features or use of this
|
|
|
|
* software must display the following acknowledgment:
|
|
|
|
* "This product includes software developed by the OpenSSL Project
|
|
|
|
* for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
|
|
|
|
*
|
|
|
|
* 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
|
|
|
|
* endorse or promote products derived from this software without
|
|
|
|
* prior written permission. For written permission, please contact
|
|
|
|
* openssl-core@openssl.org.
|
|
|
|
*
|
|
|
|
* 5. Products derived from this software may not be called "OpenSSL"
|
|
|
|
* nor may "OpenSSL" appear in their names without prior written
|
|
|
|
* permission of the OpenSSL Project.
|
|
|
|
*
|
|
|
|
* 6. Redistributions of any form whatsoever must retain the following
|
|
|
|
* acknowledgment:
|
|
|
|
* "This product includes software developed by the OpenSSL Project
|
|
|
|
* for use in the OpenSSL Toolkit (http://www.openssl.org/)"
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
|
|
|
|
* EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
|
|
|
|
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
|
|
|
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
* ====================================================================
|
|
|
|
*
|
|
|
|
* This product includes cryptographic software written by Eric Young
|
|
|
|
* (eay@cryptsoft.com). This product includes software written by Tim
|
|
|
|
* Hudson (tjh@cryptsoft.com).
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-02-29 20:25:08 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2016-02-25 13:33:48 +00:00
|
|
|
#include <openssl/conf.h>
|
|
|
|
#include <openssl/ct.h>
|
|
|
|
#include <openssl/err.h>
|
|
|
|
#include <openssl/evp.h>
|
|
|
|
#include <openssl/safestack.h>
|
|
|
|
|
|
|
|
#include "internal/cryptlib.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Information about a CT log server.
|
|
|
|
*/
|
|
|
|
struct ctlog_st {
|
|
|
|
char *name;
|
|
|
|
uint8_t log_id[CT_V1_HASHLEN];
|
|
|
|
EVP_PKEY *public_key;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A store for multiple CTLOG instances.
|
|
|
|
* It takes ownership of any CTLOG instances added to it.
|
|
|
|
*/
|
|
|
|
struct ctlog_store_st {
|
|
|
|
STACK_OF(CTLOG) *logs;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* The context when loading a CT log list from a CONF file. */
|
|
|
|
typedef struct ctlog_store_load_ctx_st {
|
|
|
|
CTLOG_STORE *log_store;
|
|
|
|
CONF *conf;
|
2016-03-03 16:06:59 +00:00
|
|
|
size_t invalid_log_entries;
|
2016-02-25 13:33:48 +00:00
|
|
|
} CTLOG_STORE_LOAD_CTX;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Creates an empty context for loading a CT log store.
|
|
|
|
* It should be populated before use.
|
|
|
|
*/
|
2016-02-29 20:25:08 +00:00
|
|
|
static CTLOG_STORE_LOAD_CTX *ctlog_store_load_ctx_new();
|
2016-02-25 13:33:48 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Deletes a CT log store load context.
|
|
|
|
* Does not delete any of the fields.
|
|
|
|
*/
|
2016-02-29 20:25:08 +00:00
|
|
|
static void ctlog_store_load_ctx_free(CTLOG_STORE_LOAD_CTX* ctx);
|
2016-02-25 13:33:48 +00:00
|
|
|
|
2016-02-29 20:25:08 +00:00
|
|
|
static CTLOG_STORE_LOAD_CTX *ctlog_store_load_ctx_new()
|
2016-02-25 13:33:48 +00:00
|
|
|
{
|
2016-02-29 20:25:08 +00:00
|
|
|
CTLOG_STORE_LOAD_CTX *ctx = OPENSSL_zalloc(sizeof(*ctx));
|
|
|
|
|
2016-02-25 13:33:48 +00:00
|
|
|
if (ctx == NULL) {
|
|
|
|
CTerr(CT_F_CTLOG_STORE_LOAD_CTX_NEW, ERR_R_MALLOC_FAILURE);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ctx;
|
|
|
|
err:
|
2016-02-29 20:25:08 +00:00
|
|
|
ctlog_store_load_ctx_free(ctx);
|
2016-02-25 13:33:48 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-02-29 20:25:08 +00:00
|
|
|
static void ctlog_store_load_ctx_free(CTLOG_STORE_LOAD_CTX* ctx)
|
2016-02-25 13:33:48 +00:00
|
|
|
{
|
|
|
|
OPENSSL_free(ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Converts a log's public key into a SHA256 log ID */
|
2016-02-29 20:25:08 +00:00
|
|
|
static int ct_v1_log_id_from_pkey(EVP_PKEY *pkey,
|
2016-02-25 13:33:48 +00:00
|
|
|
unsigned char log_id[CT_V1_HASHLEN])
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
unsigned char *pkey_der = NULL;
|
|
|
|
int pkey_der_len = i2d_PUBKEY(pkey, &pkey_der);
|
2016-02-29 20:25:08 +00:00
|
|
|
|
2016-02-25 13:33:48 +00:00
|
|
|
if (pkey_der_len <= 0) {
|
|
|
|
CTerr(CT_F_CT_V1_LOG_ID_FROM_PKEY, CT_R_LOG_KEY_INVALID);
|
|
|
|
goto err;
|
|
|
|
}
|
2016-02-29 20:25:08 +00:00
|
|
|
|
2016-02-25 13:33:48 +00:00
|
|
|
SHA256(pkey_der, pkey_der_len, log_id);
|
|
|
|
ret = 1;
|
|
|
|
err:
|
|
|
|
OPENSSL_free(pkey_der);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
CTLOG_STORE *CTLOG_STORE_new(void)
|
|
|
|
{
|
2016-02-29 20:25:08 +00:00
|
|
|
CTLOG_STORE *ret = OPENSSL_zalloc(sizeof(*ret));
|
|
|
|
|
2016-02-25 13:33:48 +00:00
|
|
|
if (ret == NULL)
|
|
|
|
goto err;
|
2016-02-29 20:25:08 +00:00
|
|
|
|
2016-02-25 13:33:48 +00:00
|
|
|
ret->logs = sk_CTLOG_new_null();
|
|
|
|
if (ret->logs == NULL)
|
|
|
|
goto err;
|
2016-02-29 20:25:08 +00:00
|
|
|
|
2016-02-25 13:33:48 +00:00
|
|
|
return ret;
|
|
|
|
err:
|
|
|
|
CTLOG_STORE_free(ret);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CTLOG_STORE_free(CTLOG_STORE *store)
|
|
|
|
{
|
|
|
|
if (store != NULL) {
|
|
|
|
sk_CTLOG_pop_free(store->logs, CTLOG_free);
|
|
|
|
OPENSSL_free(store);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-29 20:25:08 +00:00
|
|
|
static CTLOG *ctlog_new_from_conf(const CONF *conf, const char *section)
|
2016-02-25 13:33:48 +00:00
|
|
|
{
|
|
|
|
CTLOG *ret = NULL;
|
2016-02-29 20:25:08 +00:00
|
|
|
char *description = NCONF_get_string(conf, section, "description");
|
2016-02-25 13:33:48 +00:00
|
|
|
char *pkey_base64;
|
|
|
|
|
|
|
|
if (description == NULL) {
|
|
|
|
CTerr(CT_F_CTLOG_NEW_FROM_CONF, CT_R_LOG_CONF_MISSING_DESCRIPTION);
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
pkey_base64 = NCONF_get_string(conf, section, "key");
|
|
|
|
if (pkey_base64 == NULL) {
|
|
|
|
CTerr(CT_F_CTLOG_NEW_FROM_CONF, CT_R_LOG_CONF_MISSING_KEY);
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = CTLOG_new_from_base64(pkey_base64, description);
|
|
|
|
if (ret == NULL) {
|
|
|
|
CTerr(CT_F_CTLOG_NEW_FROM_CONF, CT_R_LOG_CONF_INVALID);
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
end:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int CTLOG_STORE_load_default_file(CTLOG_STORE *store)
|
|
|
|
{
|
2016-02-29 20:25:08 +00:00
|
|
|
const char *fpath = getenv(CTLOG_FILE_EVP);
|
|
|
|
|
2016-02-25 13:33:48 +00:00
|
|
|
if (fpath == NULL)
|
|
|
|
fpath = CTLOG_FILE;
|
2016-02-29 20:25:08 +00:00
|
|
|
|
2016-02-25 13:33:48 +00:00
|
|
|
return CTLOG_STORE_load_file(store, fpath);
|
|
|
|
}
|
|
|
|
|
2016-03-03 16:06:59 +00:00
|
|
|
/*
|
|
|
|
* Called by CONF_parse_list, which stops if this returns <= 0, so don't unless
|
|
|
|
* something very bad happens. Otherwise, one bad log entry would stop loading
|
|
|
|
* of any of the following log entries.
|
|
|
|
*/
|
|
|
|
static int ctlog_store_load_log(const char *log_name, int log_name_len,
|
|
|
|
void *arg)
|
2016-02-25 13:33:48 +00:00
|
|
|
{
|
|
|
|
CTLOG_STORE_LOAD_CTX *load_ctx = arg;
|
|
|
|
CTLOG *ct_log;
|
|
|
|
/* log_name may not be null-terminated, so fix that before using it */
|
|
|
|
char *tmp = OPENSSL_strndup(log_name, log_name_len);
|
2016-02-29 20:25:08 +00:00
|
|
|
|
|
|
|
ct_log = ctlog_new_from_conf(load_ctx->conf, tmp);
|
2016-02-25 13:33:48 +00:00
|
|
|
OPENSSL_free(tmp);
|
2016-03-03 16:06:59 +00:00
|
|
|
if (ct_log == NULL) {
|
|
|
|
/* If we can't load this log, record that fact and skip it */
|
|
|
|
++load_ctx->invalid_log_entries;
|
|
|
|
return 1;
|
|
|
|
}
|
2016-02-25 13:33:48 +00:00
|
|
|
|
|
|
|
sk_CTLOG_push(load_ctx->log_store->logs, ct_log);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int CTLOG_STORE_load_file(CTLOG_STORE *store, const char *file)
|
|
|
|
{
|
2016-03-03 16:06:59 +00:00
|
|
|
int ret = 0;
|
2016-02-25 13:33:48 +00:00
|
|
|
char *enabled_logs;
|
2016-02-29 20:25:08 +00:00
|
|
|
CTLOG_STORE_LOAD_CTX* load_ctx = ctlog_store_load_ctx_new();
|
|
|
|
|
2016-02-25 13:33:48 +00:00
|
|
|
load_ctx->log_store = store;
|
|
|
|
load_ctx->conf = NCONF_new(NULL);
|
|
|
|
if (load_ctx->conf == NULL)
|
|
|
|
goto end;
|
|
|
|
|
|
|
|
ret = NCONF_load(load_ctx->conf, file, NULL);
|
|
|
|
if (ret <= 0) {
|
|
|
|
CTerr(CT_F_CTLOG_STORE_LOAD_FILE, CT_R_LOG_CONF_INVALID);
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
enabled_logs = NCONF_get_string(load_ctx->conf, NULL, "enabled_logs");
|
2016-03-03 16:08:01 +00:00
|
|
|
if (enabled_logs == NULL) {
|
|
|
|
ret = 0;
|
|
|
|
CTerr(CT_F_CTLOG_STORE_LOAD_FILE, CT_R_LOG_CONF_INVALID);
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
2016-03-03 16:06:59 +00:00
|
|
|
ret = CONF_parse_list(enabled_logs, ',', 1, ctlog_store_load_log, load_ctx);
|
|
|
|
if (ret == 1 && load_ctx->invalid_log_entries > 0) {
|
|
|
|
ret = 0;
|
|
|
|
CTerr(CT_F_CTLOG_STORE_LOAD_FILE, CT_R_LOG_CONF_INVALID);
|
|
|
|
goto end;
|
|
|
|
}
|
2016-02-25 13:33:48 +00:00
|
|
|
|
|
|
|
end:
|
|
|
|
NCONF_free(load_ctx->conf);
|
2016-02-29 20:25:08 +00:00
|
|
|
ctlog_store_load_ctx_free(load_ctx);
|
2016-02-25 13:33:48 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize a new CTLOG object.
|
|
|
|
* Takes ownership of the public key.
|
|
|
|
* Copies the name.
|
|
|
|
*/
|
|
|
|
CTLOG *CTLOG_new(EVP_PKEY *public_key, const char *name)
|
|
|
|
{
|
2016-02-29 20:25:08 +00:00
|
|
|
CTLOG *ret = CTLOG_new_null();
|
|
|
|
|
2016-02-25 13:33:48 +00:00
|
|
|
if (ret == NULL)
|
|
|
|
goto err;
|
2016-02-29 20:25:08 +00:00
|
|
|
|
2016-02-25 13:33:48 +00:00
|
|
|
ret->name = OPENSSL_strdup(name);
|
|
|
|
if (ret->name == NULL)
|
|
|
|
goto err;
|
2016-02-29 20:25:08 +00:00
|
|
|
|
2016-02-25 13:33:48 +00:00
|
|
|
ret->public_key = public_key;
|
2016-02-29 20:25:08 +00:00
|
|
|
if (ct_v1_log_id_from_pkey(public_key, ret->log_id) != 1)
|
2016-02-25 13:33:48 +00:00
|
|
|
goto err;
|
2016-02-29 20:25:08 +00:00
|
|
|
|
2016-02-25 13:33:48 +00:00
|
|
|
return ret;
|
|
|
|
err:
|
|
|
|
CTLOG_free(ret);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
CTLOG *CTLOG_new_null(void)
|
|
|
|
{
|
2016-02-29 20:25:08 +00:00
|
|
|
CTLOG *ret = OPENSSL_zalloc(sizeof(*ret));
|
|
|
|
|
2016-02-25 13:33:48 +00:00
|
|
|
if (ret == NULL)
|
|
|
|
CTerr(CT_F_CTLOG_NEW_NULL, ERR_R_MALLOC_FAILURE);
|
2016-02-29 20:25:08 +00:00
|
|
|
|
2016-02-25 13:33:48 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Frees CT log and associated structures */
|
|
|
|
void CTLOG_free(CTLOG *log)
|
|
|
|
{
|
|
|
|
if (log != NULL) {
|
|
|
|
OPENSSL_free(log->name);
|
|
|
|
EVP_PKEY_free(log->public_key);
|
|
|
|
OPENSSL_free(log);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *CTLOG_get0_name(CTLOG *log)
|
|
|
|
{
|
|
|
|
return log->name;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CTLOG_get0_log_id(CTLOG *log, uint8_t **log_id, size_t *log_id_len)
|
|
|
|
{
|
|
|
|
*log_id = log->log_id;
|
|
|
|
*log_id_len = CT_V1_HASHLEN;
|
|
|
|
}
|
|
|
|
|
|
|
|
EVP_PKEY *CTLOG_get0_public_key(CTLOG *log)
|
|
|
|
{
|
|
|
|
return log->public_key;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Given a log ID, finds the matching log.
|
|
|
|
* Returns NULL if no match found.
|
|
|
|
*/
|
|
|
|
CTLOG *CTLOG_STORE_get0_log_by_id(const CTLOG_STORE *store,
|
|
|
|
const uint8_t *log_id,
|
|
|
|
size_t log_id_len)
|
|
|
|
{
|
|
|
|
int i;
|
2016-02-29 20:25:08 +00:00
|
|
|
|
2016-02-25 13:33:48 +00:00
|
|
|
for (i = 0; i < sk_CTLOG_num(store->logs); ++i) {
|
|
|
|
CTLOG *log = sk_CTLOG_value(store->logs, i);
|
|
|
|
if (memcmp(log->log_id, log_id, log_id_len) == 0)
|
|
|
|
return log;
|
|
|
|
}
|
2016-02-29 20:25:08 +00:00
|
|
|
|
2016-02-25 13:33:48 +00:00
|
|
|
return NULL;
|
|
|
|
}
|