diff options
Diffstat (limited to 'src/lib/libcrypto/x509v3')
-rw-r--r-- | src/lib/libcrypto/x509v3/v3_akey.c | 249 | ||||
-rw-r--r-- | src/lib/libcrypto/x509v3/v3_alt.c | 402 | ||||
-rw-r--r-- | src/lib/libcrypto/x509v3/v3_bcons.c | 164 | ||||
-rw-r--r-- | src/lib/libcrypto/x509v3/v3_bitst.c | 147 | ||||
-rw-r--r-- | src/lib/libcrypto/x509v3/v3_conf.c | 366 | ||||
-rw-r--r-- | src/lib/libcrypto/x509v3/v3_cpols.c | 655 | ||||
-rw-r--r-- | src/lib/libcrypto/x509v3/v3_crld.c | 283 | ||||
-rw-r--r-- | src/lib/libcrypto/x509v3/v3_enum.c | 103 | ||||
-rw-r--r-- | src/lib/libcrypto/x509v3/v3_extku.c | 150 | ||||
-rw-r--r-- | src/lib/libcrypto/x509v3/v3_genn.c | 237 | ||||
-rw-r--r-- | src/lib/libcrypto/x509v3/v3_ia5.c | 116 | ||||
-rw-r--r-- | src/lib/libcrypto/x509v3/v3_int.c | 79 | ||||
-rw-r--r-- | src/lib/libcrypto/x509v3/v3_lib.c | 177 | ||||
-rw-r--r-- | src/lib/libcrypto/x509v3/v3_pku.c | 151 | ||||
-rw-r--r-- | src/lib/libcrypto/x509v3/v3_prn.c | 135 | ||||
-rw-r--r-- | src/lib/libcrypto/x509v3/v3_skey.c | 156 | ||||
-rw-r--r-- | src/lib/libcrypto/x509v3/v3_sxnet.c | 340 | ||||
-rw-r--r-- | src/lib/libcrypto/x509v3/v3_utl.c | 418 | ||||
-rw-r--r-- | src/lib/libcrypto/x509v3/v3err.c | 171 | ||||
-rw-r--r-- | src/lib/libcrypto/x509v3/x509v3.h | 532 |
20 files changed, 0 insertions, 5031 deletions
diff --git a/src/lib/libcrypto/x509v3/v3_akey.c b/src/lib/libcrypto/x509v3/v3_akey.c deleted file mode 100644 index 4099e6019e..0000000000 --- a/src/lib/libcrypto/x509v3/v3_akey.c +++ /dev/null | |||
@@ -1,249 +0,0 @@ | |||
1 | /* v3_akey.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 | |||
59 | #include <stdio.h> | ||
60 | #include "cryptlib.h" | ||
61 | #include <openssl/conf.h> | ||
62 | #include <openssl/asn1.h> | ||
63 | #include <openssl/asn1_mac.h> | ||
64 | #include <openssl/x509v3.h> | ||
65 | |||
66 | static STACK_OF(CONF_VALUE) *i2v_AUTHORITY_KEYID(X509V3_EXT_METHOD *method, | ||
67 | AUTHORITY_KEYID *akeyid, STACK_OF(CONF_VALUE) *extlist); | ||
68 | static AUTHORITY_KEYID *v2i_AUTHORITY_KEYID(X509V3_EXT_METHOD *method, | ||
69 | X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *values); | ||
70 | |||
71 | X509V3_EXT_METHOD v3_akey_id = { | ||
72 | NID_authority_key_identifier, X509V3_EXT_MULTILINE, | ||
73 | (X509V3_EXT_NEW)AUTHORITY_KEYID_new, | ||
74 | (X509V3_EXT_FREE)AUTHORITY_KEYID_free, | ||
75 | (X509V3_EXT_D2I)d2i_AUTHORITY_KEYID, | ||
76 | (X509V3_EXT_I2D)i2d_AUTHORITY_KEYID, | ||
77 | NULL, NULL, | ||
78 | (X509V3_EXT_I2V)i2v_AUTHORITY_KEYID, | ||
79 | (X509V3_EXT_V2I)v2i_AUTHORITY_KEYID, | ||
80 | NULL,NULL, | ||
81 | NULL | ||
82 | }; | ||
83 | |||
84 | |||
85 | int i2d_AUTHORITY_KEYID(AUTHORITY_KEYID *a, unsigned char **pp) | ||
86 | { | ||
87 | M_ASN1_I2D_vars(a); | ||
88 | |||
89 | M_ASN1_I2D_len_IMP_opt (a->keyid, i2d_ASN1_OCTET_STRING); | ||
90 | M_ASN1_I2D_len_IMP_opt (a->issuer, i2d_GENERAL_NAMES); | ||
91 | M_ASN1_I2D_len_IMP_opt (a->serial, i2d_ASN1_INTEGER); | ||
92 | |||
93 | M_ASN1_I2D_seq_total(); | ||
94 | |||
95 | M_ASN1_I2D_put_IMP_opt (a->keyid, i2d_ASN1_OCTET_STRING, 0); | ||
96 | M_ASN1_I2D_put_IMP_opt (a->issuer, i2d_GENERAL_NAMES, 1); | ||
97 | M_ASN1_I2D_put_IMP_opt (a->serial, i2d_ASN1_INTEGER, 2); | ||
98 | |||
99 | M_ASN1_I2D_finish(); | ||
100 | } | ||
101 | |||
102 | AUTHORITY_KEYID *AUTHORITY_KEYID_new(void) | ||
103 | { | ||
104 | AUTHORITY_KEYID *ret=NULL; | ||
105 | ASN1_CTX c; | ||
106 | M_ASN1_New_Malloc(ret, AUTHORITY_KEYID); | ||
107 | ret->keyid = NULL; | ||
108 | ret->issuer = NULL; | ||
109 | ret->serial = NULL; | ||
110 | return (ret); | ||
111 | M_ASN1_New_Error(ASN1_F_AUTHORITY_KEYID_NEW); | ||
112 | } | ||
113 | |||
114 | AUTHORITY_KEYID *d2i_AUTHORITY_KEYID(AUTHORITY_KEYID **a, unsigned char **pp, | ||
115 | long length) | ||
116 | { | ||
117 | M_ASN1_D2I_vars(a,AUTHORITY_KEYID *,AUTHORITY_KEYID_new); | ||
118 | M_ASN1_D2I_Init(); | ||
119 | M_ASN1_D2I_start_sequence(); | ||
120 | M_ASN1_D2I_get_IMP_opt (ret->keyid, d2i_ASN1_OCTET_STRING, 0, | ||
121 | V_ASN1_OCTET_STRING); | ||
122 | M_ASN1_D2I_get_IMP_opt (ret->issuer, d2i_GENERAL_NAMES, 1, | ||
123 | V_ASN1_SEQUENCE); | ||
124 | M_ASN1_D2I_get_IMP_opt (ret->serial, d2i_ASN1_INTEGER, 2, | ||
125 | V_ASN1_INTEGER); | ||
126 | M_ASN1_D2I_Finish(a, AUTHORITY_KEYID_free, ASN1_F_D2I_AUTHORITY_KEYID); | ||
127 | } | ||
128 | |||
129 | void AUTHORITY_KEYID_free(AUTHORITY_KEYID *a) | ||
130 | { | ||
131 | if (a == NULL) return; | ||
132 | ASN1_OCTET_STRING_free(a->keyid); | ||
133 | sk_GENERAL_NAME_pop_free(a->issuer, GENERAL_NAME_free); | ||
134 | ASN1_INTEGER_free (a->serial); | ||
135 | Free ((char *)a); | ||
136 | } | ||
137 | |||
138 | static STACK_OF(CONF_VALUE) *i2v_AUTHORITY_KEYID(X509V3_EXT_METHOD *method, | ||
139 | AUTHORITY_KEYID *akeyid, STACK_OF(CONF_VALUE) *extlist) | ||
140 | { | ||
141 | char *tmp; | ||
142 | if(akeyid->keyid) { | ||
143 | tmp = hex_to_string(akeyid->keyid->data, akeyid->keyid->length); | ||
144 | X509V3_add_value("keyid", tmp, &extlist); | ||
145 | Free(tmp); | ||
146 | } | ||
147 | if(akeyid->issuer) | ||
148 | extlist = i2v_GENERAL_NAMES(NULL, akeyid->issuer, extlist); | ||
149 | if(akeyid->serial) { | ||
150 | tmp = hex_to_string(akeyid->serial->data, | ||
151 | akeyid->serial->length); | ||
152 | X509V3_add_value("serial", tmp, &extlist); | ||
153 | Free(tmp); | ||
154 | } | ||
155 | return extlist; | ||
156 | } | ||
157 | |||
158 | /* Currently two options: | ||
159 | * keyid: use the issuers subject keyid, the value 'always' means its is | ||
160 | * an error if the issuer certificate doesn't have a key id. | ||
161 | * issuer: use the issuers cert issuer and serial number. The default is | ||
162 | * to only use this if keyid is not present. With the option 'always' | ||
163 | * this is always included. | ||
164 | */ | ||
165 | |||
166 | static AUTHORITY_KEYID *v2i_AUTHORITY_KEYID(X509V3_EXT_METHOD *method, | ||
167 | X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *values) | ||
168 | { | ||
169 | char keyid=0, issuer=0; | ||
170 | int i; | ||
171 | CONF_VALUE *cnf; | ||
172 | ASN1_OCTET_STRING *ikeyid = NULL; | ||
173 | X509_NAME *isname = NULL; | ||
174 | STACK_OF(GENERAL_NAME) * gens = NULL; | ||
175 | GENERAL_NAME *gen = NULL; | ||
176 | ASN1_INTEGER *serial = NULL; | ||
177 | X509_EXTENSION *ext; | ||
178 | X509 *cert; | ||
179 | AUTHORITY_KEYID *akeyid; | ||
180 | for(i = 0; i < sk_CONF_VALUE_num(values); i++) { | ||
181 | cnf = sk_CONF_VALUE_value(values, i); | ||
182 | if(!strcmp(cnf->name, "keyid")) { | ||
183 | keyid = 1; | ||
184 | if(cnf->value && !strcmp(cnf->value, "always")) keyid = 2; | ||
185 | } else if(!strcmp(cnf->name, "issuer")) { | ||
186 | issuer = 1; | ||
187 | if(cnf->value && !strcmp(cnf->value, "always")) issuer = 2; | ||
188 | } else { | ||
189 | X509V3err(X509V3_F_V2I_AUTHORITY_KEYID,X509V3_R_UNKNOWN_OPTION); | ||
190 | ERR_add_error_data(2, "name=", cnf->name); | ||
191 | return NULL; | ||
192 | } | ||
193 | } | ||
194 | |||
195 | |||
196 | |||
197 | if(!ctx || !ctx->issuer_cert) { | ||
198 | if(ctx && (ctx->flags==CTX_TEST)) return AUTHORITY_KEYID_new(); | ||
199 | X509V3err(X509V3_F_V2I_AUTHORITY_KEYID,X509V3_R_NO_ISSUER_CERTIFICATE); | ||
200 | return NULL; | ||
201 | } | ||
202 | |||
203 | cert = ctx->issuer_cert; | ||
204 | |||
205 | if(keyid) { | ||
206 | i = X509_get_ext_by_NID(cert, NID_subject_key_identifier, -1); | ||
207 | if((i >= 0) && (ext = X509_get_ext(cert, i))) | ||
208 | ikeyid = X509V3_EXT_d2i(ext); | ||
209 | if(keyid==2 && !ikeyid) { | ||
210 | X509V3err(X509V3_F_V2I_AUTHORITY_KEYID,X509V3_R_UNABLE_TO_GET_ISSUER_KEYID); | ||
211 | return NULL; | ||
212 | } | ||
213 | } | ||
214 | |||
215 | if((issuer && !ikeyid) || (issuer == 2)) { | ||
216 | isname = X509_NAME_dup(X509_get_issuer_name(cert)); | ||
217 | serial = ASN1_INTEGER_dup(X509_get_serialNumber(cert)); | ||
218 | if(!isname || !serial) { | ||
219 | X509V3err(X509V3_F_V2I_AUTHORITY_KEYID,X509V3_R_UNABLE_TO_GET_ISSUER_DETAILS); | ||
220 | goto err; | ||
221 | } | ||
222 | } | ||
223 | |||
224 | if(!(akeyid = AUTHORITY_KEYID_new())) goto err; | ||
225 | |||
226 | if(isname) { | ||
227 | if(!(gens = sk_GENERAL_NAME_new(NULL)) || !(gen = GENERAL_NAME_new()) | ||
228 | || !sk_GENERAL_NAME_push(gens, gen)) { | ||
229 | X509V3err(X509V3_F_V2I_AUTHORITY_KEYID,ERR_R_MALLOC_FAILURE); | ||
230 | goto err; | ||
231 | } | ||
232 | gen->type = GEN_DIRNAME; | ||
233 | gen->d.dirn = isname; | ||
234 | } | ||
235 | |||
236 | akeyid->issuer = gens; | ||
237 | akeyid->serial = serial; | ||
238 | akeyid->keyid = ikeyid; | ||
239 | |||
240 | return akeyid; | ||
241 | |||
242 | err: | ||
243 | X509_NAME_free(isname); | ||
244 | ASN1_INTEGER_free(serial); | ||
245 | ASN1_OCTET_STRING_free(ikeyid); | ||
246 | return NULL; | ||
247 | |||
248 | } | ||
249 | |||
diff --git a/src/lib/libcrypto/x509v3/v3_alt.c b/src/lib/libcrypto/x509v3/v3_alt.c deleted file mode 100644 index b5e1f8af96..0000000000 --- a/src/lib/libcrypto/x509v3/v3_alt.c +++ /dev/null | |||
@@ -1,402 +0,0 @@ | |||
1 | /* v3_alt.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 | |||
59 | #include <stdio.h> | ||
60 | #include "cryptlib.h" | ||
61 | #include <openssl/conf.h> | ||
62 | #include <openssl/x509v3.h> | ||
63 | |||
64 | static STACK_OF(GENERAL_NAME) *v2i_subject_alt(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval); | ||
65 | static STACK_OF(GENERAL_NAME) *v2i_issuer_alt(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval); | ||
66 | static int copy_email(X509V3_CTX *ctx, STACK_OF(GENERAL_NAME) *gens); | ||
67 | static int copy_issuer(X509V3_CTX *ctx, STACK_OF(GENERAL_NAME) *gens); | ||
68 | X509V3_EXT_METHOD v3_alt[] = { | ||
69 | { NID_subject_alt_name, 0, | ||
70 | (X509V3_EXT_NEW)GENERAL_NAMES_new, | ||
71 | (X509V3_EXT_FREE)GENERAL_NAMES_free, | ||
72 | (X509V3_EXT_D2I)d2i_GENERAL_NAMES, | ||
73 | (X509V3_EXT_I2D)i2d_GENERAL_NAMES, | ||
74 | NULL, NULL, | ||
75 | (X509V3_EXT_I2V)i2v_GENERAL_NAMES, | ||
76 | (X509V3_EXT_V2I)v2i_subject_alt, | ||
77 | NULL, NULL, NULL}, | ||
78 | { NID_issuer_alt_name, 0, | ||
79 | (X509V3_EXT_NEW)GENERAL_NAMES_new, | ||
80 | (X509V3_EXT_FREE)GENERAL_NAMES_free, | ||
81 | (X509V3_EXT_D2I)d2i_GENERAL_NAMES, | ||
82 | (X509V3_EXT_I2D)i2d_GENERAL_NAMES, | ||
83 | NULL, NULL, | ||
84 | (X509V3_EXT_I2V)i2v_GENERAL_NAMES, | ||
85 | (X509V3_EXT_V2I)v2i_issuer_alt, | ||
86 | NULL, NULL, NULL}, | ||
87 | EXT_END | ||
88 | }; | ||
89 | |||
90 | STACK_OF(CONF_VALUE) *i2v_GENERAL_NAMES(X509V3_EXT_METHOD *method, | ||
91 | STACK_OF(GENERAL_NAME) *gens, STACK_OF(CONF_VALUE) *ret) | ||
92 | { | ||
93 | int i; | ||
94 | GENERAL_NAME *gen; | ||
95 | for(i = 0; i < sk_GENERAL_NAME_num(gens); i++) { | ||
96 | gen = sk_GENERAL_NAME_value(gens, i); | ||
97 | ret = i2v_GENERAL_NAME(method, gen, ret); | ||
98 | } | ||
99 | if(!ret) return sk_CONF_VALUE_new_null(); | ||
100 | return ret; | ||
101 | } | ||
102 | |||
103 | STACK_OF(CONF_VALUE) *i2v_GENERAL_NAME(X509V3_EXT_METHOD *method, | ||
104 | GENERAL_NAME *gen, STACK_OF(CONF_VALUE) *ret) | ||
105 | { | ||
106 | char oline[256]; | ||
107 | unsigned char *p; | ||
108 | switch (gen->type) | ||
109 | { | ||
110 | case GEN_OTHERNAME: | ||
111 | X509V3_add_value("othername","<unsupported>", &ret); | ||
112 | break; | ||
113 | |||
114 | case GEN_X400: | ||
115 | X509V3_add_value("X400Name","<unsupported>", &ret); | ||
116 | break; | ||
117 | |||
118 | case GEN_EDIPARTY: | ||
119 | X509V3_add_value("EdiPartyName","<unsupported>", &ret); | ||
120 | break; | ||
121 | |||
122 | case GEN_EMAIL: | ||
123 | X509V3_add_value_uchar("email",gen->d.ia5->data, &ret); | ||
124 | break; | ||
125 | |||
126 | case GEN_DNS: | ||
127 | X509V3_add_value_uchar("DNS",gen->d.ia5->data, &ret); | ||
128 | break; | ||
129 | |||
130 | case GEN_URI: | ||
131 | X509V3_add_value_uchar("URI",gen->d.ia5->data, &ret); | ||
132 | break; | ||
133 | |||
134 | case GEN_DIRNAME: | ||
135 | X509_NAME_oneline(gen->d.dirn, oline, 256); | ||
136 | X509V3_add_value("DirName",oline, &ret); | ||
137 | break; | ||
138 | |||
139 | case GEN_IPADD: | ||
140 | p = gen->d.ip->data; | ||
141 | /* BUG: doesn't support IPV6 */ | ||
142 | if(gen->d.ip->length != 4) { | ||
143 | X509V3_add_value("IP Address","<invalid>", &ret); | ||
144 | break; | ||
145 | } | ||
146 | sprintf(oline, "%d.%d.%d.%d", p[0], p[1], p[2], p[3]); | ||
147 | X509V3_add_value("IP Address",oline, &ret); | ||
148 | break; | ||
149 | |||
150 | case GEN_RID: | ||
151 | i2t_ASN1_OBJECT(oline, 256, gen->d.rid); | ||
152 | X509V3_add_value("Registered ID",oline, &ret); | ||
153 | break; | ||
154 | } | ||
155 | return ret; | ||
156 | } | ||
157 | |||
158 | static STACK_OF(GENERAL_NAME) *v2i_issuer_alt(X509V3_EXT_METHOD *method, | ||
159 | X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval) | ||
160 | { | ||
161 | STACK_OF(GENERAL_NAME) *gens = NULL; | ||
162 | CONF_VALUE *cnf; | ||
163 | int i; | ||
164 | if(!(gens = sk_GENERAL_NAME_new(NULL))) { | ||
165 | X509V3err(X509V3_F_V2I_GENERAL_NAMES,ERR_R_MALLOC_FAILURE); | ||
166 | return NULL; | ||
167 | } | ||
168 | for(i = 0; i < sk_CONF_VALUE_num(nval); i++) { | ||
169 | cnf = sk_CONF_VALUE_value(nval, i); | ||
170 | if(!name_cmp(cnf->name, "issuer") && cnf->value && | ||
171 | !strcmp(cnf->value, "copy")) { | ||
172 | if(!copy_issuer(ctx, gens)) goto err; | ||
173 | } else { | ||
174 | GENERAL_NAME *gen; | ||
175 | if(!(gen = v2i_GENERAL_NAME(method, ctx, cnf))) | ||
176 | goto err; | ||
177 | sk_GENERAL_NAME_push(gens, gen); | ||
178 | } | ||
179 | } | ||
180 | return gens; | ||
181 | err: | ||
182 | sk_GENERAL_NAME_pop_free(gens, GENERAL_NAME_free); | ||
183 | return NULL; | ||
184 | } | ||
185 | |||
186 | /* Append subject altname of issuer to issuer alt name of subject */ | ||
187 | |||
188 | static int copy_issuer(X509V3_CTX *ctx, STACK_OF(GENERAL_NAME) *gens) | ||
189 | { | ||
190 | STACK_OF(GENERAL_NAME) *ialt; | ||
191 | GENERAL_NAME *gen; | ||
192 | X509_EXTENSION *ext; | ||
193 | int i; | ||
194 | if(ctx && (ctx->flags == CTX_TEST)) return 1; | ||
195 | if(!ctx || !ctx->issuer_cert) { | ||
196 | X509V3err(X509V3_F_COPY_ISSUER,X509V3_R_NO_ISSUER_DETAILS); | ||
197 | goto err; | ||
198 | } | ||
199 | i = X509_get_ext_by_NID(ctx->issuer_cert, NID_subject_alt_name, -1); | ||
200 | if(i < 0) return 1; | ||
201 | if(!(ext = X509_get_ext(ctx->issuer_cert, i)) || | ||
202 | !(ialt = X509V3_EXT_d2i(ext)) ) { | ||
203 | X509V3err(X509V3_F_COPY_ISSUER,X509V3_R_ISSUER_DECODE_ERROR); | ||
204 | goto err; | ||
205 | } | ||
206 | |||
207 | for(i = 0; i < sk_GENERAL_NAME_num(ialt); i++) { | ||
208 | gen = sk_GENERAL_NAME_value(ialt, i); | ||
209 | if(!sk_GENERAL_NAME_push(gens, gen)) { | ||
210 | X509V3err(X509V3_F_COPY_ISSUER,ERR_R_MALLOC_FAILURE); | ||
211 | goto err; | ||
212 | } | ||
213 | } | ||
214 | sk_GENERAL_NAME_free(ialt); | ||
215 | |||
216 | return 1; | ||
217 | |||
218 | err: | ||
219 | return 0; | ||
220 | |||
221 | } | ||
222 | |||
223 | static STACK_OF(GENERAL_NAME) *v2i_subject_alt(X509V3_EXT_METHOD *method, | ||
224 | X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval) | ||
225 | { | ||
226 | STACK_OF(GENERAL_NAME) *gens = NULL; | ||
227 | CONF_VALUE *cnf; | ||
228 | int i; | ||
229 | if(!(gens = sk_GENERAL_NAME_new(NULL))) { | ||
230 | X509V3err(X509V3_F_V2I_GENERAL_NAMES,ERR_R_MALLOC_FAILURE); | ||
231 | return NULL; | ||
232 | } | ||
233 | for(i = 0; i < sk_CONF_VALUE_num(nval); i++) { | ||
234 | cnf = sk_CONF_VALUE_value(nval, i); | ||
235 | if(!name_cmp(cnf->name, "email") && cnf->value && | ||
236 | !strcmp(cnf->value, "copy")) { | ||
237 | if(!copy_email(ctx, gens)) goto err; | ||
238 | } else { | ||
239 | GENERAL_NAME *gen; | ||
240 | if(!(gen = v2i_GENERAL_NAME(method, ctx, cnf))) | ||
241 | goto err; | ||
242 | sk_GENERAL_NAME_push(gens, gen); | ||
243 | } | ||
244 | } | ||
245 | return gens; | ||
246 | err: | ||
247 | sk_GENERAL_NAME_pop_free(gens, GENERAL_NAME_free); | ||
248 | return NULL; | ||
249 | } | ||
250 | |||
251 | /* Copy any email addresses in a certificate or request to | ||
252 | * GENERAL_NAMES | ||
253 | */ | ||
254 | |||
255 | static int copy_email(X509V3_CTX *ctx, STACK_OF(GENERAL_NAME) *gens) | ||
256 | { | ||
257 | X509_NAME *nm; | ||
258 | ASN1_IA5STRING *email = NULL; | ||
259 | X509_NAME_ENTRY *ne; | ||
260 | GENERAL_NAME *gen = NULL; | ||
261 | int i; | ||
262 | if(ctx->flags == CTX_TEST) return 1; | ||
263 | if(!ctx || (!ctx->subject_cert && !ctx->subject_req)) { | ||
264 | X509V3err(X509V3_F_COPY_EMAIL,X509V3_R_NO_SUBJECT_DETAILS); | ||
265 | goto err; | ||
266 | } | ||
267 | /* Find the subject name */ | ||
268 | if(ctx->subject_cert) nm = X509_get_subject_name(ctx->subject_cert); | ||
269 | else nm = X509_REQ_get_subject_name(ctx->subject_req); | ||
270 | |||
271 | /* Now add any email address(es) to STACK */ | ||
272 | i = -1; | ||
273 | while((i = X509_NAME_get_index_by_NID(nm, | ||
274 | NID_pkcs9_emailAddress, i)) > 0) { | ||
275 | ne = X509_NAME_get_entry(nm, i); | ||
276 | email = ASN1_IA5STRING_dup(X509_NAME_ENTRY_get_data(ne)); | ||
277 | if(!email || !(gen = GENERAL_NAME_new())) { | ||
278 | X509V3err(X509V3_F_COPY_EMAIL,ERR_R_MALLOC_FAILURE); | ||
279 | goto err; | ||
280 | } | ||
281 | gen->d.ia5 = email; | ||
282 | email = NULL; | ||
283 | gen->type = GEN_EMAIL; | ||
284 | if(!sk_GENERAL_NAME_push(gens, gen)) { | ||
285 | X509V3err(X509V3_F_COPY_EMAIL,ERR_R_MALLOC_FAILURE); | ||
286 | goto err; | ||
287 | } | ||
288 | gen = NULL; | ||
289 | } | ||
290 | |||
291 | |||
292 | return 1; | ||
293 | |||
294 | err: | ||
295 | GENERAL_NAME_free(gen); | ||
296 | ASN1_IA5STRING_free(email); | ||
297 | return 0; | ||
298 | |||
299 | } | ||
300 | |||
301 | STACK_OF(GENERAL_NAME) *v2i_GENERAL_NAMES(X509V3_EXT_METHOD *method, | ||
302 | X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval) | ||
303 | { | ||
304 | GENERAL_NAME *gen; | ||
305 | STACK_OF(GENERAL_NAME) *gens = NULL; | ||
306 | CONF_VALUE *cnf; | ||
307 | int i; | ||
308 | if(!(gens = sk_GENERAL_NAME_new(NULL))) { | ||
309 | X509V3err(X509V3_F_V2I_GENERAL_NAMES,ERR_R_MALLOC_FAILURE); | ||
310 | return NULL; | ||
311 | } | ||
312 | for(i = 0; i < sk_CONF_VALUE_num(nval); i++) { | ||
313 | cnf = sk_CONF_VALUE_value(nval, i); | ||
314 | if(!(gen = v2i_GENERAL_NAME(method, ctx, cnf))) goto err; | ||
315 | sk_GENERAL_NAME_push(gens, gen); | ||
316 | } | ||
317 | return gens; | ||
318 | err: | ||
319 | sk_GENERAL_NAME_pop_free(gens, GENERAL_NAME_free); | ||
320 | return NULL; | ||
321 | } | ||
322 | |||
323 | GENERAL_NAME *v2i_GENERAL_NAME(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, | ||
324 | CONF_VALUE *cnf) | ||
325 | { | ||
326 | char is_string = 0; | ||
327 | int type; | ||
328 | GENERAL_NAME *gen = NULL; | ||
329 | |||
330 | char *name, *value; | ||
331 | |||
332 | name = cnf->name; | ||
333 | value = cnf->value; | ||
334 | |||
335 | if(!value) { | ||
336 | X509V3err(X509V3_F_V2I_GENERAL_NAME,X509V3_R_MISSING_VALUE); | ||
337 | return NULL; | ||
338 | } | ||
339 | |||
340 | if(!(gen = GENERAL_NAME_new())) { | ||
341 | X509V3err(X509V3_F_V2I_GENERAL_NAME,ERR_R_MALLOC_FAILURE); | ||
342 | return NULL; | ||
343 | } | ||
344 | |||
345 | if(!name_cmp(name, "email")) { | ||
346 | is_string = 1; | ||
347 | type = GEN_EMAIL; | ||
348 | } else if(!name_cmp(name, "URI")) { | ||
349 | is_string = 1; | ||
350 | type = GEN_URI; | ||
351 | } else if(!name_cmp(name, "DNS")) { | ||
352 | is_string = 1; | ||
353 | type = GEN_DNS; | ||
354 | } else if(!name_cmp(name, "RID")) { | ||
355 | ASN1_OBJECT *obj; | ||
356 | if(!(obj = OBJ_txt2obj(value,0))) { | ||
357 | X509V3err(X509V3_F_V2I_GENERAL_NAME,X509V3_R_BAD_OBJECT); | ||
358 | ERR_add_error_data(2, "value=", value); | ||
359 | goto err; | ||
360 | } | ||
361 | gen->d.rid = obj; | ||
362 | type = GEN_RID; | ||
363 | } else if(!name_cmp(name, "IP")) { | ||
364 | int i1,i2,i3,i4; | ||
365 | unsigned char ip[4]; | ||
366 | if((sscanf(value, "%d.%d.%d.%d",&i1,&i2,&i3,&i4) != 4) || | ||
367 | (i1 < 0) || (i1 > 255) || (i2 < 0) || (i2 > 255) || | ||
368 | (i3 < 0) || (i3 > 255) || (i4 < 0) || (i4 > 255) ) { | ||
369 | X509V3err(X509V3_F_V2I_GENERAL_NAME,X509V3_R_BAD_IP_ADDRESS); | ||
370 | ERR_add_error_data(2, "value=", value); | ||
371 | goto err; | ||
372 | } | ||
373 | ip[0] = i1; ip[1] = i2 ; ip[2] = i3 ; ip[3] = i4; | ||
374 | if(!(gen->d.ip = ASN1_OCTET_STRING_new()) || | ||
375 | !ASN1_STRING_set(gen->d.ip, ip, 4)) { | ||
376 | X509V3err(X509V3_F_V2I_GENERAL_NAME,ERR_R_MALLOC_FAILURE); | ||
377 | goto err; | ||
378 | } | ||
379 | type = GEN_IPADD; | ||
380 | } else { | ||
381 | X509V3err(X509V3_F_V2I_GENERAL_NAME,X509V3_R_UNSUPPORTED_OPTION); | ||
382 | ERR_add_error_data(2, "name=", name); | ||
383 | goto err; | ||
384 | } | ||
385 | |||
386 | if(is_string) { | ||
387 | if(!(gen->d.ia5 = ASN1_IA5STRING_new()) || | ||
388 | !ASN1_STRING_set(gen->d.ia5, (unsigned char*)value, | ||
389 | strlen(value))) { | ||
390 | X509V3err(X509V3_F_V2I_GENERAL_NAME,ERR_R_MALLOC_FAILURE); | ||
391 | goto err; | ||
392 | } | ||
393 | } | ||
394 | |||
395 | gen->type = type; | ||
396 | |||
397 | return gen; | ||
398 | |||
399 | err: | ||
400 | GENERAL_NAME_free(gen); | ||
401 | return NULL; | ||
402 | } | ||
diff --git a/src/lib/libcrypto/x509v3/v3_bcons.c b/src/lib/libcrypto/x509v3/v3_bcons.c deleted file mode 100644 index de2f855c35..0000000000 --- a/src/lib/libcrypto/x509v3/v3_bcons.c +++ /dev/null | |||
@@ -1,164 +0,0 @@ | |||
1 | /* v3_bcons.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 | |||
59 | |||
60 | #include <stdio.h> | ||
61 | #include "cryptlib.h" | ||
62 | #include <openssl/asn1.h> | ||
63 | #include <openssl/asn1_mac.h> | ||
64 | #include <openssl/conf.h> | ||
65 | #include <openssl/x509v3.h> | ||
66 | |||
67 | static STACK_OF(CONF_VALUE) *i2v_BASIC_CONSTRAINTS(X509V3_EXT_METHOD *method, BASIC_CONSTRAINTS *bcons, STACK_OF(CONF_VALUE) *extlist); | ||
68 | static BASIC_CONSTRAINTS *v2i_BASIC_CONSTRAINTS(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *values); | ||
69 | |||
70 | X509V3_EXT_METHOD v3_bcons = { | ||
71 | NID_basic_constraints, 0, | ||
72 | (X509V3_EXT_NEW)BASIC_CONSTRAINTS_new, | ||
73 | (X509V3_EXT_FREE)BASIC_CONSTRAINTS_free, | ||
74 | (X509V3_EXT_D2I)d2i_BASIC_CONSTRAINTS, | ||
75 | (X509V3_EXT_I2D)i2d_BASIC_CONSTRAINTS, | ||
76 | NULL, NULL, | ||
77 | (X509V3_EXT_I2V)i2v_BASIC_CONSTRAINTS, | ||
78 | (X509V3_EXT_V2I)v2i_BASIC_CONSTRAINTS, | ||
79 | NULL,NULL, | ||
80 | NULL | ||
81 | }; | ||
82 | |||
83 | |||
84 | int i2d_BASIC_CONSTRAINTS(BASIC_CONSTRAINTS *a, unsigned char **pp) | ||
85 | { | ||
86 | M_ASN1_I2D_vars(a); | ||
87 | if(a->ca) M_ASN1_I2D_len (a->ca, i2d_ASN1_BOOLEAN); | ||
88 | M_ASN1_I2D_len (a->pathlen, i2d_ASN1_INTEGER); | ||
89 | |||
90 | M_ASN1_I2D_seq_total(); | ||
91 | |||
92 | if (a->ca) M_ASN1_I2D_put (a->ca, i2d_ASN1_BOOLEAN); | ||
93 | M_ASN1_I2D_put (a->pathlen, i2d_ASN1_INTEGER); | ||
94 | M_ASN1_I2D_finish(); | ||
95 | } | ||
96 | |||
97 | BASIC_CONSTRAINTS *BASIC_CONSTRAINTS_new(void) | ||
98 | { | ||
99 | BASIC_CONSTRAINTS *ret=NULL; | ||
100 | ASN1_CTX c; | ||
101 | M_ASN1_New_Malloc(ret, BASIC_CONSTRAINTS); | ||
102 | ret->ca = 0; | ||
103 | ret->pathlen = NULL; | ||
104 | return (ret); | ||
105 | M_ASN1_New_Error(ASN1_F_BASIC_CONSTRAINTS_NEW); | ||
106 | } | ||
107 | |||
108 | BASIC_CONSTRAINTS *d2i_BASIC_CONSTRAINTS(BASIC_CONSTRAINTS **a, | ||
109 | unsigned char **pp, long length) | ||
110 | { | ||
111 | M_ASN1_D2I_vars(a,BASIC_CONSTRAINTS *,BASIC_CONSTRAINTS_new); | ||
112 | M_ASN1_D2I_Init(); | ||
113 | M_ASN1_D2I_start_sequence(); | ||
114 | if((M_ASN1_next & (~V_ASN1_CONSTRUCTED)) == | ||
115 | (V_ASN1_UNIVERSAL|V_ASN1_BOOLEAN) ) { | ||
116 | M_ASN1_D2I_get_int (ret->ca, d2i_ASN1_BOOLEAN); | ||
117 | } | ||
118 | M_ASN1_D2I_get_opt (ret->pathlen, d2i_ASN1_INTEGER, V_ASN1_INTEGER); | ||
119 | M_ASN1_D2I_Finish(a, BASIC_CONSTRAINTS_free, ASN1_F_D2I_BASIC_CONSTRAINTS); | ||
120 | } | ||
121 | |||
122 | void BASIC_CONSTRAINTS_free(BASIC_CONSTRAINTS *a) | ||
123 | { | ||
124 | if (a == NULL) return; | ||
125 | ASN1_INTEGER_free (a->pathlen); | ||
126 | Free ((char *)a); | ||
127 | } | ||
128 | |||
129 | static STACK_OF(CONF_VALUE) *i2v_BASIC_CONSTRAINTS(X509V3_EXT_METHOD *method, | ||
130 | BASIC_CONSTRAINTS *bcons, STACK_OF(CONF_VALUE) *extlist) | ||
131 | { | ||
132 | X509V3_add_value_bool("CA", bcons->ca, &extlist); | ||
133 | X509V3_add_value_int("pathlen", bcons->pathlen, &extlist); | ||
134 | return extlist; | ||
135 | } | ||
136 | |||
137 | static BASIC_CONSTRAINTS *v2i_BASIC_CONSTRAINTS(X509V3_EXT_METHOD *method, | ||
138 | X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *values) | ||
139 | { | ||
140 | BASIC_CONSTRAINTS *bcons=NULL; | ||
141 | CONF_VALUE *val; | ||
142 | int i; | ||
143 | if(!(bcons = BASIC_CONSTRAINTS_new())) { | ||
144 | X509V3err(X509V3_F_V2I_BASIC_CONSTRAINTS, ERR_R_MALLOC_FAILURE); | ||
145 | return NULL; | ||
146 | } | ||
147 | for(i = 0; i < sk_CONF_VALUE_num(values); i++) { | ||
148 | val = sk_CONF_VALUE_value(values, i); | ||
149 | if(!strcmp(val->name, "CA")) { | ||
150 | if(!X509V3_get_value_bool(val, &bcons->ca)) goto err; | ||
151 | } else if(!strcmp(val->name, "pathlen")) { | ||
152 | if(!X509V3_get_value_int(val, &bcons->pathlen)) goto err; | ||
153 | } else { | ||
154 | X509V3err(X509V3_F_V2I_BASIC_CONSTRAINTS, X509V3_R_INVALID_NAME); | ||
155 | X509V3_conf_err(val); | ||
156 | goto err; | ||
157 | } | ||
158 | } | ||
159 | return bcons; | ||
160 | err: | ||
161 | BASIC_CONSTRAINTS_free(bcons); | ||
162 | return NULL; | ||
163 | } | ||
164 | |||
diff --git a/src/lib/libcrypto/x509v3/v3_bitst.c b/src/lib/libcrypto/x509v3/v3_bitst.c deleted file mode 100644 index 9828ba15b3..0000000000 --- a/src/lib/libcrypto/x509v3/v3_bitst.c +++ /dev/null | |||
@@ -1,147 +0,0 @@ | |||
1 | /* v3_bitst.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 | |||
59 | #include <stdio.h> | ||
60 | #include "cryptlib.h" | ||
61 | #include <openssl/conf.h> | ||
62 | #include <openssl/x509v3.h> | ||
63 | |||
64 | static ASN1_BIT_STRING *asn1_bit_string_new(void); | ||
65 | static ASN1_BIT_STRING *v2i_ASN1_BIT_STRING(X509V3_EXT_METHOD *method, | ||
66 | X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval); | ||
67 | static STACK_OF(CONF_VALUE) *i2v_ASN1_BIT_STRING(X509V3_EXT_METHOD *method, | ||
68 | ASN1_BIT_STRING *bits, | ||
69 | STACK_OF(CONF_VALUE) *extlist); | ||
70 | static BIT_STRING_BITNAME ns_cert_type_table[] = { | ||
71 | {0, "SSL Client", "client"}, | ||
72 | {1, "SSL Server", "server"}, | ||
73 | {2, "S/MIME", "email"}, | ||
74 | {3, "Object Signing", "objsign"}, | ||
75 | {4, "Unused", "reserved"}, | ||
76 | {5, "SSL CA", "sslCA"}, | ||
77 | {6, "S/MIME CA", "emailCA"}, | ||
78 | {7, "Object Signing CA", "objCA"}, | ||
79 | {-1, NULL, NULL} | ||
80 | }; | ||
81 | |||
82 | static BIT_STRING_BITNAME key_usage_type_table[] = { | ||
83 | {0, "Digital Signature", "digitalSignature"}, | ||
84 | {1, "Non Repudiation", "nonRepudiation"}, | ||
85 | {2, "Key Encipherment", "keyEncipherment"}, | ||
86 | {3, "Data Encipherment", "dataEncipherment"}, | ||
87 | {4, "Key Agreement", "keyAgreement"}, | ||
88 | {5, "Certificate Sign", "keyCertSign"}, | ||
89 | {6, "CRL Sign", "cRLSign"}, | ||
90 | {7, "Encipher Only", "encipherOnly"}, | ||
91 | {8, "Decipher Only", "decipherOnly"}, | ||
92 | {-1, NULL, NULL} | ||
93 | }; | ||
94 | |||
95 | |||
96 | |||
97 | X509V3_EXT_METHOD v3_nscert = EXT_BITSTRING(NID_netscape_cert_type, ns_cert_type_table); | ||
98 | X509V3_EXT_METHOD v3_key_usage = EXT_BITSTRING(NID_key_usage, key_usage_type_table); | ||
99 | |||
100 | static ASN1_BIT_STRING *asn1_bit_string_new(void) | ||
101 | { | ||
102 | return ASN1_BIT_STRING_new(); | ||
103 | } | ||
104 | |||
105 | static STACK_OF(CONF_VALUE) *i2v_ASN1_BIT_STRING(X509V3_EXT_METHOD *method, | ||
106 | ASN1_BIT_STRING *bits, STACK_OF(CONF_VALUE) *ret) | ||
107 | { | ||
108 | BIT_STRING_BITNAME *bnam; | ||
109 | for(bnam =method->usr_data; bnam->lname; bnam++) { | ||
110 | if(ASN1_BIT_STRING_get_bit(bits, bnam->bitnum)) | ||
111 | X509V3_add_value(bnam->lname, NULL, &ret); | ||
112 | } | ||
113 | return ret; | ||
114 | } | ||
115 | |||
116 | static ASN1_BIT_STRING *v2i_ASN1_BIT_STRING(X509V3_EXT_METHOD *method, | ||
117 | X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval) | ||
118 | { | ||
119 | CONF_VALUE *val; | ||
120 | ASN1_BIT_STRING *bs; | ||
121 | int i; | ||
122 | BIT_STRING_BITNAME *bnam; | ||
123 | if(!(bs = ASN1_BIT_STRING_new())) { | ||
124 | X509V3err(X509V3_F_V2I_ASN1_BIT_STRING,ERR_R_MALLOC_FAILURE); | ||
125 | return NULL; | ||
126 | } | ||
127 | for(i = 0; i < sk_CONF_VALUE_num(nval); i++) { | ||
128 | val = sk_CONF_VALUE_value(nval, i); | ||
129 | for(bnam = method->usr_data; bnam->lname; bnam++) { | ||
130 | if(!strcmp(bnam->sname, val->name) || | ||
131 | !strcmp(bnam->lname, val->name) ) { | ||
132 | ASN1_BIT_STRING_set_bit(bs, bnam->bitnum, 1); | ||
133 | break; | ||
134 | } | ||
135 | } | ||
136 | if(!bnam->lname) { | ||
137 | X509V3err(X509V3_F_V2I_ASN1_BIT_STRING, | ||
138 | X509V3_R_UNKNOWN_BIT_STRING_ARGUMENT); | ||
139 | X509V3_conf_err(val); | ||
140 | ASN1_BIT_STRING_free(bs); | ||
141 | return NULL; | ||
142 | } | ||
143 | } | ||
144 | return bs; | ||
145 | } | ||
146 | |||
147 | |||
diff --git a/src/lib/libcrypto/x509v3/v3_conf.c b/src/lib/libcrypto/x509v3/v3_conf.c deleted file mode 100644 index f19bb3ad84..0000000000 --- a/src/lib/libcrypto/x509v3/v3_conf.c +++ /dev/null | |||
@@ -1,366 +0,0 @@ | |||
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_OF(CONF_VALUE) *conf_lhash_get_section(void *db, char *section); | ||
75 | static X509_EXTENSION *do_ext_i2d(X509V3_EXT_METHOD *method, int ext_nid, | ||
76 | int crit, void *ext_struc); | ||
77 | /* LHASH *conf: Config file */ | ||
78 | /* char *name: Name */ | ||
79 | /* char *value: Value */ | ||
80 | X509_EXTENSION *X509V3_EXT_conf(LHASH *conf, X509V3_CTX *ctx, char *name, | ||
81 | char *value) | ||
82 | { | ||
83 | int crit; | ||
84 | int ext_type; | ||
85 | X509_EXTENSION *ret; | ||
86 | crit = v3_check_critical(&value); | ||
87 | if((ext_type = v3_check_generic(&value))) | ||
88 | return v3_generic_extension(name, value, crit, ext_type); | ||
89 | ret = do_ext_conf(conf, ctx, OBJ_sn2nid(name), crit, value); | ||
90 | if(!ret) { | ||
91 | X509V3err(X509V3_F_X509V3_EXT_CONF,X509V3_R_ERROR_IN_EXTENSION); | ||
92 | ERR_add_error_data(4,"name=", name, ", value=", value); | ||
93 | } | ||
94 | return ret; | ||
95 | } | ||
96 | |||
97 | /* LHASH *conf: Config file */ | ||
98 | /* char *value: Value */ | ||
99 | X509_EXTENSION *X509V3_EXT_conf_nid(LHASH *conf, X509V3_CTX *ctx, int ext_nid, | ||
100 | char *value) | ||
101 | { | ||
102 | int crit; | ||
103 | int ext_type; | ||
104 | crit = v3_check_critical(&value); | ||
105 | if((ext_type = v3_check_generic(&value))) | ||
106 | return v3_generic_extension(OBJ_nid2sn(ext_nid), | ||
107 | value, crit, ext_type); | ||
108 | return do_ext_conf(conf, ctx, ext_nid, crit, value); | ||
109 | } | ||
110 | |||
111 | /* LHASH *conf: Config file */ | ||
112 | /* char *value: Value */ | ||
113 | static X509_EXTENSION *do_ext_conf(LHASH *conf, X509V3_CTX *ctx, int ext_nid, | ||
114 | int crit, char *value) | ||
115 | { | ||
116 | X509V3_EXT_METHOD *method; | ||
117 | X509_EXTENSION *ext; | ||
118 | STACK_OF(CONF_VALUE) *nval; | ||
119 | void *ext_struc; | ||
120 | if(ext_nid == NID_undef) { | ||
121 | X509V3err(X509V3_F_DO_EXT_CONF,X509V3_R_UNKNOWN_EXTENSION_NAME); | ||
122 | return NULL; | ||
123 | } | ||
124 | if(!(method = X509V3_EXT_get_nid(ext_nid))) { | ||
125 | X509V3err(X509V3_F_DO_EXT_CONF,X509V3_R_UNKNOWN_EXTENSION); | ||
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_CONF_VALUE_pop_free(nval, | ||
139 | 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 | ext = do_ext_i2d(method, ext_nid, crit, ext_struc); | ||
156 | method->ext_free(ext_struc); | ||
157 | return ext; | ||
158 | |||
159 | } | ||
160 | |||
161 | static X509_EXTENSION *do_ext_i2d(X509V3_EXT_METHOD *method, int ext_nid, | ||
162 | int crit, void *ext_struc) | ||
163 | { | ||
164 | unsigned char *ext_der, *p; | ||
165 | int ext_len; | ||
166 | ASN1_OCTET_STRING *ext_oct; | ||
167 | X509_EXTENSION *ext; | ||
168 | /* Convert internal representation to DER */ | ||
169 | ext_len = method->i2d(ext_struc, NULL); | ||
170 | if(!(ext_der = Malloc(ext_len))) goto merr; | ||
171 | p = ext_der; | ||
172 | method->i2d(ext_struc, &p); | ||
173 | if(!(ext_oct = ASN1_OCTET_STRING_new())) goto merr; | ||
174 | ext_oct->data = ext_der; | ||
175 | ext_oct->length = ext_len; | ||
176 | |||
177 | ext = X509_EXTENSION_create_by_NID(NULL, ext_nid, crit, ext_oct); | ||
178 | if(!ext) goto merr; | ||
179 | ASN1_OCTET_STRING_free(ext_oct); | ||
180 | |||
181 | return ext; | ||
182 | |||
183 | merr: | ||
184 | X509V3err(X509V3_F_DO_EXT_I2D,ERR_R_MALLOC_FAILURE); | ||
185 | return NULL; | ||
186 | |||
187 | } | ||
188 | |||
189 | /* Given an internal structure, nid and critical flag create an extension */ | ||
190 | |||
191 | X509_EXTENSION *X509V3_EXT_i2d(int ext_nid, int crit, void *ext_struc) | ||
192 | { | ||
193 | X509V3_EXT_METHOD *method; | ||
194 | if(!(method = X509V3_EXT_get_nid(ext_nid))) { | ||
195 | X509V3err(X509V3_F_X509V3_EXT_I2D,X509V3_R_UNKNOWN_EXTENSION); | ||
196 | return NULL; | ||
197 | } | ||
198 | return do_ext_i2d(method, ext_nid, crit, ext_struc); | ||
199 | } | ||
200 | |||
201 | /* Check the extension string for critical flag */ | ||
202 | static int v3_check_critical(char **value) | ||
203 | { | ||
204 | char *p = *value; | ||
205 | if((strlen(p) < 9) || strncmp(p, "critical,", 9)) return 0; | ||
206 | p+=9; | ||
207 | while(isspace((unsigned char)*p)) p++; | ||
208 | *value = p; | ||
209 | return 1; | ||
210 | } | ||
211 | |||
212 | /* Check extension string for generic extension and return the type */ | ||
213 | static int v3_check_generic(char **value) | ||
214 | { | ||
215 | char *p = *value; | ||
216 | if((strlen(p) < 4) || strncmp(p, "DER:,", 4)) return 0; | ||
217 | p+=4; | ||
218 | while(isspace((unsigned char)*p)) p++; | ||
219 | *value = p; | ||
220 | return 1; | ||
221 | } | ||
222 | |||
223 | /* Create a generic extension: for now just handle RAW type */ | ||
224 | static X509_EXTENSION *v3_generic_extension(const char *ext, char *value, | ||
225 | int crit, int type) | ||
226 | { | ||
227 | unsigned char *ext_der=NULL; | ||
228 | long ext_len; | ||
229 | ASN1_OBJECT *obj=NULL; | ||
230 | ASN1_OCTET_STRING *oct=NULL; | ||
231 | X509_EXTENSION *extension=NULL; | ||
232 | if(!(obj = OBJ_txt2obj(ext, 0))) { | ||
233 | X509V3err(X509V3_F_V3_GENERIC_EXTENSION,X509V3_R_EXTENSION_NAME_ERROR); | ||
234 | ERR_add_error_data(2, "name=", ext); | ||
235 | goto err; | ||
236 | } | ||
237 | |||
238 | if(!(ext_der = string_to_hex(value, &ext_len))) { | ||
239 | X509V3err(X509V3_F_V3_GENERIC_EXTENSION,X509V3_R_EXTENSION_VALUE_ERROR); | ||
240 | ERR_add_error_data(2, "value=", value); | ||
241 | goto err; | ||
242 | } | ||
243 | |||
244 | if(!(oct = ASN1_OCTET_STRING_new())) { | ||
245 | X509V3err(X509V3_F_V3_GENERIC_EXTENSION,ERR_R_MALLOC_FAILURE); | ||
246 | goto err; | ||
247 | } | ||
248 | |||
249 | oct->data = ext_der; | ||
250 | oct->length = ext_len; | ||
251 | ext_der = NULL; | ||
252 | |||
253 | extension = X509_EXTENSION_create_by_OBJ(NULL, obj, crit, oct); | ||
254 | |||
255 | err: | ||
256 | ASN1_OBJECT_free(obj); | ||
257 | ASN1_OCTET_STRING_free(oct); | ||
258 | if(ext_der) Free(ext_der); | ||
259 | return extension; | ||
260 | } | ||
261 | |||
262 | |||
263 | /* This is the main function: add a bunch of extensions based on a config file | ||
264 | * section | ||
265 | */ | ||
266 | |||
267 | int X509V3_EXT_add_conf(LHASH *conf, X509V3_CTX *ctx, char *section, | ||
268 | X509 *cert) | ||
269 | { | ||
270 | X509_EXTENSION *ext; | ||
271 | STACK_OF(CONF_VALUE) *nval; | ||
272 | CONF_VALUE *val; | ||
273 | int i; | ||
274 | if(!(nval = CONF_get_section(conf, section))) return 0; | ||
275 | for(i = 0; i < sk_CONF_VALUE_num(nval); i++) { | ||
276 | val = sk_CONF_VALUE_value(nval, i); | ||
277 | if(!(ext = X509V3_EXT_conf(conf, ctx, val->name, val->value))) | ||
278 | return 0; | ||
279 | if(cert) X509_add_ext(cert, ext, -1); | ||
280 | X509_EXTENSION_free(ext); | ||
281 | } | ||
282 | return 1; | ||
283 | } | ||
284 | |||
285 | /* Same as above but for a CRL */ | ||
286 | |||
287 | int X509V3_EXT_CRL_add_conf(LHASH *conf, X509V3_CTX *ctx, char *section, | ||
288 | X509_CRL *crl) | ||
289 | { | ||
290 | X509_EXTENSION *ext; | ||
291 | STACK_OF(CONF_VALUE) *nval; | ||
292 | CONF_VALUE *val; | ||
293 | int i; | ||
294 | if(!(nval = CONF_get_section(conf, section))) return 0; | ||
295 | for(i = 0; i < sk_CONF_VALUE_num(nval); i++) { | ||
296 | val = sk_CONF_VALUE_value(nval, i); | ||
297 | if(!(ext = X509V3_EXT_conf(conf, ctx, val->name, val->value))) | ||
298 | return 0; | ||
299 | if(crl) X509_CRL_add_ext(crl, ext, -1); | ||
300 | X509_EXTENSION_free(ext); | ||
301 | } | ||
302 | return 1; | ||
303 | } | ||
304 | |||
305 | /* Config database functions */ | ||
306 | |||
307 | char * X509V3_get_string(X509V3_CTX *ctx, char *name, char *section) | ||
308 | { | ||
309 | if(ctx->db_meth->get_string) | ||
310 | return ctx->db_meth->get_string(ctx->db, name, section); | ||
311 | return NULL; | ||
312 | } | ||
313 | |||
314 | STACK_OF(CONF_VALUE) * X509V3_get_section(X509V3_CTX *ctx, char *section) | ||
315 | { | ||
316 | if(ctx->db_meth->get_section) | ||
317 | return ctx->db_meth->get_section(ctx->db, section); | ||
318 | return NULL; | ||
319 | } | ||
320 | |||
321 | void X509V3_string_free(X509V3_CTX *ctx, char *str) | ||
322 | { | ||
323 | if(!str) return; | ||
324 | if(ctx->db_meth->free_string) | ||
325 | ctx->db_meth->free_string(ctx->db, str); | ||
326 | } | ||
327 | |||
328 | void X509V3_section_free(X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *section) | ||
329 | { | ||
330 | if(!section) return; | ||
331 | if(ctx->db_meth->free_section) | ||
332 | ctx->db_meth->free_section(ctx->db, section); | ||
333 | } | ||
334 | |||
335 | static char *conf_lhash_get_string(void *db, char *section, char *value) | ||
336 | { | ||
337 | return CONF_get_string(db, section, value); | ||
338 | } | ||
339 | |||
340 | static STACK_OF(CONF_VALUE) *conf_lhash_get_section(void *db, char *section) | ||
341 | { | ||
342 | return CONF_get_section(db, section); | ||
343 | } | ||
344 | |||
345 | static X509V3_CONF_METHOD conf_lhash_method = { | ||
346 | conf_lhash_get_string, | ||
347 | conf_lhash_get_section, | ||
348 | NULL, | ||
349 | NULL | ||
350 | }; | ||
351 | |||
352 | void X509V3_set_conf_lhash(X509V3_CTX *ctx, LHASH *lhash) | ||
353 | { | ||
354 | ctx->db_meth = &conf_lhash_method; | ||
355 | ctx->db = lhash; | ||
356 | } | ||
357 | |||
358 | void X509V3_set_ctx(X509V3_CTX *ctx, X509 *issuer, X509 *subj, X509_REQ *req, | ||
359 | X509_CRL *crl, int flags) | ||
360 | { | ||
361 | ctx->issuer_cert = issuer; | ||
362 | ctx->subject_cert = subj; | ||
363 | ctx->crl = crl; | ||
364 | ctx->subject_req = req; | ||
365 | ctx->flags = flags; | ||
366 | } | ||
diff --git a/src/lib/libcrypto/x509v3/v3_cpols.c b/src/lib/libcrypto/x509v3/v3_cpols.c deleted file mode 100644 index b4d4883545..0000000000 --- a/src/lib/libcrypto/x509v3/v3_cpols.c +++ /dev/null | |||
@@ -1,655 +0,0 @@ | |||
1 | /* v3_cpols.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 | |||
59 | #include <stdio.h> | ||
60 | #include "cryptlib.h" | ||
61 | #include <openssl/conf.h> | ||
62 | #include <openssl/asn1.h> | ||
63 | #include <openssl/asn1_mac.h> | ||
64 | #include <openssl/x509v3.h> | ||
65 | |||
66 | /* Certificate policies extension support: this one is a bit complex... */ | ||
67 | |||
68 | static int i2r_certpol(X509V3_EXT_METHOD *method, STACK_OF(POLICYINFO) *pol, BIO *out, int indent); | ||
69 | static STACK_OF(POLICYINFO) *r2i_certpol(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, char *value); | ||
70 | static void print_qualifiers(BIO *out, STACK_OF(POLICYQUALINFO) *quals, int indent); | ||
71 | static void print_notice(BIO *out, USERNOTICE *notice, int indent); | ||
72 | static POLICYINFO *policy_section(X509V3_CTX *ctx, | ||
73 | STACK_OF(CONF_VALUE) *polstrs, int ia5org); | ||
74 | static POLICYQUALINFO *notice_section(X509V3_CTX *ctx, | ||
75 | STACK_OF(CONF_VALUE) *unot, int ia5org); | ||
76 | static STACK *nref_nos(STACK_OF(CONF_VALUE) *nos); | ||
77 | |||
78 | X509V3_EXT_METHOD v3_cpols = { | ||
79 | NID_certificate_policies, 0, | ||
80 | (X509V3_EXT_NEW)CERTIFICATEPOLICIES_new, | ||
81 | (X509V3_EXT_FREE)CERTIFICATEPOLICIES_free, | ||
82 | (X509V3_EXT_D2I)d2i_CERTIFICATEPOLICIES, | ||
83 | (X509V3_EXT_I2D)i2d_CERTIFICATEPOLICIES, | ||
84 | NULL, NULL, | ||
85 | NULL, NULL, | ||
86 | (X509V3_EXT_I2R)i2r_certpol, | ||
87 | (X509V3_EXT_R2I)r2i_certpol, | ||
88 | NULL | ||
89 | }; | ||
90 | |||
91 | |||
92 | static STACK_OF(POLICYINFO) *r2i_certpol(X509V3_EXT_METHOD *method, | ||
93 | X509V3_CTX *ctx, char *value) | ||
94 | { | ||
95 | STACK_OF(POLICYINFO) *pols = NULL; | ||
96 | char *pstr; | ||
97 | POLICYINFO *pol; | ||
98 | ASN1_OBJECT *pobj; | ||
99 | STACK_OF(CONF_VALUE) *vals; | ||
100 | CONF_VALUE *cnf; | ||
101 | int i, ia5org; | ||
102 | pols = sk_POLICYINFO_new_null(); | ||
103 | vals = X509V3_parse_list(value); | ||
104 | ia5org = 0; | ||
105 | for(i = 0; i < sk_CONF_VALUE_num(vals); i++) { | ||
106 | cnf = sk_CONF_VALUE_value(vals, i); | ||
107 | if(cnf->value || !cnf->name ) { | ||
108 | X509V3err(X509V3_F_R2I_CERTPOL,X509V3_R_INVALID_POLICY_IDENTIFIER); | ||
109 | X509V3_conf_err(cnf); | ||
110 | goto err; | ||
111 | } | ||
112 | pstr = cnf->name; | ||
113 | if(!strcmp(pstr,"ia5org")) { | ||
114 | ia5org = 1; | ||
115 | continue; | ||
116 | } else if(*pstr == '@') { | ||
117 | STACK_OF(CONF_VALUE) *polsect; | ||
118 | polsect = X509V3_get_section(ctx, pstr + 1); | ||
119 | if(!polsect) { | ||
120 | X509V3err(X509V3_F_R2I_CERTPOL,X509V3_R_INVALID_SECTION); | ||
121 | |||
122 | X509V3_conf_err(cnf); | ||
123 | goto err; | ||
124 | } | ||
125 | pol = policy_section(ctx, polsect, ia5org); | ||
126 | X509V3_section_free(ctx, polsect); | ||
127 | if(!pol) goto err; | ||
128 | } else { | ||
129 | if(!(pobj = OBJ_txt2obj(cnf->name, 0))) { | ||
130 | X509V3err(X509V3_F_R2I_CERTPOL,X509V3_R_INVALID_OBJECT_IDENTIFIER); | ||
131 | X509V3_conf_err(cnf); | ||
132 | goto err; | ||
133 | } | ||
134 | pol = POLICYINFO_new(); | ||
135 | pol->policyid = pobj; | ||
136 | } | ||
137 | sk_POLICYINFO_push(pols, pol); | ||
138 | } | ||
139 | sk_CONF_VALUE_pop_free(vals, X509V3_conf_free); | ||
140 | return pols; | ||
141 | err: | ||
142 | sk_POLICYINFO_pop_free(pols, POLICYINFO_free); | ||
143 | return NULL; | ||
144 | } | ||
145 | |||
146 | static POLICYINFO *policy_section(X509V3_CTX *ctx, | ||
147 | STACK_OF(CONF_VALUE) *polstrs, int ia5org) | ||
148 | { | ||
149 | int i; | ||
150 | CONF_VALUE *cnf; | ||
151 | POLICYINFO *pol; | ||
152 | POLICYQUALINFO *qual; | ||
153 | if(!(pol = POLICYINFO_new())) goto merr; | ||
154 | for(i = 0; i < sk_CONF_VALUE_num(polstrs); i++) { | ||
155 | cnf = sk_CONF_VALUE_value(polstrs, i); | ||
156 | if(!strcmp(cnf->name, "policyIdentifier")) { | ||
157 | ASN1_OBJECT *pobj; | ||
158 | if(!(pobj = OBJ_txt2obj(cnf->value, 0))) { | ||
159 | X509V3err(X509V3_F_POLICY_SECTION,X509V3_R_INVALID_OBJECT_IDENTIFIER); | ||
160 | X509V3_conf_err(cnf); | ||
161 | goto err; | ||
162 | } | ||
163 | pol->policyid = pobj; | ||
164 | |||
165 | } else if(!name_cmp(cnf->name, "CPS")) { | ||
166 | if(!pol->qualifiers) pol->qualifiers = | ||
167 | sk_POLICYQUALINFO_new_null(); | ||
168 | if(!(qual = POLICYQUALINFO_new())) goto merr; | ||
169 | if(!sk_POLICYQUALINFO_push(pol->qualifiers, qual)) | ||
170 | goto merr; | ||
171 | qual->pqualid = OBJ_nid2obj(NID_id_qt_cps); | ||
172 | qual->d.cpsuri = ASN1_IA5STRING_new(); | ||
173 | if(!ASN1_STRING_set(qual->d.cpsuri, cnf->value, | ||
174 | strlen(cnf->value))) goto merr; | ||
175 | } else if(!name_cmp(cnf->name, "userNotice")) { | ||
176 | STACK_OF(CONF_VALUE) *unot; | ||
177 | if(*cnf->value != '@') { | ||
178 | X509V3err(X509V3_F_POLICY_SECTION,X509V3_R_EXPECTED_A_SECTION_NAME); | ||
179 | X509V3_conf_err(cnf); | ||
180 | goto err; | ||
181 | } | ||
182 | unot = X509V3_get_section(ctx, cnf->value + 1); | ||
183 | if(!unot) { | ||
184 | X509V3err(X509V3_F_POLICY_SECTION,X509V3_R_INVALID_SECTION); | ||
185 | |||
186 | X509V3_conf_err(cnf); | ||
187 | goto err; | ||
188 | } | ||
189 | qual = notice_section(ctx, unot, ia5org); | ||
190 | X509V3_section_free(ctx, unot); | ||
191 | if(!qual) goto err; | ||
192 | if(!sk_POLICYQUALINFO_push(pol->qualifiers, qual)) | ||
193 | goto merr; | ||
194 | } else { | ||
195 | X509V3err(X509V3_F_POLICY_SECTION,X509V3_R_INVALID_OPTION); | ||
196 | |||
197 | X509V3_conf_err(cnf); | ||
198 | goto err; | ||
199 | } | ||
200 | } | ||
201 | if(!pol->policyid) { | ||
202 | X509V3err(X509V3_F_POLICY_SECTION,X509V3_R_NO_POLICY_IDENTIFIER); | ||
203 | goto err; | ||
204 | } | ||
205 | |||
206 | return pol; | ||
207 | |||
208 | merr: | ||
209 | X509V3err(X509V3_F_POLICY_SECTION,ERR_R_MALLOC_FAILURE); | ||
210 | |||
211 | err: | ||
212 | POLICYINFO_free(pol); | ||
213 | return NULL; | ||
214 | |||
215 | |||
216 | } | ||
217 | |||
218 | static POLICYQUALINFO *notice_section(X509V3_CTX *ctx, | ||
219 | STACK_OF(CONF_VALUE) *unot, int ia5org) | ||
220 | { | ||
221 | int i; | ||
222 | CONF_VALUE *cnf; | ||
223 | USERNOTICE *not; | ||
224 | POLICYQUALINFO *qual; | ||
225 | if(!(qual = POLICYQUALINFO_new())) goto merr; | ||
226 | qual->pqualid = OBJ_nid2obj(NID_id_qt_unotice); | ||
227 | if(!(not = USERNOTICE_new())) goto merr; | ||
228 | qual->d.usernotice = not; | ||
229 | for(i = 0; i < sk_CONF_VALUE_num(unot); i++) { | ||
230 | cnf = sk_CONF_VALUE_value(unot, i); | ||
231 | if(!strcmp(cnf->name, "explicitText")) { | ||
232 | not->exptext = ASN1_VISIBLESTRING_new(); | ||
233 | if(!ASN1_STRING_set(not->exptext, cnf->value, | ||
234 | strlen(cnf->value))) goto merr; | ||
235 | } else if(!strcmp(cnf->name, "organization")) { | ||
236 | NOTICEREF *nref; | ||
237 | if(!not->noticeref) { | ||
238 | if(!(nref = NOTICEREF_new())) goto merr; | ||
239 | not->noticeref = nref; | ||
240 | } else nref = not->noticeref; | ||
241 | if(ia5org) nref->organization = ASN1_IA5STRING_new(); | ||
242 | else nref->organization = ASN1_VISIBLESTRING_new(); | ||
243 | if(!ASN1_STRING_set(nref->organization, cnf->value, | ||
244 | strlen(cnf->value))) goto merr; | ||
245 | } else if(!strcmp(cnf->name, "noticeNumbers")) { | ||
246 | NOTICEREF *nref; | ||
247 | STACK_OF(CONF_VALUE) *nos; | ||
248 | if(!not->noticeref) { | ||
249 | if(!(nref = NOTICEREF_new())) goto merr; | ||
250 | not->noticeref = nref; | ||
251 | } else nref = not->noticeref; | ||
252 | nos = X509V3_parse_list(cnf->value); | ||
253 | if(!nos || !sk_CONF_VALUE_num(nos)) { | ||
254 | X509V3err(X509V3_F_NOTICE_SECTION,X509V3_R_INVALID_NUMBERS); | ||
255 | X509V3_conf_err(cnf); | ||
256 | goto err; | ||
257 | } | ||
258 | nref->noticenos = nref_nos(nos); | ||
259 | sk_CONF_VALUE_pop_free(nos, X509V3_conf_free); | ||
260 | if(!nref->noticenos) goto err; | ||
261 | } else { | ||
262 | X509V3err(X509V3_F_NOTICE_SECTION,X509V3_R_INVALID_OPTION); | ||
263 | |||
264 | X509V3_conf_err(cnf); | ||
265 | goto err; | ||
266 | } | ||
267 | } | ||
268 | |||
269 | if(not->noticeref && | ||
270 | (!not->noticeref->noticenos || !not->noticeref->organization)) { | ||
271 | X509V3err(X509V3_F_NOTICE_SECTION,X509V3_R_NEED_ORGANIZATION_AND_NUMBERS); | ||
272 | goto err; | ||
273 | } | ||
274 | |||
275 | return qual; | ||
276 | |||
277 | merr: | ||
278 | X509V3err(X509V3_F_NOTICE_SECTION,ERR_R_MALLOC_FAILURE); | ||
279 | |||
280 | err: | ||
281 | POLICYQUALINFO_free(qual); | ||
282 | return NULL; | ||
283 | } | ||
284 | |||
285 | static STACK *nref_nos(STACK_OF(CONF_VALUE) *nos) | ||
286 | { | ||
287 | STACK *nnums; | ||
288 | CONF_VALUE *cnf; | ||
289 | ASN1_INTEGER *aint; | ||
290 | int i; | ||
291 | if(!(nnums = sk_new_null())) goto merr; | ||
292 | for(i = 0; i < sk_CONF_VALUE_num(nos); i++) { | ||
293 | cnf = sk_CONF_VALUE_value(nos, i); | ||
294 | if(!(aint = s2i_ASN1_INTEGER(NULL, cnf->name))) { | ||
295 | X509V3err(X509V3_F_NREF_NOS,X509V3_R_INVALID_NUMBER); | ||
296 | goto err; | ||
297 | } | ||
298 | if(!sk_push(nnums, (char *)aint)) goto merr; | ||
299 | } | ||
300 | return nnums; | ||
301 | |||
302 | merr: | ||
303 | X509V3err(X509V3_F_NOTICE_SECTION,ERR_R_MALLOC_FAILURE); | ||
304 | |||
305 | err: | ||
306 | sk_pop_free(nnums, ASN1_STRING_free); | ||
307 | return NULL; | ||
308 | } | ||
309 | |||
310 | |||
311 | static int i2r_certpol(X509V3_EXT_METHOD *method, STACK_OF(POLICYINFO) *pol, | ||
312 | BIO *out, int indent) | ||
313 | { | ||
314 | int i; | ||
315 | POLICYINFO *pinfo; | ||
316 | /* First print out the policy OIDs */ | ||
317 | for(i = 0; i < sk_POLICYINFO_num(pol); i++) { | ||
318 | pinfo = sk_POLICYINFO_value(pol, i); | ||
319 | BIO_printf(out, "%*sPolicy: ", indent, ""); | ||
320 | i2a_ASN1_OBJECT(out, pinfo->policyid); | ||
321 | BIO_puts(out, "\n"); | ||
322 | if(pinfo->qualifiers) | ||
323 | print_qualifiers(out, pinfo->qualifiers, indent + 2); | ||
324 | } | ||
325 | return 1; | ||
326 | } | ||
327 | |||
328 | |||
329 | int i2d_CERTIFICATEPOLICIES(STACK_OF(POLICYINFO) *a, unsigned char **pp) | ||
330 | { | ||
331 | |||
332 | return i2d_ASN1_SET_OF_POLICYINFO(a, pp, i2d_POLICYINFO, V_ASN1_SEQUENCE, | ||
333 | V_ASN1_UNIVERSAL, IS_SEQUENCE);} | ||
334 | |||
335 | STACK_OF(POLICYINFO) *CERTIFICATEPOLICIES_new(void) | ||
336 | { | ||
337 | return sk_POLICYINFO_new_null(); | ||
338 | } | ||
339 | |||
340 | void CERTIFICATEPOLICIES_free(STACK_OF(POLICYINFO) *a) | ||
341 | { | ||
342 | sk_POLICYINFO_pop_free(a, POLICYINFO_free); | ||
343 | } | ||
344 | |||
345 | STACK_OF(POLICYINFO) *d2i_CERTIFICATEPOLICIES(STACK_OF(POLICYINFO) **a, | ||
346 | unsigned char **pp,long length) | ||
347 | { | ||
348 | return d2i_ASN1_SET_OF_POLICYINFO(a, pp, length, d2i_POLICYINFO, | ||
349 | POLICYINFO_free, V_ASN1_SEQUENCE, V_ASN1_UNIVERSAL); | ||
350 | |||
351 | } | ||
352 | |||
353 | IMPLEMENT_STACK_OF(POLICYINFO) | ||
354 | IMPLEMENT_ASN1_SET_OF(POLICYINFO) | ||
355 | |||
356 | int i2d_POLICYINFO(POLICYINFO *a, unsigned char **pp) | ||
357 | { | ||
358 | M_ASN1_I2D_vars(a); | ||
359 | |||
360 | M_ASN1_I2D_len (a->policyid, i2d_ASN1_OBJECT); | ||
361 | M_ASN1_I2D_len_SEQUENCE_type(POLICYQUALINFO, a->qualifiers, | ||
362 | i2d_POLICYQUALINFO); | ||
363 | |||
364 | M_ASN1_I2D_seq_total(); | ||
365 | |||
366 | M_ASN1_I2D_put (a->policyid, i2d_ASN1_OBJECT); | ||
367 | M_ASN1_I2D_put_SEQUENCE_type(POLICYQUALINFO, a->qualifiers, | ||
368 | i2d_POLICYQUALINFO); | ||
369 | |||
370 | M_ASN1_I2D_finish(); | ||
371 | } | ||
372 | |||
373 | POLICYINFO *POLICYINFO_new(void) | ||
374 | { | ||
375 | POLICYINFO *ret=NULL; | ||
376 | ASN1_CTX c; | ||
377 | M_ASN1_New_Malloc(ret, POLICYINFO); | ||
378 | ret->policyid = NULL; | ||
379 | ret->qualifiers = NULL; | ||
380 | return (ret); | ||
381 | M_ASN1_New_Error(ASN1_F_POLICYINFO_NEW); | ||
382 | } | ||
383 | |||
384 | POLICYINFO *d2i_POLICYINFO(POLICYINFO **a, unsigned char **pp,long length) | ||
385 | { | ||
386 | M_ASN1_D2I_vars(a,POLICYINFO *,POLICYINFO_new); | ||
387 | M_ASN1_D2I_Init(); | ||
388 | M_ASN1_D2I_start_sequence(); | ||
389 | M_ASN1_D2I_get(ret->policyid, d2i_ASN1_OBJECT); | ||
390 | if(!M_ASN1_D2I_end_sequence()) { | ||
391 | M_ASN1_D2I_get_seq_type (POLICYQUALINFO, ret->qualifiers, | ||
392 | d2i_POLICYQUALINFO, POLICYQUALINFO_free); | ||
393 | } | ||
394 | M_ASN1_D2I_Finish(a, POLICYINFO_free, ASN1_F_D2I_POLICYINFO); | ||
395 | } | ||
396 | |||
397 | void POLICYINFO_free(POLICYINFO *a) | ||
398 | { | ||
399 | if (a == NULL) return; | ||
400 | ASN1_OBJECT_free(a->policyid); | ||
401 | sk_POLICYQUALINFO_pop_free(a->qualifiers, POLICYQUALINFO_free); | ||
402 | Free (a); | ||
403 | } | ||
404 | |||
405 | static void print_qualifiers(BIO *out, STACK_OF(POLICYQUALINFO) *quals, | ||
406 | int indent) | ||
407 | { | ||
408 | POLICYQUALINFO *qualinfo; | ||
409 | int i; | ||
410 | for(i = 0; i < sk_POLICYQUALINFO_num(quals); i++) { | ||
411 | qualinfo = sk_POLICYQUALINFO_value(quals, i); | ||
412 | switch(OBJ_obj2nid(qualinfo->pqualid)) | ||
413 | { | ||
414 | case NID_id_qt_cps: | ||
415 | BIO_printf(out, "%*sCPS: %s\n", indent, "", | ||
416 | qualinfo->d.cpsuri->data); | ||
417 | break; | ||
418 | |||
419 | case NID_id_qt_unotice: | ||
420 | BIO_printf(out, "%*sUser Notice:\n", indent, ""); | ||
421 | print_notice(out, qualinfo->d.usernotice, indent + 2); | ||
422 | break; | ||
423 | |||
424 | default: | ||
425 | BIO_printf(out, "%*sUnknown Qualifier: ", | ||
426 | indent + 2, ""); | ||
427 | |||
428 | i2a_ASN1_OBJECT(out, qualinfo->pqualid); | ||
429 | BIO_puts(out, "\n"); | ||
430 | break; | ||
431 | } | ||
432 | } | ||
433 | } | ||
434 | |||
435 | static void print_notice(BIO *out, USERNOTICE *notice, int indent) | ||
436 | { | ||
437 | int i; | ||
438 | if(notice->noticeref) { | ||
439 | NOTICEREF *ref; | ||
440 | ref = notice->noticeref; | ||
441 | BIO_printf(out, "%*sOrganization: %s\n", indent, "", | ||
442 | ref->organization->data); | ||
443 | BIO_printf(out, "%*sNumber%s: ", indent, "", | ||
444 | (sk_num(ref->noticenos) > 1) ? "s" : ""); | ||
445 | for(i = 0; i < sk_num(ref->noticenos); i++) { | ||
446 | ASN1_INTEGER *num; | ||
447 | char *tmp; | ||
448 | num = (ASN1_INTEGER *)sk_value(ref->noticenos, i); | ||
449 | if(i) BIO_puts(out, ", "); | ||
450 | tmp = i2s_ASN1_INTEGER(NULL, num); | ||
451 | BIO_puts(out, tmp); | ||
452 | Free(tmp); | ||
453 | } | ||
454 | BIO_puts(out, "\n"); | ||
455 | } | ||
456 | if(notice->exptext) | ||
457 | BIO_printf(out, "%*sExplicit Text: %s\n", indent, "", | ||
458 | notice->exptext->data); | ||
459 | } | ||
460 | |||
461 | |||
462 | |||
463 | int i2d_POLICYQUALINFO(POLICYQUALINFO *a, unsigned char **pp) | ||
464 | { | ||
465 | M_ASN1_I2D_vars(a); | ||
466 | |||
467 | M_ASN1_I2D_len (a->pqualid, i2d_ASN1_OBJECT); | ||
468 | switch(OBJ_obj2nid(a->pqualid)) { | ||
469 | case NID_id_qt_cps: | ||
470 | M_ASN1_I2D_len(a->d.cpsuri, i2d_ASN1_IA5STRING); | ||
471 | break; | ||
472 | |||
473 | case NID_id_qt_unotice: | ||
474 | M_ASN1_I2D_len(a->d.usernotice, i2d_USERNOTICE); | ||
475 | break; | ||
476 | |||
477 | default: | ||
478 | M_ASN1_I2D_len(a->d.other, i2d_ASN1_TYPE); | ||
479 | break; | ||
480 | } | ||
481 | |||
482 | M_ASN1_I2D_seq_total(); | ||
483 | |||
484 | M_ASN1_I2D_put (a->pqualid, i2d_ASN1_OBJECT); | ||
485 | switch(OBJ_obj2nid(a->pqualid)) { | ||
486 | case NID_id_qt_cps: | ||
487 | M_ASN1_I2D_put(a->d.cpsuri, i2d_ASN1_IA5STRING); | ||
488 | break; | ||
489 | |||
490 | case NID_id_qt_unotice: | ||
491 | M_ASN1_I2D_put(a->d.usernotice, i2d_USERNOTICE); | ||
492 | break; | ||
493 | |||
494 | default: | ||
495 | M_ASN1_I2D_put(a->d.other, i2d_ASN1_TYPE); | ||
496 | break; | ||
497 | } | ||
498 | |||
499 | M_ASN1_I2D_finish(); | ||
500 | } | ||
501 | |||
502 | POLICYQUALINFO *POLICYQUALINFO_new(void) | ||
503 | { | ||
504 | POLICYQUALINFO *ret=NULL; | ||
505 | ASN1_CTX c; | ||
506 | M_ASN1_New_Malloc(ret, POLICYQUALINFO); | ||
507 | ret->pqualid = NULL; | ||
508 | ret->d.other = NULL; | ||
509 | return (ret); | ||
510 | M_ASN1_New_Error(ASN1_F_POLICYQUALINFO_NEW); | ||
511 | } | ||
512 | |||
513 | POLICYQUALINFO *d2i_POLICYQUALINFO(POLICYQUALINFO **a, unsigned char **pp, | ||
514 | long length) | ||
515 | { | ||
516 | M_ASN1_D2I_vars(a,POLICYQUALINFO *,POLICYQUALINFO_new); | ||
517 | M_ASN1_D2I_Init(); | ||
518 | M_ASN1_D2I_start_sequence(); | ||
519 | M_ASN1_D2I_get (ret->pqualid, d2i_ASN1_OBJECT); | ||
520 | switch(OBJ_obj2nid(ret->pqualid)) { | ||
521 | case NID_id_qt_cps: | ||
522 | M_ASN1_D2I_get(ret->d.cpsuri, d2i_ASN1_IA5STRING); | ||
523 | break; | ||
524 | |||
525 | case NID_id_qt_unotice: | ||
526 | M_ASN1_D2I_get(ret->d.usernotice, d2i_USERNOTICE); | ||
527 | break; | ||
528 | |||
529 | default: | ||
530 | M_ASN1_D2I_get(ret->d.other, d2i_ASN1_TYPE); | ||
531 | break; | ||
532 | } | ||
533 | M_ASN1_D2I_Finish(a, POLICYQUALINFO_free, ASN1_F_D2I_POLICYQUALINFO); | ||
534 | } | ||
535 | |||
536 | void POLICYQUALINFO_free(POLICYQUALINFO *a) | ||
537 | { | ||
538 | if (a == NULL) return; | ||
539 | switch(OBJ_obj2nid(a->pqualid)) { | ||
540 | case NID_id_qt_cps: | ||
541 | ASN1_IA5STRING_free(a->d.cpsuri); | ||
542 | break; | ||
543 | |||
544 | case NID_id_qt_unotice: | ||
545 | USERNOTICE_free(a->d.usernotice); | ||
546 | break; | ||
547 | |||
548 | default: | ||
549 | ASN1_TYPE_free(a->d.other); | ||
550 | break; | ||
551 | } | ||
552 | |||
553 | ASN1_OBJECT_free(a->pqualid); | ||
554 | Free (a); | ||
555 | } | ||
556 | |||
557 | int i2d_USERNOTICE(USERNOTICE *a, unsigned char **pp) | ||
558 | { | ||
559 | M_ASN1_I2D_vars(a); | ||
560 | |||
561 | M_ASN1_I2D_len (a->noticeref, i2d_NOTICEREF); | ||
562 | M_ASN1_I2D_len (a->exptext, i2d_DISPLAYTEXT); | ||
563 | |||
564 | M_ASN1_I2D_seq_total(); | ||
565 | |||
566 | M_ASN1_I2D_put (a->noticeref, i2d_NOTICEREF); | ||
567 | M_ASN1_I2D_put (a->exptext, i2d_DISPLAYTEXT); | ||
568 | |||
569 | M_ASN1_I2D_finish(); | ||
570 | } | ||
571 | |||
572 | USERNOTICE *USERNOTICE_new(void) | ||
573 | { | ||
574 | USERNOTICE *ret=NULL; | ||
575 | ASN1_CTX c; | ||
576 | M_ASN1_New_Malloc(ret, USERNOTICE); | ||
577 | ret->noticeref = NULL; | ||
578 | ret->exptext = NULL; | ||
579 | return (ret); | ||
580 | M_ASN1_New_Error(ASN1_F_USERNOTICE_NEW); | ||
581 | } | ||
582 | |||
583 | USERNOTICE *d2i_USERNOTICE(USERNOTICE **a, unsigned char **pp,long length) | ||
584 | { | ||
585 | M_ASN1_D2I_vars(a,USERNOTICE *,USERNOTICE_new); | ||
586 | M_ASN1_D2I_Init(); | ||
587 | M_ASN1_D2I_start_sequence(); | ||
588 | M_ASN1_D2I_get_opt(ret->noticeref, d2i_NOTICEREF, V_ASN1_SEQUENCE); | ||
589 | if (!M_ASN1_D2I_end_sequence()) { | ||
590 | M_ASN1_D2I_get(ret->exptext, d2i_DISPLAYTEXT); | ||
591 | } | ||
592 | M_ASN1_D2I_Finish(a, USERNOTICE_free, ASN1_F_D2I_USERNOTICE); | ||
593 | } | ||
594 | |||
595 | void USERNOTICE_free(USERNOTICE *a) | ||
596 | { | ||
597 | if (a == NULL) return; | ||
598 | NOTICEREF_free(a->noticeref); | ||
599 | DISPLAYTEXT_free(a->exptext); | ||
600 | Free (a); | ||
601 | } | ||
602 | |||
603 | int i2d_NOTICEREF(NOTICEREF *a, unsigned char **pp) | ||
604 | { | ||
605 | M_ASN1_I2D_vars(a); | ||
606 | |||
607 | M_ASN1_I2D_len (a->organization, i2d_DISPLAYTEXT); | ||
608 | M_ASN1_I2D_len_SEQUENCE(a->noticenos, i2d_ASN1_INTEGER); | ||
609 | |||
610 | M_ASN1_I2D_seq_total(); | ||
611 | |||
612 | M_ASN1_I2D_put (a->organization, i2d_DISPLAYTEXT); | ||
613 | M_ASN1_I2D_put_SEQUENCE(a->noticenos, i2d_ASN1_INTEGER); | ||
614 | |||
615 | M_ASN1_I2D_finish(); | ||
616 | } | ||
617 | |||
618 | NOTICEREF *NOTICEREF_new(void) | ||
619 | { | ||
620 | NOTICEREF *ret=NULL; | ||
621 | ASN1_CTX c; | ||
622 | M_ASN1_New_Malloc(ret, NOTICEREF); | ||
623 | ret->organization = NULL; | ||
624 | ret->noticenos = NULL; | ||
625 | return (ret); | ||
626 | M_ASN1_New_Error(ASN1_F_NOTICEREF_NEW); | ||
627 | } | ||
628 | |||
629 | NOTICEREF *d2i_NOTICEREF(NOTICEREF **a, unsigned char **pp,long length) | ||
630 | { | ||
631 | M_ASN1_D2I_vars(a,NOTICEREF *,NOTICEREF_new); | ||
632 | M_ASN1_D2I_Init(); | ||
633 | M_ASN1_D2I_start_sequence(); | ||
634 | /* This is to cope with some broken encodings that use IA5STRING for | ||
635 | * the organization field | ||
636 | */ | ||
637 | M_ASN1_D2I_get_opt(ret->organization, d2i_ASN1_IA5STRING, | ||
638 | V_ASN1_IA5STRING); | ||
639 | if(!ret->organization) { | ||
640 | M_ASN1_D2I_get(ret->organization, d2i_DISPLAYTEXT); | ||
641 | } | ||
642 | M_ASN1_D2I_get_seq(ret->noticenos, d2i_ASN1_INTEGER, ASN1_STRING_free); | ||
643 | M_ASN1_D2I_Finish(a, NOTICEREF_free, ASN1_F_D2I_NOTICEREF); | ||
644 | } | ||
645 | |||
646 | void NOTICEREF_free(NOTICEREF *a) | ||
647 | { | ||
648 | if (a == NULL) return; | ||
649 | DISPLAYTEXT_free(a->organization); | ||
650 | sk_pop_free(a->noticenos, ASN1_STRING_free); | ||
651 | Free (a); | ||
652 | } | ||
653 | |||
654 | IMPLEMENT_STACK_OF(POLICYQUALINFO) | ||
655 | IMPLEMENT_ASN1_SET_OF(POLICYQUALINFO) | ||
diff --git a/src/lib/libcrypto/x509v3/v3_crld.c b/src/lib/libcrypto/x509v3/v3_crld.c deleted file mode 100644 index 897ffb63e4..0000000000 --- a/src/lib/libcrypto/x509v3/v3_crld.c +++ /dev/null | |||
@@ -1,283 +0,0 @@ | |||
1 | /* v3_crld.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 | |||
59 | #include <stdio.h> | ||
60 | #include "cryptlib.h" | ||
61 | #include <openssl/conf.h> | ||
62 | #include <openssl/asn1.h> | ||
63 | #include <openssl/asn1_mac.h> | ||
64 | #include <openssl/x509v3.h> | ||
65 | |||
66 | static STACK_OF(CONF_VALUE) *i2v_crld(X509V3_EXT_METHOD *method, | ||
67 | STACK_OF(DIST_POINT) *crld, STACK_OF(CONF_VALUE) *extlist); | ||
68 | static STACK_OF(DIST_POINT) *v2i_crld(X509V3_EXT_METHOD *method, | ||
69 | X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval); | ||
70 | |||
71 | X509V3_EXT_METHOD v3_crld = { | ||
72 | NID_crl_distribution_points, X509V3_EXT_MULTILINE, | ||
73 | (X509V3_EXT_NEW)CRL_DIST_POINTS_new, | ||
74 | (X509V3_EXT_FREE)CRL_DIST_POINTS_free, | ||
75 | (X509V3_EXT_D2I)d2i_CRL_DIST_POINTS, | ||
76 | (X509V3_EXT_I2D)i2d_CRL_DIST_POINTS, | ||
77 | NULL, NULL, | ||
78 | (X509V3_EXT_I2V)i2v_crld, | ||
79 | (X509V3_EXT_V2I)v2i_crld, | ||
80 | NULL, NULL, NULL | ||
81 | }; | ||
82 | |||
83 | static STACK_OF(CONF_VALUE) *i2v_crld(X509V3_EXT_METHOD *method, | ||
84 | STACK_OF(DIST_POINT) *crld, STACK_OF(CONF_VALUE) *exts) | ||
85 | { | ||
86 | DIST_POINT *point; | ||
87 | int i; | ||
88 | for(i = 0; i < sk_DIST_POINT_num(crld); i++) { | ||
89 | point = sk_DIST_POINT_value(crld, i); | ||
90 | if(point->distpoint->fullname) { | ||
91 | exts = i2v_GENERAL_NAMES(NULL, | ||
92 | point->distpoint->fullname, exts); | ||
93 | } | ||
94 | if(point->reasons) | ||
95 | X509V3_add_value("reasons","<UNSUPPORTED>", &exts); | ||
96 | if(point->CRLissuer) | ||
97 | X509V3_add_value("CRLissuer","<UNSUPPORTED>", &exts); | ||
98 | if(point->distpoint->relativename) | ||
99 | X509V3_add_value("RelativeName","<UNSUPPORTED>", &exts); | ||
100 | } | ||
101 | return exts; | ||
102 | } | ||
103 | |||
104 | static STACK_OF(DIST_POINT) *v2i_crld(X509V3_EXT_METHOD *method, | ||
105 | X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval) | ||
106 | { | ||
107 | STACK_OF(DIST_POINT) *crld = NULL; | ||
108 | STACK_OF(GENERAL_NAME) *gens = NULL; | ||
109 | GENERAL_NAME *gen = NULL; | ||
110 | CONF_VALUE *cnf; | ||
111 | int i; | ||
112 | if(!(crld = sk_DIST_POINT_new(NULL))) goto merr; | ||
113 | for(i = 0; i < sk_CONF_VALUE_num(nval); i++) { | ||
114 | DIST_POINT *point; | ||
115 | cnf = sk_CONF_VALUE_value(nval, i); | ||
116 | if(!(gen = v2i_GENERAL_NAME(method, ctx, cnf))) goto err; | ||
117 | if(!(gens = GENERAL_NAMES_new())) goto merr; | ||
118 | if(!sk_GENERAL_NAME_push(gens, gen)) goto merr; | ||
119 | gen = NULL; | ||
120 | if(!(point = DIST_POINT_new())) goto merr; | ||
121 | if(!sk_DIST_POINT_push(crld, point)) { | ||
122 | DIST_POINT_free(point); | ||
123 | goto merr; | ||
124 | } | ||
125 | if(!(point->distpoint = DIST_POINT_NAME_new())) goto merr; | ||
126 | point->distpoint->fullname = gens; | ||
127 | gens = NULL; | ||
128 | } | ||
129 | return crld; | ||
130 | |||
131 | merr: | ||
132 | X509V3err(X509V3_F_V2I_CRLD,ERR_R_MALLOC_FAILURE); | ||
133 | err: | ||
134 | GENERAL_NAME_free(gen); | ||
135 | GENERAL_NAMES_free(gens); | ||
136 | sk_DIST_POINT_pop_free(crld, DIST_POINT_free); | ||
137 | return NULL; | ||
138 | } | ||
139 | |||
140 | int i2d_CRL_DIST_POINTS(STACK_OF(DIST_POINT) *a, unsigned char **pp) | ||
141 | { | ||
142 | |||
143 | return i2d_ASN1_SET_OF_DIST_POINT(a, pp, i2d_DIST_POINT, V_ASN1_SEQUENCE, | ||
144 | V_ASN1_UNIVERSAL, IS_SEQUENCE);} | ||
145 | |||
146 | STACK_OF(DIST_POINT) *CRL_DIST_POINTS_new(void) | ||
147 | { | ||
148 | return sk_DIST_POINT_new_null(); | ||
149 | } | ||
150 | |||
151 | void CRL_DIST_POINTS_free(STACK_OF(DIST_POINT) *a) | ||
152 | { | ||
153 | sk_DIST_POINT_pop_free(a, DIST_POINT_free); | ||
154 | } | ||
155 | |||
156 | STACK_OF(DIST_POINT) *d2i_CRL_DIST_POINTS(STACK_OF(DIST_POINT) **a, | ||
157 | unsigned char **pp,long length) | ||
158 | { | ||
159 | return d2i_ASN1_SET_OF_DIST_POINT(a, pp, length, d2i_DIST_POINT, | ||
160 | DIST_POINT_free, V_ASN1_SEQUENCE, V_ASN1_UNIVERSAL); | ||
161 | |||
162 | } | ||
163 | |||
164 | IMPLEMENT_STACK_OF(DIST_POINT) | ||
165 | IMPLEMENT_ASN1_SET_OF(DIST_POINT) | ||
166 | |||
167 | int i2d_DIST_POINT(DIST_POINT *a, unsigned char **pp) | ||
168 | { | ||
169 | int v = 0; | ||
170 | M_ASN1_I2D_vars(a); | ||
171 | /* NB: underlying type is a CHOICE so need EXPLICIT tagging */ | ||
172 | M_ASN1_I2D_len_EXP_opt (a->distpoint, i2d_DIST_POINT_NAME, 0, v); | ||
173 | M_ASN1_I2D_len_IMP_opt (a->reasons, i2d_ASN1_BIT_STRING); | ||
174 | M_ASN1_I2D_len_IMP_opt (a->CRLissuer, i2d_GENERAL_NAMES); | ||
175 | |||
176 | M_ASN1_I2D_seq_total(); | ||
177 | |||
178 | M_ASN1_I2D_put_EXP_opt (a->distpoint, i2d_DIST_POINT_NAME, 0, v); | ||
179 | M_ASN1_I2D_put_IMP_opt (a->reasons, i2d_ASN1_BIT_STRING, 1); | ||
180 | M_ASN1_I2D_put_IMP_opt (a->CRLissuer, i2d_GENERAL_NAMES, 2); | ||
181 | |||
182 | M_ASN1_I2D_finish(); | ||
183 | } | ||
184 | |||
185 | DIST_POINT *DIST_POINT_new(void) | ||
186 | { | ||
187 | DIST_POINT *ret=NULL; | ||
188 | ASN1_CTX c; | ||
189 | M_ASN1_New_Malloc(ret, DIST_POINT); | ||
190 | ret->distpoint = NULL; | ||
191 | ret->reasons = NULL; | ||
192 | ret->CRLissuer = NULL; | ||
193 | return (ret); | ||
194 | M_ASN1_New_Error(ASN1_F_DIST_POINT_NEW); | ||
195 | } | ||
196 | |||
197 | DIST_POINT *d2i_DIST_POINT(DIST_POINT **a, unsigned char **pp, long length) | ||
198 | { | ||
199 | M_ASN1_D2I_vars(a,DIST_POINT *,DIST_POINT_new); | ||
200 | M_ASN1_D2I_Init(); | ||
201 | M_ASN1_D2I_start_sequence(); | ||
202 | M_ASN1_D2I_get_EXP_opt (ret->distpoint, d2i_DIST_POINT_NAME, 0); | ||
203 | M_ASN1_D2I_get_IMP_opt (ret->reasons, d2i_ASN1_BIT_STRING, 1, | ||
204 | V_ASN1_BIT_STRING); | ||
205 | M_ASN1_D2I_get_IMP_opt (ret->CRLissuer, d2i_GENERAL_NAMES, 2, | ||
206 | V_ASN1_SEQUENCE); | ||
207 | M_ASN1_D2I_Finish(a, DIST_POINT_free, ASN1_F_D2I_DIST_POINT); | ||
208 | } | ||
209 | |||
210 | void DIST_POINT_free(DIST_POINT *a) | ||
211 | { | ||
212 | if (a == NULL) return; | ||
213 | DIST_POINT_NAME_free(a->distpoint); | ||
214 | ASN1_BIT_STRING_free(a->reasons); | ||
215 | sk_GENERAL_NAME_pop_free(a->CRLissuer, GENERAL_NAME_free); | ||
216 | Free ((char *)a); | ||
217 | } | ||
218 | |||
219 | int i2d_DIST_POINT_NAME(DIST_POINT_NAME *a, unsigned char **pp) | ||
220 | { | ||
221 | int v = 0; | ||
222 | M_ASN1_I2D_vars(a); | ||
223 | |||
224 | if(a->fullname) { | ||
225 | M_ASN1_I2D_len_IMP_opt (a->fullname, i2d_GENERAL_NAMES); | ||
226 | } else { | ||
227 | M_ASN1_I2D_len_EXP_opt (a->relativename, i2d_X509_NAME, 1, v); | ||
228 | } | ||
229 | |||
230 | /* Don't want a SEQUENCE so... */ | ||
231 | if(pp == NULL) return ret; | ||
232 | p = *pp; | ||
233 | |||
234 | if(a->fullname) { | ||
235 | M_ASN1_I2D_put_IMP_opt (a->fullname, i2d_GENERAL_NAMES, 0); | ||
236 | } else { | ||
237 | M_ASN1_I2D_put_EXP_opt (a->relativename, i2d_X509_NAME, 1, v); | ||
238 | } | ||
239 | M_ASN1_I2D_finish(); | ||
240 | } | ||
241 | |||
242 | DIST_POINT_NAME *DIST_POINT_NAME_new(void) | ||
243 | { | ||
244 | DIST_POINT_NAME *ret=NULL; | ||
245 | ASN1_CTX c; | ||
246 | M_ASN1_New_Malloc(ret, DIST_POINT_NAME); | ||
247 | ret->fullname = NULL; | ||
248 | ret->relativename = NULL; | ||
249 | return (ret); | ||
250 | M_ASN1_New_Error(ASN1_F_DIST_POINT_NAME_NEW); | ||
251 | } | ||
252 | |||
253 | void DIST_POINT_NAME_free(DIST_POINT_NAME *a) | ||
254 | { | ||
255 | if (a == NULL) return; | ||
256 | X509_NAME_free(a->relativename); | ||
257 | sk_GENERAL_NAME_pop_free(a->fullname, GENERAL_NAME_free); | ||
258 | Free ((char *)a); | ||
259 | } | ||
260 | |||
261 | DIST_POINT_NAME *d2i_DIST_POINT_NAME(DIST_POINT_NAME **a, unsigned char **pp, | ||
262 | long length) | ||
263 | { | ||
264 | unsigned char _tmp, tag; | ||
265 | M_ASN1_D2I_vars(a,DIST_POINT_NAME *,DIST_POINT_NAME_new); | ||
266 | M_ASN1_D2I_Init(); | ||
267 | c.slen = length; | ||
268 | |||
269 | _tmp = M_ASN1_next; | ||
270 | tag = _tmp & ~V_ASN1_CONSTRUCTED; | ||
271 | |||
272 | if(tag == (0|V_ASN1_CONTEXT_SPECIFIC)) { | ||
273 | M_ASN1_D2I_get_imp(ret->fullname, d2i_GENERAL_NAMES, | ||
274 | V_ASN1_SEQUENCE); | ||
275 | } else if (tag == (1|V_ASN1_CONTEXT_SPECIFIC)) { | ||
276 | M_ASN1_D2I_get_EXP_opt (ret->relativename, d2i_X509_NAME, 1); | ||
277 | } else { | ||
278 | c.error = ASN1_R_BAD_TAG; | ||
279 | goto err; | ||
280 | } | ||
281 | |||
282 | M_ASN1_D2I_Finish(a, DIST_POINT_NAME_free, ASN1_F_D2I_DIST_POINT_NAME); | ||
283 | } | ||
diff --git a/src/lib/libcrypto/x509v3/v3_enum.c b/src/lib/libcrypto/x509v3/v3_enum.c deleted file mode 100644 index db423548ff..0000000000 --- a/src/lib/libcrypto/x509v3/v3_enum.c +++ /dev/null | |||
@@ -1,103 +0,0 @@ | |||
1 | /* v3_enum.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 | |||
59 | #include <stdio.h> | ||
60 | #include "cryptlib.h" | ||
61 | #include <openssl/x509v3.h> | ||
62 | |||
63 | static ASN1_ENUMERATED *asn1_enumerated_new(void); | ||
64 | |||
65 | static ENUMERATED_NAMES crl_reasons[] = { | ||
66 | {0, "Unspecified", "unspecified"}, | ||
67 | {1, "Key Compromise", "keyCompromise"}, | ||
68 | {2, "CA Compromise", "CACompromise"}, | ||
69 | {3, "Affiliation Changed", "affiliationChanged"}, | ||
70 | {4, "Superseded", "superseded"}, | ||
71 | {5, "Cessation Of Operation", "cessationOfOperation"}, | ||
72 | {6, "Certificate Hold", "certificateHold"}, | ||
73 | {8, "Remove From CRL", "removeFromCRL"}, | ||
74 | {-1, NULL, NULL} | ||
75 | }; | ||
76 | |||
77 | X509V3_EXT_METHOD v3_crl_reason = { | ||
78 | NID_crl_reason, 0, | ||
79 | (X509V3_EXT_NEW)asn1_enumerated_new, | ||
80 | (X509V3_EXT_FREE)ASN1_STRING_free, | ||
81 | (X509V3_EXT_D2I)d2i_ASN1_ENUMERATED, | ||
82 | (X509V3_EXT_I2D)i2d_ASN1_ENUMERATED, | ||
83 | (X509V3_EXT_I2S)i2s_ASN1_ENUMERATED_TABLE, | ||
84 | (X509V3_EXT_S2I)NULL, | ||
85 | NULL, NULL, NULL, NULL, crl_reasons}; | ||
86 | |||
87 | |||
88 | static ASN1_ENUMERATED *asn1_enumerated_new(void) | ||
89 | { | ||
90 | return ASN1_ENUMERATED_new(); | ||
91 | } | ||
92 | |||
93 | char *i2s_ASN1_ENUMERATED_TABLE(X509V3_EXT_METHOD *method, | ||
94 | ASN1_ENUMERATED *e) | ||
95 | { | ||
96 | ENUMERATED_NAMES *enam; | ||
97 | long strval; | ||
98 | strval = ASN1_ENUMERATED_get(e); | ||
99 | for(enam = method->usr_data; enam->lname; enam++) { | ||
100 | if(strval == enam->bitnum) return BUF_strdup(enam->lname); | ||
101 | } | ||
102 | return i2s_ASN1_ENUMERATED(method, e); | ||
103 | } | ||
diff --git a/src/lib/libcrypto/x509v3/v3_extku.c b/src/lib/libcrypto/x509v3/v3_extku.c deleted file mode 100644 index e039d21cbf..0000000000 --- a/src/lib/libcrypto/x509v3/v3_extku.c +++ /dev/null | |||
@@ -1,150 +0,0 @@ | |||
1 | /* v3_extku.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 | |||
59 | |||
60 | #include <stdio.h> | ||
61 | #include "cryptlib.h" | ||
62 | #include <openssl/asn1.h> | ||
63 | #include <openssl/conf.h> | ||
64 | #include <openssl/x509v3.h> | ||
65 | |||
66 | static STACK_OF(ASN1_OBJECT) *v2i_ext_ku(X509V3_EXT_METHOD *method, | ||
67 | X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval); | ||
68 | static STACK_OF(CONF_VALUE) *i2v_ext_ku(X509V3_EXT_METHOD *method, | ||
69 | STACK_OF(ASN1_OBJECT) *eku, STACK_OF(CONF_VALUE) *extlist); | ||
70 | X509V3_EXT_METHOD v3_ext_ku = { | ||
71 | NID_ext_key_usage, 0, | ||
72 | (X509V3_EXT_NEW)ext_ku_new, | ||
73 | (X509V3_EXT_FREE)ext_ku_free, | ||
74 | (X509V3_EXT_D2I)d2i_ext_ku, | ||
75 | (X509V3_EXT_I2D)i2d_ext_ku, | ||
76 | NULL, NULL, | ||
77 | (X509V3_EXT_I2V)i2v_ext_ku, | ||
78 | (X509V3_EXT_V2I)v2i_ext_ku, | ||
79 | NULL,NULL, | ||
80 | NULL | ||
81 | }; | ||
82 | |||
83 | STACK_OF(ASN1_OBJECT) *ext_ku_new(void) | ||
84 | { | ||
85 | return sk_ASN1_OBJECT_new_null(); | ||
86 | } | ||
87 | |||
88 | void ext_ku_free(STACK_OF(ASN1_OBJECT) *eku) | ||
89 | { | ||
90 | sk_ASN1_OBJECT_pop_free(eku, ASN1_OBJECT_free); | ||
91 | return; | ||
92 | } | ||
93 | |||
94 | int i2d_ext_ku(STACK_OF(ASN1_OBJECT) *a, unsigned char **pp) | ||
95 | { | ||
96 | return i2d_ASN1_SET_OF_ASN1_OBJECT(a, pp, i2d_ASN1_OBJECT, | ||
97 | V_ASN1_SEQUENCE, V_ASN1_UNIVERSAL, IS_SEQUENCE); | ||
98 | } | ||
99 | |||
100 | STACK_OF(ASN1_OBJECT) *d2i_ext_ku(STACK_OF(ASN1_OBJECT) **a, | ||
101 | unsigned char **pp, long length) | ||
102 | { | ||
103 | return d2i_ASN1_SET_OF_ASN1_OBJECT(a, pp, length, d2i_ASN1_OBJECT, | ||
104 | ASN1_OBJECT_free, V_ASN1_SEQUENCE, V_ASN1_UNIVERSAL); | ||
105 | } | ||
106 | |||
107 | |||
108 | |||
109 | static STACK_OF(CONF_VALUE) *i2v_ext_ku(X509V3_EXT_METHOD *method, | ||
110 | STACK_OF(ASN1_OBJECT) *eku, STACK_OF(CONF_VALUE) *ext_list) | ||
111 | { | ||
112 | int i; | ||
113 | ASN1_OBJECT *obj; | ||
114 | char obj_tmp[80]; | ||
115 | for(i = 0; i < sk_ASN1_OBJECT_num(eku); i++) { | ||
116 | obj = sk_ASN1_OBJECT_value(eku, i); | ||
117 | i2t_ASN1_OBJECT(obj_tmp, 80, obj); | ||
118 | X509V3_add_value(NULL, obj_tmp, &ext_list); | ||
119 | } | ||
120 | return ext_list; | ||
121 | } | ||
122 | |||
123 | static STACK_OF(ASN1_OBJECT) *v2i_ext_ku(X509V3_EXT_METHOD *method, | ||
124 | X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval) | ||
125 | { | ||
126 | STACK_OF(ASN1_OBJECT) *extku; | ||
127 | char *extval; | ||
128 | ASN1_OBJECT *objtmp; | ||
129 | CONF_VALUE *val; | ||
130 | int i; | ||
131 | |||
132 | if(!(extku = sk_ASN1_OBJECT_new(NULL))) { | ||
133 | X509V3err(X509V3_F_V2I_EXT_KU,ERR_R_MALLOC_FAILURE); | ||
134 | return NULL; | ||
135 | } | ||
136 | |||
137 | for(i = 0; i < sk_CONF_VALUE_num(nval); i++) { | ||
138 | val = sk_CONF_VALUE_value(nval, i); | ||
139 | if(val->value) extval = val->value; | ||
140 | else extval = val->name; | ||
141 | if(!(objtmp = OBJ_txt2obj(extval, 0))) { | ||
142 | sk_ASN1_OBJECT_pop_free(extku, ASN1_OBJECT_free); | ||
143 | X509V3err(X509V3_F_V2I_EXT_KU,X509V3_R_INVALID_OBJECT_IDENTIFIER); | ||
144 | X509V3_conf_err(val); | ||
145 | return NULL; | ||
146 | } | ||
147 | sk_ASN1_OBJECT_push(extku, objtmp); | ||
148 | } | ||
149 | return extku; | ||
150 | } | ||
diff --git a/src/lib/libcrypto/x509v3/v3_genn.c b/src/lib/libcrypto/x509v3/v3_genn.c deleted file mode 100644 index af716232f8..0000000000 --- a/src/lib/libcrypto/x509v3/v3_genn.c +++ /dev/null | |||
@@ -1,237 +0,0 @@ | |||
1 | /* v3_genn.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 | |||
59 | |||
60 | #include <stdio.h> | ||
61 | #include "cryptlib.h" | ||
62 | #include <openssl/asn1.h> | ||
63 | #include <openssl/asn1_mac.h> | ||
64 | #include <openssl/conf.h> | ||
65 | #include <openssl/x509v3.h> | ||
66 | |||
67 | int i2d_GENERAL_NAME(GENERAL_NAME *a, unsigned char **pp) | ||
68 | { | ||
69 | unsigned char *p; | ||
70 | int ret; | ||
71 | |||
72 | ret = 0; | ||
73 | |||
74 | /* Save the location of initial TAG */ | ||
75 | if(pp) p = *pp; | ||
76 | else p = NULL; | ||
77 | |||
78 | /* GEN_DNAME needs special treatment because of EXPLICIT tag */ | ||
79 | |||
80 | if(a->type == GEN_DIRNAME) { | ||
81 | int v = 0; | ||
82 | M_ASN1_I2D_len_EXP_opt(a->d.dirn, i2d_X509_NAME, 4, v); | ||
83 | if(!p) return ret; | ||
84 | M_ASN1_I2D_put_EXP_opt(a->d.dirn, i2d_X509_NAME, 4, v); | ||
85 | *pp = p; | ||
86 | return ret; | ||
87 | } | ||
88 | |||
89 | switch(a->type) { | ||
90 | |||
91 | case GEN_OTHERNAME: | ||
92 | case GEN_X400: | ||
93 | case GEN_EDIPARTY: | ||
94 | ret = i2d_ASN1_TYPE(a->d.other, pp); | ||
95 | break; | ||
96 | |||
97 | case GEN_EMAIL: | ||
98 | case GEN_DNS: | ||
99 | case GEN_URI: | ||
100 | ret = i2d_ASN1_IA5STRING(a->d.ia5, pp); | ||
101 | break; | ||
102 | |||
103 | case GEN_IPADD: | ||
104 | ret = i2d_ASN1_OCTET_STRING(a->d.ip, pp); | ||
105 | break; | ||
106 | |||
107 | case GEN_RID: | ||
108 | ret = i2d_ASN1_OBJECT(a->d.rid, pp); | ||
109 | break; | ||
110 | } | ||
111 | /* Replace TAG with IMPLICIT value */ | ||
112 | if(p) *p = (*p & V_ASN1_CONSTRUCTED) | a->type; | ||
113 | return ret; | ||
114 | } | ||
115 | |||
116 | GENERAL_NAME *GENERAL_NAME_new() | ||
117 | { | ||
118 | GENERAL_NAME *ret=NULL; | ||
119 | ASN1_CTX c; | ||
120 | M_ASN1_New_Malloc(ret, GENERAL_NAME); | ||
121 | ret->type = -1; | ||
122 | ret->d.ptr = NULL; | ||
123 | return (ret); | ||
124 | M_ASN1_New_Error(ASN1_F_GENERAL_NAME_NEW); | ||
125 | } | ||
126 | |||
127 | GENERAL_NAME *d2i_GENERAL_NAME(GENERAL_NAME **a, unsigned char **pp, | ||
128 | long length) | ||
129 | { | ||
130 | unsigned char _tmp; | ||
131 | M_ASN1_D2I_vars(a,GENERAL_NAME *,GENERAL_NAME_new); | ||
132 | M_ASN1_D2I_Init(); | ||
133 | c.slen = length; | ||
134 | |||
135 | _tmp = M_ASN1_next; | ||
136 | ret->type = _tmp & ~V_ASN1_CONSTRUCTED; | ||
137 | |||
138 | switch(ret->type) { | ||
139 | /* Just put these in a "blob" for now */ | ||
140 | case GEN_OTHERNAME: | ||
141 | case GEN_X400: | ||
142 | case GEN_EDIPARTY: | ||
143 | M_ASN1_D2I_get_imp(ret->d.other, d2i_ASN1_TYPE,V_ASN1_SEQUENCE); | ||
144 | break; | ||
145 | |||
146 | case GEN_EMAIL: | ||
147 | case GEN_DNS: | ||
148 | case GEN_URI: | ||
149 | M_ASN1_D2I_get_imp(ret->d.ia5, d2i_ASN1_IA5STRING, | ||
150 | V_ASN1_IA5STRING); | ||
151 | break; | ||
152 | |||
153 | case GEN_DIRNAME: | ||
154 | M_ASN1_D2I_get_EXP_opt(ret->d.dirn, d2i_X509_NAME, 4); | ||
155 | break; | ||
156 | |||
157 | case GEN_IPADD: | ||
158 | M_ASN1_D2I_get_imp(ret->d.ip, d2i_ASN1_OCTET_STRING, | ||
159 | V_ASN1_OCTET_STRING); | ||
160 | break; | ||
161 | |||
162 | case GEN_RID: | ||
163 | M_ASN1_D2I_get_imp(ret->d.rid, d2i_ASN1_OBJECT,V_ASN1_OBJECT); | ||
164 | break; | ||
165 | |||
166 | default: | ||
167 | c.error = ASN1_R_BAD_TAG; | ||
168 | goto err; | ||
169 | } | ||
170 | |||
171 | c.slen = 0; | ||
172 | M_ASN1_D2I_Finish(a, GENERAL_NAME_free, ASN1_F_D2I_GENERAL_NAME); | ||
173 | } | ||
174 | |||
175 | void GENERAL_NAME_free(GENERAL_NAME *a) | ||
176 | { | ||
177 | if (a == NULL) return; | ||
178 | switch(a->type) { | ||
179 | case GEN_OTHERNAME: | ||
180 | case GEN_X400: | ||
181 | case GEN_EDIPARTY: | ||
182 | ASN1_TYPE_free(a->d.other); | ||
183 | break; | ||
184 | |||
185 | case GEN_EMAIL: | ||
186 | case GEN_DNS: | ||
187 | case GEN_URI: | ||
188 | |||
189 | ASN1_IA5STRING_free(a->d.ia5); | ||
190 | break; | ||
191 | |||
192 | case GEN_DIRNAME: | ||
193 | X509_NAME_free(a->d.dirn); | ||
194 | break; | ||
195 | |||
196 | case GEN_IPADD: | ||
197 | ASN1_OCTET_STRING_free(a->d.ip); | ||
198 | break; | ||
199 | |||
200 | case GEN_RID: | ||
201 | ASN1_OBJECT_free(a->d.rid); | ||
202 | break; | ||
203 | |||
204 | } | ||
205 | Free ((char *)a); | ||
206 | } | ||
207 | |||
208 | /* Now the GeneralNames versions: a SEQUENCE OF GeneralName These are needed as | ||
209 | * an explicit functions. | ||
210 | */ | ||
211 | |||
212 | STACK_OF(GENERAL_NAME) *GENERAL_NAMES_new() | ||
213 | { | ||
214 | return sk_GENERAL_NAME_new(NULL); | ||
215 | } | ||
216 | |||
217 | void GENERAL_NAMES_free(STACK_OF(GENERAL_NAME) *a) | ||
218 | { | ||
219 | sk_GENERAL_NAME_pop_free(a, GENERAL_NAME_free); | ||
220 | } | ||
221 | |||
222 | STACK_OF(GENERAL_NAME) *d2i_GENERAL_NAMES(STACK_OF(GENERAL_NAME) **a, | ||
223 | unsigned char **pp, long length) | ||
224 | { | ||
225 | return d2i_ASN1_SET_OF_GENERAL_NAME(a, pp, length, d2i_GENERAL_NAME, | ||
226 | GENERAL_NAME_free, V_ASN1_SEQUENCE, V_ASN1_UNIVERSAL); | ||
227 | } | ||
228 | |||
229 | int i2d_GENERAL_NAMES(STACK_OF(GENERAL_NAME) *a, unsigned char **pp) | ||
230 | { | ||
231 | return i2d_ASN1_SET_OF_GENERAL_NAME(a, pp, i2d_GENERAL_NAME, V_ASN1_SEQUENCE, | ||
232 | V_ASN1_UNIVERSAL, IS_SEQUENCE); | ||
233 | } | ||
234 | |||
235 | IMPLEMENT_STACK_OF(GENERAL_NAME) | ||
236 | IMPLEMENT_ASN1_SET_OF(GENERAL_NAME) | ||
237 | |||
diff --git a/src/lib/libcrypto/x509v3/v3_ia5.c b/src/lib/libcrypto/x509v3/v3_ia5.c deleted file mode 100644 index 3446c5cd6a..0000000000 --- a/src/lib/libcrypto/x509v3/v3_ia5.c +++ /dev/null | |||
@@ -1,116 +0,0 @@ | |||
1 | /* v3_ia5.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 | |||
59 | |||
60 | #include <stdio.h> | ||
61 | #include "cryptlib.h" | ||
62 | #include <openssl/asn1.h> | ||
63 | #include <openssl/conf.h> | ||
64 | #include <openssl/x509v3.h> | ||
65 | |||
66 | static ASN1_IA5STRING *ia5string_new(void); | ||
67 | static char *i2s_ASN1_IA5STRING(X509V3_EXT_METHOD *method, ASN1_IA5STRING *ia5); | ||
68 | static ASN1_IA5STRING *s2i_ASN1_IA5STRING(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, char *str); | ||
69 | X509V3_EXT_METHOD v3_ns_ia5_list[] = { | ||
70 | EXT_IA5STRING(NID_netscape_base_url), | ||
71 | EXT_IA5STRING(NID_netscape_revocation_url), | ||
72 | EXT_IA5STRING(NID_netscape_ca_revocation_url), | ||
73 | EXT_IA5STRING(NID_netscape_renewal_url), | ||
74 | EXT_IA5STRING(NID_netscape_ca_policy_url), | ||
75 | EXT_IA5STRING(NID_netscape_ssl_server_name), | ||
76 | EXT_IA5STRING(NID_netscape_comment), | ||
77 | EXT_END | ||
78 | }; | ||
79 | |||
80 | |||
81 | static ASN1_IA5STRING *ia5string_new(void) | ||
82 | { | ||
83 | return ASN1_IA5STRING_new(); | ||
84 | } | ||
85 | |||
86 | static char *i2s_ASN1_IA5STRING(X509V3_EXT_METHOD *method, | ||
87 | ASN1_IA5STRING *ia5) | ||
88 | { | ||
89 | char *tmp; | ||
90 | if(!ia5 || !ia5->length) return NULL; | ||
91 | tmp = Malloc(ia5->length + 1); | ||
92 | memcpy(tmp, ia5->data, ia5->length); | ||
93 | tmp[ia5->length] = 0; | ||
94 | return tmp; | ||
95 | } | ||
96 | |||
97 | static ASN1_IA5STRING *s2i_ASN1_IA5STRING(X509V3_EXT_METHOD *method, | ||
98 | X509V3_CTX *ctx, char *str) | ||
99 | { | ||
100 | ASN1_IA5STRING *ia5; | ||
101 | if(!str) { | ||
102 | X509V3err(X509V3_F_S2I_ASN1_IA5STRING,X509V3_R_INVALID_NULL_ARGUMENT); | ||
103 | return NULL; | ||
104 | } | ||
105 | if(!(ia5 = ASN1_IA5STRING_new())) goto err; | ||
106 | if(!ASN1_STRING_set((ASN1_STRING *)ia5, (unsigned char*)str, | ||
107 | strlen(str))) { | ||
108 | ASN1_IA5STRING_free(ia5); | ||
109 | goto err; | ||
110 | } | ||
111 | return ia5; | ||
112 | err: | ||
113 | X509V3err(X509V3_F_S2I_ASN1_IA5STRING,ERR_R_MALLOC_FAILURE); | ||
114 | return NULL; | ||
115 | } | ||
116 | |||
diff --git a/src/lib/libcrypto/x509v3/v3_int.c b/src/lib/libcrypto/x509v3/v3_int.c deleted file mode 100644 index 637dd5e128..0000000000 --- a/src/lib/libcrypto/x509v3/v3_int.c +++ /dev/null | |||
@@ -1,79 +0,0 @@ | |||
1 | /* v3_int.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 | |||
59 | #include <stdio.h> | ||
60 | #include "cryptlib.h" | ||
61 | #include <openssl/x509v3.h> | ||
62 | |||
63 | static ASN1_INTEGER *asn1_integer_new(void); | ||
64 | |||
65 | X509V3_EXT_METHOD v3_crl_num = { | ||
66 | NID_crl_number, 0, | ||
67 | (X509V3_EXT_NEW)asn1_integer_new, | ||
68 | (X509V3_EXT_FREE)ASN1_STRING_free, | ||
69 | (X509V3_EXT_D2I)d2i_ASN1_INTEGER, | ||
70 | (X509V3_EXT_I2D)i2d_ASN1_INTEGER, | ||
71 | (X509V3_EXT_I2S)i2s_ASN1_INTEGER, | ||
72 | (X509V3_EXT_S2I)NULL, | ||
73 | NULL, NULL, NULL, NULL, NULL}; | ||
74 | |||
75 | |||
76 | static ASN1_INTEGER *asn1_integer_new(void) | ||
77 | { | ||
78 | return ASN1_INTEGER_new(); | ||
79 | } | ||
diff --git a/src/lib/libcrypto/x509v3/v3_lib.c b/src/lib/libcrypto/x509v3/v3_lib.c deleted file mode 100644 index a0aa5de794..0000000000 --- a/src/lib/libcrypto/x509v3/v3_lib.c +++ /dev/null | |||
@@ -1,177 +0,0 @@ | |||
1 | /* v3_lib.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 | /* X509 v3 extension utilities */ | ||
59 | |||
60 | #include <stdio.h> | ||
61 | #include "cryptlib.h" | ||
62 | #include <openssl/conf.h> | ||
63 | #include <openssl/x509v3.h> | ||
64 | |||
65 | static STACK *ext_list = NULL; | ||
66 | |||
67 | static int ext_cmp(X509V3_EXT_METHOD **a, X509V3_EXT_METHOD **b); | ||
68 | static void ext_list_free(X509V3_EXT_METHOD *ext); | ||
69 | |||
70 | int X509V3_EXT_add(X509V3_EXT_METHOD *ext) | ||
71 | { | ||
72 | if(!ext_list && !(ext_list = sk_new(ext_cmp))) { | ||
73 | X509V3err(X509V3_F_X509V3_EXT_ADD,ERR_R_MALLOC_FAILURE); | ||
74 | return 0; | ||
75 | } | ||
76 | if(!sk_push(ext_list, (char *)ext)) { | ||
77 | X509V3err(X509V3_F_X509V3_EXT_ADD,ERR_R_MALLOC_FAILURE); | ||
78 | return 0; | ||
79 | } | ||
80 | return 1; | ||
81 | } | ||
82 | |||
83 | static int ext_cmp(X509V3_EXT_METHOD **a, X509V3_EXT_METHOD **b) | ||
84 | { | ||
85 | return ((*a)->ext_nid - (*b)->ext_nid); | ||
86 | } | ||
87 | |||
88 | X509V3_EXT_METHOD *X509V3_EXT_get_nid(int nid) | ||
89 | { | ||
90 | X509V3_EXT_METHOD tmp; | ||
91 | int idx; | ||
92 | tmp.ext_nid = nid; | ||
93 | if(!ext_list || (tmp.ext_nid < 0) ) return NULL; | ||
94 | idx = sk_find(ext_list, (char *)&tmp); | ||
95 | if(idx == -1) return NULL; | ||
96 | return (X509V3_EXT_METHOD *)sk_value(ext_list, idx); | ||
97 | } | ||
98 | |||
99 | X509V3_EXT_METHOD *X509V3_EXT_get(X509_EXTENSION *ext) | ||
100 | { | ||
101 | int nid; | ||
102 | if((nid = OBJ_obj2nid(ext->object)) == NID_undef) return NULL; | ||
103 | return X509V3_EXT_get_nid(nid); | ||
104 | } | ||
105 | |||
106 | |||
107 | int X509V3_EXT_add_list(X509V3_EXT_METHOD *extlist) | ||
108 | { | ||
109 | for(;extlist->ext_nid!=-1;extlist++) | ||
110 | if(!X509V3_EXT_add(extlist)) return 0; | ||
111 | return 1; | ||
112 | } | ||
113 | |||
114 | int X509V3_EXT_add_alias(int nid_to, int nid_from) | ||
115 | { | ||
116 | X509V3_EXT_METHOD *ext, *tmpext; | ||
117 | if(!(ext = X509V3_EXT_get_nid(nid_from))) { | ||
118 | X509V3err(X509V3_F_X509V3_EXT_ADD_ALIAS,X509V3_R_EXTENSION_NOT_FOUND); | ||
119 | return 0; | ||
120 | } | ||
121 | if(!(tmpext = (X509V3_EXT_METHOD *)Malloc(sizeof(X509V3_EXT_METHOD)))) { | ||
122 | X509V3err(X509V3_F_X509V3_EXT_ADD_ALIAS,ERR_R_MALLOC_FAILURE); | ||
123 | return 0; | ||
124 | } | ||
125 | *tmpext = *ext; | ||
126 | tmpext->ext_nid = nid_to; | ||
127 | tmpext->ext_flags |= X509V3_EXT_DYNAMIC; | ||
128 | return 1; | ||
129 | } | ||
130 | |||
131 | void X509V3_EXT_cleanup(void) | ||
132 | { | ||
133 | sk_pop_free(ext_list, ext_list_free); | ||
134 | ext_list = NULL; | ||
135 | } | ||
136 | |||
137 | static void ext_list_free(X509V3_EXT_METHOD *ext) | ||
138 | { | ||
139 | if(ext->ext_flags & X509V3_EXT_DYNAMIC) Free(ext); | ||
140 | } | ||
141 | |||
142 | extern X509V3_EXT_METHOD v3_bcons, v3_nscert, v3_key_usage, v3_ext_ku; | ||
143 | extern X509V3_EXT_METHOD v3_pkey_usage_period, v3_sxnet; | ||
144 | extern X509V3_EXT_METHOD v3_ns_ia5_list[], v3_alt[], v3_skey_id, v3_akey_id; | ||
145 | |||
146 | extern X509V3_EXT_METHOD v3_crl_num, v3_crl_reason, v3_cpols, v3_crld; | ||
147 | |||
148 | int X509V3_add_standard_extensions(void) | ||
149 | { | ||
150 | X509V3_EXT_add_list(v3_ns_ia5_list); | ||
151 | X509V3_EXT_add_list(v3_alt); | ||
152 | X509V3_EXT_add(&v3_bcons); | ||
153 | X509V3_EXT_add(&v3_nscert); | ||
154 | X509V3_EXT_add(&v3_key_usage); | ||
155 | X509V3_EXT_add(&v3_ext_ku); | ||
156 | X509V3_EXT_add(&v3_skey_id); | ||
157 | X509V3_EXT_add(&v3_akey_id); | ||
158 | X509V3_EXT_add(&v3_pkey_usage_period); | ||
159 | X509V3_EXT_add(&v3_crl_num); | ||
160 | X509V3_EXT_add(&v3_sxnet); | ||
161 | X509V3_EXT_add(&v3_crl_reason); | ||
162 | X509V3_EXT_add(&v3_cpols); | ||
163 | X509V3_EXT_add(&v3_crld); | ||
164 | return 1; | ||
165 | } | ||
166 | |||
167 | /* Return an extension internal structure */ | ||
168 | |||
169 | void *X509V3_EXT_d2i(X509_EXTENSION *ext) | ||
170 | { | ||
171 | X509V3_EXT_METHOD *method; | ||
172 | unsigned char *p; | ||
173 | if(!(method = X509V3_EXT_get(ext)) || !method->d2i) return NULL; | ||
174 | p = ext->value->data; | ||
175 | return method->d2i(NULL, &p, ext->value->length); | ||
176 | } | ||
177 | |||
diff --git a/src/lib/libcrypto/x509v3/v3_pku.c b/src/lib/libcrypto/x509v3/v3_pku.c deleted file mode 100644 index c13e7d8f45..0000000000 --- a/src/lib/libcrypto/x509v3/v3_pku.c +++ /dev/null | |||
@@ -1,151 +0,0 @@ | |||
1 | /* v3_pku.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 | |||
59 | #include <stdio.h> | ||
60 | #include "cryptlib.h" | ||
61 | #include <openssl/asn1.h> | ||
62 | #include <openssl/asn1_mac.h> | ||
63 | #include <openssl/x509v3.h> | ||
64 | |||
65 | static int i2r_PKEY_USAGE_PERIOD(X509V3_EXT_METHOD *method, PKEY_USAGE_PERIOD *usage, BIO *out, int indent); | ||
66 | /* | ||
67 | static PKEY_USAGE_PERIOD *v2i_PKEY_USAGE_PERIOD(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *values); | ||
68 | */ | ||
69 | X509V3_EXT_METHOD v3_pkey_usage_period = { | ||
70 | NID_private_key_usage_period, 0, | ||
71 | (X509V3_EXT_NEW)PKEY_USAGE_PERIOD_new, | ||
72 | (X509V3_EXT_FREE)PKEY_USAGE_PERIOD_free, | ||
73 | (X509V3_EXT_D2I)d2i_PKEY_USAGE_PERIOD, | ||
74 | (X509V3_EXT_I2D)i2d_PKEY_USAGE_PERIOD, | ||
75 | NULL, NULL, NULL, NULL, | ||
76 | (X509V3_EXT_I2R)i2r_PKEY_USAGE_PERIOD, NULL, | ||
77 | NULL | ||
78 | }; | ||
79 | |||
80 | int i2d_PKEY_USAGE_PERIOD(PKEY_USAGE_PERIOD *a, unsigned char **pp) | ||
81 | { | ||
82 | M_ASN1_I2D_vars(a); | ||
83 | |||
84 | M_ASN1_I2D_len_IMP_opt (a->notBefore, i2d_ASN1_GENERALIZEDTIME); | ||
85 | M_ASN1_I2D_len_IMP_opt (a->notAfter, i2d_ASN1_GENERALIZEDTIME); | ||
86 | |||
87 | M_ASN1_I2D_seq_total(); | ||
88 | |||
89 | M_ASN1_I2D_put_IMP_opt (a->notBefore, i2d_ASN1_GENERALIZEDTIME, 0); | ||
90 | M_ASN1_I2D_put_IMP_opt (a->notAfter, i2d_ASN1_GENERALIZEDTIME, 1); | ||
91 | |||
92 | M_ASN1_I2D_finish(); | ||
93 | } | ||
94 | |||
95 | PKEY_USAGE_PERIOD *PKEY_USAGE_PERIOD_new(void) | ||
96 | { | ||
97 | PKEY_USAGE_PERIOD *ret=NULL; | ||
98 | ASN1_CTX c; | ||
99 | M_ASN1_New_Malloc(ret, PKEY_USAGE_PERIOD); | ||
100 | ret->notBefore = NULL; | ||
101 | ret->notAfter = NULL; | ||
102 | return (ret); | ||
103 | M_ASN1_New_Error(ASN1_F_PKEY_USAGE_PERIOD_NEW); | ||
104 | } | ||
105 | |||
106 | PKEY_USAGE_PERIOD *d2i_PKEY_USAGE_PERIOD(PKEY_USAGE_PERIOD **a, | ||
107 | unsigned char **pp, long length) | ||
108 | { | ||
109 | M_ASN1_D2I_vars(a,PKEY_USAGE_PERIOD *,PKEY_USAGE_PERIOD_new); | ||
110 | M_ASN1_D2I_Init(); | ||
111 | M_ASN1_D2I_start_sequence(); | ||
112 | M_ASN1_D2I_get_IMP_opt (ret->notBefore, d2i_ASN1_GENERALIZEDTIME, 0, | ||
113 | V_ASN1_GENERALIZEDTIME); | ||
114 | M_ASN1_D2I_get_IMP_opt (ret->notAfter, d2i_ASN1_GENERALIZEDTIME, 1, | ||
115 | V_ASN1_GENERALIZEDTIME); | ||
116 | M_ASN1_D2I_Finish(a, PKEY_USAGE_PERIOD_free, ASN1_F_D2I_PKEY_USAGE_PERIOD); | ||
117 | } | ||
118 | |||
119 | void PKEY_USAGE_PERIOD_free(PKEY_USAGE_PERIOD *a) | ||
120 | { | ||
121 | if (a == NULL) return; | ||
122 | ASN1_GENERALIZEDTIME_free(a->notBefore); | ||
123 | ASN1_GENERALIZEDTIME_free(a->notAfter); | ||
124 | Free ((char *)a); | ||
125 | } | ||
126 | |||
127 | static int i2r_PKEY_USAGE_PERIOD(X509V3_EXT_METHOD *method, | ||
128 | PKEY_USAGE_PERIOD *usage, BIO *out, int indent) | ||
129 | { | ||
130 | BIO_printf(out, "%*s", indent, ""); | ||
131 | if(usage->notBefore) { | ||
132 | BIO_write(out, "Not Before: ", 12); | ||
133 | ASN1_GENERALIZEDTIME_print(out, usage->notBefore); | ||
134 | if(usage->notAfter) BIO_write(out, ", ", 2); | ||
135 | } | ||
136 | if(usage->notAfter) { | ||
137 | BIO_write(out, "Not After: ", 11); | ||
138 | ASN1_GENERALIZEDTIME_print(out, usage->notAfter); | ||
139 | } | ||
140 | return 1; | ||
141 | } | ||
142 | |||
143 | /* | ||
144 | static PKEY_USAGE_PERIOD *v2i_PKEY_USAGE_PERIOD(method, ctx, values) | ||
145 | X509V3_EXT_METHOD *method; | ||
146 | X509V3_CTX *ctx; | ||
147 | STACK_OF(CONF_VALUE) *values; | ||
148 | { | ||
149 | return NULL; | ||
150 | } | ||
151 | */ | ||
diff --git a/src/lib/libcrypto/x509v3/v3_prn.c b/src/lib/libcrypto/x509v3/v3_prn.c deleted file mode 100644 index dc20c6bdba..0000000000 --- a/src/lib/libcrypto/x509v3/v3_prn.c +++ /dev/null | |||
@@ -1,135 +0,0 @@ | |||
1 | /* v3_prn.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 | /* X509 v3 extension utilities */ | ||
59 | |||
60 | #include <stdio.h> | ||
61 | #include "cryptlib.h" | ||
62 | #include <openssl/conf.h> | ||
63 | #include <openssl/x509v3.h> | ||
64 | |||
65 | /* Extension printing routines */ | ||
66 | |||
67 | /* Print out a name+value stack */ | ||
68 | |||
69 | void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent, int ml) | ||
70 | { | ||
71 | int i; | ||
72 | CONF_VALUE *nval; | ||
73 | if(!val) return; | ||
74 | if(!ml || !sk_CONF_VALUE_num(val)) { | ||
75 | BIO_printf(out, "%*s", indent, ""); | ||
76 | if(!sk_CONF_VALUE_num(val)) BIO_puts(out, "<EMPTY>\n"); | ||
77 | } | ||
78 | for(i = 0; i < sk_CONF_VALUE_num(val); i++) { | ||
79 | if(ml) BIO_printf(out, "%*s", indent, ""); | ||
80 | else if(i > 0) BIO_printf(out, ", "); | ||
81 | nval = sk_CONF_VALUE_value(val, i); | ||
82 | if(!nval->name) BIO_puts(out, nval->value); | ||
83 | else if(!nval->value) BIO_puts(out, nval->name); | ||
84 | else BIO_printf(out, "%s:%s", nval->name, nval->value); | ||
85 | if(ml) BIO_puts(out, "\n"); | ||
86 | } | ||
87 | } | ||
88 | |||
89 | /* Main routine: print out a general extension */ | ||
90 | |||
91 | int X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, int flag, int indent) | ||
92 | { | ||
93 | char *ext_str = NULL, *value = NULL; | ||
94 | unsigned char *p; | ||
95 | X509V3_EXT_METHOD *method; | ||
96 | STACK_OF(CONF_VALUE) *nval = NULL; | ||
97 | int ok = 1; | ||
98 | if(!(method = X509V3_EXT_get(ext))) return 0; | ||
99 | p = ext->value->data; | ||
100 | if(!(ext_str = method->d2i(NULL, &p, ext->value->length))) return 0; | ||
101 | if(method->i2s) { | ||
102 | if(!(value = method->i2s(method, ext_str))) { | ||
103 | ok = 0; | ||
104 | goto err; | ||
105 | } | ||
106 | BIO_printf(out, "%*s%s", indent, "", value); | ||
107 | } else if(method->i2v) { | ||
108 | if(!(nval = method->i2v(method, ext_str, NULL))) { | ||
109 | ok = 0; | ||
110 | goto err; | ||
111 | } | ||
112 | X509V3_EXT_val_prn(out, nval, indent, | ||
113 | method->ext_flags & X509V3_EXT_MULTILINE); | ||
114 | } else if(method->i2r) { | ||
115 | if(!method->i2r(method, ext_str, out, indent)) ok = 0; | ||
116 | } else ok = 0; | ||
117 | |||
118 | err: | ||
119 | sk_CONF_VALUE_pop_free(nval, X509V3_conf_free); | ||
120 | if(value) Free(value); | ||
121 | method->ext_free(ext_str); | ||
122 | return ok; | ||
123 | } | ||
124 | |||
125 | #ifndef NO_FP_API | ||
126 | int X509V3_EXT_print_fp(FILE *fp, X509_EXTENSION *ext, int flag, int indent) | ||
127 | { | ||
128 | BIO *bio_tmp; | ||
129 | int ret; | ||
130 | if(!(bio_tmp = BIO_new_fp(fp, BIO_NOCLOSE))) return 0; | ||
131 | ret = X509V3_EXT_print(bio_tmp, ext, flag, indent); | ||
132 | BIO_free(bio_tmp); | ||
133 | return ret; | ||
134 | } | ||
135 | #endif | ||
diff --git a/src/lib/libcrypto/x509v3/v3_skey.c b/src/lib/libcrypto/x509v3/v3_skey.c deleted file mode 100644 index fb3e36014d..0000000000 --- a/src/lib/libcrypto/x509v3/v3_skey.c +++ /dev/null | |||
@@ -1,156 +0,0 @@ | |||
1 | /* v3_skey.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 | |||
59 | |||
60 | #include <stdio.h> | ||
61 | #include "cryptlib.h" | ||
62 | #include <openssl/x509v3.h> | ||
63 | |||
64 | static ASN1_OCTET_STRING *octet_string_new(void); | ||
65 | static ASN1_OCTET_STRING *s2i_skey_id(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, char *str); | ||
66 | X509V3_EXT_METHOD v3_skey_id = { | ||
67 | NID_subject_key_identifier, 0, | ||
68 | (X509V3_EXT_NEW)octet_string_new, | ||
69 | (X509V3_EXT_FREE)ASN1_STRING_free, | ||
70 | (X509V3_EXT_D2I)d2i_ASN1_OCTET_STRING, | ||
71 | (X509V3_EXT_I2D)i2d_ASN1_OCTET_STRING, | ||
72 | (X509V3_EXT_I2S)i2s_ASN1_OCTET_STRING, | ||
73 | (X509V3_EXT_S2I)s2i_skey_id, | ||
74 | NULL, NULL, NULL, NULL, NULL}; | ||
75 | |||
76 | |||
77 | static ASN1_OCTET_STRING *octet_string_new(void) | ||
78 | { | ||
79 | return ASN1_OCTET_STRING_new(); | ||
80 | } | ||
81 | |||
82 | char *i2s_ASN1_OCTET_STRING(X509V3_EXT_METHOD *method, | ||
83 | ASN1_OCTET_STRING *oct) | ||
84 | { | ||
85 | return hex_to_string(oct->data, oct->length); | ||
86 | } | ||
87 | |||
88 | ASN1_OCTET_STRING *s2i_ASN1_OCTET_STRING(X509V3_EXT_METHOD *method, | ||
89 | X509V3_CTX *ctx, char *str) | ||
90 | { | ||
91 | ASN1_OCTET_STRING *oct; | ||
92 | long length; | ||
93 | |||
94 | if(!(oct = ASN1_OCTET_STRING_new())) { | ||
95 | X509V3err(X509V3_F_S2I_ASN1_OCTET_STRING,ERR_R_MALLOC_FAILURE); | ||
96 | return NULL; | ||
97 | } | ||
98 | |||
99 | if(!(oct->data = string_to_hex(str, &length))) { | ||
100 | ASN1_OCTET_STRING_free(oct); | ||
101 | return NULL; | ||
102 | } | ||
103 | |||
104 | oct->length = length; | ||
105 | |||
106 | return oct; | ||
107 | |||
108 | } | ||
109 | |||
110 | static ASN1_OCTET_STRING *s2i_skey_id(X509V3_EXT_METHOD *method, | ||
111 | X509V3_CTX *ctx, char *str) | ||
112 | { | ||
113 | ASN1_OCTET_STRING *oct; | ||
114 | ASN1_BIT_STRING *pk; | ||
115 | unsigned char pkey_dig[EVP_MAX_MD_SIZE]; | ||
116 | EVP_MD_CTX md; | ||
117 | unsigned int diglen; | ||
118 | |||
119 | if(strcmp(str, "hash")) return s2i_ASN1_OCTET_STRING(method, ctx, str); | ||
120 | |||
121 | if(!(oct = ASN1_OCTET_STRING_new())) { | ||
122 | X509V3err(X509V3_F_S2I_S2I_SKEY_ID,ERR_R_MALLOC_FAILURE); | ||
123 | return NULL; | ||
124 | } | ||
125 | |||
126 | if(ctx && (ctx->flags == CTX_TEST)) return oct; | ||
127 | |||
128 | if(!ctx || (!ctx->subject_req && !ctx->subject_cert)) { | ||
129 | X509V3err(X509V3_F_S2I_ASN1_SKEY_ID,X509V3_R_NO_PUBLIC_KEY); | ||
130 | goto err; | ||
131 | } | ||
132 | |||
133 | if(ctx->subject_req) | ||
134 | pk = ctx->subject_req->req_info->pubkey->public_key; | ||
135 | else pk = ctx->subject_cert->cert_info->key->public_key; | ||
136 | |||
137 | if(!pk) { | ||
138 | X509V3err(X509V3_F_S2I_ASN1_SKEY_ID,X509V3_R_NO_PUBLIC_KEY); | ||
139 | goto err; | ||
140 | } | ||
141 | |||
142 | EVP_DigestInit(&md, EVP_sha1()); | ||
143 | EVP_DigestUpdate(&md, pk->data, pk->length); | ||
144 | EVP_DigestFinal(&md, pkey_dig, &diglen); | ||
145 | |||
146 | if(!ASN1_OCTET_STRING_set(oct, pkey_dig, diglen)) { | ||
147 | X509V3err(X509V3_F_S2I_S2I_SKEY_ID,ERR_R_MALLOC_FAILURE); | ||
148 | goto err; | ||
149 | } | ||
150 | |||
151 | return oct; | ||
152 | |||
153 | err: | ||
154 | ASN1_OCTET_STRING_free(oct); | ||
155 | return NULL; | ||
156 | } | ||
diff --git a/src/lib/libcrypto/x509v3/v3_sxnet.c b/src/lib/libcrypto/x509v3/v3_sxnet.c deleted file mode 100644 index 0687bb4e3d..0000000000 --- a/src/lib/libcrypto/x509v3/v3_sxnet.c +++ /dev/null | |||
@@ -1,340 +0,0 @@ | |||
1 | /* v3_sxnet.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 | |||
59 | #include <stdio.h> | ||
60 | #include "cryptlib.h" | ||
61 | #include <openssl/conf.h> | ||
62 | #include <openssl/asn1.h> | ||
63 | #include <openssl/asn1_mac.h> | ||
64 | #include <openssl/x509v3.h> | ||
65 | |||
66 | /* Support for Thawte strong extranet extension */ | ||
67 | |||
68 | #define SXNET_TEST | ||
69 | |||
70 | static int sxnet_i2r(X509V3_EXT_METHOD *method, SXNET *sx, BIO *out, int indent); | ||
71 | #ifdef SXNET_TEST | ||
72 | static SXNET * sxnet_v2i(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, | ||
73 | STACK_OF(CONF_VALUE) *nval); | ||
74 | #endif | ||
75 | X509V3_EXT_METHOD v3_sxnet = { | ||
76 | NID_sxnet, X509V3_EXT_MULTILINE, | ||
77 | (X509V3_EXT_NEW)SXNET_new, | ||
78 | (X509V3_EXT_FREE)SXNET_free, | ||
79 | (X509V3_EXT_D2I)d2i_SXNET, | ||
80 | (X509V3_EXT_I2D)i2d_SXNET, | ||
81 | NULL, NULL, | ||
82 | NULL, | ||
83 | #ifdef SXNET_TEST | ||
84 | (X509V3_EXT_V2I)sxnet_v2i, | ||
85 | #else | ||
86 | NULL, | ||
87 | #endif | ||
88 | (X509V3_EXT_I2R)sxnet_i2r, | ||
89 | NULL, | ||
90 | NULL | ||
91 | }; | ||
92 | |||
93 | |||
94 | int i2d_SXNET(SXNET *a, unsigned char **pp) | ||
95 | { | ||
96 | M_ASN1_I2D_vars(a); | ||
97 | |||
98 | M_ASN1_I2D_len (a->version, i2d_ASN1_INTEGER); | ||
99 | M_ASN1_I2D_len_SEQUENCE_type (SXNETID, a->ids, i2d_SXNETID); | ||
100 | |||
101 | M_ASN1_I2D_seq_total(); | ||
102 | |||
103 | M_ASN1_I2D_put (a->version, i2d_ASN1_INTEGER); | ||
104 | M_ASN1_I2D_put_SEQUENCE_type (SXNETID, a->ids, i2d_SXNETID); | ||
105 | |||
106 | M_ASN1_I2D_finish(); | ||
107 | } | ||
108 | |||
109 | SXNET *SXNET_new(void) | ||
110 | { | ||
111 | SXNET *ret=NULL; | ||
112 | ASN1_CTX c; | ||
113 | M_ASN1_New_Malloc(ret, SXNET); | ||
114 | M_ASN1_New(ret->version,ASN1_INTEGER_new); | ||
115 | M_ASN1_New(ret->ids,sk_SXNETID_new_null); | ||
116 | return (ret); | ||
117 | M_ASN1_New_Error(ASN1_F_SXNET_NEW); | ||
118 | } | ||
119 | |||
120 | SXNET *d2i_SXNET(SXNET **a, unsigned char **pp, long length) | ||
121 | { | ||
122 | M_ASN1_D2I_vars(a,SXNET *,SXNET_new); | ||
123 | M_ASN1_D2I_Init(); | ||
124 | M_ASN1_D2I_start_sequence(); | ||
125 | M_ASN1_D2I_get (ret->version, d2i_ASN1_INTEGER); | ||
126 | M_ASN1_D2I_get_seq_type (SXNETID, ret->ids, d2i_SXNETID, SXNETID_free); | ||
127 | M_ASN1_D2I_Finish(a, SXNET_free, ASN1_F_D2I_SXNET); | ||
128 | } | ||
129 | |||
130 | void SXNET_free(SXNET *a) | ||
131 | { | ||
132 | if (a == NULL) return; | ||
133 | ASN1_INTEGER_free(a->version); | ||
134 | sk_SXNETID_pop_free(a->ids, SXNETID_free); | ||
135 | Free (a); | ||
136 | } | ||
137 | |||
138 | int i2d_SXNETID(SXNETID *a, unsigned char **pp) | ||
139 | { | ||
140 | M_ASN1_I2D_vars(a); | ||
141 | |||
142 | M_ASN1_I2D_len (a->zone, i2d_ASN1_INTEGER); | ||
143 | M_ASN1_I2D_len (a->user, i2d_ASN1_OCTET_STRING); | ||
144 | |||
145 | M_ASN1_I2D_seq_total(); | ||
146 | |||
147 | M_ASN1_I2D_put (a->zone, i2d_ASN1_INTEGER); | ||
148 | M_ASN1_I2D_put (a->user, i2d_ASN1_OCTET_STRING); | ||
149 | |||
150 | M_ASN1_I2D_finish(); | ||
151 | } | ||
152 | |||
153 | SXNETID *SXNETID_new(void) | ||
154 | { | ||
155 | SXNETID *ret=NULL; | ||
156 | ASN1_CTX c; | ||
157 | M_ASN1_New_Malloc(ret, SXNETID); | ||
158 | ret->zone = NULL; | ||
159 | M_ASN1_New(ret->user,ASN1_OCTET_STRING_new); | ||
160 | return (ret); | ||
161 | M_ASN1_New_Error(ASN1_F_SXNETID_NEW); | ||
162 | } | ||
163 | |||
164 | SXNETID *d2i_SXNETID(SXNETID **a, unsigned char **pp, long length) | ||
165 | { | ||
166 | M_ASN1_D2I_vars(a,SXNETID *,SXNETID_new); | ||
167 | M_ASN1_D2I_Init(); | ||
168 | M_ASN1_D2I_start_sequence(); | ||
169 | M_ASN1_D2I_get(ret->zone, d2i_ASN1_INTEGER); | ||
170 | M_ASN1_D2I_get(ret->user, d2i_ASN1_OCTET_STRING); | ||
171 | M_ASN1_D2I_Finish(a, SXNETID_free, ASN1_F_D2I_SXNETID); | ||
172 | } | ||
173 | |||
174 | void SXNETID_free(SXNETID *a) | ||
175 | { | ||
176 | if (a == NULL) return; | ||
177 | ASN1_INTEGER_free(a->zone); | ||
178 | ASN1_OCTET_STRING_free(a->user); | ||
179 | Free (a); | ||
180 | } | ||
181 | |||
182 | static int sxnet_i2r(X509V3_EXT_METHOD *method, SXNET *sx, BIO *out, | ||
183 | int indent) | ||
184 | { | ||
185 | long v; | ||
186 | char *tmp; | ||
187 | SXNETID *id; | ||
188 | int i; | ||
189 | v = ASN1_INTEGER_get(sx->version); | ||
190 | BIO_printf(out, "%*sVersion: %d (0x%X)", indent, "", v + 1, v); | ||
191 | for(i = 0; i < sk_SXNETID_num(sx->ids); i++) { | ||
192 | id = sk_SXNETID_value(sx->ids, i); | ||
193 | tmp = i2s_ASN1_INTEGER(NULL, id->zone); | ||
194 | BIO_printf(out, "\n%*sZone: %s, User: ", indent, "", tmp); | ||
195 | Free(tmp); | ||
196 | ASN1_OCTET_STRING_print(out, id->user); | ||
197 | } | ||
198 | return 1; | ||
199 | } | ||
200 | |||
201 | #ifdef SXNET_TEST | ||
202 | |||
203 | /* NBB: this is used for testing only. It should *not* be used for anything | ||
204 | * else because it will just take static IDs from the configuration file and | ||
205 | * they should really be separate values for each user. | ||
206 | */ | ||
207 | |||
208 | |||
209 | static SXNET * sxnet_v2i(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, | ||
210 | STACK_OF(CONF_VALUE) *nval) | ||
211 | { | ||
212 | CONF_VALUE *cnf; | ||
213 | SXNET *sx = NULL; | ||
214 | int i; | ||
215 | for(i = 0; i < sk_CONF_VALUE_num(nval); i++) { | ||
216 | cnf = sk_CONF_VALUE_value(nval, i); | ||
217 | if(!SXNET_add_id_asc(&sx, cnf->name, cnf->value, -1)) | ||
218 | return NULL; | ||
219 | } | ||
220 | return sx; | ||
221 | } | ||
222 | |||
223 | |||
224 | #endif | ||
225 | |||
226 | /* Strong Extranet utility functions */ | ||
227 | |||
228 | /* Add an id given the zone as an ASCII number */ | ||
229 | |||
230 | int SXNET_add_id_asc(SXNET **psx, char *zone, char *user, | ||
231 | int userlen) | ||
232 | { | ||
233 | ASN1_INTEGER *izone = NULL; | ||
234 | if(!(izone = s2i_ASN1_INTEGER(NULL, zone))) { | ||
235 | X509V3err(X509V3_F_SXNET_ADD_ASC,X509V3_R_ERROR_CONVERTING_ZONE); | ||
236 | return 0; | ||
237 | } | ||
238 | return SXNET_add_id_INTEGER(psx, izone, user, userlen); | ||
239 | } | ||
240 | |||
241 | /* Add an id given the zone as an unsigned long */ | ||
242 | |||
243 | int SXNET_add_id_ulong(SXNET **psx, unsigned long lzone, char *user, | ||
244 | int userlen) | ||
245 | { | ||
246 | ASN1_INTEGER *izone = NULL; | ||
247 | if(!(izone = ASN1_INTEGER_new()) || !ASN1_INTEGER_set(izone, lzone)) { | ||
248 | X509V3err(X509V3_F_SXNET_ADD_ID_ULONG,ERR_R_MALLOC_FAILURE); | ||
249 | ASN1_INTEGER_free(izone); | ||
250 | return 0; | ||
251 | } | ||
252 | return SXNET_add_id_INTEGER(psx, izone, user, userlen); | ||
253 | |||
254 | } | ||
255 | |||
256 | /* Add an id given the zone as an ASN1_INTEGER. | ||
257 | * Note this version uses the passed integer and doesn't make a copy so don't | ||
258 | * free it up afterwards. | ||
259 | */ | ||
260 | |||
261 | int SXNET_add_id_INTEGER(SXNET **psx, ASN1_INTEGER *zone, char *user, | ||
262 | int userlen) | ||
263 | { | ||
264 | SXNET *sx = NULL; | ||
265 | SXNETID *id = NULL; | ||
266 | if(!psx || !zone || !user) { | ||
267 | X509V3err(X509V3_F_SXNET_ADD_ID_INTEGER,X509V3_R_INVALID_NULL_ARGUMENT); | ||
268 | return 0; | ||
269 | } | ||
270 | if(userlen == -1) userlen = strlen(user); | ||
271 | if(userlen > 64) { | ||
272 | X509V3err(X509V3_F_SXNET_ADD_ID_INTEGER,X509V3_R_USER_TOO_LONG); | ||
273 | return 0; | ||
274 | } | ||
275 | if(!*psx) { | ||
276 | if(!(sx = SXNET_new())) goto err; | ||
277 | if(!ASN1_INTEGER_set(sx->version, 0)) goto err; | ||
278 | *psx = sx; | ||
279 | } else sx = *psx; | ||
280 | if(SXNET_get_id_INTEGER(sx, zone)) { | ||
281 | X509V3err(X509V3_F_SXNET_ADD_ID_INTEGER,X509V3_R_DUPLICATE_ZONE_ID); | ||
282 | return 0; | ||
283 | } | ||
284 | |||
285 | if(!(id = SXNETID_new())) goto err; | ||
286 | if(userlen == -1) userlen = strlen(user); | ||
287 | |||
288 | if(!ASN1_OCTET_STRING_set(id->user, user, userlen)) goto err; | ||
289 | if(!sk_SXNETID_push(sx->ids, id)) goto err; | ||
290 | id->zone = zone; | ||
291 | return 1; | ||
292 | |||
293 | err: | ||
294 | X509V3err(X509V3_F_SXNET_ADD_ID_INTEGER,ERR_R_MALLOC_FAILURE); | ||
295 | SXNETID_free(id); | ||
296 | SXNET_free(sx); | ||
297 | *psx = NULL; | ||
298 | return 0; | ||
299 | } | ||
300 | |||
301 | ASN1_OCTET_STRING *SXNET_get_id_asc(SXNET *sx, char *zone) | ||
302 | { | ||
303 | ASN1_INTEGER *izone = NULL; | ||
304 | ASN1_OCTET_STRING *oct; | ||
305 | if(!(izone = s2i_ASN1_INTEGER(NULL, zone))) { | ||
306 | X509V3err(X509V3_F_SXNET_GET_ID_ASC,X509V3_R_ERROR_CONVERTING_ZONE); | ||
307 | return NULL; | ||
308 | } | ||
309 | oct = SXNET_get_id_INTEGER(sx, izone); | ||
310 | ASN1_INTEGER_free(izone); | ||
311 | return oct; | ||
312 | } | ||
313 | |||
314 | ASN1_OCTET_STRING *SXNET_get_id_ulong(SXNET *sx, unsigned long lzone) | ||
315 | { | ||
316 | ASN1_INTEGER *izone = NULL; | ||
317 | ASN1_OCTET_STRING *oct; | ||
318 | if(!(izone = ASN1_INTEGER_new()) || !ASN1_INTEGER_set(izone, lzone)) { | ||
319 | X509V3err(X509V3_F_SXNET_GET_ID_ULONG,ERR_R_MALLOC_FAILURE); | ||
320 | ASN1_INTEGER_free(izone); | ||
321 | return NULL; | ||
322 | } | ||
323 | oct = SXNET_get_id_INTEGER(sx, izone); | ||
324 | ASN1_INTEGER_free(izone); | ||
325 | return oct; | ||
326 | } | ||
327 | |||
328 | ASN1_OCTET_STRING *SXNET_get_id_INTEGER(SXNET *sx, ASN1_INTEGER *zone) | ||
329 | { | ||
330 | SXNETID *id; | ||
331 | int i; | ||
332 | for(i = 0; i < sk_SXNETID_num(sx->ids); i++) { | ||
333 | id = sk_SXNETID_value(sx->ids, i); | ||
334 | if(!ASN1_INTEGER_cmp(id->zone, zone)) return id->user; | ||
335 | } | ||
336 | return NULL; | ||
337 | } | ||
338 | |||
339 | IMPLEMENT_STACK_OF(SXNETID) | ||
340 | IMPLEMENT_ASN1_SET_OF(SXNETID) | ||
diff --git a/src/lib/libcrypto/x509v3/v3_utl.c b/src/lib/libcrypto/x509v3/v3_utl.c deleted file mode 100644 index 40f71c71b4..0000000000 --- a/src/lib/libcrypto/x509v3/v3_utl.c +++ /dev/null | |||
@@ -1,418 +0,0 @@ | |||
1 | /* v3_utl.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 | /* X509 v3 extension utilities */ | ||
59 | |||
60 | |||
61 | #include <stdio.h> | ||
62 | #include <ctype.h> | ||
63 | #include "cryptlib.h" | ||
64 | #include <openssl/conf.h> | ||
65 | #include <openssl/x509v3.h> | ||
66 | |||
67 | static char *strip_spaces(char *name); | ||
68 | |||
69 | /* Add a CONF_VALUE name value pair to stack */ | ||
70 | |||
71 | int X509V3_add_value(const char *name, const char *value, | ||
72 | STACK_OF(CONF_VALUE) **extlist) | ||
73 | { | ||
74 | CONF_VALUE *vtmp = NULL; | ||
75 | char *tname = NULL, *tvalue = NULL; | ||
76 | if(name && !(tname = BUF_strdup(name))) goto err; | ||
77 | if(value && !(tvalue = BUF_strdup(value))) goto err;; | ||
78 | if(!(vtmp = (CONF_VALUE *)Malloc(sizeof(CONF_VALUE)))) goto err; | ||
79 | if(!*extlist && !(*extlist = sk_CONF_VALUE_new(NULL))) goto err; | ||
80 | vtmp->section = NULL; | ||
81 | vtmp->name = tname; | ||
82 | vtmp->value = tvalue; | ||
83 | if(!sk_CONF_VALUE_push(*extlist, vtmp)) goto err; | ||
84 | return 1; | ||
85 | err: | ||
86 | X509V3err(X509V3_F_X509V3_ADD_VALUE,ERR_R_MALLOC_FAILURE); | ||
87 | if(vtmp) Free(vtmp); | ||
88 | if(tname) Free(tname); | ||
89 | if(tvalue) Free(tvalue); | ||
90 | return 0; | ||
91 | } | ||
92 | |||
93 | int X509V3_add_value_uchar(const char *name, const unsigned char *value, | ||
94 | STACK_OF(CONF_VALUE) **extlist) | ||
95 | { | ||
96 | return X509V3_add_value(name,(const char *)value,extlist); | ||
97 | } | ||
98 | |||
99 | /* Free function for STACK_OF(CONF_VALUE) */ | ||
100 | |||
101 | void X509V3_conf_free(CONF_VALUE *conf) | ||
102 | { | ||
103 | if(!conf) return; | ||
104 | if(conf->name) Free(conf->name); | ||
105 | if(conf->value) Free(conf->value); | ||
106 | if(conf->section) Free(conf->section); | ||
107 | Free((char *)conf); | ||
108 | } | ||
109 | |||
110 | int X509V3_add_value_bool(const char *name, int asn1_bool, | ||
111 | STACK_OF(CONF_VALUE) **extlist) | ||
112 | { | ||
113 | if(asn1_bool) return X509V3_add_value(name, "TRUE", extlist); | ||
114 | return X509V3_add_value(name, "FALSE", extlist); | ||
115 | } | ||
116 | |||
117 | int X509V3_add_value_bool_nf(char *name, int asn1_bool, | ||
118 | STACK_OF(CONF_VALUE) **extlist) | ||
119 | { | ||
120 | if(asn1_bool) return X509V3_add_value(name, "TRUE", extlist); | ||
121 | return 1; | ||
122 | } | ||
123 | |||
124 | |||
125 | char *i2s_ASN1_ENUMERATED(X509V3_EXT_METHOD *method, ASN1_ENUMERATED *a) | ||
126 | { | ||
127 | BIGNUM *bntmp = NULL; | ||
128 | char *strtmp = NULL; | ||
129 | if(!a) return NULL; | ||
130 | if(!(bntmp = ASN1_ENUMERATED_to_BN(a, NULL)) || | ||
131 | !(strtmp = BN_bn2dec(bntmp)) ) | ||
132 | X509V3err(X509V3_F_I2S_ASN1_ENUMERATED,ERR_R_MALLOC_FAILURE); | ||
133 | BN_free(bntmp); | ||
134 | return strtmp; | ||
135 | } | ||
136 | |||
137 | char *i2s_ASN1_INTEGER(X509V3_EXT_METHOD *method, ASN1_INTEGER *a) | ||
138 | { | ||
139 | BIGNUM *bntmp = NULL; | ||
140 | char *strtmp = NULL; | ||
141 | if(!a) return NULL; | ||
142 | if(!(bntmp = ASN1_INTEGER_to_BN(a, NULL)) || | ||
143 | !(strtmp = BN_bn2dec(bntmp)) ) | ||
144 | X509V3err(X509V3_F_I2S_ASN1_INTEGER,ERR_R_MALLOC_FAILURE); | ||
145 | BN_free(bntmp); | ||
146 | return strtmp; | ||
147 | } | ||
148 | |||
149 | ASN1_INTEGER *s2i_ASN1_INTEGER(X509V3_EXT_METHOD *method, char *value) | ||
150 | { | ||
151 | BIGNUM *bn = NULL; | ||
152 | ASN1_INTEGER *aint; | ||
153 | bn = BN_new(); | ||
154 | if(!value) { | ||
155 | X509V3err(X509V3_F_S2I_ASN1_INTEGER,X509V3_R_INVALID_NULL_VALUE); | ||
156 | return 0; | ||
157 | } | ||
158 | if(!BN_dec2bn(&bn, value)) { | ||
159 | X509V3err(X509V3_F_S2I_ASN1_INTEGER,X509V3_R_BN_DEC2BN_ERROR); | ||
160 | return 0; | ||
161 | } | ||
162 | |||
163 | if(!(aint = BN_to_ASN1_INTEGER(bn, NULL))) { | ||
164 | X509V3err(X509V3_F_S2I_ASN1_INTEGER,X509V3_R_BN_TO_ASN1_INTEGER_ERROR); | ||
165 | return 0; | ||
166 | } | ||
167 | BN_free(bn); | ||
168 | return aint; | ||
169 | } | ||
170 | |||
171 | int X509V3_add_value_int(const char *name, ASN1_INTEGER *aint, | ||
172 | STACK_OF(CONF_VALUE) **extlist) | ||
173 | { | ||
174 | char *strtmp; | ||
175 | int ret; | ||
176 | if(!aint) return 1; | ||
177 | if(!(strtmp = i2s_ASN1_INTEGER(NULL, aint))) return 0; | ||
178 | ret = X509V3_add_value(name, strtmp, extlist); | ||
179 | Free(strtmp); | ||
180 | return ret; | ||
181 | } | ||
182 | |||
183 | int X509V3_get_value_bool(CONF_VALUE *value, int *asn1_bool) | ||
184 | { | ||
185 | char *btmp; | ||
186 | if(!(btmp = value->value)) goto err; | ||
187 | if(!strcmp(btmp, "TRUE") || !strcmp(btmp, "true") | ||
188 | || !strcmp(btmp, "Y") || !strcmp(btmp, "y") | ||
189 | || !strcmp(btmp, "YES") || !strcmp(btmp, "yes")) { | ||
190 | *asn1_bool = 0xff; | ||
191 | return 1; | ||
192 | } else if(!strcmp(btmp, "FALSE") || !strcmp(btmp, "false") | ||
193 | || !strcmp(btmp, "N") || !strcmp(btmp, "n") | ||
194 | || !strcmp(btmp, "NO") || !strcmp(btmp, "no")) { | ||
195 | *asn1_bool = 0; | ||
196 | return 1; | ||
197 | } | ||
198 | err: | ||
199 | X509V3err(X509V3_F_X509V3_GET_VALUE_BOOL,X509V3_R_INVALID_BOOLEAN_STRING); | ||
200 | X509V3_conf_err(value); | ||
201 | return 0; | ||
202 | } | ||
203 | |||
204 | int X509V3_get_value_int(CONF_VALUE *value, ASN1_INTEGER **aint) | ||
205 | { | ||
206 | ASN1_INTEGER *itmp; | ||
207 | if(!(itmp = s2i_ASN1_INTEGER(NULL, value->value))) { | ||
208 | X509V3_conf_err(value); | ||
209 | return 0; | ||
210 | } | ||
211 | *aint = itmp; | ||
212 | return 1; | ||
213 | } | ||
214 | |||
215 | #define HDR_NAME 1 | ||
216 | #define HDR_VALUE 2 | ||
217 | |||
218 | /*#define DEBUG*/ | ||
219 | |||
220 | STACK_OF(CONF_VALUE) *X509V3_parse_list(char *line) | ||
221 | { | ||
222 | char *p, *q, c; | ||
223 | char *ntmp, *vtmp; | ||
224 | STACK_OF(CONF_VALUE) *values = NULL; | ||
225 | char *linebuf; | ||
226 | int state; | ||
227 | /* We are going to modify the line so copy it first */ | ||
228 | linebuf = BUF_strdup(line); | ||
229 | state = HDR_NAME; | ||
230 | ntmp = NULL; | ||
231 | /* Go through all characters */ | ||
232 | for(p = linebuf, q = linebuf; (c = *p) && (c!='\r') && (c!='\n'); p++) { | ||
233 | |||
234 | switch(state) { | ||
235 | case HDR_NAME: | ||
236 | if(c == ':') { | ||
237 | state = HDR_VALUE; | ||
238 | *p = 0; | ||
239 | ntmp = strip_spaces(q); | ||
240 | if(!ntmp) { | ||
241 | X509V3err(X509V3_F_X509V3_PARSE_LIST, X509V3_R_INVALID_NULL_NAME); | ||
242 | goto err; | ||
243 | } | ||
244 | q = p + 1; | ||
245 | } else if(c == ',') { | ||
246 | *p = 0; | ||
247 | ntmp = strip_spaces(q); | ||
248 | q = p + 1; | ||
249 | #ifdef DEBUG | ||
250 | printf("%s\n", ntmp); | ||
251 | #endif | ||
252 | if(!ntmp) { | ||
253 | X509V3err(X509V3_F_X509V3_PARSE_LIST, X509V3_R_INVALID_NULL_NAME); | ||
254 | goto err; | ||
255 | } | ||
256 | X509V3_add_value(ntmp, NULL, &values); | ||
257 | } | ||
258 | break ; | ||
259 | |||
260 | case HDR_VALUE: | ||
261 | if(c == ',') { | ||
262 | state = HDR_NAME; | ||
263 | *p = 0; | ||
264 | vtmp = strip_spaces(q); | ||
265 | #ifdef DEBUG | ||
266 | printf("%s\n", ntmp); | ||
267 | #endif | ||
268 | if(!vtmp) { | ||
269 | X509V3err(X509V3_F_X509V3_PARSE_LIST, X509V3_R_INVALID_NULL_VALUE); | ||
270 | goto err; | ||
271 | } | ||
272 | X509V3_add_value(ntmp, vtmp, &values); | ||
273 | ntmp = NULL; | ||
274 | q = p + 1; | ||
275 | } | ||
276 | |||
277 | } | ||
278 | } | ||
279 | |||
280 | if(state == HDR_VALUE) { | ||
281 | vtmp = strip_spaces(q); | ||
282 | #ifdef DEBUG | ||
283 | printf("%s=%s\n", ntmp, vtmp); | ||
284 | #endif | ||
285 | if(!vtmp) { | ||
286 | X509V3err(X509V3_F_X509V3_PARSE_LIST, X509V3_R_INVALID_NULL_VALUE); | ||
287 | goto err; | ||
288 | } | ||
289 | X509V3_add_value(ntmp, vtmp, &values); | ||
290 | } else { | ||
291 | ntmp = strip_spaces(q); | ||
292 | #ifdef DEBUG | ||
293 | printf("%s\n", ntmp); | ||
294 | #endif | ||
295 | if(!ntmp) { | ||
296 | X509V3err(X509V3_F_X509V3_PARSE_LIST, X509V3_R_INVALID_NULL_NAME); | ||
297 | goto err; | ||
298 | } | ||
299 | X509V3_add_value(ntmp, NULL, &values); | ||
300 | } | ||
301 | Free(linebuf); | ||
302 | return values; | ||
303 | |||
304 | err: | ||
305 | Free(linebuf); | ||
306 | sk_CONF_VALUE_pop_free(values, X509V3_conf_free); | ||
307 | return NULL; | ||
308 | |||
309 | } | ||
310 | |||
311 | /* Delete leading and trailing spaces from a string */ | ||
312 | static char *strip_spaces(char *name) | ||
313 | { | ||
314 | char *p, *q; | ||
315 | /* Skip over leading spaces */ | ||
316 | p = name; | ||
317 | while(*p && isspace((unsigned char)*p)) p++; | ||
318 | if(!*p) return NULL; | ||
319 | q = p + strlen(p) - 1; | ||
320 | while((q != p) && isspace((unsigned char)*q)) q--; | ||
321 | if(p != q) q[1] = 0; | ||
322 | if(!*p) return NULL; | ||
323 | return p; | ||
324 | } | ||
325 | |||
326 | /* hex string utilities */ | ||
327 | |||
328 | /* Given a buffer of length 'len' return a Malloc'ed string with its | ||
329 | * hex representation | ||
330 | */ | ||
331 | |||
332 | char *hex_to_string(unsigned char *buffer, long len) | ||
333 | { | ||
334 | char *tmp, *q; | ||
335 | unsigned char *p; | ||
336 | int i; | ||
337 | static char hexdig[] = "0123456789ABCDEF"; | ||
338 | if(!buffer || !len) return NULL; | ||
339 | if(!(tmp = Malloc(len * 3 + 1))) { | ||
340 | X509V3err(X509V3_F_HEX_TO_STRING,ERR_R_MALLOC_FAILURE); | ||
341 | return NULL; | ||
342 | } | ||
343 | q = tmp; | ||
344 | for(i = 0, p = buffer; i < len; i++,p++) { | ||
345 | *q++ = hexdig[(*p >> 4) & 0xf]; | ||
346 | *q++ = hexdig[*p & 0xf]; | ||
347 | *q++ = ':'; | ||
348 | } | ||
349 | q[-1] = 0; | ||
350 | return tmp; | ||
351 | } | ||
352 | |||
353 | /* Give a string of hex digits convert to | ||
354 | * a buffer | ||
355 | */ | ||
356 | |||
357 | unsigned char *string_to_hex(char *str, long *len) | ||
358 | { | ||
359 | unsigned char *hexbuf, *q; | ||
360 | unsigned char ch, cl, *p; | ||
361 | if(!str) { | ||
362 | X509V3err(X509V3_F_STRING_TO_HEX,X509V3_R_INVALID_NULL_ARGUMENT); | ||
363 | return NULL; | ||
364 | } | ||
365 | if(!(hexbuf = Malloc(strlen(str) >> 1))) goto err; | ||
366 | for(p = (unsigned char *)str, q = hexbuf; *p;) { | ||
367 | ch = *p++; | ||
368 | if(ch == ':') continue; | ||
369 | cl = *p++; | ||
370 | if(!cl) { | ||
371 | X509V3err(X509V3_F_STRING_TO_HEX,X509V3_R_ODD_NUMBER_OF_DIGITS); | ||
372 | Free(hexbuf); | ||
373 | return NULL; | ||
374 | } | ||
375 | if(isupper(ch)) ch = tolower(ch); | ||
376 | if(isupper(cl)) cl = tolower(cl); | ||
377 | |||
378 | if((ch >= '0') && (ch <= '9')) ch -= '0'; | ||
379 | else if ((ch >= 'a') && (ch <= 'f')) ch -= 'a' - 10; | ||
380 | else goto badhex; | ||
381 | |||
382 | if((cl >= '0') && (cl <= '9')) cl -= '0'; | ||
383 | else if ((cl >= 'a') && (cl <= 'f')) cl -= 'a' - 10; | ||
384 | else goto badhex; | ||
385 | |||
386 | *q++ = (ch << 4) | cl; | ||
387 | } | ||
388 | |||
389 | if(len) *len = q - hexbuf; | ||
390 | |||
391 | return hexbuf; | ||
392 | |||
393 | err: | ||
394 | if(hexbuf) Free(hexbuf); | ||
395 | X509V3err(X509V3_F_STRING_TO_HEX,ERR_R_MALLOC_FAILURE); | ||
396 | return NULL; | ||
397 | |||
398 | badhex: | ||
399 | Free(hexbuf); | ||
400 | X509V3err(X509V3_F_STRING_TO_HEX,X509V3_R_ILLEGAL_HEX_DIGIT); | ||
401 | return NULL; | ||
402 | |||
403 | } | ||
404 | |||
405 | /* V2I name comparison function: returns zero if 'name' matches | ||
406 | * cmp or cmp.* | ||
407 | */ | ||
408 | |||
409 | int name_cmp(const char *name, const char *cmp) | ||
410 | { | ||
411 | int len, ret; | ||
412 | char c; | ||
413 | len = strlen(cmp); | ||
414 | if((ret = strncmp(name, cmp, len))) return ret; | ||
415 | c = name[len]; | ||
416 | if(!c || (c=='.')) return 0; | ||
417 | return 1; | ||
418 | } | ||
diff --git a/src/lib/libcrypto/x509v3/v3err.c b/src/lib/libcrypto/x509v3/v3err.c deleted file mode 100644 index 50efa8d99d..0000000000 --- a/src/lib/libcrypto/x509v3/v3err.c +++ /dev/null | |||
@@ -1,171 +0,0 @@ | |||
1 | /* crypto/x509v3/v3err.c */ | ||
2 | /* ==================================================================== | ||
3 | * Copyright (c) 1999 The OpenSSL Project. All rights reserved. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions | ||
7 | * are met: | ||
8 | * | ||
9 | * 1. Redistributions of source code must retain the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer. | ||
11 | * | ||
12 | * 2. Redistributions in binary form must reproduce the above copyright | ||
13 | * notice, this list of conditions and the following disclaimer in | ||
14 | * the documentation and/or other materials provided with the | ||
15 | * distribution. | ||
16 | * | ||
17 | * 3. All advertising materials mentioning features or use of this | ||
18 | * software must display the following acknowledgment: | ||
19 | * "This product includes software developed by the OpenSSL Project | ||
20 | * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)" | ||
21 | * | ||
22 | * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to | ||
23 | * endorse or promote products derived from this software without | ||
24 | * prior written permission. For written permission, please contact | ||
25 | * openssl-core@OpenSSL.org. | ||
26 | * | ||
27 | * 5. Products derived from this software may not be called "OpenSSL" | ||
28 | * nor may "OpenSSL" appear in their names without prior written | ||
29 | * permission of the OpenSSL Project. | ||
30 | * | ||
31 | * 6. Redistributions of any form whatsoever must retain the following | ||
32 | * acknowledgment: | ||
33 | * "This product includes software developed by the OpenSSL Project | ||
34 | * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)" | ||
35 | * | ||
36 | * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY | ||
37 | * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
38 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
39 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR | ||
40 | * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
41 | * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
42 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
43 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
44 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, | ||
45 | * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
46 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED | ||
47 | * OF THE POSSIBILITY OF SUCH DAMAGE. | ||
48 | * ==================================================================== | ||
49 | * | ||
50 | * This product includes cryptographic software written by Eric Young | ||
51 | * (eay@cryptsoft.com). This product includes software written by Tim | ||
52 | * Hudson (tjh@cryptsoft.com). | ||
53 | * | ||
54 | */ | ||
55 | |||
56 | /* NOTE: this file was auto generated by the mkerr.pl script: any changes | ||
57 | * made to it will be overwritten when the script next updates this file. | ||
58 | */ | ||
59 | |||
60 | #include <stdio.h> | ||
61 | #include <openssl/err.h> | ||
62 | #include <openssl/x509v3.h> | ||
63 | |||
64 | /* BEGIN ERROR CODES */ | ||
65 | #ifndef NO_ERR | ||
66 | static ERR_STRING_DATA X509V3_str_functs[]= | ||
67 | { | ||
68 | {ERR_PACK(0,X509V3_F_COPY_EMAIL,0), "COPY_EMAIL"}, | ||
69 | {ERR_PACK(0,X509V3_F_COPY_ISSUER,0), "COPY_ISSUER"}, | ||
70 | {ERR_PACK(0,X509V3_F_DO_EXT_CONF,0), "DO_EXT_CONF"}, | ||
71 | {ERR_PACK(0,X509V3_F_DO_EXT_I2D,0), "DO_EXT_I2D"}, | ||
72 | {ERR_PACK(0,X509V3_F_HEX_TO_STRING,0), "hex_to_string"}, | ||
73 | {ERR_PACK(0,X509V3_F_I2S_ASN1_ENUMERATED,0), "i2s_ASN1_ENUMERATED"}, | ||
74 | {ERR_PACK(0,X509V3_F_I2S_ASN1_INTEGER,0), "i2s_ASN1_INTEGER"}, | ||
75 | {ERR_PACK(0,X509V3_F_NOTICE_SECTION,0), "NOTICE_SECTION"}, | ||
76 | {ERR_PACK(0,X509V3_F_NREF_NOS,0), "NREF_NOS"}, | ||
77 | {ERR_PACK(0,X509V3_F_POLICY_SECTION,0), "POLICY_SECTION"}, | ||
78 | {ERR_PACK(0,X509V3_F_R2I_CERTPOL,0), "R2I_CERTPOL"}, | ||
79 | {ERR_PACK(0,X509V3_F_S2I_ASN1_IA5STRING,0), "S2I_ASN1_IA5STRING"}, | ||
80 | {ERR_PACK(0,X509V3_F_S2I_ASN1_INTEGER,0), "s2i_ASN1_INTEGER"}, | ||
81 | {ERR_PACK(0,X509V3_F_S2I_ASN1_OCTET_STRING,0), "s2i_ASN1_OCTET_STRING"}, | ||
82 | {ERR_PACK(0,X509V3_F_S2I_ASN1_SKEY_ID,0), "S2I_ASN1_SKEY_ID"}, | ||
83 | {ERR_PACK(0,X509V3_F_S2I_S2I_SKEY_ID,0), "S2I_S2I_SKEY_ID"}, | ||
84 | {ERR_PACK(0,X509V3_F_STRING_TO_HEX,0), "string_to_hex"}, | ||
85 | {ERR_PACK(0,X509V3_F_SXNET_ADD_ASC,0), "SXNET_ADD_ASC"}, | ||
86 | {ERR_PACK(0,X509V3_F_SXNET_ADD_ID_INTEGER,0), "SXNET_add_id_INTEGER"}, | ||
87 | {ERR_PACK(0,X509V3_F_SXNET_ADD_ID_ULONG,0), "SXNET_add_id_ulong"}, | ||
88 | {ERR_PACK(0,X509V3_F_SXNET_GET_ID_ASC,0), "SXNET_get_id_asc"}, | ||
89 | {ERR_PACK(0,X509V3_F_SXNET_GET_ID_ULONG,0), "SXNET_get_id_ulong"}, | ||
90 | {ERR_PACK(0,X509V3_F_V2I_ASN1_BIT_STRING,0), "V2I_ASN1_BIT_STRING"}, | ||
91 | {ERR_PACK(0,X509V3_F_V2I_AUTHORITY_KEYID,0), "V2I_AUTHORITY_KEYID"}, | ||
92 | {ERR_PACK(0,X509V3_F_V2I_BASIC_CONSTRAINTS,0), "V2I_BASIC_CONSTRAINTS"}, | ||
93 | {ERR_PACK(0,X509V3_F_V2I_CRLD,0), "V2I_CRLD"}, | ||
94 | {ERR_PACK(0,X509V3_F_V2I_EXT_KU,0), "V2I_EXT_KU"}, | ||
95 | {ERR_PACK(0,X509V3_F_V2I_GENERAL_NAME,0), "v2i_GENERAL_NAME"}, | ||
96 | {ERR_PACK(0,X509V3_F_V2I_GENERAL_NAMES,0), "v2i_GENERAL_NAMES"}, | ||
97 | {ERR_PACK(0,X509V3_F_V3_GENERIC_EXTENSION,0), "V3_GENERIC_EXTENSION"}, | ||
98 | {ERR_PACK(0,X509V3_F_X509V3_ADD_VALUE,0), "X509V3_add_value"}, | ||
99 | {ERR_PACK(0,X509V3_F_X509V3_EXT_ADD,0), "X509V3_EXT_add"}, | ||
100 | {ERR_PACK(0,X509V3_F_X509V3_EXT_ADD_ALIAS,0), "X509V3_EXT_add_alias"}, | ||
101 | {ERR_PACK(0,X509V3_F_X509V3_EXT_CONF,0), "X509V3_EXT_conf"}, | ||
102 | {ERR_PACK(0,X509V3_F_X509V3_EXT_I2D,0), "X509V3_EXT_i2d"}, | ||
103 | {ERR_PACK(0,X509V3_F_X509V3_GET_VALUE_BOOL,0), "X509V3_get_value_bool"}, | ||
104 | {ERR_PACK(0,X509V3_F_X509V3_PARSE_LIST,0), "X509V3_parse_list"}, | ||
105 | {0,NULL} | ||
106 | }; | ||
107 | |||
108 | static ERR_STRING_DATA X509V3_str_reasons[]= | ||
109 | { | ||
110 | {X509V3_R_BAD_IP_ADDRESS ,"bad ip address"}, | ||
111 | {X509V3_R_BAD_OBJECT ,"bad object"}, | ||
112 | {X509V3_R_BN_DEC2BN_ERROR ,"bn dec2bn error"}, | ||
113 | {X509V3_R_BN_TO_ASN1_INTEGER_ERROR ,"bn to asn1 integer error"}, | ||
114 | {X509V3_R_DUPLICATE_ZONE_ID ,"duplicate zone id"}, | ||
115 | {X509V3_R_ERROR_CONVERTING_ZONE ,"error converting zone"}, | ||
116 | {X509V3_R_ERROR_IN_EXTENSION ,"error in extension"}, | ||
117 | {X509V3_R_EXPECTED_A_SECTION_NAME ,"expected a section name"}, | ||
118 | {X509V3_R_EXTENSION_NAME_ERROR ,"extension name error"}, | ||
119 | {X509V3_R_EXTENSION_NOT_FOUND ,"extension not found"}, | ||
120 | {X509V3_R_EXTENSION_SETTING_NOT_SUPPORTED,"extension setting not supported"}, | ||
121 | {X509V3_R_EXTENSION_VALUE_ERROR ,"extension value error"}, | ||
122 | {X509V3_R_ILLEGAL_HEX_DIGIT ,"illegal hex digit"}, | ||
123 | {X509V3_R_INVALID_BOOLEAN_STRING ,"invalid boolean string"}, | ||
124 | {X509V3_R_INVALID_EXTENSION_STRING ,"invalid extension string"}, | ||
125 | {X509V3_R_INVALID_NAME ,"invalid name"}, | ||
126 | {X509V3_R_INVALID_NULL_ARGUMENT ,"invalid null argument"}, | ||
127 | {X509V3_R_INVALID_NULL_NAME ,"invalid null name"}, | ||
128 | {X509V3_R_INVALID_NULL_VALUE ,"invalid null value"}, | ||
129 | {X509V3_R_INVALID_NUMBER ,"invalid number"}, | ||
130 | {X509V3_R_INVALID_NUMBERS ,"invalid numbers"}, | ||
131 | {X509V3_R_INVALID_OBJECT_IDENTIFIER ,"invalid object identifier"}, | ||
132 | {X509V3_R_INVALID_OPTION ,"invalid option"}, | ||
133 | {X509V3_R_INVALID_POLICY_IDENTIFIER ,"invalid policy identifier"}, | ||
134 | {X509V3_R_INVALID_SECTION ,"invalid section"}, | ||
135 | {X509V3_R_ISSUER_DECODE_ERROR ,"issuer decode error"}, | ||
136 | {X509V3_R_MISSING_VALUE ,"missing value"}, | ||
137 | {X509V3_R_NEED_ORGANIZATION_AND_NUMBERS ,"need organization and numbers"}, | ||
138 | {X509V3_R_NO_CONFIG_DATABASE ,"no config database"}, | ||
139 | {X509V3_R_NO_ISSUER_CERTIFICATE ,"no issuer certificate"}, | ||
140 | {X509V3_R_NO_ISSUER_DETAILS ,"no issuer details"}, | ||
141 | {X509V3_R_NO_POLICY_IDENTIFIER ,"no policy identifier"}, | ||
142 | {X509V3_R_NO_PUBLIC_KEY ,"no public key"}, | ||
143 | {X509V3_R_NO_SUBJECT_DETAILS ,"no subject details"}, | ||
144 | {X509V3_R_ODD_NUMBER_OF_DIGITS ,"odd number of digits"}, | ||
145 | {X509V3_R_UNABLE_TO_GET_ISSUER_DETAILS ,"unable to get issuer details"}, | ||
146 | {X509V3_R_UNABLE_TO_GET_ISSUER_KEYID ,"unable to get issuer keyid"}, | ||
147 | {X509V3_R_UNKNOWN_BIT_STRING_ARGUMENT ,"unknown bit string argument"}, | ||
148 | {X509V3_R_UNKNOWN_EXTENSION ,"unknown extension"}, | ||
149 | {X509V3_R_UNKNOWN_EXTENSION_NAME ,"unknown extension name"}, | ||
150 | {X509V3_R_UNKNOWN_OPTION ,"unknown option"}, | ||
151 | {X509V3_R_UNSUPPORTED_OPTION ,"unsupported option"}, | ||
152 | {X509V3_R_USER_TOO_LONG ,"user too long"}, | ||
153 | {0,NULL} | ||
154 | }; | ||
155 | |||
156 | #endif | ||
157 | |||
158 | void ERR_load_X509V3_strings(void) | ||
159 | { | ||
160 | static int init=1; | ||
161 | |||
162 | if (init) | ||
163 | { | ||
164 | init=0; | ||
165 | #ifndef NO_ERR | ||
166 | ERR_load_strings(ERR_LIB_X509V3,X509V3_str_functs); | ||
167 | ERR_load_strings(ERR_LIB_X509V3,X509V3_str_reasons); | ||
168 | #endif | ||
169 | |||
170 | } | ||
171 | } | ||
diff --git a/src/lib/libcrypto/x509v3/x509v3.h b/src/lib/libcrypto/x509v3/x509v3.h deleted file mode 100644 index 4eb04a5a89..0000000000 --- a/src/lib/libcrypto/x509v3/x509v3.h +++ /dev/null | |||
@@ -1,532 +0,0 @@ | |||
1 | /* x509v3.h */ | ||
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 | #ifndef HEADER_X509V3_H | ||
59 | #define HEADER_X509V3_H | ||
60 | |||
61 | #ifdef __cplusplus | ||
62 | extern "C" { | ||
63 | #endif | ||
64 | |||
65 | #include <openssl/bio.h> | ||
66 | #include <openssl/x509.h> | ||
67 | #include <openssl/conf.h> | ||
68 | |||
69 | /* Forward reference */ | ||
70 | struct v3_ext_method; | ||
71 | struct v3_ext_ctx; | ||
72 | |||
73 | /* Useful typedefs */ | ||
74 | |||
75 | typedef void * (*X509V3_EXT_NEW)(void); | ||
76 | typedef void (*X509V3_EXT_FREE)(void *); | ||
77 | typedef void * (*X509V3_EXT_D2I)(void *, unsigned char ** , long); | ||
78 | typedef int (*X509V3_EXT_I2D)(void *, unsigned char **); | ||
79 | typedef STACK_OF(CONF_VALUE) * (*X509V3_EXT_I2V)(struct v3_ext_method *method, void *ext, STACK_OF(CONF_VALUE) *extlist); | ||
80 | typedef void * (*X509V3_EXT_V2I)(struct v3_ext_method *method, struct v3_ext_ctx *ctx, STACK_OF(CONF_VALUE) *values); | ||
81 | typedef char * (*X509V3_EXT_I2S)(struct v3_ext_method *method, void *ext); | ||
82 | typedef void * (*X509V3_EXT_S2I)(struct v3_ext_method *method, struct v3_ext_ctx *ctx, char *str); | ||
83 | typedef int (*X509V3_EXT_I2R)(struct v3_ext_method *method, void *ext, BIO *out, int indent); | ||
84 | typedef void * (*X509V3_EXT_R2I)(struct v3_ext_method *method, struct v3_ext_ctx *ctx, char *str); | ||
85 | |||
86 | /* V3 extension structure */ | ||
87 | |||
88 | struct v3_ext_method { | ||
89 | int ext_nid; | ||
90 | int ext_flags; | ||
91 | X509V3_EXT_NEW ext_new; | ||
92 | X509V3_EXT_FREE ext_free; | ||
93 | X509V3_EXT_D2I d2i; | ||
94 | X509V3_EXT_I2D i2d; | ||
95 | |||
96 | /* The following pair is used for string extensions */ | ||
97 | X509V3_EXT_I2S i2s; | ||
98 | X509V3_EXT_S2I s2i; | ||
99 | |||
100 | /* The following pair is used for multi-valued extensions */ | ||
101 | X509V3_EXT_I2V i2v; | ||
102 | X509V3_EXT_V2I v2i; | ||
103 | |||
104 | /* The following are used for raw extensions */ | ||
105 | X509V3_EXT_I2R i2r; | ||
106 | X509V3_EXT_R2I r2i; | ||
107 | |||
108 | void *usr_data; /* Any extension specific data */ | ||
109 | }; | ||
110 | |||
111 | typedef struct X509V3_CONF_METHOD_st { | ||
112 | char * (*get_string)(void *db, char *section, char *value); | ||
113 | STACK_OF(CONF_VALUE) * (*get_section)(void *db, char *section); | ||
114 | void (*free_string)(void *db, char * string); | ||
115 | void (*free_section)(void *db, STACK_OF(CONF_VALUE) *section); | ||
116 | } X509V3_CONF_METHOD; | ||
117 | |||
118 | /* Context specific info */ | ||
119 | struct v3_ext_ctx { | ||
120 | #define CTX_TEST 0x1 | ||
121 | int flags; | ||
122 | X509 *issuer_cert; | ||
123 | X509 *subject_cert; | ||
124 | X509_REQ *subject_req; | ||
125 | X509_CRL *crl; | ||
126 | X509V3_CONF_METHOD *db_meth; | ||
127 | void *db; | ||
128 | /* Maybe more here */ | ||
129 | }; | ||
130 | |||
131 | typedef struct v3_ext_method X509V3_EXT_METHOD; | ||
132 | typedef struct v3_ext_ctx X509V3_CTX; | ||
133 | |||
134 | /* ext_flags values */ | ||
135 | #define X509V3_EXT_DYNAMIC 0x1 | ||
136 | #define X509V3_EXT_CTX_DEP 0x2 | ||
137 | #define X509V3_EXT_MULTILINE 0x4 | ||
138 | |||
139 | typedef struct BIT_STRING_BITNAME_st { | ||
140 | int bitnum; | ||
141 | const char *lname; | ||
142 | const char *sname; | ||
143 | } BIT_STRING_BITNAME; | ||
144 | |||
145 | typedef BIT_STRING_BITNAME ENUMERATED_NAMES; | ||
146 | |||
147 | typedef struct BASIC_CONSTRAINTS_st { | ||
148 | int ca; | ||
149 | ASN1_INTEGER *pathlen; | ||
150 | } BASIC_CONSTRAINTS; | ||
151 | |||
152 | |||
153 | typedef struct PKEY_USAGE_PERIOD_st { | ||
154 | ASN1_GENERALIZEDTIME *notBefore; | ||
155 | ASN1_GENERALIZEDTIME *notAfter; | ||
156 | } PKEY_USAGE_PERIOD; | ||
157 | |||
158 | typedef struct GENERAL_NAME_st { | ||
159 | |||
160 | #define GEN_OTHERNAME (0|V_ASN1_CONTEXT_SPECIFIC) | ||
161 | #define GEN_EMAIL (1|V_ASN1_CONTEXT_SPECIFIC) | ||
162 | #define GEN_DNS (2|V_ASN1_CONTEXT_SPECIFIC) | ||
163 | #define GEN_X400 (3|V_ASN1_CONTEXT_SPECIFIC) | ||
164 | #define GEN_DIRNAME (4|V_ASN1_CONTEXT_SPECIFIC) | ||
165 | #define GEN_EDIPARTY (5|V_ASN1_CONTEXT_SPECIFIC) | ||
166 | #define GEN_URI (6|V_ASN1_CONTEXT_SPECIFIC) | ||
167 | #define GEN_IPADD (7|V_ASN1_CONTEXT_SPECIFIC) | ||
168 | #define GEN_RID (8|V_ASN1_CONTEXT_SPECIFIC) | ||
169 | |||
170 | int type; | ||
171 | union { | ||
172 | char *ptr; | ||
173 | ASN1_IA5STRING *ia5;/* rfc822Name, dNSName, uniformResourceIdentifier */ | ||
174 | ASN1_OCTET_STRING *ip; /* iPAddress */ | ||
175 | X509_NAME *dirn; /* dirn */ | ||
176 | ASN1_OBJECT *rid; /* registeredID */ | ||
177 | ASN1_TYPE *other; /* otherName, ediPartyName, x400Address */ | ||
178 | } d; | ||
179 | } GENERAL_NAME; | ||
180 | |||
181 | DECLARE_STACK_OF(GENERAL_NAME) | ||
182 | DECLARE_ASN1_SET_OF(GENERAL_NAME) | ||
183 | |||
184 | typedef struct DIST_POINT_NAME_st { | ||
185 | /* NB: this is a CHOICE type and only one of these should be set */ | ||
186 | STACK_OF(GENERAL_NAME) *fullname; | ||
187 | X509_NAME *relativename; | ||
188 | } DIST_POINT_NAME; | ||
189 | |||
190 | typedef struct DIST_POINT_st { | ||
191 | DIST_POINT_NAME *distpoint; | ||
192 | ASN1_BIT_STRING *reasons; | ||
193 | STACK_OF(GENERAL_NAME) *CRLissuer; | ||
194 | } DIST_POINT; | ||
195 | |||
196 | DECLARE_STACK_OF(DIST_POINT) | ||
197 | DECLARE_ASN1_SET_OF(DIST_POINT) | ||
198 | |||
199 | typedef struct AUTHORITY_KEYID_st { | ||
200 | ASN1_OCTET_STRING *keyid; | ||
201 | STACK_OF(GENERAL_NAME) *issuer; | ||
202 | ASN1_INTEGER *serial; | ||
203 | } AUTHORITY_KEYID; | ||
204 | |||
205 | /* Strong extranet structures */ | ||
206 | |||
207 | typedef struct SXNET_ID_st { | ||
208 | ASN1_INTEGER *zone; | ||
209 | ASN1_OCTET_STRING *user; | ||
210 | } SXNETID; | ||
211 | |||
212 | DECLARE_STACK_OF(SXNETID) | ||
213 | DECLARE_ASN1_SET_OF(SXNETID) | ||
214 | |||
215 | typedef struct SXNET_st { | ||
216 | ASN1_INTEGER *version; | ||
217 | STACK_OF(SXNETID) *ids; | ||
218 | } SXNET; | ||
219 | |||
220 | typedef struct NOTICEREF_st { | ||
221 | ASN1_STRING *organization; | ||
222 | STACK *noticenos; | ||
223 | } NOTICEREF; | ||
224 | |||
225 | typedef struct USERNOTICE_st { | ||
226 | NOTICEREF *noticeref; | ||
227 | ASN1_STRING *exptext; | ||
228 | } USERNOTICE; | ||
229 | |||
230 | typedef struct POLICYQUALINFO_st { | ||
231 | ASN1_OBJECT *pqualid; | ||
232 | union { | ||
233 | ASN1_IA5STRING *cpsuri; | ||
234 | USERNOTICE *usernotice; | ||
235 | ASN1_TYPE *other; | ||
236 | } d; | ||
237 | } POLICYQUALINFO; | ||
238 | |||
239 | DECLARE_STACK_OF(POLICYQUALINFO) | ||
240 | DECLARE_ASN1_SET_OF(POLICYQUALINFO) | ||
241 | |||
242 | typedef struct POLICYINFO_st { | ||
243 | ASN1_OBJECT *policyid; | ||
244 | STACK_OF(POLICYQUALINFO) *qualifiers; | ||
245 | } POLICYINFO; | ||
246 | |||
247 | DECLARE_STACK_OF(POLICYINFO) | ||
248 | DECLARE_ASN1_SET_OF(POLICYINFO) | ||
249 | |||
250 | #define X509V3_conf_err(val) ERR_add_error_data(6, "section:", val->section, \ | ||
251 | ",name:", val->name, ",value:", val->value); | ||
252 | |||
253 | #define X509V3_set_ctx_test(ctx) \ | ||
254 | X509V3_set_ctx(ctx, NULL, NULL, NULL, NULL, CTX_TEST) | ||
255 | #define X509V3_set_ctx_nodb(ctx) ctx->db = NULL; | ||
256 | |||
257 | #define EXT_BITSTRING(nid, table) { nid, 0, \ | ||
258 | (X509V3_EXT_NEW)asn1_bit_string_new, \ | ||
259 | (X509V3_EXT_FREE)ASN1_STRING_free, \ | ||
260 | (X509V3_EXT_D2I)d2i_ASN1_BIT_STRING, \ | ||
261 | (X509V3_EXT_I2D)i2d_ASN1_BIT_STRING, \ | ||
262 | NULL, NULL, \ | ||
263 | (X509V3_EXT_I2V)i2v_ASN1_BIT_STRING, \ | ||
264 | (X509V3_EXT_V2I)v2i_ASN1_BIT_STRING, \ | ||
265 | NULL, NULL, \ | ||
266 | (char *)table} | ||
267 | |||
268 | #define EXT_IA5STRING(nid) { nid, 0, \ | ||
269 | (X509V3_EXT_NEW)ia5string_new, \ | ||
270 | (X509V3_EXT_FREE)ASN1_STRING_free, \ | ||
271 | (X509V3_EXT_D2I)d2i_ASN1_IA5STRING, \ | ||
272 | (X509V3_EXT_I2D)i2d_ASN1_IA5STRING, \ | ||
273 | (X509V3_EXT_I2S)i2s_ASN1_IA5STRING, \ | ||
274 | (X509V3_EXT_S2I)s2i_ASN1_IA5STRING, \ | ||
275 | NULL, NULL, NULL, NULL, \ | ||
276 | NULL} | ||
277 | |||
278 | #define EXT_END { -1, 0, NULL, NULL, NULL, NULL, NULL, NULL, \ | ||
279 | NULL, NULL, NULL, NULL, \ | ||
280 | NULL} | ||
281 | |||
282 | void ERR_load_X509V3_strings(void); | ||
283 | int i2d_BASIC_CONSTRAINTS(BASIC_CONSTRAINTS *a, unsigned char **pp); | ||
284 | BASIC_CONSTRAINTS *d2i_BASIC_CONSTRAINTS(BASIC_CONSTRAINTS **a, unsigned char **pp, long length); | ||
285 | BASIC_CONSTRAINTS *BASIC_CONSTRAINTS_new(void); | ||
286 | void BASIC_CONSTRAINTS_free(BASIC_CONSTRAINTS *a); | ||
287 | |||
288 | int i2d_GENERAL_NAME(GENERAL_NAME *a, unsigned char **pp); | ||
289 | GENERAL_NAME *d2i_GENERAL_NAME(GENERAL_NAME **a, unsigned char **pp, long length); | ||
290 | GENERAL_NAME *GENERAL_NAME_new(void); | ||
291 | void GENERAL_NAME_free(GENERAL_NAME *a); | ||
292 | STACK_OF(CONF_VALUE) *i2v_GENERAL_NAME(X509V3_EXT_METHOD *method, GENERAL_NAME *gen, STACK_OF(CONF_VALUE) *ret); | ||
293 | |||
294 | int i2d_SXNET(SXNET *a, unsigned char **pp); | ||
295 | SXNET *d2i_SXNET(SXNET **a, unsigned char **pp, long length); | ||
296 | SXNET *SXNET_new(void); | ||
297 | void SXNET_free(SXNET *a); | ||
298 | |||
299 | int i2d_SXNETID(SXNETID *a, unsigned char **pp); | ||
300 | SXNETID *d2i_SXNETID(SXNETID **a, unsigned char **pp, long length); | ||
301 | SXNETID *SXNETID_new(void); | ||
302 | void SXNETID_free(SXNETID *a); | ||
303 | |||
304 | int SXNET_add_id_asc(SXNET **psx, char *zone, char *user, int userlen); | ||
305 | int SXNET_add_id_ulong(SXNET **psx, unsigned long lzone, char *user, int userlen); | ||
306 | int SXNET_add_id_INTEGER(SXNET **psx, ASN1_INTEGER *izone, char *user, int userlen); | ||
307 | |||
308 | ASN1_OCTET_STRING *SXNET_get_id_asc(SXNET *sx, char *zone); | ||
309 | ASN1_OCTET_STRING *SXNET_get_id_ulong(SXNET *sx, unsigned long lzone); | ||
310 | ASN1_OCTET_STRING *SXNET_get_id_INTEGER(SXNET *sx, ASN1_INTEGER *zone); | ||
311 | |||
312 | int i2d_AUTHORITY_KEYID(AUTHORITY_KEYID *a, unsigned char **pp); | ||
313 | AUTHORITY_KEYID *d2i_AUTHORITY_KEYID(AUTHORITY_KEYID **a, unsigned char **pp, long length); | ||
314 | AUTHORITY_KEYID *AUTHORITY_KEYID_new(void); | ||
315 | void AUTHORITY_KEYID_free(AUTHORITY_KEYID *a); | ||
316 | |||
317 | int i2d_PKEY_USAGE_PERIOD(PKEY_USAGE_PERIOD *a, unsigned char **pp); | ||
318 | PKEY_USAGE_PERIOD *d2i_PKEY_USAGE_PERIOD(PKEY_USAGE_PERIOD **a, unsigned char **pp, long length); | ||
319 | PKEY_USAGE_PERIOD *PKEY_USAGE_PERIOD_new(void); | ||
320 | void PKEY_USAGE_PERIOD_free(PKEY_USAGE_PERIOD *a); | ||
321 | |||
322 | STACK_OF(GENERAL_NAME) *GENERAL_NAMES_new(void); | ||
323 | void GENERAL_NAMES_free(STACK_OF(GENERAL_NAME) *a); | ||
324 | STACK_OF(GENERAL_NAME) *d2i_GENERAL_NAMES(STACK_OF(GENERAL_NAME) **a, unsigned char **pp, long length); | ||
325 | int i2d_GENERAL_NAMES(STACK_OF(GENERAL_NAME) *a, unsigned char **pp); | ||
326 | STACK_OF(CONF_VALUE) *i2v_GENERAL_NAMES(X509V3_EXT_METHOD *method, | ||
327 | STACK_OF(GENERAL_NAME) *gen, STACK_OF(CONF_VALUE) *extlist); | ||
328 | STACK_OF(GENERAL_NAME) *v2i_GENERAL_NAMES(X509V3_EXT_METHOD *method, | ||
329 | X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *nval); | ||
330 | |||
331 | char *i2s_ASN1_OCTET_STRING(X509V3_EXT_METHOD *method, ASN1_OCTET_STRING *ia5); | ||
332 | ASN1_OCTET_STRING *s2i_ASN1_OCTET_STRING(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, char *str); | ||
333 | |||
334 | int i2d_ext_ku(STACK_OF(ASN1_OBJECT) *a, unsigned char **pp); | ||
335 | STACK_OF(ASN1_OBJECT) *d2i_ext_ku(STACK_OF(ASN1_OBJECT) **a, | ||
336 | unsigned char **pp, long length); | ||
337 | void ext_ku_free(STACK_OF(ASN1_OBJECT) *a); | ||
338 | STACK_OF(ASN1_OBJECT) *ext_ku_new(void); | ||
339 | |||
340 | int i2d_CERTIFICATEPOLICIES(STACK_OF(POLICYINFO) *a, unsigned char **pp); | ||
341 | STACK_OF(POLICYINFO) *CERTIFICATEPOLICIES_new(void); | ||
342 | void CERTIFICATEPOLICIES_free(STACK_OF(POLICYINFO) *a); | ||
343 | STACK_OF(POLICYINFO) *d2i_CERTIFICATEPOLICIES(STACK_OF(POLICYINFO) **a, unsigned char **pp, long length); | ||
344 | |||
345 | int i2d_POLICYINFO(POLICYINFO *a, unsigned char **pp); | ||
346 | POLICYINFO *POLICYINFO_new(void); | ||
347 | POLICYINFO *d2i_POLICYINFO(POLICYINFO **a, unsigned char **pp, long length); | ||
348 | void POLICYINFO_free(POLICYINFO *a); | ||
349 | |||
350 | int i2d_POLICYQUALINFO(POLICYQUALINFO *a, unsigned char **pp); | ||
351 | POLICYQUALINFO *POLICYQUALINFO_new(void); | ||
352 | POLICYQUALINFO *d2i_POLICYQUALINFO(POLICYQUALINFO **a, unsigned char **pp, | ||
353 | long length); | ||
354 | void POLICYQUALINFO_free(POLICYQUALINFO *a); | ||
355 | |||
356 | int i2d_USERNOTICE(USERNOTICE *a, unsigned char **pp); | ||
357 | USERNOTICE *USERNOTICE_new(void); | ||
358 | USERNOTICE *d2i_USERNOTICE(USERNOTICE **a, unsigned char **pp, long length); | ||
359 | void USERNOTICE_free(USERNOTICE *a); | ||
360 | |||
361 | int i2d_NOTICEREF(NOTICEREF *a, unsigned char **pp); | ||
362 | NOTICEREF *NOTICEREF_new(void); | ||
363 | NOTICEREF *d2i_NOTICEREF(NOTICEREF **a, unsigned char **pp, long length); | ||
364 | void NOTICEREF_free(NOTICEREF *a); | ||
365 | |||
366 | int i2d_CRL_DIST_POINTS(STACK_OF(DIST_POINT) *a, unsigned char **pp); | ||
367 | STACK_OF(DIST_POINT) *CRL_DIST_POINTS_new(void); | ||
368 | void CRL_DIST_POINTS_free(STACK_OF(DIST_POINT) *a); | ||
369 | STACK_OF(DIST_POINT) *d2i_CRL_DIST_POINTS(STACK_OF(DIST_POINT) **a, | ||
370 | unsigned char **pp,long length); | ||
371 | |||
372 | int i2d_DIST_POINT(DIST_POINT *a, unsigned char **pp); | ||
373 | DIST_POINT *DIST_POINT_new(void); | ||
374 | DIST_POINT *d2i_DIST_POINT(DIST_POINT **a, unsigned char **pp, long length); | ||
375 | void DIST_POINT_free(DIST_POINT *a); | ||
376 | |||
377 | int i2d_DIST_POINT_NAME(DIST_POINT_NAME *a, unsigned char **pp); | ||
378 | DIST_POINT_NAME *DIST_POINT_NAME_new(void); | ||
379 | void DIST_POINT_NAME_free(DIST_POINT_NAME *a); | ||
380 | DIST_POINT_NAME *d2i_DIST_POINT_NAME(DIST_POINT_NAME **a, unsigned char **pp, | ||
381 | long length); | ||
382 | |||
383 | #ifdef HEADER_CONF_H | ||
384 | GENERAL_NAME *v2i_GENERAL_NAME(X509V3_EXT_METHOD *method, X509V3_CTX *ctx, CONF_VALUE *cnf); | ||
385 | void X509V3_conf_free(CONF_VALUE *val); | ||
386 | X509_EXTENSION *X509V3_EXT_conf_nid(LHASH *conf, X509V3_CTX *ctx, int ext_nid, char *value); | ||
387 | X509_EXTENSION *X509V3_EXT_conf(LHASH *conf, X509V3_CTX *ctx, char *name, char *value); | ||
388 | int X509V3_EXT_add_conf(LHASH *conf, X509V3_CTX *ctx, char *section, X509 *cert); | ||
389 | int X509V3_EXT_CRL_add_conf(LHASH *conf, X509V3_CTX *ctx, char *section, X509_CRL *crl); | ||
390 | int X509V3_add_value_bool_nf(char *name, int asn1_bool, | ||
391 | STACK_OF(CONF_VALUE) **extlist); | ||
392 | int X509V3_get_value_bool(CONF_VALUE *value, int *asn1_bool); | ||
393 | int X509V3_get_value_int(CONF_VALUE *value, ASN1_INTEGER **aint); | ||
394 | void X509V3_set_conf_lhash(X509V3_CTX *ctx, LHASH *lhash); | ||
395 | #endif | ||
396 | |||
397 | char * X509V3_get_string(X509V3_CTX *ctx, char *name, char *section); | ||
398 | STACK_OF(CONF_VALUE) * X509V3_get_section(X509V3_CTX *ctx, char *section); | ||
399 | void X509V3_string_free(X509V3_CTX *ctx, char *str); | ||
400 | void X509V3_section_free( X509V3_CTX *ctx, STACK_OF(CONF_VALUE) *section); | ||
401 | void X509V3_set_ctx(X509V3_CTX *ctx, X509 *issuer, X509 *subject, | ||
402 | X509_REQ *req, X509_CRL *crl, int flags); | ||
403 | |||
404 | int X509V3_add_value(const char *name, const char *value, | ||
405 | STACK_OF(CONF_VALUE) **extlist); | ||
406 | int X509V3_add_value_uchar(const char *name, const unsigned char *value, | ||
407 | STACK_OF(CONF_VALUE) **extlist); | ||
408 | int X509V3_add_value_bool(const char *name, int asn1_bool, | ||
409 | STACK_OF(CONF_VALUE) **extlist); | ||
410 | int X509V3_add_value_int(const char *name, ASN1_INTEGER *aint, | ||
411 | STACK_OF(CONF_VALUE) **extlist); | ||
412 | char * i2s_ASN1_INTEGER(X509V3_EXT_METHOD *meth, ASN1_INTEGER *aint); | ||
413 | ASN1_INTEGER * s2i_ASN1_INTEGER(X509V3_EXT_METHOD *meth, char *value); | ||
414 | char * i2s_ASN1_ENUMERATED(X509V3_EXT_METHOD *meth, ASN1_ENUMERATED *aint); | ||
415 | char * i2s_ASN1_ENUMERATED_TABLE(X509V3_EXT_METHOD *meth, ASN1_ENUMERATED *aint); | ||
416 | int X509V3_EXT_add(X509V3_EXT_METHOD *ext); | ||
417 | int X509V3_EXT_add_list(X509V3_EXT_METHOD *extlist); | ||
418 | int X509V3_EXT_add_alias(int nid_to, int nid_from); | ||
419 | void X509V3_EXT_cleanup(void); | ||
420 | |||
421 | X509V3_EXT_METHOD *X509V3_EXT_get(X509_EXTENSION *ext); | ||
422 | X509V3_EXT_METHOD *X509V3_EXT_get_nid(int nid); | ||
423 | int X509V3_add_standard_extensions(void); | ||
424 | STACK_OF(CONF_VALUE) *X509V3_parse_list(char *line); | ||
425 | void *X509V3_EXT_d2i(X509_EXTENSION *ext); | ||
426 | X509_EXTENSION *X509V3_EXT_i2d(int ext_nid, int crit, void *ext_struc); | ||
427 | |||
428 | char *hex_to_string(unsigned char *buffer, long len); | ||
429 | unsigned char *string_to_hex(char *str, long *len); | ||
430 | int name_cmp(const char *name, const char *cmp); | ||
431 | |||
432 | void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent, | ||
433 | int ml); | ||
434 | int X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, int flag, int indent); | ||
435 | int X509V3_EXT_print_fp(FILE *out, X509_EXTENSION *ext, int flag, int indent); | ||
436 | |||
437 | /* BEGIN ERROR CODES */ | ||
438 | /* The following lines are auto generated by the script mkerr.pl. Any changes | ||
439 | * made after this point may be overwritten when the script is next run. | ||
440 | */ | ||
441 | |||
442 | /* Error codes for the X509V3 functions. */ | ||
443 | |||
444 | /* Function codes. */ | ||
445 | #define X509V3_F_COPY_EMAIL 122 | ||
446 | #define X509V3_F_COPY_ISSUER 123 | ||
447 | #define X509V3_F_DO_EXT_CONF 124 | ||
448 | #define X509V3_F_DO_EXT_I2D 135 | ||
449 | #define X509V3_F_HEX_TO_STRING 111 | ||
450 | #define X509V3_F_I2S_ASN1_ENUMERATED 121 | ||
451 | #define X509V3_F_I2S_ASN1_INTEGER 120 | ||
452 | #define X509V3_F_NOTICE_SECTION 132 | ||
453 | #define X509V3_F_NREF_NOS 133 | ||
454 | #define X509V3_F_POLICY_SECTION 131 | ||
455 | #define X509V3_F_R2I_CERTPOL 130 | ||
456 | #define X509V3_F_S2I_ASN1_IA5STRING 100 | ||
457 | #define X509V3_F_S2I_ASN1_INTEGER 108 | ||
458 | #define X509V3_F_S2I_ASN1_OCTET_STRING 112 | ||
459 | #define X509V3_F_S2I_ASN1_SKEY_ID 114 | ||
460 | #define X509V3_F_S2I_S2I_SKEY_ID 115 | ||
461 | #define X509V3_F_STRING_TO_HEX 113 | ||
462 | #define X509V3_F_SXNET_ADD_ASC 125 | ||
463 | #define X509V3_F_SXNET_ADD_ID_INTEGER 126 | ||
464 | #define X509V3_F_SXNET_ADD_ID_ULONG 127 | ||
465 | #define X509V3_F_SXNET_GET_ID_ASC 128 | ||
466 | #define X509V3_F_SXNET_GET_ID_ULONG 129 | ||
467 | #define X509V3_F_V2I_ASN1_BIT_STRING 101 | ||
468 | #define X509V3_F_V2I_AUTHORITY_KEYID 119 | ||
469 | #define X509V3_F_V2I_BASIC_CONSTRAINTS 102 | ||
470 | #define X509V3_F_V2I_CRLD 134 | ||
471 | #define X509V3_F_V2I_EXT_KU 103 | ||
472 | #define X509V3_F_V2I_GENERAL_NAME 117 | ||
473 | #define X509V3_F_V2I_GENERAL_NAMES 118 | ||
474 | #define X509V3_F_V3_GENERIC_EXTENSION 116 | ||
475 | #define X509V3_F_X509V3_ADD_VALUE 105 | ||
476 | #define X509V3_F_X509V3_EXT_ADD 104 | ||
477 | #define X509V3_F_X509V3_EXT_ADD_ALIAS 106 | ||
478 | #define X509V3_F_X509V3_EXT_CONF 107 | ||
479 | #define X509V3_F_X509V3_EXT_I2D 136 | ||
480 | #define X509V3_F_X509V3_GET_VALUE_BOOL 110 | ||
481 | #define X509V3_F_X509V3_PARSE_LIST 109 | ||
482 | |||
483 | /* Reason codes. */ | ||
484 | #define X509V3_R_BAD_IP_ADDRESS 118 | ||
485 | #define X509V3_R_BAD_OBJECT 119 | ||
486 | #define X509V3_R_BN_DEC2BN_ERROR 100 | ||
487 | #define X509V3_R_BN_TO_ASN1_INTEGER_ERROR 101 | ||
488 | #define X509V3_R_DUPLICATE_ZONE_ID 133 | ||
489 | #define X509V3_R_ERROR_CONVERTING_ZONE 131 | ||
490 | #define X509V3_R_ERROR_IN_EXTENSION 128 | ||
491 | #define X509V3_R_EXPECTED_A_SECTION_NAME 137 | ||
492 | #define X509V3_R_EXTENSION_NAME_ERROR 115 | ||
493 | #define X509V3_R_EXTENSION_NOT_FOUND 102 | ||
494 | #define X509V3_R_EXTENSION_SETTING_NOT_SUPPORTED 103 | ||
495 | #define X509V3_R_EXTENSION_VALUE_ERROR 116 | ||
496 | #define X509V3_R_ILLEGAL_HEX_DIGIT 113 | ||
497 | #define X509V3_R_INVALID_BOOLEAN_STRING 104 | ||
498 | #define X509V3_R_INVALID_EXTENSION_STRING 105 | ||
499 | #define X509V3_R_INVALID_NAME 106 | ||
500 | #define X509V3_R_INVALID_NULL_ARGUMENT 107 | ||
501 | #define X509V3_R_INVALID_NULL_NAME 108 | ||
502 | #define X509V3_R_INVALID_NULL_VALUE 109 | ||
503 | #define X509V3_R_INVALID_NUMBER 140 | ||
504 | #define X509V3_R_INVALID_NUMBERS 141 | ||
505 | #define X509V3_R_INVALID_OBJECT_IDENTIFIER 110 | ||
506 | #define X509V3_R_INVALID_OPTION 138 | ||
507 | #define X509V3_R_INVALID_POLICY_IDENTIFIER 134 | ||
508 | #define X509V3_R_INVALID_SECTION 135 | ||
509 | #define X509V3_R_ISSUER_DECODE_ERROR 126 | ||
510 | #define X509V3_R_MISSING_VALUE 124 | ||
511 | #define X509V3_R_NEED_ORGANIZATION_AND_NUMBERS 142 | ||
512 | #define X509V3_R_NO_CONFIG_DATABASE 136 | ||
513 | #define X509V3_R_NO_ISSUER_CERTIFICATE 121 | ||
514 | #define X509V3_R_NO_ISSUER_DETAILS 127 | ||
515 | #define X509V3_R_NO_POLICY_IDENTIFIER 139 | ||
516 | #define X509V3_R_NO_PUBLIC_KEY 114 | ||
517 | #define X509V3_R_NO_SUBJECT_DETAILS 125 | ||
518 | #define X509V3_R_ODD_NUMBER_OF_DIGITS 112 | ||
519 | #define X509V3_R_UNABLE_TO_GET_ISSUER_DETAILS 122 | ||
520 | #define X509V3_R_UNABLE_TO_GET_ISSUER_KEYID 123 | ||
521 | #define X509V3_R_UNKNOWN_BIT_STRING_ARGUMENT 111 | ||
522 | #define X509V3_R_UNKNOWN_EXTENSION 129 | ||
523 | #define X509V3_R_UNKNOWN_EXTENSION_NAME 130 | ||
524 | #define X509V3_R_UNKNOWN_OPTION 120 | ||
525 | #define X509V3_R_UNSUPPORTED_OPTION 117 | ||
526 | #define X509V3_R_USER_TOO_LONG 132 | ||
527 | |||
528 | #ifdef __cplusplus | ||
529 | } | ||
530 | #endif | ||
531 | #endif | ||
532 | |||