1c7a1682cd825d0d4e2a0f78d5beea861e8368f0
[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         CTerr(CT_F_CT_BASE64_DECODE, CT_R_BASE64_DECODE_ERROR);
107         goto err;
108     }
109
110     *out = outbuf;
111     return outlen;
112 err:
113     OPENSSL_free(outbuf);
114     return -1;
115 }
116
117 SCT *SCT_new_from_base64(unsigned char version, const char *logid_base64,
118                          ct_log_entry_type_t entry_type, uint64_t timestamp,
119                          const char *extensions_base64,
120                          const char *signature_base64)
121 {
122     SCT *sct;
123     unsigned char *dec = NULL;
124     int declen;
125
126     if (logid_base64 == NULL ||
127         extensions_base64 == NULL ||
128         signature_base64 == NULL) {
129         CTerr(CT_F_SCT_NEW_FROM_BASE64, ERR_R_PASSED_NULL_PARAMETER);
130         return NULL;
131     }
132
133     sct = SCT_new();
134     if (sct == NULL) {
135         CTerr(CT_F_SCT_NEW_FROM_BASE64, ERR_R_MALLOC_FAILURE);
136         return NULL;
137     }
138
139     /*
140      * RFC6962 section 4.1 says we "MUST NOT expect this to be 0", but we
141      * can only construct SCT versions that have been defined.
142      */
143     if (!SCT_set_version(sct, version)) {
144         CTerr(CT_F_SCT_NEW_FROM_BASE64, CT_R_SCT_UNSUPPORTED_VERSION);
145         goto err;
146     }
147
148     declen = CT_base64_decode(logid_base64, &dec);
149     if (declen < 0) {
150         CTerr(CT_F_SCT_NEW_FROM_BASE64, X509_R_BASE64_DECODE_ERROR);
151         goto err;
152     }
153     if (!SCT_set0_log_id(sct, dec, declen))
154         goto err;
155     dec = NULL;
156
157     declen = CT_base64_decode(extensions_base64, &dec);
158     if (declen < 0) {
159         CTerr(CT_F_SCT_NEW_FROM_BASE64, X509_R_BASE64_DECODE_ERROR);
160         goto err;
161     }
162     SCT_set0_extensions(sct, dec, declen);
163     dec = NULL;
164
165     declen = CT_base64_decode(signature_base64, &dec);
166     if (declen < 0) {
167         CTerr(CT_F_SCT_NEW_FROM_BASE64, X509_R_BASE64_DECODE_ERROR);
168         goto err;
169     }
170     if (o2i_SCT_signature(sct, (const unsigned char **)&dec, declen) <= 0)
171         goto err;
172     OPENSSL_free(dec);
173     dec = NULL;
174
175     SCT_set_timestamp(sct, timestamp);
176
177     if (!SCT_set_log_entry_type(sct, entry_type))
178         goto err;
179
180     return sct;
181
182  err:
183     OPENSSL_free(dec);
184     SCT_free(sct);
185     return NULL;
186 }
187
188 CTLOG *CTLOG_new_from_base64(const char *pkey_base64, const char *name)
189 {
190     unsigned char *pkey_der = NULL;
191     const unsigned char *p;
192     int pkey_der_len;
193     EVP_PKEY *pkey = NULL;
194     CTLOG *log = NULL;
195
196     pkey_der_len = CT_base64_decode(pkey_base64, &pkey_der);
197     if (pkey_der_len <= 0) {
198         CTerr(CT_F_CTLOG_NEW_FROM_BASE64, CT_R_LOG_CONF_INVALID_KEY);
199         return NULL;
200     }
201
202     p = pkey_der;
203     pkey = d2i_PUBKEY(NULL, &p, pkey_der_len);
204     OPENSSL_free(pkey_der);
205     if (pkey == NULL) {
206         CTerr(CT_F_CTLOG_NEW_FROM_BASE64, CT_R_LOG_CONF_INVALID_KEY);
207         return NULL;
208     }
209
210     log = CTLOG_new(pkey, name);
211     if (log == NULL) {
212         EVP_PKEY_free(pkey);
213         return NULL;
214     }
215
216     return log;
217 }