Addresses review comments from richsalz
[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 = strlen(in);
83     int outlen;
84     unsigned char *outbuf = NULL;
85
86     if (inlen == 0) {
87         *out = NULL;
88         return 0;
89     }
90
91     outlen = (inlen / 4) * 3;
92     outbuf = OPENSSL_malloc(outlen);
93     if (outbuf == NULL) {
94         CTerr(CT_F_CT_BASE64_DECODE, ERR_R_MALLOC_FAILURE);
95         goto err;
96     }
97
98     outlen = EVP_DecodeBlock(outbuf, (unsigned char *)in, inlen);
99     if (outlen < 0) {
100         CTerr(CT_F_CT_BASE64_DECODE, CT_R_BASE64_DECODE_ERROR);
101         goto err;
102     }
103
104     *out = outbuf;
105     return outlen;
106 err:
107     OPENSSL_free(outbuf);
108     return -1;
109 }
110
111 SCT *SCT_new_from_base64(unsigned char version, const char *logid_base64,
112                          ct_log_entry_type_t entry_type, uint64_t timestamp,
113                          const char *extensions_base64,
114                          const char *signature_base64)
115 {
116     SCT *sct = SCT_new();
117     unsigned char *dec = NULL;
118     int declen;
119
120     if (sct == NULL) {
121         CTerr(CT_F_SCT_NEW_FROM_BASE64, ERR_R_MALLOC_FAILURE);
122         return NULL;
123     }
124
125     /*
126      * RFC6962 section 4.1 says we "MUST NOT expect this to be 0", but we
127      * can only construct SCT versions that have been defined.
128      */
129     if (!SCT_set_version(sct, version)) {
130         CTerr(CT_F_SCT_NEW_FROM_BASE64, CT_R_SCT_UNSUPPORTED_VERSION);
131         goto err;
132     }
133
134     declen = ct_base64_decode(logid_base64, &dec);
135     if (declen < 0) {
136         CTerr(CT_F_SCT_NEW_FROM_BASE64, X509_R_BASE64_DECODE_ERROR);
137         goto err;
138     }
139     if (!SCT_set0_log_id(sct, dec, declen))
140         goto err;
141     dec = NULL;
142
143     declen = ct_base64_decode(extensions_base64, &dec);
144     if (declen < 0) {
145         CTerr(CT_F_SCT_NEW_FROM_BASE64, X509_R_BASE64_DECODE_ERROR);
146         goto err;
147     }
148     SCT_set0_extensions(sct, dec, declen);
149     dec = NULL;
150
151     declen = ct_base64_decode(signature_base64, &dec);
152     if (declen < 0) {
153         CTerr(CT_F_SCT_NEW_FROM_BASE64, X509_R_BASE64_DECODE_ERROR);
154         goto err;
155     }
156     if (o2i_SCT_signature(sct, (const unsigned char **)&dec, declen) <= 0)
157         goto err;
158     OPENSSL_free(dec);
159     dec = NULL;
160
161     SCT_set_timestamp(sct, timestamp);
162
163     if (!SCT_set_log_entry_type(sct, entry_type))
164         goto err;
165
166     return sct;
167
168  err:
169     OPENSSL_free(dec);
170     SCT_free(sct);
171     return NULL;
172 }
173
174 CTLOG *CTLOG_new_from_base64(const char *pkey_base64, const char *name)
175 {
176     unsigned char *pkey_der = NULL;
177     int pkey_der_len = ct_base64_decode(pkey_base64, &pkey_der);
178     const unsigned char *p;
179     EVP_PKEY *pkey = NULL;
180     CTLOG *log = NULL;
181
182     if (pkey_der_len <= 0) {
183         CTerr(CT_F_CTLOG_NEW_FROM_BASE64, CT_R_LOG_CONF_INVALID_KEY);
184         return NULL;
185     }
186
187     p = pkey_der;
188     pkey = d2i_PUBKEY(NULL, &p, pkey_der_len);
189     OPENSSL_free(pkey_der);
190     if (pkey == NULL) {
191         CTerr(CT_F_CTLOG_NEW_FROM_BASE64, CT_R_LOG_CONF_INVALID_KEY);
192         return NULL;
193     }
194
195     log = CTLOG_new(pkey, name);
196     if (log == NULL) {
197         EVP_PKEY_free(pkey);
198         return NULL;
199     }
200
201     return log;
202 }