Make parameters of CTLOG_get* const
[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 #include "ct_locl.h"
67
68 /*
69  * Decodes the base64 string |in| into |out|.
70  * A new string will be malloc'd and assigned to |out|. This will be owned by
71  * the caller. Do not provide a pre-allocated string in |out|.
72  */
73 static int ct_base64_decode(const char *in, unsigned char **out)
74 {
75     size_t inlen = strlen(in);
76     int outlen;
77     unsigned char *outbuf = NULL;
78
79     if (inlen == 0) {
80         *out = NULL;
81         return 0;
82     }
83
84     outlen = (inlen / 4) * 3;
85     outbuf = OPENSSL_malloc(outlen);
86     if (outbuf == NULL) {
87         CTerr(CT_F_CT_BASE64_DECODE, ERR_R_MALLOC_FAILURE);
88         goto err;
89     }
90
91     outlen = EVP_DecodeBlock(outbuf, (unsigned char *)in, inlen);
92     if (outlen < 0) {
93         CTerr(CT_F_CT_BASE64_DECODE, CT_R_BASE64_DECODE_ERROR);
94         goto err;
95     }
96
97     *out = outbuf;
98     return outlen;
99 err:
100     OPENSSL_free(outbuf);
101     return -1;
102 }
103
104 SCT *SCT_new_from_base64(unsigned char version, const char *logid_base64,
105                          ct_log_entry_type_t entry_type, uint64_t timestamp,
106                          const char *extensions_base64,
107                          const char *signature_base64)
108 {
109     SCT *sct = SCT_new();
110     unsigned char *dec = NULL;
111     int declen;
112
113     if (sct == NULL) {
114         CTerr(CT_F_SCT_NEW_FROM_BASE64, ERR_R_MALLOC_FAILURE);
115         return NULL;
116     }
117
118     /*
119      * RFC6962 section 4.1 says we "MUST NOT expect this to be 0", but we
120      * can only construct SCT versions that have been defined.
121      */
122     if (!SCT_set_version(sct, version)) {
123         CTerr(CT_F_SCT_NEW_FROM_BASE64, CT_R_SCT_UNSUPPORTED_VERSION);
124         goto err;
125     }
126
127     declen = ct_base64_decode(logid_base64, &dec);
128     if (declen < 0) {
129         CTerr(CT_F_SCT_NEW_FROM_BASE64, X509_R_BASE64_DECODE_ERROR);
130         goto err;
131     }
132     if (!SCT_set0_log_id(sct, dec, declen))
133         goto err;
134     dec = NULL;
135
136     declen = ct_base64_decode(extensions_base64, &dec);
137     if (declen < 0) {
138         CTerr(CT_F_SCT_NEW_FROM_BASE64, X509_R_BASE64_DECODE_ERROR);
139         goto err;
140     }
141     SCT_set0_extensions(sct, dec, declen);
142     dec = NULL;
143
144     declen = ct_base64_decode(signature_base64, &dec);
145     if (declen < 0) {
146         CTerr(CT_F_SCT_NEW_FROM_BASE64, X509_R_BASE64_DECODE_ERROR);
147         goto err;
148     }
149     if (o2i_SCT_signature(sct, (const unsigned char **)&dec, declen) <= 0)
150         goto err;
151     OPENSSL_free(dec);
152     dec = NULL;
153
154     SCT_set_timestamp(sct, timestamp);
155
156     if (!SCT_set_log_entry_type(sct, entry_type))
157         goto err;
158
159     return sct;
160
161  err:
162     OPENSSL_free(dec);
163     SCT_free(sct);
164     return NULL;
165 }
166
167 CTLOG *CTLOG_new_from_base64(const char *pkey_base64, const char *name)
168 {
169     unsigned char *pkey_der = NULL;
170     int pkey_der_len = ct_base64_decode(pkey_base64, &pkey_der);
171     const unsigned char *p;
172     EVP_PKEY *pkey = NULL;
173     CTLOG *log = NULL;
174
175     if (pkey_der_len <= 0) {
176         CTerr(CT_F_CTLOG_NEW_FROM_BASE64, CT_R_LOG_CONF_INVALID_KEY);
177         return NULL;
178     }
179
180     p = pkey_der;
181     pkey = d2i_PUBKEY(NULL, &p, pkey_der_len);
182     OPENSSL_free(pkey_der);
183     if (pkey == NULL) {
184         CTerr(CT_F_CTLOG_NEW_FROM_BASE64, CT_R_LOG_CONF_INVALID_KEY);
185         return NULL;
186     }
187
188     log = CTLOG_new(pkey, name);
189     if (log == NULL) {
190         EVP_PKEY_free(pkey);
191         return NULL;
192     }
193
194     return log;
195 }