Add more functionality to issuer alt name and subject alt name. New options
[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 #include <stdlib.h>
61 #include <ctype.h>
62 #include <string.h>
63 #include <pem.h>
64 #include <conf.h>
65 #include <err.h>
66 #include "x509v3.h"
67
68 #ifndef NOPROTO
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(char *ext, char *value, int crit, int type);
73 #else
74 static int v3_check_critical();
75 static int v3_check_generic();
76 static X509_EXTENSION *do_ext_conf();
77 static X509V3_EXTENSION *v3_generic_extension();
78 #endif
79
80 X509_EXTENSION *X509V3_EXT_conf(conf, ctx, name, value)
81 LHASH *conf;    /* Config file */
82 X509V3_CTX *ctx;
83 char *name;     /* Name */
84 char *value;    /* Value */
85 {
86         int crit;
87         int ext_type;
88         X509_EXTENSION *ret;
89         crit = v3_check_critical(&value);
90         if((ext_type = v3_check_generic(&value))) 
91                 return v3_generic_extension(name, value, crit, ext_type);
92         ret = do_ext_conf(conf, ctx, OBJ_sn2nid(name), crit, value);
93         if(!ret) {
94                 X509V3err(X509V3_F_X509V3_EXT_CONF,X509V3_R_ERROR_IN_EXTENSION);
95                 ERR_add_error_data(4,"name=", name, ", value=", value);
96         }
97         return ret;
98 }
99
100 X509_EXTENSION *X509V3_EXT_conf_nid(conf, ctx, ext_nid, value)
101 LHASH *conf;    /* Config file */
102 X509V3_CTX *ctx;
103 int ext_nid;
104 char *value;    /* 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 static X509_EXTENSION *do_ext_conf(conf, ctx, ext_nid, crit, value)
116 LHASH *conf;    /* Config file */
117 X509V3_CTX *ctx;
118 int ext_nid;
119 int crit;
120 char *value;    /* Value */
121 {
122         X509_EXTENSION *ext = NULL;
123         X509V3_EXT_METHOD *method;
124         STACK *nval;
125         char *ext_struc;
126         char *ext_der, *p;
127         int ext_len;
128         ASN1_OCTET_STRING *ext_oct;
129         if(ext_nid == NID_undef) {
130                 X509V3err(X509V3_F_DO_EXT_CONF,X509V3_R_UNKNOWN_EXTENSION_NAME);
131                 return NULL;
132         }
133         if(!(method = X509V3_EXT_get_nid(ext_nid))) {
134                 X509V3err(X509V3_F_DO_EXT_CONF,X509V3_R_UNKNOWN_EXTENSION);
135                 return NULL;
136         }
137         /* Now get internal extension representation based on type */
138         if(method->v2i) {
139                 if(*value == '@') nval = CONF_get_section(conf, value + 1);
140                 else nval = X509V3_parse_list(value);
141                 if(!nval) {
142                         X509V3err(X509V3_F_X509V3_EXT_CONF,X509V3_R_INVALID_EXTENSION_STRING);
143                         ERR_add_error_data(4, "name=", OBJ_nid2sn(ext_nid), ",section=", value);
144                         return NULL;
145                 }
146                 ext_struc = method->v2i(method, ctx, nval);
147                 if(*value != '@') sk_pop_free(nval, X509V3_conf_free);
148                 if(!ext_struc) return NULL;
149         } else if(method->s2i) {
150                 if(!(ext_struc = method->s2i(method, ctx, value))) return NULL;
151         } else {
152                 X509V3err(X509V3_F_X509V3_EXT_CONF,X509V3_R_EXTENSION_SETTING_NOT_SUPPORTED);
153                 ERR_add_error_data(2, "name=", OBJ_nid2sn(ext_nid));
154                 return NULL;
155         }
156
157         /* We've now got the internal representation: convert to DER */
158         ext_len = method->i2d(ext_struc, NULL);
159         ext_der = Malloc(ext_len);
160         p = ext_der;
161         method->i2d(ext_struc, &p);
162         method->ext_free(ext_struc);
163         ext_oct = ASN1_OCTET_STRING_new();
164         ext_oct->data = ext_der;
165         ext_oct->length = ext_len;
166         
167         ext = X509_EXTENSION_create_by_NID(NULL, ext_nid, crit, ext_oct);
168         ASN1_OCTET_STRING_free(ext_oct);
169
170         return ext;
171
172 }
173
174 /* Check the extension string for critical flag */
175 static int v3_check_critical(value)
176 char **value;
177 {
178         char *p = *value;
179         if((strlen(p) < 9) || strncmp(p, "critical,", 9)) return 0;
180         p+=9;
181         while(isspace(*p)) p++;
182         *value = p;
183         return 1;
184 }
185
186 /* Check extension string for generic extension and return the type */
187 static int v3_check_generic(value)
188 char **value;
189 {
190         char *p = *value;
191         if((strlen(p) < 4) || strncmp(p, "RAW:,", 4)) return 0;
192         p+=4;
193         while(isspace(*p)) p++;
194         *value = p;
195         return 1;
196 }
197
198 /* Create a generic extension: for now just handle RAW type */
199 static X509_EXTENSION *v3_generic_extension(ext, value, crit, type)
200 char *ext;
201 char *value;
202 int crit;
203 int type;
204 {
205 unsigned char *ext_der=NULL;
206 long ext_len;
207 ASN1_OBJECT *obj=NULL;
208 ASN1_OCTET_STRING *oct=NULL;
209 X509_EXTENSION *extension=NULL;
210 if(!(obj = OBJ_txt2obj(ext, 0))) {
211         X509V3err(X509V3_F_V3_GENERIC_EXTENSION,X509V3_R_EXTENSION_NAME_ERROR);
212         ERR_add_error_data(2, "name=", ext);
213         goto err;
214 }
215
216 if(!(ext_der = string_to_hex(value, &ext_len))) {
217         X509V3err(X509V3_F_V3_GENERIC_EXTENSION,X509V3_R_EXTENSION_VALUE_ERROR);
218         ERR_add_error_data(2, "value=", value);
219         goto err;
220 }
221
222 if(!(oct = ASN1_OCTET_STRING_new())) {
223         X509V3err(X509V3_F_V3_GENERIC_EXTENSION,ERR_R_MALLOC_FAILURE);
224         goto err;
225 }
226
227 oct->data = ext_der;
228 oct->length = ext_len;
229 ext_der = NULL;
230
231 extension = X509_EXTENSION_create_by_OBJ(NULL, obj, crit, oct);
232
233 err:
234 ASN1_OBJECT_free(obj);
235 ASN1_OCTET_STRING_free(oct);
236 if(ext_der) Free(ext_der);
237 return extension;
238 }
239
240
241 /* This is the main function: add a bunch of extensions based on a config file
242  * section
243  */
244
245 int X509V3_EXT_add_conf(conf, ctx, section, cert)
246 LHASH *conf;
247 X509V3_CTX *ctx;
248 char *section;
249 X509 *cert;
250 {
251         X509_EXTENSION *ext;
252         STACK *nval;
253         CONF_VALUE *val;        
254         int i;
255         if(!(nval = CONF_get_section(conf, section))) return 0;
256         for(i = 0; i < sk_num(nval); i++) {
257                 val = (CONF_VALUE *)sk_value(nval, i);
258                 if(!(ext = X509V3_EXT_conf(conf, ctx, val->name, val->value)))
259                                                                 return 0;
260                 if(cert) X509_add_ext(cert, ext, -1);
261                 X509_EXTENSION_free(ext);
262         }
263         return 1;
264 }
265
266 /* Just check syntax of config file as far as possible */
267 int X509V3_EXT_check_conf(conf, section)
268 LHASH *conf;
269 char *section;
270 {
271         static X509V3_CTX ctx_tst = { CTX_TEST, NULL, NULL, NULL, NULL };
272         return X509V3_EXT_add_conf(conf, &ctx_tst, section, NULL);
273 }