v3_scts.c 8.9 KB
Newer Older
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
/* v3_scts.c */
/* Written by Rob Stradling (rob@comodo.com) 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).
 *
 */


#include <stdio.h>
#include "cryptlib.h"
#include <openssl/asn1.h>
#include <openssl/x509v3.h>
#include "../ssl/ssl_locl.h"

D
Dr. Stephen Henson 已提交
65
#if (defined(_WIN32) || defined(_WIN64)) && !defined(__MINGW32__)
66
#define SCT_TIMESTAMP unsigned __int64
D
Dr. Stephen Henson 已提交
67
#elif defined(__arch64__)
68
#define SCT_TIMESTAMP unsigned long
D
Dr. Stephen Henson 已提交
69
#else
70
#define SCT_TIMESTAMP unsigned long long
D
Dr. Stephen Henson 已提交
71 72
#endif

73 74 75 76 77 78 79 80
#define n2l8(c,l)	(l =((SCT_TIMESTAMP)(*((c)++)))<<56, \
			 l|=((SCT_TIMESTAMP)(*((c)++)))<<48, \
			 l|=((SCT_TIMESTAMP)(*((c)++)))<<40, \
			 l|=((SCT_TIMESTAMP)(*((c)++)))<<32, \
			 l|=((SCT_TIMESTAMP)(*((c)++)))<<24, \
			 l|=((SCT_TIMESTAMP)(*((c)++)))<<16, \
			 l|=((SCT_TIMESTAMP)(*((c)++)))<< 8, \
			 l|=((SCT_TIMESTAMP)(*((c)++))))
81

82 83 84 85
typedef struct SCT_st {
	/* The encoded SCT */
	unsigned char *sct;
	unsigned short sctlen;
D
Dr. Stephen Henson 已提交
86

87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
	/* Components of the SCT.  "logid", "ext" and "sig" point to addresses
	 * inside "sct".
	 */
	unsigned char version;
	unsigned char* logid;
	unsigned short logidlen;
	SCT_TIMESTAMP timestamp;
	unsigned char *ext;
	unsigned short extlen;
	unsigned char hash_alg;
	unsigned char sig_alg;
	unsigned char *sig;
	unsigned short siglen;
} SCT;

DECLARE_STACK_OF(SCT)

static void SCT_LIST_free(STACK_OF(SCT) *a);
static STACK_OF(SCT) *d2i_SCT_LIST(STACK_OF(SCT) **a, const unsigned char **pp,
				   long length);
static int i2r_SCT_LIST(X509V3_EXT_METHOD *method, STACK_OF(SCT) *sct_list,
			BIO *out, int indent);
109 110

const X509V3_EXT_METHOD v3_ct_scts[] = {
111 112 113
{ NID_ct_precert_scts, 0, NULL,
0,(X509V3_EXT_FREE)SCT_LIST_free,
(X509V3_EXT_D2I)d2i_SCT_LIST, 0,
114
0,0,0,0,
115
(X509V3_EXT_I2R)i2r_SCT_LIST, 0,
116 117
NULL},

118 119 120
{ NID_ct_cert_scts, 0, NULL,
0,(X509V3_EXT_FREE)SCT_LIST_free,
(X509V3_EXT_D2I)d2i_SCT_LIST, 0,
121
0,0,0,0,
122
(X509V3_EXT_I2R)i2r_SCT_LIST, 0,
123 124 125
NULL},
};

126 127
static void tls12_signature_print(BIO *out, const unsigned char hash_alg,
				  const unsigned char sig_alg)
128 129 130
	{
	int nid = NID_undef;
	/* RFC6962 only permits two signature algorithms */
131
	if (hash_alg == TLSEXT_hash_sha256)
132
		{
133
		if (sig_alg == TLSEXT_signature_rsa)
134
			nid = NID_sha256WithRSAEncryption;
135
		else if (sig_alg == TLSEXT_signature_ecdsa)
136 137 138
			nid = NID_ecdsa_with_SHA256;
		}
	if (nid == NID_undef)
139
		BIO_printf(out, "%02X%02X", hash_alg, sig_alg);
140 141 142 143
	else
		BIO_printf(out, "%s", OBJ_nid2ln(nid));
	}

144
static void timestamp_print(BIO *out, SCT_TIMESTAMP timestamp)
145 146 147 148 149
	{
	ASN1_GENERALIZEDTIME *gen;
	char genstr[20];
	gen = ASN1_GENERALIZEDTIME_new();
	ASN1_GENERALIZEDTIME_adj(gen, (time_t)0,
D
Dr. Stephen Henson 已提交
150
					(int)(timestamp / 86400000),
151 152 153 154 155 156 157 158 159 160 161 162
					(timestamp % 86400000) / 1000);
	/* Note GeneralizedTime from ASN1_GENERALIZETIME_adj is always 15
	 * characters long with a final Z. Update it with fractional seconds.
	 */
	BIO_snprintf(genstr, sizeof(genstr), "%.14s.%03dZ",
				ASN1_STRING_data(gen),
				(unsigned int)(timestamp % 1000));
	ASN1_GENERALIZEDTIME_set_string(gen, genstr);
	ASN1_GENERALIZEDTIME_print(out, gen);
	ASN1_GENERALIZEDTIME_free(gen);
	}

163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
static void SCT_free(SCT *sct)
	{
	if (sct)
		{
		if (sct->sct) OPENSSL_free(sct->sct);
		OPENSSL_free(sct);
		}
	}

static void SCT_LIST_free(STACK_OF(SCT) *a)
	{
	sk_SCT_pop_free(a, SCT_free);
	}

static STACK_OF(SCT) *d2i_SCT_LIST(STACK_OF(SCT) **a, const unsigned char **pp,
				   long length)
179
	{
180 181 182 183
	ASN1_OCTET_STRING *oct = NULL;
	STACK_OF(SCT) *sk = NULL;
	SCT *sct;
	unsigned char *p, *p2;
184 185
	unsigned short listlen, sctlen = 0, fieldlen;

186 187
	if (d2i_ASN1_OCTET_STRING(&oct, pp, length) == NULL)
		return NULL;
188
	if (oct->length < 2)
189 190 191
		goto done;
	p = oct->data;
	n2s(p, listlen);
192
	if (listlen != oct->length - 2)
193 194 195 196
		goto done;

	if ((sk=sk_SCT_new_null()) == NULL)
		goto done;
197 198 199 200

	while (listlen > 0)
		{
		if (listlen < 2)
201 202
			goto err;
		n2s(p, sctlen);
203 204 205
		listlen -= 2;

		if ((sctlen < 1) || (sctlen > listlen))
206
			goto err;
207 208
		listlen -= sctlen;

209 210 211 212
		sct = OPENSSL_malloc(sizeof(SCT));
		if (!sct)
			goto err;
		if (!sk_SCT_push(sk, sct))
213
			{
214 215 216 217 218 219 220 221 222 223 224
			OPENSSL_free(sct);
			goto err;
			}

		sct->sct = OPENSSL_malloc(sctlen);
		if (!sct->sct)
			goto err;
		memcpy(sct->sct, p, sctlen);
		sct->sctlen = sctlen;
		p += sctlen;
		p2 = sct->sct;
225

226 227 228
		sct->version = *p2++;
		if (sct->version == 0)		/* SCT v1 */
			{
229 230
			/*- 
			 * Fixed-length header:
231 232 233 234 235 236 237
			 *		struct {
			 * (1 byte)	  Version sct_version;
			 * (32 bytes)	  LogID id;
			 * (8 bytes)	  uint64 timestamp;
			 * (2 bytes + ?)  CtExtensions extensions;
			 */
			if (sctlen < 43)
238
				goto err;
239 240
			sctlen -= 43;

241 242 243
			sct->logid = p2;
			sct->logidlen = 32;
			p2 += 32;
244

245
			n2l8(p2, sct->timestamp);
246

247
			n2s(p2, fieldlen);
248
			if (sctlen < fieldlen)
249 250 251 252
				goto err;
			sct->ext = p2;
			sct->extlen = fieldlen;
			p2 += fieldlen;
253 254
			sctlen -= fieldlen;

255 256
			/*-
			 * digitally-signed struct header:
257 258 259
			 * (1 byte)       Hash algorithm
			 * (1 byte)       Signature algorithm
			 * (2 bytes + ?)  Signature
260 261
			 */
			if (sctlen < 4)
262
				goto err;
263 264
			sctlen -= 4;

265 266 267
			sct->hash_alg = *p2++;
			sct->sig_alg = *p2++;
			n2s(p2, fieldlen);
268
			if (sctlen != fieldlen)
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316
				goto err;
			sct->sig = p2;
			sct->siglen = fieldlen;
			}
		}

	done:
	ASN1_OCTET_STRING_free(oct);
	return sk;

	err:
	SCT_LIST_free(sk);
	sk = NULL;
	goto done;
	}

static int i2r_SCT_LIST(X509V3_EXT_METHOD *method, STACK_OF(SCT) *sct_list,
			BIO *out, int indent)
	{
	SCT *sct;
	int i;

	for (i = 0; i < sk_SCT_num(sct_list);) {
		sct = sk_SCT_value(sct_list, i);

		BIO_printf(out, "%*sSigned Certificate Timestamp:", indent, "");
		BIO_printf(out, "\n%*sVersion   : ", indent + 4, "");

		if (sct->version == 0)	/* SCT v1 */
			{
			BIO_printf(out, "v1(0)");

			BIO_printf(out, "\n%*sLog ID    : ", indent + 4, "");
			BIO_hex_string(out, indent + 16, 16, sct->logid,
				       sct->logidlen);

			BIO_printf(out, "\n%*sTimestamp : ", indent + 4, "");
			timestamp_print(out, sct->timestamp);

			BIO_printf(out, "\n%*sExtensions: ", indent + 4, "");
			if (sct->extlen == 0)
				BIO_printf(out, "none");
			else
				BIO_hex_string(out, indent + 16, 16, sct->ext,
					       sct->extlen);

			BIO_printf(out, "\n%*sSignature : ", indent + 4, "");
			tls12_signature_print(out, sct->hash_alg, sct->sig_alg);
317
			BIO_printf(out, "\n%*s            ", indent + 4, "");
318 319
			BIO_hex_string(out, indent + 16, 16, sct->sig,
				       sct->siglen);
320
			}
321 322 323
		else			/* Unknown version */
			{
			BIO_printf(out, "unknown\n%*s", indent + 16, "");
324 325
			BIO_hex_string(out, indent + 16, 16, sct->sct,
				       sct->sctlen);
326 327
			}

328
		if (++i < sk_SCT_num(sct_list)) BIO_printf(out, "\n");
329 330 331 332
		}

	return 1;
	}