Make OCSP structures opaque.
[archaic-openssl.git] / crypto / ocsp / ocsp_lib.c
1 /* ocsp_lib.c */
2 /*
3  * Written by Tom Titchener <Tom_Titchener@groove.net> for the OpenSSL
4  * project.
5  */
6
7 /*
8  * History: This file was transfered to Richard Levitte from CertCo by Kathy
9  * Weinhold in mid-spring 2000 to be included in OpenSSL or released as a
10  * patch kit.
11  */
12
13 /* ====================================================================
14  * Copyright (c) 1998-2000 The OpenSSL Project.  All rights reserved.
15  *
16  * Redistribution and use in source and binary forms, with or without
17  * modification, are permitted provided that the following conditions
18  * are met:
19  *
20  * 1. Redistributions of source code must retain the above copyright
21  *    notice, this list of conditions and the following disclaimer.
22  *
23  * 2. Redistributions in binary form must reproduce the above copyright
24  *    notice, this list of conditions and the following disclaimer in
25  *    the documentation and/or other materials provided with the
26  *    distribution.
27  *
28  * 3. All advertising materials mentioning features or use of this
29  *    software must display the following acknowledgment:
30  *    "This product includes software developed by the OpenSSL Project
31  *    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
32  *
33  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
34  *    endorse or promote products derived from this software without
35  *    prior written permission. For written permission, please contact
36  *    openssl-core@openssl.org.
37  *
38  * 5. Products derived from this software may not be called "OpenSSL"
39  *    nor may "OpenSSL" appear in their names without prior written
40  *    permission of the OpenSSL Project.
41  *
42  * 6. Redistributions of any form whatsoever must retain the following
43  *    acknowledgment:
44  *    "This product includes software developed by the OpenSSL Project
45  *    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
46  *
47  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
48  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
49  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
50  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
51  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
52  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
53  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
54  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
56  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
57  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
58  * OF THE POSSIBILITY OF SUCH DAMAGE.
59  * ====================================================================
60  *
61  * This product includes cryptographic software written by Eric Young
62  * (eay@cryptsoft.com).  This product includes software written by Tim
63  * Hudson (tjh@cryptsoft.com).
64  *
65  */
66
67 #include <stdio.h>
68 #include <cryptlib.h>
69 #include <openssl/objects.h>
70 #include <openssl/rand.h>
71 #include <openssl/x509.h>
72 #include <openssl/pem.h>
73 #include <openssl/x509v3.h>
74 #include <openssl/ocsp.h>
75 #include "ocsp_lcl.h"
76 #include <openssl/asn1t.h>
77
78 /* Convert a certificate and its issuer to an OCSP_CERTID */
79
80 OCSP_CERTID *OCSP_cert_to_id(const EVP_MD *dgst, X509 *subject, X509 *issuer)
81 {
82     X509_NAME *iname;
83     ASN1_INTEGER *serial;
84     ASN1_BIT_STRING *ikey;
85     if (!dgst)
86         dgst = EVP_sha1();
87     if (subject) {
88         iname = X509_get_issuer_name(subject);
89         serial = X509_get_serialNumber(subject);
90     } else {
91         iname = X509_get_subject_name(issuer);
92         serial = NULL;
93     }
94     ikey = X509_get0_pubkey_bitstr(issuer);
95     return OCSP_cert_id_new(dgst, iname, ikey, serial);
96 }
97
98 OCSP_CERTID *OCSP_cert_id_new(const EVP_MD *dgst,
99                               X509_NAME *issuerName,
100                               ASN1_BIT_STRING *issuerKey,
101                               ASN1_INTEGER *serialNumber)
102 {
103     int nid;
104     unsigned int i;
105     X509_ALGOR *alg;
106     OCSP_CERTID *cid = NULL;
107     unsigned char md[EVP_MAX_MD_SIZE];
108
109     if (!(cid = OCSP_CERTID_new()))
110         goto err;
111
112     alg = cid->hashAlgorithm;
113     if (alg->algorithm != NULL)
114         ASN1_OBJECT_free(alg->algorithm);
115     if ((nid = EVP_MD_type(dgst)) == NID_undef) {
116         OCSPerr(OCSP_F_OCSP_CERT_ID_NEW, OCSP_R_UNKNOWN_NID);
117         goto err;
118     }
119     if (!(alg->algorithm = OBJ_nid2obj(nid)))
120         goto err;
121     if ((alg->parameter = ASN1_TYPE_new()) == NULL)
122         goto err;
123     alg->parameter->type = V_ASN1_NULL;
124
125     if (!X509_NAME_digest(issuerName, dgst, md, &i))
126         goto digerr;
127     if (!(ASN1_OCTET_STRING_set(cid->issuerNameHash, md, i)))
128         goto err;
129
130     /* Calculate the issuerKey hash, excluding tag and length */
131     if (!EVP_Digest(issuerKey->data, issuerKey->length, md, &i, dgst, NULL))
132         goto err;
133
134     if (!(ASN1_OCTET_STRING_set(cid->issuerKeyHash, md, i)))
135         goto err;
136
137     if (serialNumber) {
138         ASN1_INTEGER_free(cid->serialNumber);
139         if (!(cid->serialNumber = ASN1_INTEGER_dup(serialNumber)))
140             goto err;
141     }
142     return cid;
143  digerr:
144     OCSPerr(OCSP_F_OCSP_CERT_ID_NEW, OCSP_R_DIGEST_ERR);
145  err:
146     if (cid)
147         OCSP_CERTID_free(cid);
148     return NULL;
149 }
150
151 int OCSP_id_issuer_cmp(OCSP_CERTID *a, OCSP_CERTID *b)
152 {
153     int ret;
154     ret = OBJ_cmp(a->hashAlgorithm->algorithm, b->hashAlgorithm->algorithm);
155     if (ret)
156         return ret;
157     ret = ASN1_OCTET_STRING_cmp(a->issuerNameHash, b->issuerNameHash);
158     if (ret)
159         return ret;
160     return ASN1_OCTET_STRING_cmp(a->issuerKeyHash, b->issuerKeyHash);
161 }
162
163 int OCSP_id_cmp(OCSP_CERTID *a, OCSP_CERTID *b)
164 {
165     int ret;
166     ret = OCSP_id_issuer_cmp(a, b);
167     if (ret)
168         return ret;
169     return ASN1_INTEGER_cmp(a->serialNumber, b->serialNumber);
170 }
171
172 /*
173  * Parse a URL and split it up into host, port and path components and
174  * whether it is SSL.
175  */
176
177 int OCSP_parse_url(const char *url, char **phost, char **pport, char **ppath,
178                    int *pssl)
179 {
180     char *p, *buf;
181
182     char *host, *port;
183
184     *phost = NULL;
185     *pport = NULL;
186     *ppath = NULL;
187
188     /* dup the buffer since we are going to mess with it */
189     buf = BUF_strdup(url);
190     if (!buf)
191         goto mem_err;
192
193     /* Check for initial colon */
194     p = strchr(buf, ':');
195
196     if (!p)
197         goto parse_err;
198
199     *(p++) = '\0';
200
201     if (!strcmp(buf, "http")) {
202         *pssl = 0;
203         port = "80";
204     } else if (!strcmp(buf, "https")) {
205         *pssl = 1;
206         port = "443";
207     } else
208         goto parse_err;
209
210     /* Check for double slash */
211     if ((p[0] != '/') || (p[1] != '/'))
212         goto parse_err;
213
214     p += 2;
215
216     host = p;
217
218     /* Check for trailing part of path */
219
220     p = strchr(p, '/');
221
222     if (!p)
223         *ppath = BUF_strdup("/");
224     else {
225         *ppath = BUF_strdup(p);
226         /* Set start of path to 0 so hostname is valid */
227         *p = '\0';
228     }
229
230     if (!*ppath)
231         goto mem_err;
232
233     p = host;
234     if (host[0] == '[') {
235         /* ipv6 literal */
236         host++;
237         p = strchr(host, ']');
238         if (!p)
239             goto parse_err;
240         *p = '\0';
241         p++;
242     }
243
244     /* Look for optional ':' for port number */
245     if ((p = strchr(p, ':'))) {
246         *p = 0;
247         port = p + 1;
248     } else {
249         /* Not found: set default port */
250         if (*pssl)
251             port = "443";
252         else
253             port = "80";
254     }
255
256     *pport = BUF_strdup(port);
257     if (!*pport)
258         goto mem_err;
259
260     *phost = BUF_strdup(host);
261
262     if (!*phost)
263         goto mem_err;
264
265     OPENSSL_free(buf);
266
267     return 1;
268
269  mem_err:
270     OCSPerr(OCSP_F_OCSP_PARSE_URL, ERR_R_MALLOC_FAILURE);
271     goto err;
272
273  parse_err:
274     OCSPerr(OCSP_F_OCSP_PARSE_URL, OCSP_R_ERROR_PARSING_URL);
275
276  err:
277     if (buf)
278         OPENSSL_free(buf);
279     if (*ppath)
280         OPENSSL_free(*ppath);
281     if (*pport)
282         OPENSSL_free(*pport);
283     if (*phost)
284         OPENSSL_free(*phost);
285     return 0;
286
287 }
288
289 IMPLEMENT_ASN1_DUP_FUNCTION(OCSP_CERTID)