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