Add OAEP.
[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         crit = v3_check_critical(&value);
89         if((ext_type = v3_check_generic(&value))) 
90                 return v3_generic_extension(name, value, crit, ext_type);
91         return do_ext_conf(conf, ctx, OBJ_sn2nid(name), crit, value);
92 }
93
94 X509_EXTENSION *X509V3_EXT_conf_nid(conf, ctx, ext_nid, value)
95 LHASH *conf;    /* Config file */
96 X509V3_CTX *ctx;
97 int ext_nid;
98 char *value;    /* 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 static X509_EXTENSION *do_ext_conf(conf, ctx, ext_nid, crit, value)
110 LHASH *conf;    /* Config file */
111 X509V3_CTX *ctx;
112 int ext_nid;
113 int crit;
114 char *value;    /* Value */
115 {
116         X509_EXTENSION *ext = NULL;
117         X509V3_EXT_METHOD *method;
118         STACK *nval;
119         char *ext_struc;
120         char *ext_der, *p;
121         int ext_len;
122         ASN1_OCTET_STRING *ext_oct;
123         if(ext_nid == NID_undef) return NULL;
124         if(!(method = X509V3_EXT_get_nid(ext_nid))) {
125                 /* Add generic extension support here */
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 {
143                 X509V3err(X509V3_F_X509V3_EXT_CONF,X509V3_R_EXTENSION_SETTING_NOT_SUPPORTED);
144                 ERR_add_error_data(2, "name=", OBJ_nid2sn(ext_nid));
145                 return NULL;
146         }
147
148         /* We've now got the internal representation: convert to DER */
149         ext_len = method->i2d(ext_struc, NULL);
150         ext_der = Malloc(ext_len);
151         p = ext_der;
152         method->i2d(ext_struc, &p);
153         method->ext_free(ext_struc);
154         ext_oct = ASN1_OCTET_STRING_new();
155         ext_oct->data = ext_der;
156         ext_oct->length = ext_len;
157         
158         ext = X509_EXTENSION_create_by_NID(NULL, ext_nid, crit, ext_oct);
159         ASN1_OCTET_STRING_free(ext_oct);
160
161         return ext;
162
163 }
164
165 /* Check the extension string for critical flag */
166 static int v3_check_critical(value)
167 char **value;
168 {
169         char *p = *value;
170         if((strlen(p) < 9) || strncmp(p, "critical,", 9)) return 0;
171         p+=9;
172         while(isspace(*p)) p++;
173         *value = p;
174         return 1;
175 }
176
177 /* Check extension string for generic extension and return the type */
178 static int v3_check_generic(value)
179 char **value;
180 {
181         char *p = *value;
182         if((strlen(p) < 4) || strncmp(p, "RAW:,", 4)) return 0;
183         p+=4;
184         while(isspace(*p)) p++;
185         *value = p;
186         return 1;
187 }
188
189 /* Create a generic extension: for now just handle RAW type */
190 static X509_EXTENSION *v3_generic_extension(ext, value, crit, type)
191 char *ext;
192 char *value;
193 int crit;
194 int type;
195 {
196 unsigned char *ext_der=NULL;
197 long ext_len;
198 ASN1_OBJECT *obj=NULL;
199 ASN1_OCTET_STRING *oct=NULL;
200 X509_EXTENSION *extension=NULL;
201 if(!(obj = OBJ_txt2obj(ext, 0))) {
202         X509V3err(X509V3_F_V3_GENERIC_EXTENSION,X509V3_R_EXTENSION_NAME_ERROR);
203         ERR_add_error_data(2, "name=", ext);
204         goto err;
205 }
206
207 if(!(ext_der = string_to_hex(value, &ext_len))) {
208         X509V3err(X509V3_F_V3_GENERIC_EXTENSION,X509V3_R_EXTENSION_VALUE_ERROR);
209         ERR_add_error_data(2, "value=", value);
210         goto err;
211 }
212
213 if(!(oct = ASN1_OCTET_STRING_new())) {
214         X509V3err(X509V3_F_V3_GENERIC_EXTENSION,ERR_R_MALLOC_FAILURE);
215         goto err;
216 }
217
218 oct->data = ext_der;
219 oct->length = ext_len;
220 ext_der = NULL;
221
222 extension = X509_EXTENSION_create_by_OBJ(NULL, obj, crit, oct);
223
224 err:
225 ASN1_OBJECT_free(obj);
226 ASN1_OCTET_STRING_free(oct);
227 if(ext_der) Free(ext_der);
228 return extension;
229 }
230
231
232 /* This is the main function: add a bunch of extensions based on a config file
233  * section
234  */
235
236 int X509V3_EXT_add_conf(conf, ctx, section, cert)
237 LHASH *conf;
238 X509V3_CTX *ctx;
239 char *section;
240 X509 *cert;
241 {
242         X509_EXTENSION *ext;
243         STACK *nval;
244         CONF_VALUE *val;        
245         int i;
246         if(!(nval = CONF_get_section(conf, section))) return 0;
247         for(i = 0; i < sk_num(nval); i++) {
248                 val = (CONF_VALUE *)sk_value(nval, i);
249                 if(!(ext = X509V3_EXT_conf(conf, ctx, val->name, val->value)))
250                                                                 return 0;
251                 if(cert) X509_add_ext(cert, ext, -1);
252                 X509_EXTENSION_free(ext);
253         }
254         return 1;
255 }
256
257 /* Just check syntax of config file as far as possible */
258 int X509V3_EXT_check_conf(conf, section)
259 LHASH *conf;
260 char *section;
261 {
262         static X509V3_CTX ctx_tst = { CTX_TEST, NULL, NULL, NULL, NULL };
263         return X509V3_EXT_add_conf(conf, &ctx_tst, section, NULL);
264 }