2 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
5 /* ====================================================================
6 * Copyright (c) 1999-2003 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/x509v3.h>
64 static GENERAL_NAMES
*v2i_subject_alt(X509V3_EXT_METHOD
*method
, X509V3_CTX
*ctx
, STACK_OF(CONF_VALUE
) *nval
);
65 static GENERAL_NAMES
*v2i_issuer_alt(X509V3_EXT_METHOD
*method
, X509V3_CTX
*ctx
, STACK_OF(CONF_VALUE
) *nval
);
66 static int copy_email(X509V3_CTX
*ctx
, GENERAL_NAMES
*gens
, int move_p
);
67 static int copy_issuer(X509V3_CTX
*ctx
, GENERAL_NAMES
*gens
);
68 static int do_othername(GENERAL_NAME
*gen
, char *value
, X509V3_CTX
*ctx
);
69 static int do_dirname(GENERAL_NAME
*gen
, char *value
, X509V3_CTX
*ctx
);
71 const X509V3_EXT_METHOD v3_alt
[] = {
72 { NID_subject_alt_name
, 0, ASN1_ITEM_ref(GENERAL_NAMES
),
75 (X509V3_EXT_I2V
)i2v_GENERAL_NAMES
,
76 (X509V3_EXT_V2I
)v2i_subject_alt
,
79 { NID_issuer_alt_name
, 0, ASN1_ITEM_ref(GENERAL_NAMES
),
82 (X509V3_EXT_I2V
)i2v_GENERAL_NAMES
,
83 (X509V3_EXT_V2I
)v2i_issuer_alt
,
86 { NID_certificate_issuer
, 0, ASN1_ITEM_ref(GENERAL_NAMES
),
89 (X509V3_EXT_I2V
)i2v_GENERAL_NAMES
,
90 NULL
, NULL
, NULL
, NULL
},
93 STACK_OF(CONF_VALUE
) *i2v_GENERAL_NAMES(X509V3_EXT_METHOD
*method
,
94 GENERAL_NAMES
*gens
, STACK_OF(CONF_VALUE
) *ret
)
98 for(i
= 0; i
< sk_GENERAL_NAME_num(gens
); i
++) {
99 gen
= sk_GENERAL_NAME_value(gens
, i
);
100 ret
= i2v_GENERAL_NAME(method
, gen
, ret
);
102 if(!ret
) return sk_CONF_VALUE_new_null();
106 STACK_OF(CONF_VALUE
) *i2v_GENERAL_NAME(X509V3_EXT_METHOD
*method
,
107 GENERAL_NAME
*gen
, STACK_OF(CONF_VALUE
) *ret
)
110 char oline
[256], htmp
[5];
115 X509V3_add_value("othername","<unsupported>", &ret
);
119 X509V3_add_value("X400Name","<unsupported>", &ret
);
123 X509V3_add_value("EdiPartyName","<unsupported>", &ret
);
127 X509V3_add_value_uchar("email",gen
->d
.ia5
->data
, &ret
);
131 X509V3_add_value_uchar("DNS",gen
->d
.ia5
->data
, &ret
);
135 X509V3_add_value_uchar("URI",gen
->d
.ia5
->data
, &ret
);
139 X509_NAME_oneline(gen
->d
.dirn
, oline
, 256);
140 X509V3_add_value("DirName",oline
, &ret
);
145 if(gen
->d
.ip
->length
== 4)
146 BIO_snprintf(oline
, sizeof oline
,
147 "%d.%d.%d.%d", p
[0], p
[1], p
[2], p
[3]);
148 else if(gen
->d
.ip
->length
== 16)
151 for (i
= 0; i
< 8; i
++)
153 BIO_snprintf(htmp
, sizeof htmp
,
154 "%X", p
[0] << 8 | p
[1]);
163 X509V3_add_value("IP Address","<invalid>", &ret
);
166 X509V3_add_value("IP Address",oline
, &ret
);
170 i2t_ASN1_OBJECT(oline
, 256, gen
->d
.rid
);
171 X509V3_add_value("Registered ID",oline
, &ret
);
177 int GENERAL_NAME_print(BIO
*out
, GENERAL_NAME
*gen
)
184 BIO_printf(out
, "othername:<unsupported>");
188 BIO_printf(out
, "X400Name:<unsupported>");
192 /* Maybe fix this: it is supported now */
193 BIO_printf(out
, "EdiPartyName:<unsupported>");
197 BIO_printf(out
, "email:%s",gen
->d
.ia5
->data
);
201 BIO_printf(out
, "DNS:%s",gen
->d
.ia5
->data
);
205 BIO_printf(out
, "URI:%s",gen
->d
.ia5
->data
);
209 BIO_printf(out
, "DirName: ");
210 X509_NAME_print_ex(out
, gen
->d
.dirn
, 0, XN_FLAG_ONELINE
);
215 if(gen
->d
.ip
->length
== 4)
216 BIO_printf(out
, "IP Address:%d.%d.%d.%d",
217 p
[0], p
[1], p
[2], p
[3]);
218 else if(gen
->d
.ip
->length
== 16)
220 BIO_printf(out
, "IP Address");
221 for (i
= 0; i
< 8; i
++)
223 BIO_printf(out
, ":%X", p
[0] << 8 | p
[1]);
230 BIO_printf(out
,"IP Address:<invalid>");
236 BIO_printf(out
, "Registered ID");
237 i2a_ASN1_OBJECT(out
, gen
->d
.rid
);
243 static GENERAL_NAMES
*v2i_issuer_alt(X509V3_EXT_METHOD
*method
,
244 X509V3_CTX
*ctx
, STACK_OF(CONF_VALUE
) *nval
)
246 GENERAL_NAMES
*gens
= NULL
;
249 if(!(gens
= sk_GENERAL_NAME_new_null())) {
250 X509V3err(X509V3_F_V2I_ISSUER_ALT
,ERR_R_MALLOC_FAILURE
);
253 for(i
= 0; i
< sk_CONF_VALUE_num(nval
); i
++) {
254 cnf
= sk_CONF_VALUE_value(nval
, i
);
255 if(!name_cmp(cnf
->name
, "issuer") && cnf
->value
&&
256 !strcmp(cnf
->value
, "copy")) {
257 if(!copy_issuer(ctx
, gens
)) goto err
;
260 if(!(gen
= v2i_GENERAL_NAME(method
, ctx
, cnf
)))
262 sk_GENERAL_NAME_push(gens
, gen
);
267 sk_GENERAL_NAME_pop_free(gens
, GENERAL_NAME_free
);
271 /* Append subject altname of issuer to issuer alt name of subject */
273 static int copy_issuer(X509V3_CTX
*ctx
, GENERAL_NAMES
*gens
)
279 if(ctx
&& (ctx
->flags
== CTX_TEST
)) return 1;
280 if(!ctx
|| !ctx
->issuer_cert
) {
281 X509V3err(X509V3_F_COPY_ISSUER
,X509V3_R_NO_ISSUER_DETAILS
);
284 i
= X509_get_ext_by_NID(ctx
->issuer_cert
, NID_subject_alt_name
, -1);
286 if(!(ext
= X509_get_ext(ctx
->issuer_cert
, i
)) ||
287 !(ialt
= X509V3_EXT_d2i(ext
)) ) {
288 X509V3err(X509V3_F_COPY_ISSUER
,X509V3_R_ISSUER_DECODE_ERROR
);
292 for(i
= 0; i
< sk_GENERAL_NAME_num(ialt
); i
++) {
293 gen
= sk_GENERAL_NAME_value(ialt
, i
);
294 if(!sk_GENERAL_NAME_push(gens
, gen
)) {
295 X509V3err(X509V3_F_COPY_ISSUER
,ERR_R_MALLOC_FAILURE
);
299 sk_GENERAL_NAME_free(ialt
);
308 static GENERAL_NAMES
*v2i_subject_alt(X509V3_EXT_METHOD
*method
,
309 X509V3_CTX
*ctx
, STACK_OF(CONF_VALUE
) *nval
)
311 GENERAL_NAMES
*gens
= NULL
;
314 if(!(gens
= sk_GENERAL_NAME_new_null())) {
315 X509V3err(X509V3_F_V2I_SUBJECT_ALT
,ERR_R_MALLOC_FAILURE
);
318 for(i
= 0; i
< sk_CONF_VALUE_num(nval
); i
++) {
319 cnf
= sk_CONF_VALUE_value(nval
, i
);
320 if(!name_cmp(cnf
->name
, "email") && cnf
->value
&&
321 !strcmp(cnf
->value
, "copy")) {
322 if(!copy_email(ctx
, gens
, 0)) goto err
;
323 } else if(!name_cmp(cnf
->name
, "email") && cnf
->value
&&
324 !strcmp(cnf
->value
, "move")) {
325 if(!copy_email(ctx
, gens
, 1)) goto err
;
328 if(!(gen
= v2i_GENERAL_NAME(method
, ctx
, cnf
)))
330 sk_GENERAL_NAME_push(gens
, gen
);
335 sk_GENERAL_NAME_pop_free(gens
, GENERAL_NAME_free
);
339 /* Copy any email addresses in a certificate or request to
343 static int copy_email(X509V3_CTX
*ctx
, GENERAL_NAMES
*gens
, int move_p
)
346 ASN1_IA5STRING
*email
= NULL
;
348 GENERAL_NAME
*gen
= NULL
;
350 if(ctx
!= NULL
&& ctx
->flags
== CTX_TEST
)
352 if(!ctx
|| (!ctx
->subject_cert
&& !ctx
->subject_req
)) {
353 X509V3err(X509V3_F_COPY_EMAIL
,X509V3_R_NO_SUBJECT_DETAILS
);
356 /* Find the subject name */
357 if(ctx
->subject_cert
) nm
= X509_get_subject_name(ctx
->subject_cert
);
358 else nm
= X509_REQ_get_subject_name(ctx
->subject_req
);
360 /* Now add any email address(es) to STACK */
362 while((i
= X509_NAME_get_index_by_NID(nm
,
363 NID_pkcs9_emailAddress
, i
)) >= 0) {
364 ne
= X509_NAME_get_entry(nm
, i
);
365 email
= M_ASN1_IA5STRING_dup(X509_NAME_ENTRY_get_data(ne
));
368 X509_NAME_delete_entry(nm
, i
);
369 X509_NAME_ENTRY_free(ne
);
372 if(!email
|| !(gen
= GENERAL_NAME_new())) {
373 X509V3err(X509V3_F_COPY_EMAIL
,ERR_R_MALLOC_FAILURE
);
378 gen
->type
= GEN_EMAIL
;
379 if(!sk_GENERAL_NAME_push(gens
, gen
)) {
380 X509V3err(X509V3_F_COPY_EMAIL
,ERR_R_MALLOC_FAILURE
);
390 GENERAL_NAME_free(gen
);
391 M_ASN1_IA5STRING_free(email
);
396 GENERAL_NAMES
*v2i_GENERAL_NAMES(const X509V3_EXT_METHOD
*method
,
397 X509V3_CTX
*ctx
, STACK_OF(CONF_VALUE
) *nval
)
400 GENERAL_NAMES
*gens
= NULL
;
403 if(!(gens
= sk_GENERAL_NAME_new_null())) {
404 X509V3err(X509V3_F_V2I_GENERAL_NAMES
,ERR_R_MALLOC_FAILURE
);
407 for(i
= 0; i
< sk_CONF_VALUE_num(nval
); i
++) {
408 cnf
= sk_CONF_VALUE_value(nval
, i
);
409 if(!(gen
= v2i_GENERAL_NAME(method
, ctx
, cnf
))) goto err
;
410 sk_GENERAL_NAME_push(gens
, gen
);
414 sk_GENERAL_NAME_pop_free(gens
, GENERAL_NAME_free
);
418 GENERAL_NAME
*v2i_GENERAL_NAME(const X509V3_EXT_METHOD
*method
, X509V3_CTX
*ctx
,
421 return v2i_GENERAL_NAME_ex(NULL
, method
, ctx
, cnf
, 0);
424 GENERAL_NAME
*a2i_GENERAL_NAME(GENERAL_NAME
*out
,
425 const X509V3_EXT_METHOD
*method
, X509V3_CTX
*ctx
,
426 int gen_type
, char *value
, int is_nc
)
429 GENERAL_NAME
*gen
= NULL
;
433 X509V3err(X509V3_F_A2I_GENERAL_NAME
,X509V3_R_MISSING_VALUE
);
441 gen
= GENERAL_NAME_new();
444 X509V3err(X509V3_F_A2I_GENERAL_NAME
,ERR_R_MALLOC_FAILURE
);
460 if(!(obj
= OBJ_txt2obj(value
,0)))
462 X509V3err(X509V3_F_A2I_GENERAL_NAME
,X509V3_R_BAD_OBJECT
);
463 ERR_add_error_data(2, "value=", value
);
472 gen
->d
.ip
= a2i_IPADDRESS_NC(value
);
474 gen
->d
.ip
= a2i_IPADDRESS(value
);
475 if(gen
->d
.ip
== NULL
)
477 X509V3err(X509V3_F_A2I_GENERAL_NAME
,X509V3_R_BAD_IP_ADDRESS
);
478 ERR_add_error_data(2, "value=", value
);
484 if (!do_dirname(gen
, value
, ctx
))
486 X509V3err(X509V3_F_A2I_GENERAL_NAME
,X509V3_R_DIRNAME_ERROR
);
492 if (!do_othername(gen
, value
, ctx
))
494 X509V3err(X509V3_F_A2I_GENERAL_NAME
,X509V3_R_OTHERNAME_ERROR
);
499 X509V3err(X509V3_F_A2I_GENERAL_NAME
,X509V3_R_UNSUPPORTED_TYPE
);
505 if(!(gen
->d
.ia5
= M_ASN1_IA5STRING_new()) ||
506 !ASN1_STRING_set(gen
->d
.ia5
, (unsigned char*)value
,
509 X509V3err(X509V3_F_A2I_GENERAL_NAME
,ERR_R_MALLOC_FAILURE
);
514 gen
->type
= gen_type
;
520 GENERAL_NAME_free(gen
);
524 GENERAL_NAME
*v2i_GENERAL_NAME_ex(GENERAL_NAME
*out
,
525 const X509V3_EXT_METHOD
*method
,
526 X509V3_CTX
*ctx
, CONF_VALUE
*cnf
, int is_nc
)
537 X509V3err(X509V3_F_V2I_GENERAL_NAME_EX
,X509V3_R_MISSING_VALUE
);
541 if(!name_cmp(name
, "email"))
543 else if(!name_cmp(name
, "URI"))
545 else if(!name_cmp(name
, "DNS"))
547 else if(!name_cmp(name
, "RID"))
549 else if(!name_cmp(name
, "IP"))
551 else if(!name_cmp(name
, "dirName"))
553 else if(!name_cmp(name
, "otherName"))
554 type
= GEN_OTHERNAME
;
557 X509V3err(X509V3_F_V2I_GENERAL_NAME_EX
,X509V3_R_UNSUPPORTED_OPTION
);
558 ERR_add_error_data(2, "name=", name
);
562 return a2i_GENERAL_NAME(out
, method
, ctx
, type
, value
, is_nc
);
566 static int do_othername(GENERAL_NAME
*gen
, char *value
, X509V3_CTX
*ctx
)
568 char *objtmp
= NULL
, *p
;
570 if (!(p
= strchr(value
, ';')))
572 if (!(gen
->d
.otherName
= OTHERNAME_new()))
574 /* Free this up because we will overwrite it.
575 * no need to free type_id because it is static
577 ASN1_TYPE_free(gen
->d
.otherName
->value
);
578 if (!(gen
->d
.otherName
->value
= ASN1_generate_v3(p
+ 1, ctx
)))
581 objtmp
= OPENSSL_malloc(objlen
+ 1);
582 strncpy(objtmp
, value
, objlen
);
584 gen
->d
.otherName
->type_id
= OBJ_txt2obj(objtmp
, 0);
585 OPENSSL_free(objtmp
);
586 if (!gen
->d
.otherName
->type_id
)
591 static int do_dirname(GENERAL_NAME
*gen
, char *value
, X509V3_CTX
*ctx
)
594 STACK_OF(CONF_VALUE
) *sk
;
596 if (!(nm
= X509_NAME_new()))
598 sk
= X509V3_get_section(ctx
, value
);
601 X509V3err(X509V3_F_DO_DIRNAME
,X509V3_R_SECTION_NOT_FOUND
);
602 ERR_add_error_data(2, "section=", value
);
606 /* FIXME: should allow other character types... */
607 ret
= X509V3_NAME_from_section(nm
, sk
, MBSTRING_ASC
);
611 X509V3_section_free(ctx
, sk
);