Moved some variable declarations inside blocks where they are needed
[openssl.git] / crypto / x509v3 / v3_conf.c
1 /* v3_conf.c */
2 /* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL
3  * project 1999.
4  */
5 /* ====================================================================
6  * Copyright (c) 1999 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 /* extension creation utilities */
59
60
61
62 #include <stdio.h>
63 #include <ctype.h>
64 #include "cryptlib.h"
65 #include <openssl/conf.h>
66 #include <openssl/x509.h>
67 #include <openssl/x509v3.h>
68
69 static int v3_check_critical(char **value);
70 static int v3_check_generic(char **value);
71 static X509_EXTENSION *do_ext_conf(LHASH *conf, X509V3_CTX *ctx, int ext_nid, int crit, char *value);
72 static X509_EXTENSION *v3_generic_extension(const char *ext, char *value, int crit, int type);
73 static char *conf_lhash_get_string(void *db, char *section, char *value);
74 static STACK *conf_lhash_get_section(void *db, char *section);
75 static X509_EXTENSION *do_ext_i2d(X509V3_EXT_METHOD *method, int ext_nid,
76                                                  int crit, void *ext_struc);
77 /* LHASH *conf:  Config file    */
78 /* char *name:  Name    */
79 /* char *value:  Value    */
80 X509_EXTENSION *X509V3_EXT_conf(LHASH *conf, X509V3_CTX *ctx, char *name,
81              char *value)
82 {
83         int crit;
84         int ext_type;
85         X509_EXTENSION *ret;
86         crit = v3_check_critical(&value);
87         if((ext_type = v3_check_generic(&value))) 
88                 return v3_generic_extension(name, value, crit, ext_type);
89         ret = do_ext_conf(conf, ctx, OBJ_sn2nid(name), crit, value);
90         if(!ret) {
91                 X509V3err(X509V3_F_X509V3_EXT_CONF,X509V3_R_ERROR_IN_EXTENSION);
92                 ERR_add_error_data(4,"name=", name, ", value=", value);
93         }
94         return ret;
95 }
96
97 /* LHASH *conf:  Config file    */
98 /* char *value:  Value    */
99 X509_EXTENSION *X509V3_EXT_conf_nid(LHASH *conf, X509V3_CTX *ctx, int ext_nid,
100              char *value)
101 {
102         int crit;
103         int ext_type;
104         crit = v3_check_critical(&value);
105         if((ext_type = v3_check_generic(&value))) 
106                 return v3_generic_extension(OBJ_nid2sn(ext_nid),
107                                                          value, crit, ext_type);
108         return do_ext_conf(conf, ctx, ext_nid, crit, value);
109 }
110
111 /* LHASH *conf:  Config file    */
112 /* char *value:  Value    */
113 static X509_EXTENSION *do_ext_conf(LHASH *conf, X509V3_CTX *ctx, int ext_nid,
114              int crit, char *value)
115 {
116         X509V3_EXT_METHOD *method;
117         X509_EXTENSION *ext;
118         STACK *nval;
119         void *ext_struc;
120         if(ext_nid == NID_undef) {
121                 X509V3err(X509V3_F_DO_EXT_CONF,X509V3_R_UNKNOWN_EXTENSION_NAME);
122                 return NULL;
123         }
124         if(!(method = X509V3_EXT_get_nid(ext_nid))) {
125                 X509V3err(X509V3_F_DO_EXT_CONF,X509V3_R_UNKNOWN_EXTENSION);
126                 return NULL;
127         }
128         /* Now get internal extension representation based on type */
129         if(method->v2i) {
130                 if(*value == '@') nval = CONF_get_section(conf, value + 1);
131                 else nval = X509V3_parse_list(value);
132                 if(!nval) {
133                         X509V3err(X509V3_F_X509V3_EXT_CONF,X509V3_R_INVALID_EXTENSION_STRING);
134                         ERR_add_error_data(4, "name=", OBJ_nid2sn(ext_nid), ",section=", value);
135                         return NULL;
136                 }
137                 ext_struc = method->v2i(method, ctx, nval);
138                 if(*value != '@') sk_pop_free(nval, X509V3_conf_free);
139                 if(!ext_struc) return NULL;
140         } else if(method->s2i) {
141                 if(!(ext_struc = method->s2i(method, ctx, value))) return NULL;
142         } else if(method->r2i) {
143                 if(!ctx->db) {
144                         X509V3err(X509V3_F_X509V3_EXT_CONF,X509V3_R_NO_CONFIG_DATABASE);
145                         return NULL;
146                 }
147                 if(!(ext_struc = method->r2i(method, ctx, value))) return NULL;
148         } else {
149                 X509V3err(X509V3_F_X509V3_EXT_CONF,X509V3_R_EXTENSION_SETTING_NOT_SUPPORTED);
150                 ERR_add_error_data(2, "name=", OBJ_nid2sn(ext_nid));
151                 return NULL;
152         }
153
154         ext  = do_ext_i2d(method, ext_nid, crit, ext_struc);
155         method->ext_free(ext_struc);
156         return ext;
157
158 }
159
160 static X509_EXTENSION *do_ext_i2d(X509V3_EXT_METHOD *method, int ext_nid,
161                                                  int crit, void *ext_struc)
162 {
163         unsigned char *ext_der, *p;
164         int ext_len;
165         ASN1_OCTET_STRING *ext_oct;
166         X509_EXTENSION *ext;
167         /* Convert internal representation to DER */
168         ext_len = method->i2d(ext_struc, NULL);
169         if(!(ext_der = Malloc(ext_len))) goto merr;
170         p = ext_der;
171         method->i2d(ext_struc, &p);
172         if(!(ext_oct = ASN1_OCTET_STRING_new())) goto merr;
173         ext_oct->data = ext_der;
174         ext_oct->length = ext_len;
175         
176         ext = X509_EXTENSION_create_by_NID(NULL, ext_nid, crit, ext_oct);
177         if(!ext) goto merr;
178         ASN1_OCTET_STRING_free(ext_oct);
179
180         return ext;
181
182         merr:
183         X509V3err(X509V3_F_DO_EXT_I2D,ERR_R_MALLOC_FAILURE);
184         return NULL;
185
186 }
187
188 /* Given an internal structure, nid and critical flag create an extension */
189
190 X509_EXTENSION *X509V3_EXT_i2d(int ext_nid, int crit, void *ext_struc)
191 {
192         X509V3_EXT_METHOD *method;
193         if(!(method = X509V3_EXT_get_nid(ext_nid))) {
194                 X509V3err(X509V3_F_X509V3_EXT_I2D,X509V3_R_UNKNOWN_EXTENSION);
195                 return NULL;
196         }
197         return do_ext_i2d(method, ext_nid, crit, ext_struc);
198 }
199
200 /* Check the extension string for critical flag */
201 static int v3_check_critical(char **value)
202 {
203         char *p = *value;
204         if((strlen(p) < 9) || strncmp(p, "critical,", 9)) return 0;
205         p+=9;
206         while(isspace(*p)) p++;
207         *value = p;
208         return 1;
209 }
210
211 /* Check extension string for generic extension and return the type */
212 static int v3_check_generic(char **value)
213 {
214         char *p = *value;
215         if((strlen(p) < 4) || strncmp(p, "RAW:,", 4)) return 0;
216         p+=4;
217         while(isspace(*p)) p++;
218         *value = p;
219         return 1;
220 }
221
222 /* Create a generic extension: for now just handle RAW type */
223 static X509_EXTENSION *v3_generic_extension(const char *ext, char *value,
224              int crit, int type)
225 {
226 unsigned char *ext_der=NULL;
227 long ext_len;
228 ASN1_OBJECT *obj=NULL;
229 ASN1_OCTET_STRING *oct=NULL;
230 X509_EXTENSION *extension=NULL;
231 if(!(obj = OBJ_txt2obj(ext, 0))) {
232         X509V3err(X509V3_F_V3_GENERIC_EXTENSION,X509V3_R_EXTENSION_NAME_ERROR);
233         ERR_add_error_data(2, "name=", ext);
234         goto err;
235 }
236
237 if(!(ext_der = string_to_hex(value, &ext_len))) {
238         X509V3err(X509V3_F_V3_GENERIC_EXTENSION,X509V3_R_EXTENSION_VALUE_ERROR);
239         ERR_add_error_data(2, "value=", value);
240         goto err;
241 }
242
243 if(!(oct = ASN1_OCTET_STRING_new())) {
244         X509V3err(X509V3_F_V3_GENERIC_EXTENSION,ERR_R_MALLOC_FAILURE);
245         goto err;
246 }
247
248 oct->data = ext_der;
249 oct->length = ext_len;
250 ext_der = NULL;
251
252 extension = X509_EXTENSION_create_by_OBJ(NULL, obj, crit, oct);
253
254 err:
255 ASN1_OBJECT_free(obj);
256 ASN1_OCTET_STRING_free(oct);
257 if(ext_der) Free(ext_der);
258 return extension;
259 }
260
261
262 /* This is the main function: add a bunch of extensions based on a config file
263  * section
264  */
265
266 int X509V3_EXT_add_conf(LHASH *conf, X509V3_CTX *ctx, char *section,
267              X509 *cert)
268 {
269         X509_EXTENSION *ext;
270         STACK *nval;
271         CONF_VALUE *val;        
272         int i;
273         if(!(nval = CONF_get_section(conf, section))) return 0;
274         for(i = 0; i < sk_num(nval); i++) {
275                 val = (CONF_VALUE *)sk_value(nval, i);
276                 if(!(ext = X509V3_EXT_conf(conf, ctx, val->name, val->value)))
277                                                                 return 0;
278                 if(cert) X509_add_ext(cert, ext, -1);
279                 X509_EXTENSION_free(ext);
280         }
281         return 1;
282 }
283
284 /* Same as above but for a CRL */
285
286 int X509V3_EXT_CRL_add_conf(LHASH *conf, X509V3_CTX *ctx, char *section,
287              X509_CRL *crl)
288 {
289         X509_EXTENSION *ext;
290         STACK *nval;
291         CONF_VALUE *val;        
292         int i;
293         if(!(nval = CONF_get_section(conf, section))) return 0;
294         for(i = 0; i < sk_num(nval); i++) {
295                 val = (CONF_VALUE *)sk_value(nval, i);
296                 if(!(ext = X509V3_EXT_conf(conf, ctx, val->name, val->value)))
297                                                                 return 0;
298                 if(crl) X509_CRL_add_ext(crl, ext, -1);
299                 X509_EXTENSION_free(ext);
300         }
301         return 1;
302 }
303
304 /* Config database functions */
305
306 char * X509V3_get_string(X509V3_CTX *ctx, char *name, char *section)
307 {
308         if(ctx->db_meth->get_string)
309                         return ctx->db_meth->get_string(ctx->db, name, section);
310         return NULL;
311 }
312
313 STACK * X509V3_get_section(X509V3_CTX *ctx, char *section)
314 {
315         if(ctx->db_meth->get_section)
316                         return ctx->db_meth->get_section(ctx->db, section);
317         return NULL;
318 }
319
320 void X509V3_string_free(X509V3_CTX *ctx, char *str)
321 {
322         if(!str) return;
323         if(ctx->db_meth->free_string)
324                         ctx->db_meth->free_string(ctx->db, str);
325 }
326
327 void X509V3_section_free(X509V3_CTX *ctx, STACK *section)
328 {
329         if(!section) return;
330         if(ctx->db_meth->free_section)
331                         ctx->db_meth->free_section(ctx->db, section);
332 }
333
334 static char *conf_lhash_get_string(void *db, char *section, char *value)
335 {
336         return CONF_get_string(db, section, value);
337 }
338
339 static STACK *conf_lhash_get_section(void *db, char *section)
340 {
341         return CONF_get_section(db, section);
342 }
343
344 static X509V3_CONF_METHOD conf_lhash_method = {
345 conf_lhash_get_string,
346 conf_lhash_get_section,
347 NULL,
348 NULL
349 };
350
351 void X509V3_set_conf_lhash(X509V3_CTX *ctx, LHASH *lhash)
352 {
353         ctx->db_meth = &conf_lhash_method;
354         ctx->db = lhash;
355 }
356
357 void X509V3_set_ctx(X509V3_CTX *ctx, X509 *issuer, X509 *subj, X509_REQ *req,
358              X509_CRL *crl, int flags)
359 {
360         ctx->issuer_cert = issuer;
361         ctx->subject_cert = subj;
362         ctx->crl = crl;
363         ctx->subject_req = req;
364         ctx->flags = flags;
365 }