free NULL cleanup -- coda
[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     ASN1_OBJECT_free(alg->algorithm);
114     if ((nid = EVP_MD_type(dgst)) == NID_undef) {
115         OCSPerr(OCSP_F_OCSP_CERT_ID_NEW, OCSP_R_UNKNOWN_NID);
116         goto err;
117     }
118     if (!(alg->algorithm = OBJ_nid2obj(nid)))
119         goto err;
120     if ((alg->parameter = ASN1_TYPE_new()) == NULL)
121         goto err;
122     alg->parameter->type = V_ASN1_NULL;
123
124     if (!X509_NAME_digest(issuerName, dgst, md, &i))
125         goto digerr;
126     if (!(ASN1_OCTET_STRING_set(cid->issuerNameHash, md, i)))
127         goto err;
128
129     /* Calculate the issuerKey hash, excluding tag and length */
130     if (!EVP_Digest(issuerKey->data, issuerKey->length, md, &i, dgst, NULL))
131         goto err;
132
133     if (!(ASN1_OCTET_STRING_set(cid->issuerKeyHash, md, i)))
134         goto err;
135
136     if (serialNumber) {
137         ASN1_INTEGER_free(cid->serialNumber);
138         if (!(cid->serialNumber = ASN1_INTEGER_dup(serialNumber)))
139             goto err;
140     }
141     return cid;
142  digerr:
143     OCSPerr(OCSP_F_OCSP_CERT_ID_NEW, OCSP_R_DIGEST_ERR);
144  err:
145     OCSP_CERTID_free(cid);
146     return NULL;
147 }
148
149 int OCSP_id_issuer_cmp(OCSP_CERTID *a, OCSP_CERTID *b)
150 {
151     int ret;
152     ret = OBJ_cmp(a->hashAlgorithm->algorithm, b->hashAlgorithm->algorithm);
153     if (ret)
154         return ret;
155     ret = ASN1_OCTET_STRING_cmp(a->issuerNameHash, b->issuerNameHash);
156     if (ret)
157         return ret;
158     return ASN1_OCTET_STRING_cmp(a->issuerKeyHash, b->issuerKeyHash);
159 }
160
161 int OCSP_id_cmp(OCSP_CERTID *a, OCSP_CERTID *b)
162 {
163     int ret;
164     ret = OCSP_id_issuer_cmp(a, b);
165     if (ret)
166         return ret;
167     return ASN1_INTEGER_cmp(a->serialNumber, b->serialNumber);
168 }
169
170 /*
171  * Parse a URL and split it up into host, port and path components and
172  * whether it is SSL.
173  */
174
175 int OCSP_parse_url(const char *url, char **phost, char **pport, char **ppath,
176                    int *pssl)
177 {
178     char *p, *buf;
179
180     char *host, *port;
181
182     *phost = NULL;
183     *pport = NULL;
184     *ppath = NULL;
185
186     /* dup the buffer since we are going to mess with it */
187     buf = BUF_strdup(url);
188     if (!buf)
189         goto mem_err;
190
191     /* Check for initial colon */
192     p = strchr(buf, ':');
193
194     if (!p)
195         goto parse_err;
196
197     *(p++) = '\0';
198
199     if (!strcmp(buf, "http")) {
200         *pssl = 0;
201         port = "80";
202     } else if (!strcmp(buf, "https")) {
203         *pssl = 1;
204         port = "443";
205     } else
206         goto parse_err;
207
208     /* Check for double slash */
209     if ((p[0] != '/') || (p[1] != '/'))
210         goto parse_err;
211
212     p += 2;
213
214     host = p;
215
216     /* Check for trailing part of path */
217
218     p = strchr(p, '/');
219
220     if (!p)
221         *ppath = BUF_strdup("/");
222     else {
223         *ppath = BUF_strdup(p);
224         /* Set start of path to 0 so hostname is valid */
225         *p = '\0';
226     }
227
228     if (!*ppath)
229         goto mem_err;
230
231     p = host;
232     if (host[0] == '[') {
233         /* ipv6 literal */
234         host++;
235         p = strchr(host, ']');
236         if (!p)
237             goto parse_err;
238         *p = '\0';
239         p++;
240     }
241
242     /* Look for optional ':' for port number */
243     if ((p = strchr(p, ':'))) {
244         *p = 0;
245         port = p + 1;
246     } else {
247         /* Not found: set default port */
248         if (*pssl)
249             port = "443";
250         else
251             port = "80";
252     }
253
254     *pport = BUF_strdup(port);
255     if (!*pport)
256         goto mem_err;
257
258     *phost = BUF_strdup(host);
259
260     if (!*phost)
261         goto mem_err;
262
263     OPENSSL_free(buf);
264
265     return 1;
266
267  mem_err:
268     OCSPerr(OCSP_F_OCSP_PARSE_URL, ERR_R_MALLOC_FAILURE);
269     goto err;
270
271  parse_err:
272     OCSPerr(OCSP_F_OCSP_PARSE_URL, OCSP_R_ERROR_PARSING_URL);
273
274  err:
275     OPENSSL_free(buf);
276     OPENSSL_free(*ppath);
277     OPENSSL_free(*pport);
278     OPENSSL_free(*phost);
279     return 0;
280
281 }
282
283 IMPLEMENT_ASN1_DUP_FUNCTION(OCSP_CERTID)