2 /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
5 /* ====================================================================
6 * Copyright (c) 2002 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).
60 #include <openssl/asn1.h>
61 #include <openssl/x509v3.h>
63 #define ASN1_GEN_FLAG 0x10000
64 #define ASN1_GEN_FLAG_IMP (ASN1_GEN_FLAG|1)
65 #define ASN1_GEN_FLAG_EXP (ASN1_GEN_FLAG|2)
66 #define ASN1_GEN_FLAG_TAG (ASN1_GEN_FLAG|3)
67 #define ASN1_GEN_FLAG_BITWRAP (ASN1_GEN_FLAG|4)
68 #define ASN1_GEN_FLAG_OCTWRAP (ASN1_GEN_FLAG|5)
69 #define ASN1_GEN_FLAG_SEQWRAP (ASN1_GEN_FLAG|6)
70 #define ASN1_GEN_FLAG_SETWRAP (ASN1_GEN_FLAG|7)
71 #define ASN1_GEN_FLAG_FORMAT (ASN1_GEN_FLAG|8)
73 #define ASN1_GEN_STR(str,val) {str, sizeof(str) - 1, val}
75 #define ASN1_FLAG_EXP_MAX 20
80 #define ASN1_GEN_FORMAT_ASCII 1
82 #define ASN1_GEN_FORMAT_UTF8 2
84 #define ASN1_GEN_FORMAT_HEX 3
86 #define ASN1_GEN_FORMAT_BITLIST 4
112 tag_exp_type exp_list
[ASN1_FLAG_EXP_MAX
];
116 static int bitstr_cb(const char *elem
, int len
, void *bitstr
);
117 static int asn1_cb(const char *elem
, int len
, void *bitstr
);
118 static int append_exp(tag_exp_arg
*arg
, int exp_tag
, int exp_class
, int exp_constructed
, int exp_pad
, int imp_ok
);
119 static int parse_tagging(const char *vstart
, int vlen
, int *ptag
, int *pclass
);
120 static ASN1_TYPE
*asn1_multi(int utype
, const char *section
, X509V3_CTX
*cnf
);
121 static ASN1_TYPE
*asn1_str2type(const char *str
, int format
, int utype
);
122 static int asn1_str2tag(const char *tagstr
, int len
);
124 ASN1_TYPE
*ASN1_generate_nconf(char *str
, CONF
*nconf
)
129 return ASN1_generate_v3(str
, NULL
);
131 X509V3_set_nconf(&cnf
, nconf
);
132 return ASN1_generate_v3(str
, &cnf
);
135 ASN1_TYPE
*ASN1_generate_v3(char *str
, X509V3_CTX
*cnf
)
138 tag_exp_arg asn1_tags
;
143 unsigned char *orig_der
= NULL
, *new_der
= NULL
;
144 const unsigned char *cpy_start
;
146 const unsigned char *cp
;
149 int hdr_constructed
= 0, hdr_tag
, hdr_class
;
152 asn1_tags
.imp_tag
= -1;
153 asn1_tags
.imp_class
= -1;
154 asn1_tags
.format
= ASN1_GEN_FORMAT_ASCII
;
155 asn1_tags
.exp_count
= 0;
156 if (CONF_parse_list(str
, ',', 1, asn1_cb
, &asn1_tags
) != 0)
159 if ((asn1_tags
.utype
== V_ASN1_SEQUENCE
) || (asn1_tags
.utype
== V_ASN1_SET
))
163 ASN1err(ASN1_F_ASN1_GENERATE_V3
, ASN1_R_SEQUENCE_OR_SET_NEEDS_CONFIG
);
166 ret
= asn1_multi(asn1_tags
.utype
, asn1_tags
.str
, cnf
);
169 ret
= asn1_str2type(asn1_tags
.str
, asn1_tags
.format
, asn1_tags
.utype
);
174 /* If no tagging return base type */
175 if ((asn1_tags
.imp_tag
== -1) && (asn1_tags
.exp_count
== 0))
178 /* Generate the encoding */
179 cpy_len
= i2d_ASN1_TYPE(ret
, &orig_der
);
182 /* Set point to start copying for modified encoding */
183 cpy_start
= orig_der
;
185 /* Do we need IMPLICIT tagging? */
186 if (asn1_tags
.imp_tag
!= -1)
188 /* If IMPLICIT we will replace the underlying tag */
189 /* Skip existing tag+len */
190 r
= ASN1_get_object(&cpy_start
, &hdr_len
, &hdr_tag
, &hdr_class
, cpy_len
);
193 /* Update copy length */
194 cpy_len
-= cpy_start
- orig_der
;
195 /* For IMPLICIT tagging the length should match the
196 * original length and constructed flag should be
201 /* Indefinite length constructed */
206 /* Just retain constructed flag */
207 hdr_constructed
= r
& V_ASN1_CONSTRUCTED
;
208 /* Work out new length with IMPLICIT tag: ignore constructed
209 * because it will mess up if indefinite length
211 len
= ASN1_object_size(0, hdr_len
, asn1_tags
.imp_tag
);
216 /* Work out length in any EXPLICIT, starting from end */
218 for(i
= 0, etmp
= asn1_tags
.exp_list
+ asn1_tags
.exp_count
- 1; i
< asn1_tags
.exp_count
; i
++, etmp
--)
220 /* Content length: number of content octets + any padding */
221 len
+= etmp
->exp_pad
;
223 /* Total object length: length including new header */
224 len
= ASN1_object_size(0, len
, etmp
->exp_tag
);
227 /* Allocate buffer for new encoding */
229 new_der
= OPENSSL_malloc(len
);
233 /* Generate tagged encoding */
237 /* Output explicit tags first */
239 for (i
= 0, etmp
= asn1_tags
.exp_list
; i
< asn1_tags
.exp_count
; i
++, etmp
++)
241 ASN1_put_object(&p
, etmp
->exp_constructed
, etmp
->exp_len
,
242 etmp
->exp_tag
, etmp
->exp_class
);
247 /* If IMPLICIT, output tag */
249 if (asn1_tags
.imp_tag
!= -1)
251 if (asn1_tags
.imp_class
== V_ASN1_UNIVERSAL
252 && (asn1_tags
.imp_tag
== V_ASN1_SEQUENCE
253 || asn1_tags
.imp_tag
== V_ASN1_SET
) )
254 hdr_constructed
= V_ASN1_CONSTRUCTED
;
255 ASN1_put_object(&p
, hdr_constructed
, hdr_len
,
256 asn1_tags
.imp_tag
, asn1_tags
.imp_class
);
259 /* Copy across original encoding */
260 memcpy(p
, cpy_start
, cpy_len
);
264 /* Obtain new ASN1_TYPE structure */
265 ret
= d2i_ASN1_TYPE(NULL
, &cp
, len
);
269 OPENSSL_free(orig_der
);
271 OPENSSL_free(new_der
);
277 static int asn1_cb(const char *elem
, int len
, void *bitstr
)
279 tag_exp_arg
*arg
= bitstr
;
283 const char *p
, *vstart
= NULL
;
285 int tmp_tag
, tmp_class
;
287 for(i
= 0, p
= elem
; i
< len
; p
++, i
++)
289 /* Look for the ':' in name value pairs */
293 vlen
= len
- (vstart
- elem
);
299 utype
= asn1_str2tag(elem
, len
);
303 ASN1err(ASN1_F_ASN1_CB
, ASN1_R_UNKNOWN_TAG
);
304 ERR_add_error_data(2, "tag=", elem
);
308 /* If this is not a modifier mark end of string and exit */
309 if (!(utype
& ASN1_GEN_FLAG
))
313 /* If no value and not end of string, error */
314 if (!vstart
&& elem
[len
])
316 ASN1err(ASN1_F_ASN1_CB
, ASN1_R_MISSING_VALUE
);
325 case ASN1_GEN_FLAG_IMP
:
326 /* Check for illegal multiple IMPLICIT tagging */
327 if (arg
->imp_tag
!= -1)
329 ASN1err(ASN1_F_ASN1_CB
, ASN1_R_ILLEGAL_NESTED_TAGGING
);
332 if (!parse_tagging(vstart
, vlen
, &arg
->imp_tag
, &arg
->imp_class
))
336 case ASN1_GEN_FLAG_EXP
:
338 if (!parse_tagging(vstart
, vlen
, &tmp_tag
, &tmp_class
))
340 if (!append_exp(arg
, tmp_tag
, tmp_class
, 1, 0, 0))
344 case ASN1_GEN_FLAG_SEQWRAP
:
345 if (!append_exp(arg
, V_ASN1_SEQUENCE
, V_ASN1_UNIVERSAL
, 1, 0, 1))
349 case ASN1_GEN_FLAG_SETWRAP
:
350 if (!append_exp(arg
, V_ASN1_SET
, V_ASN1_UNIVERSAL
, 1, 0, 1))
354 case ASN1_GEN_FLAG_BITWRAP
:
355 if (!append_exp(arg
, V_ASN1_BIT_STRING
, V_ASN1_UNIVERSAL
, 0, 1, 1))
359 case ASN1_GEN_FLAG_OCTWRAP
:
360 if (!append_exp(arg
, V_ASN1_OCTET_STRING
, V_ASN1_UNIVERSAL
, 0, 0, 1))
364 case ASN1_GEN_FLAG_FORMAT
:
365 if (!strncmp(vstart
, "ASCII", 5))
366 arg
->format
= ASN1_GEN_FORMAT_ASCII
;
367 else if (!strncmp(vstart
, "UTF8", 4))
368 arg
->format
= ASN1_GEN_FORMAT_UTF8
;
369 else if (!strncmp(vstart
, "HEX", 3))
370 arg
->format
= ASN1_GEN_FORMAT_HEX
;
371 else if (!strncmp(vstart
, "BITLIST", 3))
372 arg
->format
= ASN1_GEN_FORMAT_BITLIST
;
375 ASN1err(ASN1_F_ASN1_CB
, ASN1_R_UNKOWN_FORMAT
);
386 static int parse_tagging(const char *vstart
, int vlen
, int *ptag
, int *pclass
)
393 tag_num
= strtoul(vstart
, &eptr
, 10);
394 /* Check we haven't gone past max length: should be impossible */
395 if (eptr
&& *eptr
&& (eptr
> vstart
+ vlen
))
399 ASN1err(ASN1_F_PARSE_TAGGING
, ASN1_R_INVALID_NUMBER
);
403 /* If we have non numeric characters, parse them */
405 vlen
-= eptr
- vstart
;
414 *pclass
= V_ASN1_UNIVERSAL
;
418 *pclass
= V_ASN1_APPLICATION
;
422 *pclass
= V_ASN1_PRIVATE
;
426 *pclass
= V_ASN1_CONTEXT_SPECIFIC
;
432 ASN1err(ASN1_F_PARSE_TAGGING
, ASN1_R_INVALID_MODIFIER
);
433 ERR_add_error_data(2, "Char=", erch
);
440 *pclass
= V_ASN1_CONTEXT_SPECIFIC
;
446 /* Handle multiple types: SET and SEQUENCE */
448 static ASN1_TYPE
*asn1_multi(int utype
, const char *section
, X509V3_CTX
*cnf
)
450 ASN1_TYPE
*ret
= NULL
;
451 STACK_OF(ASN1_TYPE
) *sk
= NULL
;
452 STACK_OF(CONF_VALUE
) *sect
= NULL
;
453 unsigned char *der
= NULL
;
456 sk
= sk_ASN1_TYPE_new_null();
463 sect
= X509V3_get_section(cnf
, (char *)section
);
466 for (i
= 0; i
< sk_CONF_VALUE_num(sect
); i
++)
468 ASN1_TYPE
*typ
= ASN1_generate_v3(sk_CONF_VALUE_value(sect
, i
)->value
, cnf
);
471 if (!sk_ASN1_TYPE_push(sk
, typ
))
476 /* Now we has a STACK of the components, convert to the correct form */
478 if (utype
== V_ASN1_SET
)
479 derlen
= i2d_ASN1_SET_ANY(sk
, &der
);
481 derlen
= i2d_ASN1_SEQUENCE_ANY(sk
, &der
);
486 if (!(ret
= ASN1_TYPE_new()))
489 if (!(ret
->value
.asn1_string
= ASN1_STRING_type_new(utype
)))
494 ret
->value
.asn1_string
->data
= der
;
495 ret
->value
.asn1_string
->length
= derlen
;
505 sk_ASN1_TYPE_pop_free(sk
, ASN1_TYPE_free
);
507 X509V3_section_free(cnf
, sect
);
512 static int append_exp(tag_exp_arg
*arg
, int exp_tag
, int exp_class
, int exp_constructed
, int exp_pad
, int imp_ok
)
514 tag_exp_type
*exp_tmp
;
515 /* Can only have IMPLICIT if permitted */
516 if ((arg
->imp_tag
!= -1) && !imp_ok
)
518 ASN1err(ASN1_F_APPEND_EXP
, ASN1_R_ILLEGAL_IMPLICIT_TAG
);
522 if (arg
->exp_count
== ASN1_FLAG_EXP_MAX
)
524 ASN1err(ASN1_F_APPEND_EXP
, ASN1_R_DEPTH_EXCEEDED
);
528 exp_tmp
= &arg
->exp_list
[arg
->exp_count
++];
530 /* If IMPLICIT set tag to implicit value then
531 * reset implicit tag since it has been used.
533 if (arg
->imp_tag
!= -1)
535 exp_tmp
->exp_tag
= arg
->imp_tag
;
536 exp_tmp
->exp_class
= arg
->imp_class
;
542 exp_tmp
->exp_tag
= exp_tag
;
543 exp_tmp
->exp_class
= exp_class
;
545 exp_tmp
->exp_constructed
= exp_constructed
;
546 exp_tmp
->exp_pad
= exp_pad
;
552 static int asn1_str2tag(const char *tagstr
, int len
)
555 static const struct tag_name_st
*tntmp
, tnst
[] = {
556 ASN1_GEN_STR("BOOL", V_ASN1_BOOLEAN
),
557 ASN1_GEN_STR("BOOLEAN", V_ASN1_BOOLEAN
),
558 ASN1_GEN_STR("NULL", V_ASN1_NULL
),
559 ASN1_GEN_STR("INT", V_ASN1_INTEGER
),
560 ASN1_GEN_STR("INTEGER", V_ASN1_INTEGER
),
561 ASN1_GEN_STR("ENUM", V_ASN1_ENUMERATED
),
562 ASN1_GEN_STR("ENUMERATED", V_ASN1_ENUMERATED
),
563 ASN1_GEN_STR("OID", V_ASN1_OBJECT
),
564 ASN1_GEN_STR("OBJECT", V_ASN1_OBJECT
),
565 ASN1_GEN_STR("UTCTIME", V_ASN1_UTCTIME
),
566 ASN1_GEN_STR("UTC", V_ASN1_UTCTIME
),
567 ASN1_GEN_STR("GENERALIZEDTIME", V_ASN1_GENERALIZEDTIME
),
568 ASN1_GEN_STR("GENTIME", V_ASN1_GENERALIZEDTIME
),
569 ASN1_GEN_STR("OCT", V_ASN1_OCTET_STRING
),
570 ASN1_GEN_STR("OCTETSTRING", V_ASN1_OCTET_STRING
),
571 ASN1_GEN_STR("BITSTR", V_ASN1_BIT_STRING
),
572 ASN1_GEN_STR("BITSTRING", V_ASN1_BIT_STRING
),
573 ASN1_GEN_STR("UNIVERSALSTRING", V_ASN1_UNIVERSALSTRING
),
574 ASN1_GEN_STR("UNIV", V_ASN1_UNIVERSALSTRING
),
575 ASN1_GEN_STR("IA5", V_ASN1_IA5STRING
),
576 ASN1_GEN_STR("IA5STRING", V_ASN1_IA5STRING
),
577 ASN1_GEN_STR("UTF8", V_ASN1_UTF8STRING
),
578 ASN1_GEN_STR("UTF8String", V_ASN1_UTF8STRING
),
579 ASN1_GEN_STR("BMP", V_ASN1_BMPSTRING
),
580 ASN1_GEN_STR("BMPSTRING", V_ASN1_BMPSTRING
),
581 ASN1_GEN_STR("VISIBLESTRING", V_ASN1_VISIBLESTRING
),
582 ASN1_GEN_STR("VISIBLE", V_ASN1_VISIBLESTRING
),
583 ASN1_GEN_STR("PRINTABLESTRING", V_ASN1_PRINTABLESTRING
),
584 ASN1_GEN_STR("PRINTABLE", V_ASN1_PRINTABLESTRING
),
585 ASN1_GEN_STR("T61", V_ASN1_T61STRING
),
586 ASN1_GEN_STR("T61STRING", V_ASN1_T61STRING
),
587 ASN1_GEN_STR("TELETEXSTRING", V_ASN1_T61STRING
),
588 ASN1_GEN_STR("GeneralString", V_ASN1_GENERALSTRING
),
589 ASN1_GEN_STR("GENSTR", V_ASN1_GENERALSTRING
),
590 ASN1_GEN_STR("NUMERIC", V_ASN1_NUMERICSTRING
),
591 ASN1_GEN_STR("NUMERICSTRING", V_ASN1_NUMERICSTRING
),
594 ASN1_GEN_STR("SEQUENCE", V_ASN1_SEQUENCE
),
595 ASN1_GEN_STR("SEQ", V_ASN1_SEQUENCE
),
596 ASN1_GEN_STR("SET", V_ASN1_SET
),
599 ASN1_GEN_STR("EXP", ASN1_GEN_FLAG_EXP
),
600 ASN1_GEN_STR("EXPLICIT", ASN1_GEN_FLAG_EXP
),
602 ASN1_GEN_STR("IMP", ASN1_GEN_FLAG_IMP
),
603 ASN1_GEN_STR("IMPLICIT", ASN1_GEN_FLAG_IMP
),
604 /* OCTET STRING wrapper */
605 ASN1_GEN_STR("OCTWRAP", ASN1_GEN_FLAG_OCTWRAP
),
606 /* SEQUENCE wrapper */
607 ASN1_GEN_STR("SEQWRAP", ASN1_GEN_FLAG_SEQWRAP
),
609 ASN1_GEN_STR("SETWRAP", ASN1_GEN_FLAG_SETWRAP
),
610 /* BIT STRING wrapper */
611 ASN1_GEN_STR("BITWRAP", ASN1_GEN_FLAG_BITWRAP
),
612 ASN1_GEN_STR("FORM", ASN1_GEN_FLAG_FORMAT
),
613 ASN1_GEN_STR("FORMAT", ASN1_GEN_FLAG_FORMAT
),
617 len
= strlen(tagstr
);
620 for (i
= 0; i
< sizeof(tnst
) / sizeof(struct tag_name_st
); i
++, tntmp
++)
622 if ((len
== tntmp
->len
) && !strncmp(tntmp
->strnam
, tagstr
, len
))
629 static ASN1_TYPE
*asn1_str2type(const char *str
, int format
, int utype
)
631 ASN1_TYPE
*atmp
= NULL
;
635 unsigned char *rdata
;
640 if (!(atmp
= ASN1_TYPE_new()))
642 ASN1err(ASN1_F_ASN1_STR2TYPE
, ERR_R_MALLOC_FAILURE
);
655 ASN1err(ASN1_F_ASN1_STR2TYPE
, ASN1_R_ILLEGAL_NULL_VALUE
);
661 if (format
!= ASN1_GEN_FORMAT_ASCII
)
663 ASN1err(ASN1_F_ASN1_STR2TYPE
, ASN1_R_NOT_ASCII_FORMAT
);
668 vtmp
.value
= (char *)str
;
669 if (!X509V3_get_value_bool(&vtmp
, &atmp
->value
.boolean
))
671 ASN1err(ASN1_F_ASN1_STR2TYPE
, ASN1_R_ILLEGAL_BOOLEAN
);
677 case V_ASN1_ENUMERATED
:
678 if (format
!= ASN1_GEN_FORMAT_ASCII
)
680 ASN1err(ASN1_F_ASN1_STR2TYPE
, ASN1_R_INTEGER_NOT_ASCII_FORMAT
);
683 if (!(atmp
->value
.integer
= s2i_ASN1_INTEGER(NULL
, (char *)str
)))
685 ASN1err(ASN1_F_ASN1_STR2TYPE
, ASN1_R_ILLEGAL_INTEGER
);
691 if (format
!= ASN1_GEN_FORMAT_ASCII
)
693 ASN1err(ASN1_F_ASN1_STR2TYPE
, ASN1_R_OBJECT_NOT_ASCII_FORMAT
);
696 if (!(atmp
->value
.object
= OBJ_txt2obj(str
, 0)))
698 ASN1err(ASN1_F_ASN1_STR2TYPE
, ASN1_R_ILLEGAL_OBJECT
);
704 case V_ASN1_GENERALIZEDTIME
:
705 if (format
!= ASN1_GEN_FORMAT_ASCII
)
707 ASN1err(ASN1_F_ASN1_STR2TYPE
, ASN1_R_TIME_NOT_ASCII_FORMAT
);
710 if (!(atmp
->value
.asn1_string
= ASN1_STRING_new()))
712 ASN1err(ASN1_F_ASN1_STR2TYPE
, ERR_R_MALLOC_FAILURE
);
715 if (!ASN1_STRING_set(atmp
->value
.asn1_string
, str
, -1))
717 ASN1err(ASN1_F_ASN1_STR2TYPE
, ERR_R_MALLOC_FAILURE
);
720 atmp
->value
.asn1_string
->type
= utype
;
721 if (!ASN1_TIME_check(atmp
->value
.asn1_string
))
723 ASN1err(ASN1_F_ASN1_STR2TYPE
, ASN1_R_ILLEGAL_TIME_VALUE
);
729 case V_ASN1_BMPSTRING
:
730 case V_ASN1_PRINTABLESTRING
:
731 case V_ASN1_IA5STRING
:
732 case V_ASN1_T61STRING
:
733 case V_ASN1_UTF8STRING
:
734 case V_ASN1_VISIBLESTRING
:
735 case V_ASN1_UNIVERSALSTRING
:
736 case V_ASN1_GENERALSTRING
:
737 case V_ASN1_NUMERICSTRING
:
739 if (format
== ASN1_GEN_FORMAT_ASCII
)
740 format
= MBSTRING_ASC
;
741 else if (format
== ASN1_GEN_FORMAT_UTF8
)
742 format
= MBSTRING_UTF8
;
745 ASN1err(ASN1_F_ASN1_STR2TYPE
, ASN1_R_ILLEGAL_FORMAT
);
750 if (ASN1_mbstring_copy(&atmp
->value
.asn1_string
, (unsigned char *)str
,
751 -1, format
, ASN1_tag2bit(utype
)) <= 0)
753 ASN1err(ASN1_F_ASN1_STR2TYPE
, ERR_R_MALLOC_FAILURE
);
760 case V_ASN1_BIT_STRING
:
762 case V_ASN1_OCTET_STRING
:
764 if (!(atmp
->value
.asn1_string
= ASN1_STRING_new()))
766 ASN1err(ASN1_F_ASN1_STR2TYPE
, ERR_R_MALLOC_FAILURE
);
770 if (format
== ASN1_GEN_FORMAT_HEX
)
773 if (!(rdata
= string_to_hex((char *)str
, &rdlen
)))
775 ASN1err(ASN1_F_ASN1_STR2TYPE
, ASN1_R_ILLEGAL_HEX
);
779 atmp
->value
.asn1_string
->data
= rdata
;
780 atmp
->value
.asn1_string
->length
= rdlen
;
781 atmp
->value
.asn1_string
->type
= utype
;
784 else if (format
== ASN1_GEN_FORMAT_ASCII
)
785 ASN1_STRING_set(atmp
->value
.asn1_string
, str
, -1);
786 else if ((format
== ASN1_GEN_FORMAT_BITLIST
) && (utype
== V_ASN1_BIT_STRING
))
788 if (!CONF_parse_list(str
, ',', 1, bitstr_cb
, atmp
->value
.bit_string
))
790 ASN1err(ASN1_F_ASN1_STR2TYPE
, ASN1_R_LIST_ERROR
);
798 ASN1err(ASN1_F_ASN1_STR2TYPE
, ASN1_R_ILLEGAL_BITSTRING_FORMAT
);
802 if ((utype
== V_ASN1_BIT_STRING
) && no_unused
)
804 atmp
->value
.asn1_string
->flags
805 &= ~(ASN1_STRING_FLAG_BITS_LEFT
|0x07);
806 atmp
->value
.asn1_string
->flags
807 |= ASN1_STRING_FLAG_BITS_LEFT
;
814 ASN1err(ASN1_F_ASN1_STR2TYPE
, ASN1_R_UNSUPPORTED_TYPE
);
825 ERR_add_error_data(2, "string=", str
);
828 ASN1_TYPE_free(atmp
);
833 static int bitstr_cb(const char *elem
, int len
, void *bitstr
)
839 bitnum
= strtoul(elem
, &eptr
, 10);
840 if (eptr
&& *eptr
&& (eptr
!= elem
+ len
))
844 ASN1err(ASN1_F_BITSTR_CB
, ASN1_R_INVALID_NUMBER
);
847 if (!ASN1_BIT_STRING_set_bit(bitstr
, bitnum
, 1))
849 ASN1err(ASN1_F_BITSTR_CB
, ERR_R_MALLOC_FAILURE
);