ct_sct_ctx.c 9.2 KB
Newer Older
R
Rob Percival 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
/*
 * Written by Rob Stradling (rob@comodo.com) and Stephen Henson
 * (steve@openssl.org) for the OpenSSL project 2014.
 */
/* ====================================================================
 * Copyright (c) 2014 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
 *    licensing@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).
 *
 */

#ifdef OPENSSL_NO_CT
# error "CT is disabled"
#endif

#include <stddef.h>
#include <string.h>

#include <openssl/err.h>
#include <openssl/obj_mac.h>
#include <openssl/x509.h>

#include "ct_locl.h"

SCT_CTX *SCT_CTX_new(void)
{
74 75
    SCT_CTX *sctx = OPENSSL_zalloc(sizeof(*sctx));

R
Rob Percival 已提交
76 77
    if (sctx == NULL)
        CTerr(CT_F_SCT_CTX_NEW, ERR_R_MALLOC_FAILURE);
78

R
Rob Percival 已提交
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
    return sctx;
}

void SCT_CTX_free(SCT_CTX *sctx)
{
    if (sctx == NULL)
        return;
    EVP_PKEY_free(sctx->pkey);
    OPENSSL_free(sctx->pkeyhash);
    OPENSSL_free(sctx->ihash);
    OPENSSL_free(sctx->certder);
    OPENSSL_free(sctx->preder);
    OPENSSL_free(sctx);
}

94 95 96 97 98 99
/*
 * Finds the index of the first extension with the given NID in cert.
 * If there is more than one extension with that NID, *is_duplicated is set to
 * 1, otherwise 0 (unless it is NULL).
 */
static int ct_x509_get_ext(X509 *cert, int nid, int *is_duplicated)
R
Rob Percival 已提交
100
{
101 102 103 104 105 106
    int ret = X509_get_ext_by_NID(cert, nid, -1);

    if (is_duplicated != NULL)
        *is_duplicated = ret >= 0 && X509_get_ext_by_NID(cert, nid, ret) >= 0;

    return ret;
R
Rob Percival 已提交
107 108 109
}

/*
110 111 112
 * Modifies a certificate by deleting extensions and copying the issuer and
 * AKID from the presigner certificate, if necessary.
 * Returns 1 on success, 0 otherwise.
R
Rob Percival 已提交
113
 */
114
__owur static int ct_x509_cert_fixup(X509 *cert, X509 *presigner)
R
Rob Percival 已提交
115 116
{
    int preidx, certidx;
117 118
    int pre_akid_ext_is_dup, cert_akid_ext_is_dup;

R
Rob Percival 已提交
119 120
    if (presigner == NULL)
        return 1;
121 122 123 124 125 126 127 128 129 130 131

    preidx = ct_x509_get_ext(presigner, NID_authority_key_identifier,
                             &pre_akid_ext_is_dup);
    certidx = ct_x509_get_ext(cert, NID_authority_key_identifier,
                              &cert_akid_ext_is_dup);

    /* An error occurred whilst searching for the extension */
    if (preidx < -1 || certidx < -1)
        return 0;
    /* Invalid certificate if they contain duplicate extensions */
    if (pre_akid_ext_is_dup || cert_akid_ext_is_dup)
R
Rob Percival 已提交
132 133 134 135 136 137 138 139 140 141 142 143 144 145
        return 0;
    /* AKID must be present in both certificate or absent in both */
    if (preidx >= 0 && certidx == -1)
        return 0;
    if (preidx == -1 && certidx >= 0)
        return 0;
    /* Copy issuer name */
    if (!X509_set_issuer_name(cert, X509_get_issuer_name(presigner)))
        return 0;
    if (preidx != -1) {
        /* Retrieve and copy AKID encoding */
        X509_EXTENSION *preext = X509_get_ext(presigner, preidx);
        X509_EXTENSION *certext = X509_get_ext(cert, certidx);
        ASN1_OCTET_STRING *preextdata;
146

R
Rob Percival 已提交
147 148 149 150
        /* Should never happen */
        if (preext == NULL || certext == NULL)
            return 0;
        preextdata = X509_EXTENSION_get_data(preext);
151 152
        if (preextdata == NULL ||
            !X509_EXTENSION_set_data(certext, preextdata))
R
Rob Percival 已提交
153 154 155 156 157 158 159 160 161 162
            return 0;
    }
    return 1;
}

int SCT_CTX_set1_cert(SCT_CTX *sctx, X509 *cert, X509 *presigner)
{
    unsigned char *certder = NULL, *preder = NULL;
    X509 *pretmp = NULL;
    int certderlen = 0, prederlen = 0;
163 164 165 166
    int idx = -1;
    int poison_ext_is_dup, sct_ext_is_dup;
    int poison_idx = ct_x509_get_ext(cert, NID_ct_precert_poison, &poison_ext_is_dup);

167
    /* Duplicate poison extensions are present - error */
168
    if (poison_ext_is_dup)
R
Rob Percival 已提交
169
        goto err;
170

171
    /* If *cert doesn't have a poison extension, it isn't a precert */
172
    if (poison_idx == -1) {
173
        /* cert isn't a precert, so we shouldn't have a presigner */
174
        if (presigner != NULL)
R
Rob Percival 已提交
175
            goto err;
176

R
Rob Percival 已提交
177 178 179 180
        certderlen = i2d_X509(cert, &certder);
        if (certderlen < 0)
            goto err;
    }
181

182
    /* See if cert has a precert SCTs extension */
183
    idx = ct_x509_get_ext(cert, NID_ct_precert_scts, &sct_ext_is_dup);
184
    /* Duplicate SCT extensions are present - error */
185
    if (sct_ext_is_dup)
R
Rob Percival 已提交
186
        goto err;
187

188 189 190 191 192 193 194 195 196
    if (idx >= 0 && poison_idx >= 0) {
        /*
         * cert can't both contain SCTs (i.e. have an SCT extension) and be a
         * precert (i.e. have a poison extension).
         */
        goto err;
    }

    if (idx == -1) {
197 198 199
        idx = poison_idx;
    }

200 201 202 203 204 205
    /*
     * If either a poison or SCT extension is present, remove it before encoding
     * cert. This, along with ct_x509_cert_fixup(), gets a TBSCertificate (see
     * RFC5280) from cert, which is what the CT log signed when it produced the
     * SCT.
     */
R
Rob Percival 已提交
206 207
    if (idx >= 0) {
        X509_EXTENSION *ext;
208 209

        /* Take a copy of certificate so we don't modify passed version */
R
Rob Percival 已提交
210 211 212
        pretmp = X509_dup(cert);
        if (pretmp == NULL)
            goto err;
213

R
Rob Percival 已提交
214 215
        ext = X509_delete_ext(pretmp, idx);
        X509_EXTENSION_free(ext);
216 217

        if (!ct_x509_cert_fixup(pretmp, presigner))
R
Rob Percival 已提交
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
            goto err;

        prederlen = i2d_re_X509_tbs(pretmp, &preder);
        if (prederlen <= 0)
            goto err;
    }

    X509_free(pretmp);

    OPENSSL_free(sctx->certder);
    sctx->certder = certder;
    sctx->certderlen = certderlen;

    OPENSSL_free(sctx->preder);
    sctx->preder = preder;
    sctx->prederlen = prederlen;

    return 1;
236
err:
R
Rob Percival 已提交
237 238 239 240 241 242
    OPENSSL_free(certder);
    OPENSSL_free(preder);
    X509_free(pretmp);
    return 0;
}

243 244
__owur static int ct_public_key_hash(X509_PUBKEY *pkey, unsigned char **hash,
                                     size_t *hash_len)
R
Rob Percival 已提交
245
{
246
    int ret = 0;
R
Rob Percival 已提交
247 248 249
    unsigned char *md = NULL, *der = NULL;
    int der_len;
    unsigned int md_len;
250

R
Rob Percival 已提交
251 252 253 254 255 256
    /* Reuse buffer if possible */
    if (*hash != NULL && *hash_len >= SHA256_DIGEST_LENGTH) {
        md = *hash;
    } else {
        md = OPENSSL_malloc(SHA256_DIGEST_LENGTH);
        if (md == NULL)
257
            goto err;
R
Rob Percival 已提交
258 259 260 261 262 263
    }

    /* Calculate key hash */
    der_len = i2d_X509_PUBKEY(pkey, &der);
    if (der_len <= 0)
        goto err;
264

R
Rob Percival 已提交
265 266
    if (!EVP_Digest(der, der_len, md, &md_len, EVP_sha256(), NULL))
        goto err;
267

R
Rob Percival 已提交
268 269 270 271 272
    if (md != *hash) {
        OPENSSL_free(*hash);
        *hash = md;
        *hash_len = SHA256_DIGEST_LENGTH;
    }
273

R
Rob Percival 已提交
274 275 276 277 278 279 280 281 282 283
    md = NULL;
    ret = 1;
 err:
    OPENSSL_free(md);
    OPENSSL_free(der);
    return ret;
}

int SCT_CTX_set1_issuer(SCT_CTX *sctx, const X509 *issuer)
{
284
    return SCT_CTX_set1_issuer_pubkey(sctx, X509_get_X509_PUBKEY(issuer));
R
Rob Percival 已提交
285 286 287 288
}

int SCT_CTX_set1_issuer_pubkey(SCT_CTX *sctx, X509_PUBKEY *pubkey)
{
289
    return ct_public_key_hash(pubkey, &sctx->ihash, &sctx->ihashlen);
R
Rob Percival 已提交
290 291 292 293 294
}

int SCT_CTX_set1_pubkey(SCT_CTX *sctx, X509_PUBKEY *pubkey)
{
    EVP_PKEY *pkey = X509_PUBKEY_get(pubkey);
295

R
Rob Percival 已提交
296 297 298
    if (pkey == NULL)
        return 0;

299
    if (!ct_public_key_hash(pubkey, &sctx->pkeyhash, &sctx->pkeyhashlen)) {
R
Rob Percival 已提交
300 301 302 303 304 305 306 307
        EVP_PKEY_free(pkey);
        return 0;
    }

    EVP_PKEY_free(sctx->pkey);
    sctx->pkey = pkey;
    return 1;
}