2 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
5 /* ====================================================================
6 * Copyright (c) 1999-2004 The OpenSSL Project. All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
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
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/)"
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.
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.
34 * 6. Redistributions of any form whatsoever must retain the following
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
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 * ====================================================================
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).
61 #include <openssl/conf.h>
62 #include <openssl/asn1.h>
63 #include <openssl/asn1t.h>
64 #include <openssl/x509v3.h>
68 /* Certificate policies extension support: this one is a bit complex... */
70 static int i2r_certpol(X509V3_EXT_METHOD
*method
, STACK_OF(POLICYINFO
) *pol
, BIO
*out
, int indent
);
71 static STACK_OF(POLICYINFO
) *r2i_certpol(X509V3_EXT_METHOD
*method
, X509V3_CTX
*ctx
, char *value
);
72 static void print_qualifiers(BIO
*out
, STACK_OF(POLICYQUALINFO
) *quals
, int indent
);
73 static void print_notice(BIO
*out
, USERNOTICE
*notice
, int indent
);
74 static POLICYINFO
*policy_section(X509V3_CTX
*ctx
,
75 STACK_OF(CONF_VALUE
) *polstrs
, int ia5org
);
76 static POLICYQUALINFO
*notice_section(X509V3_CTX
*ctx
,
77 STACK_OF(CONF_VALUE
) *unot
, int ia5org
);
78 static int nref_nos(STACK_OF(ASN1_INTEGER
) *nnums
, STACK_OF(CONF_VALUE
) *nos
);
80 const X509V3_EXT_METHOD v3_cpols
= {
81 NID_certificate_policies
, 0,ASN1_ITEM_ref(CERTIFICATEPOLICIES
),
85 (X509V3_EXT_I2R
)i2r_certpol
,
86 (X509V3_EXT_R2I
)r2i_certpol
,
90 ASN1_ITEM_TEMPLATE(CERTIFICATEPOLICIES
) =
91 ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SEQUENCE_OF
, 0, CERTIFICATEPOLICIES
, POLICYINFO
)
92 ASN1_ITEM_TEMPLATE_END(CERTIFICATEPOLICIES
)
94 IMPLEMENT_ASN1_FUNCTIONS(CERTIFICATEPOLICIES
)
96 ASN1_SEQUENCE(POLICYINFO
) = {
97 ASN1_SIMPLE(POLICYINFO
, policyid
, ASN1_OBJECT
),
98 ASN1_SEQUENCE_OF_OPT(POLICYINFO
, qualifiers
, POLICYQUALINFO
)
99 } ASN1_SEQUENCE_END(POLICYINFO
)
101 IMPLEMENT_ASN1_FUNCTIONS(POLICYINFO
)
103 ASN1_ADB_TEMPLATE(policydefault
) = ASN1_SIMPLE(POLICYQUALINFO
, d
.other
, ASN1_ANY
);
105 ASN1_ADB(POLICYQUALINFO
) = {
106 ADB_ENTRY(NID_id_qt_cps
, ASN1_SIMPLE(POLICYQUALINFO
, d
.cpsuri
, ASN1_IA5STRING
)),
107 ADB_ENTRY(NID_id_qt_unotice
, ASN1_SIMPLE(POLICYQUALINFO
, d
.usernotice
, USERNOTICE
))
108 } ASN1_ADB_END(POLICYQUALINFO
, 0, pqualid
, 0, &policydefault_tt
, NULL
);
110 ASN1_SEQUENCE(POLICYQUALINFO
) = {
111 ASN1_SIMPLE(POLICYQUALINFO
, pqualid
, ASN1_OBJECT
),
112 ASN1_ADB_OBJECT(POLICYQUALINFO
)
113 } ASN1_SEQUENCE_END(POLICYQUALINFO
)
115 IMPLEMENT_ASN1_FUNCTIONS(POLICYQUALINFO
)
117 ASN1_SEQUENCE(USERNOTICE
) = {
118 ASN1_OPT(USERNOTICE
, noticeref
, NOTICEREF
),
119 ASN1_OPT(USERNOTICE
, exptext
, DISPLAYTEXT
)
120 } ASN1_SEQUENCE_END(USERNOTICE
)
122 IMPLEMENT_ASN1_FUNCTIONS(USERNOTICE
)
124 ASN1_SEQUENCE(NOTICEREF
) = {
125 ASN1_SIMPLE(NOTICEREF
, organization
, DISPLAYTEXT
),
126 ASN1_SEQUENCE_OF(NOTICEREF
, noticenos
, ASN1_INTEGER
)
127 } ASN1_SEQUENCE_END(NOTICEREF
)
129 IMPLEMENT_ASN1_FUNCTIONS(NOTICEREF
)
131 static STACK_OF(POLICYINFO
) *r2i_certpol(X509V3_EXT_METHOD
*method
,
132 X509V3_CTX
*ctx
, char *value
)
134 STACK_OF(POLICYINFO
) *pols
= NULL
;
138 STACK_OF(CONF_VALUE
) *vals
;
141 pols
= sk_POLICYINFO_new_null();
143 X509V3err(X509V3_F_R2I_CERTPOL
, ERR_R_MALLOC_FAILURE
);
146 vals
= X509V3_parse_list(value
);
148 X509V3err(X509V3_F_R2I_CERTPOL
, ERR_R_X509V3_LIB
);
152 for(i
= 0; i
< sk_CONF_VALUE_num(vals
); i
++) {
153 cnf
= sk_CONF_VALUE_value(vals
, i
);
154 if(cnf
->value
|| !cnf
->name
) {
155 X509V3err(X509V3_F_R2I_CERTPOL
,X509V3_R_INVALID_POLICY_IDENTIFIER
);
156 X509V3_conf_err(cnf
);
160 if(!strcmp(pstr
,"ia5org")) {
163 } else if(*pstr
== '@') {
164 STACK_OF(CONF_VALUE
) *polsect
;
165 polsect
= X509V3_get_section(ctx
, pstr
+ 1);
167 X509V3err(X509V3_F_R2I_CERTPOL
,X509V3_R_INVALID_SECTION
);
169 X509V3_conf_err(cnf
);
172 pol
= policy_section(ctx
, polsect
, ia5org
);
173 X509V3_section_free(ctx
, polsect
);
176 if(!(pobj
= OBJ_txt2obj(cnf
->name
, 0))) {
177 X509V3err(X509V3_F_R2I_CERTPOL
,X509V3_R_INVALID_OBJECT_IDENTIFIER
);
178 X509V3_conf_err(cnf
);
181 pol
= POLICYINFO_new();
182 pol
->policyid
= pobj
;
184 if (!sk_POLICYINFO_push(pols
, pol
)){
185 POLICYINFO_free(pol
);
186 X509V3err(X509V3_F_R2I_CERTPOL
, ERR_R_MALLOC_FAILURE
);
190 sk_CONF_VALUE_pop_free(vals
, X509V3_conf_free
);
193 sk_CONF_VALUE_pop_free(vals
, X509V3_conf_free
);
194 sk_POLICYINFO_pop_free(pols
, POLICYINFO_free
);
198 static POLICYINFO
*policy_section(X509V3_CTX
*ctx
,
199 STACK_OF(CONF_VALUE
) *polstrs
, int ia5org
)
204 POLICYQUALINFO
*qual
;
205 if(!(pol
= POLICYINFO_new())) goto merr
;
206 for(i
= 0; i
< sk_CONF_VALUE_num(polstrs
); i
++) {
207 cnf
= sk_CONF_VALUE_value(polstrs
, i
);
208 if(!strcmp(cnf
->name
, "policyIdentifier")) {
210 if(!(pobj
= OBJ_txt2obj(cnf
->value
, 0))) {
211 X509V3err(X509V3_F_POLICY_SECTION
,X509V3_R_INVALID_OBJECT_IDENTIFIER
);
212 X509V3_conf_err(cnf
);
215 pol
->policyid
= pobj
;
217 } else if(!name_cmp(cnf
->name
, "CPS")) {
218 if(!pol
->qualifiers
) pol
->qualifiers
=
219 sk_POLICYQUALINFO_new_null();
220 if(!(qual
= POLICYQUALINFO_new())) goto merr
;
221 if(!sk_POLICYQUALINFO_push(pol
->qualifiers
, qual
))
223 qual
->pqualid
= OBJ_nid2obj(NID_id_qt_cps
);
224 qual
->d
.cpsuri
= M_ASN1_IA5STRING_new();
225 if(!ASN1_STRING_set(qual
->d
.cpsuri
, cnf
->value
,
226 strlen(cnf
->value
))) goto merr
;
227 } else if(!name_cmp(cnf
->name
, "userNotice")) {
228 STACK_OF(CONF_VALUE
) *unot
;
229 if(*cnf
->value
!= '@') {
230 X509V3err(X509V3_F_POLICY_SECTION
,X509V3_R_EXPECTED_A_SECTION_NAME
);
231 X509V3_conf_err(cnf
);
234 unot
= X509V3_get_section(ctx
, cnf
->value
+ 1);
236 X509V3err(X509V3_F_POLICY_SECTION
,X509V3_R_INVALID_SECTION
);
238 X509V3_conf_err(cnf
);
241 qual
= notice_section(ctx
, unot
, ia5org
);
242 X509V3_section_free(ctx
, unot
);
244 if(!pol
->qualifiers
) pol
->qualifiers
=
245 sk_POLICYQUALINFO_new_null();
246 if(!sk_POLICYQUALINFO_push(pol
->qualifiers
, qual
))
249 X509V3err(X509V3_F_POLICY_SECTION
,X509V3_R_INVALID_OPTION
);
251 X509V3_conf_err(cnf
);
256 X509V3err(X509V3_F_POLICY_SECTION
,X509V3_R_NO_POLICY_IDENTIFIER
);
263 X509V3err(X509V3_F_POLICY_SECTION
,ERR_R_MALLOC_FAILURE
);
266 POLICYINFO_free(pol
);
272 static POLICYQUALINFO
*notice_section(X509V3_CTX
*ctx
,
273 STACK_OF(CONF_VALUE
) *unot
, int ia5org
)
278 POLICYQUALINFO
*qual
;
279 if(!(qual
= POLICYQUALINFO_new())) goto merr
;
280 qual
->pqualid
= OBJ_nid2obj(NID_id_qt_unotice
);
281 if(!(not = USERNOTICE_new())) goto merr
;
282 qual
->d
.usernotice
= not;
283 for(i
= 0; i
< sk_CONF_VALUE_num(unot
); i
++) {
284 cnf
= sk_CONF_VALUE_value(unot
, i
);
285 if(!strcmp(cnf
->name
, "explicitText")) {
286 not->exptext
= M_ASN1_VISIBLESTRING_new();
287 if(!ASN1_STRING_set(not->exptext
, cnf
->value
,
288 strlen(cnf
->value
))) goto merr
;
289 } else if(!strcmp(cnf
->name
, "organization")) {
291 if(!not->noticeref
) {
292 if(!(nref
= NOTICEREF_new())) goto merr
;
293 not->noticeref
= nref
;
294 } else nref
= not->noticeref
;
295 if(ia5org
) nref
->organization
->type
= V_ASN1_IA5STRING
;
296 else nref
->organization
->type
= V_ASN1_VISIBLESTRING
;
297 if(!ASN1_STRING_set(nref
->organization
, cnf
->value
,
298 strlen(cnf
->value
))) goto merr
;
299 } else if(!strcmp(cnf
->name
, "noticeNumbers")) {
301 STACK_OF(CONF_VALUE
) *nos
;
302 if(!not->noticeref
) {
303 if(!(nref
= NOTICEREF_new())) goto merr
;
304 not->noticeref
= nref
;
305 } else nref
= not->noticeref
;
306 nos
= X509V3_parse_list(cnf
->value
);
307 if(!nos
|| !sk_CONF_VALUE_num(nos
)) {
308 X509V3err(X509V3_F_NOTICE_SECTION
,X509V3_R_INVALID_NUMBERS
);
309 X509V3_conf_err(cnf
);
312 ret
= nref_nos(nref
->noticenos
, nos
);
313 sk_CONF_VALUE_pop_free(nos
, X509V3_conf_free
);
317 X509V3err(X509V3_F_NOTICE_SECTION
,X509V3_R_INVALID_OPTION
);
318 X509V3_conf_err(cnf
);
324 (!not->noticeref
->noticenos
|| !not->noticeref
->organization
)) {
325 X509V3err(X509V3_F_NOTICE_SECTION
,X509V3_R_NEED_ORGANIZATION_AND_NUMBERS
);
332 X509V3err(X509V3_F_NOTICE_SECTION
,ERR_R_MALLOC_FAILURE
);
335 POLICYQUALINFO_free(qual
);
339 static int nref_nos(STACK_OF(ASN1_INTEGER
) *nnums
, STACK_OF(CONF_VALUE
) *nos
)
346 for(i
= 0; i
< sk_CONF_VALUE_num(nos
); i
++) {
347 cnf
= sk_CONF_VALUE_value(nos
, i
);
348 if(!(aint
= s2i_ASN1_INTEGER(NULL
, cnf
->name
))) {
349 X509V3err(X509V3_F_NREF_NOS
,X509V3_R_INVALID_NUMBER
);
352 if(!sk_ASN1_INTEGER_push(nnums
, aint
)) goto merr
;
357 X509V3err(X509V3_F_NREF_NOS
,ERR_R_MALLOC_FAILURE
);
360 sk_ASN1_INTEGER_pop_free(nnums
, ASN1_STRING_free
);
365 static int i2r_certpol(X509V3_EXT_METHOD
*method
, STACK_OF(POLICYINFO
) *pol
,
366 BIO
*out
, int indent
)
370 /* First print out the policy OIDs */
371 for(i
= 0; i
< sk_POLICYINFO_num(pol
); i
++) {
372 pinfo
= sk_POLICYINFO_value(pol
, i
);
373 BIO_printf(out
, "%*sPolicy: ", indent
, "");
374 i2a_ASN1_OBJECT(out
, pinfo
->policyid
);
376 if(pinfo
->qualifiers
)
377 print_qualifiers(out
, pinfo
->qualifiers
, indent
+ 2);
382 static void print_qualifiers(BIO
*out
, STACK_OF(POLICYQUALINFO
) *quals
,
385 POLICYQUALINFO
*qualinfo
;
387 for(i
= 0; i
< sk_POLICYQUALINFO_num(quals
); i
++) {
388 qualinfo
= sk_POLICYQUALINFO_value(quals
, i
);
389 switch(OBJ_obj2nid(qualinfo
->pqualid
))
392 BIO_printf(out
, "%*sCPS: %s\n", indent
, "",
393 qualinfo
->d
.cpsuri
->data
);
396 case NID_id_qt_unotice
:
397 BIO_printf(out
, "%*sUser Notice:\n", indent
, "");
398 print_notice(out
, qualinfo
->d
.usernotice
, indent
+ 2);
402 BIO_printf(out
, "%*sUnknown Qualifier: ",
405 i2a_ASN1_OBJECT(out
, qualinfo
->pqualid
);
412 static void print_notice(BIO
*out
, USERNOTICE
*notice
, int indent
)
415 if(notice
->noticeref
) {
417 ref
= notice
->noticeref
;
418 BIO_printf(out
, "%*sOrganization: %s\n", indent
, "",
419 ref
->organization
->data
);
420 BIO_printf(out
, "%*sNumber%s: ", indent
, "",
421 sk_ASN1_INTEGER_num(ref
->noticenos
) > 1 ? "s" : "");
422 for(i
= 0; i
< sk_ASN1_INTEGER_num(ref
->noticenos
); i
++) {
425 num
= sk_ASN1_INTEGER_value(ref
->noticenos
, i
);
426 if(i
) BIO_puts(out
, ", ");
427 tmp
= i2s_ASN1_INTEGER(NULL
, num
);
434 BIO_printf(out
, "%*sExplicit Text: %s\n", indent
, "",
435 notice
->exptext
->data
);
438 void X509_POLICY_NODE_print(BIO
*out
, X509_POLICY_NODE
*node
, int indent
)
440 const X509_POLICY_DATA
*dat
= node
->data
;
442 BIO_printf(out
, "%*sPolicy: ", indent
, "");
444 i2a_ASN1_OBJECT(out
, dat
->valid_policy
);
446 BIO_printf(out
, "%*s%s\n", indent
+ 2, "",
447 node_data_critical(dat
) ? "Critical" : "Non Critical");
448 if (dat
->qualifier_set
)
449 print_qualifiers(out
, dat
->qualifier_set
, indent
+ 2);
451 BIO_printf(out
, "%*sNo Qualifiers\n", indent
+ 2, "");
455 IMPLEMENT_STACK_OF(X509_POLICY_NODE
)
456 IMPLEMENT_STACK_OF(X509_POLICY_DATA
)