Verify SCT signatures
[openssl.git] / crypto / ct / ct_b64.c
1 /*
2  * Written by Rob Stradling (rob@comodo.com) and Stephen Henson
3  * (steve@openssl.org) for the OpenSSL project 2014.
4  */
5 /* ====================================================================
6  * Copyright (c) 2014 The OpenSSL Project.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  *
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in
17  *    the documentation and/or other materials provided with the
18  *    distribution.
19  *
20  * 3. All advertising materials mentioning features or use of this
21  *    software must display the following acknowledgment:
22  *    "This product includes software developed by the OpenSSL Project
23  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24  *
25  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26  *    endorse or promote products derived from this software without
27  *    prior written permission. For written permission, please contact
28  *    licensing@OpenSSL.org.
29  *
30  * 5. Products derived from this software may not be called "OpenSSL"
31  *    nor may "OpenSSL" appear in their names without prior written
32  *    permission of the OpenSSL Project.
33  *
34  * 6. Redistributions of any form whatsoever must retain the following
35  *    acknowledgment:
36  *    "This product includes software developed by the OpenSSL Project
37  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38  *
39  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
43  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50  * OF THE POSSIBILITY OF SUCH DAMAGE.
51  * ====================================================================
52  *
53  * This product includes cryptographic software written by Eric Young
54  * (eay@cryptsoft.com).  This product includes software written by Tim
55  * Hudson (tjh@cryptsoft.com).
56  *
57  */
58
59 #include <limits.h>
60 #include <string.h>
61
62 #include <openssl/ct.h>
63 #include <openssl/err.h>
64 #include <openssl/evp.h>
65
66 /*
67  * TODO(robpercival): These macros are getting duplicated all over the place.
68  * Is there a single place they should be defined for re-use?
69  * Also, is there a good reason they aren't functions?
70  */
71 #define n2s(c,s) ((s=(((unsigned int)((c)[0]))<<8) | \
72                      (((unsigned int)((c)[1])))), \
73                   c+=2)
74
75 /*
76  * Decodes the base64 string |in| into |out|.
77  * A new string will be malloc'd and assigned to |out|. This will be owned by
78  * the caller. Do not provide a pre-allocated string in |out|.
79  */
80 static int CT_base64_decode(const char *in, unsigned char **out)
81 {
82     size_t inlen;
83     int outlen;
84     unsigned char *outbuf = NULL;
85
86     if (in == NULL || out == NULL) {
87         CTerr(CT_F_CT_BASE64_DECODE, ERR_R_PASSED_NULL_PARAMETER);
88         goto err;
89     }
90
91     inlen = strlen(in);
92     if (inlen == 0) {
93         *out = NULL;
94         return 0;
95     }
96
97     outlen = (inlen / 4) * 3;
98     outbuf = OPENSSL_malloc(outlen);
99     if (outbuf == NULL) {
100         CTerr(CT_F_CT_BASE64_DECODE, ERR_R_MALLOC_FAILURE);
101         goto err;
102     }
103
104     outlen = EVP_DecodeBlock(outbuf, (unsigned char *)in, inlen);
105     if (outlen < 0) {
106         OPENSSL_free(outbuf);
107         CTerr(CT_F_CT_BASE64_DECODE, CT_R_BASE64_DECODE_ERROR);
108         goto err;
109     }
110
111     *out = outbuf;
112     return outlen;
113 err:
114     OPENSSL_free(outbuf);
115     return -1;
116 }
117
118 SCT *SCT_new_from_base64(unsigned char version, const char *logid_base64,
119                          ct_log_entry_type_t entry_type, uint64_t timestamp,
120                          const char *extensions_base64,
121                          const char *signature_base64)
122 {
123     SCT *sct;
124     unsigned char *dec = NULL;
125     int declen;
126
127     if (logid_base64 == NULL ||
128         extensions_base64 == NULL ||
129         signature_base64 == NULL) {
130         CTerr(CT_F_SCT_NEW_FROM_BASE64, ERR_R_PASSED_NULL_PARAMETER);
131         return NULL;
132     }
133
134     sct = SCT_new();
135     if (sct == NULL) {
136         CTerr(CT_F_SCT_NEW_FROM_BASE64, ERR_R_MALLOC_FAILURE);
137         return NULL;
138     }
139
140     /*
141      * RFC6962 section 4.1 says we "MUST NOT expect this to be 0", but we
142      * can only construct SCT versions that have been defined.
143      */
144     if (!SCT_set_version(sct, version)) {
145         CTerr(CT_F_SCT_NEW_FROM_BASE64, CT_R_SCT_UNSUPPORTED_VERSION);
146         goto err;
147     }
148
149     declen = CT_base64_decode(logid_base64, &dec);
150     if (declen < 0) {
151         CTerr(CT_F_SCT_NEW_FROM_BASE64, X509_R_BASE64_DECODE_ERROR);
152         goto err;
153     }
154     if (!SCT_set0_log_id(sct, dec, declen))
155         goto err;
156     dec = NULL;
157
158     declen = CT_base64_decode(extensions_base64, &dec);
159     if (declen < 0) {
160         CTerr(CT_F_SCT_NEW_FROM_BASE64, X509_R_BASE64_DECODE_ERROR);
161         goto err;
162     }
163     SCT_set0_extensions(sct, dec, declen);
164     dec = NULL;
165
166     declen = CT_base64_decode(signature_base64, &dec);
167     if (declen < 0) {
168         CTerr(CT_F_SCT_NEW_FROM_BASE64, X509_R_BASE64_DECODE_ERROR);
169         goto err;
170     }
171     if (o2i_SCT_signature(sct, (const unsigned char **)&dec, declen) <= 0)
172         goto err;
173
174     SCT_set_timestamp(sct, timestamp);
175
176     if (!SCT_set_log_entry_type(sct, entry_type))
177         goto err;
178
179     return sct;
180
181  err:
182     OPENSSL_free(dec);
183     SCT_free(sct);
184     return NULL;
185 }
186
187 CTLOG *CTLOG_new_from_base64(const char *pkey_base64, const char *name)
188 {
189     unsigned char *pkey_der;
190     int pkey_der_len;
191     EVP_PKEY *pkey = NULL;
192     CTLOG *log = NULL;
193
194     pkey_der_len = CT_base64_decode(pkey_base64, &pkey_der);
195     if (pkey_der_len <= 0) {
196         CTerr(CT_F_CTLOG_NEW_FROM_BASE64, CT_R_LOG_CONF_INVALID_KEY);
197         return NULL;
198     }
199
200     pkey = d2i_PUBKEY(NULL, (const unsigned char **)&pkey_der, pkey_der_len);
201     if (pkey == NULL) {
202         CTerr(CT_F_CTLOG_NEW_FROM_BASE64, CT_R_LOG_CONF_INVALID_KEY);
203         return NULL;
204     }
205
206     log = CTLOG_new(pkey, name);
207     if (log == NULL) {
208         EVP_PKEY_free(pkey);
209         return NULL;
210     }
211
212     return log;
213 }