More extension code. Incomplete support for subject and issuer alt
[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 /* config file 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 X509_EXTENSION *X509V3_EXT_conf(conf, ctx, name, value)
69 LHASH *conf;    /* Config file */
70 X509V3_CTX *ctx;
71 char *name;     /* Name */
72 char *value;    /* Value */
73 {
74         return X509V3_EXT_conf_nid(conf, ctx, OBJ_sn2nid(name), value);
75 }
76
77
78 X509_EXTENSION *X509V3_EXT_conf_nid(conf, ctx, ext_nid, value)
79 LHASH *conf;    /* Config file */
80 X509V3_CTX *ctx;
81 int ext_nid;
82 char *value;    /* Value */
83 {
84         X509_EXTENSION *ext = NULL;
85         X509V3_EXT_METHOD *method;
86         STACK *nval;
87         char *ext_struc;
88         char *ext_der, *p;
89         int ext_len;
90         int crit = 0;
91         ASN1_OCTET_STRING *ext_oct;
92         if(ext_nid == NID_undef) return NULL;
93         if(!(method = X509V3_EXT_get_nid(ext_nid))) {
94                 /* Add generic extension support here */
95                 return NULL;
96         }
97         /* Check for critical */
98         if((strlen(value) >= 9) && !strncmp(value, "critical,", 9)) {
99                 crit = 1;
100                 value+=9;
101         }
102         /* Skip over spaces */
103         while(isspace(*value)) value++;
104         /* Now get internal extension representation based on type */
105         if(method->v2i) {
106                 if(*value == '@') nval = CONF_get_section(conf, value + 1);
107                 else nval = X509V3_parse_list(value);
108                 if(!nval) {
109                         X509V3err(X509V3_F_X509V3_EXT_CONF,X509V3_R_INVALID_EXTENSION_STRING);
110                         ERR_add_error_data(4, "name=", OBJ_nid2sn(ext_nid), ",section=", value);
111                         return NULL;
112                 }
113                 ext_struc = method->v2i(method, ctx, nval);
114                 if(*value != '@') sk_pop_free(nval, X509V3_conf_free);
115                 if(!ext_struc) return NULL;
116         } else if(method->s2i) {
117                 if(!(ext_struc = method->s2i(method, ctx, value))) return NULL;
118         } else {
119                 X509V3err(X509V3_F_X509V3_EXT_CONF,X509V3_R_EXTENSION_SETTING_NOT_SUPPORTED);
120                 ERR_add_error_data(2, "name=", OBJ_nid2sn(ext_nid));
121                 return NULL;
122         }
123
124         /* We've now got the internal representation: convert to DER */
125         ext_len = method->i2d(ext_struc, NULL);
126         ext_der = Malloc(ext_len);
127         p = ext_der;
128         method->i2d(ext_struc, &p);
129         method->ext_free(ext_struc);
130         ext_oct = ASN1_OCTET_STRING_new();
131         ext_oct->data = ext_der;
132         ext_oct->length = ext_len;
133         
134         ext = X509_EXTENSION_create_by_NID(NULL, ext_nid, crit, ext_oct);
135         ASN1_OCTET_STRING_free(ext_oct);
136
137         return ext;
138
139 }
140
141 /* This is the main function: add a bunch of extensions based on a config file
142  * section
143  */
144
145 int X509V3_EXT_add_conf(conf, ctx, section, cert)
146 LHASH *conf;
147 X509V3_CTX *ctx;
148 char *section;
149 X509 *cert;
150 {
151         X509_EXTENSION *ext;
152         STACK *nval;
153         CONF_VALUE *val;        
154         int i;
155         if(!(nval = CONF_get_section(conf, section))) return 0;
156         for(i = 0; i < sk_num(nval); i++) {
157                 val = (CONF_VALUE *)sk_value(nval, i);
158                 if(!(ext = X509V3_EXT_conf(conf, ctx, val->name, val->value)))
159                                                                 return 0;
160                 if(cert) X509_add_ext(cert, ext, -1);
161                 X509_EXTENSION_free(ext);
162         }
163         return 1;
164 }
165
166 /* Just check syntax of config file as far as possible */
167 int X509V3_EXT_check_conf(conf, section)
168 LHASH *conf;
169 char *section;
170 {
171         static X509V3_CTX ctx_tst = { CTX_TEST, NULL, NULL, NULL, NULL };
172         return X509V3_EXT_add_conf(conf, &ctx_tst, section, NULL);
173 }