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