3 * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project
6 /* ====================================================================
7 * Copyright (c) 2002 The OpenSSL Project. All rights reserved.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in
18 * the documentation and/or other materials provided with the
21 * 3. All advertising materials mentioning features or use of this
22 * software must display the following acknowledgment:
23 * "This product includes software developed by the OpenSSL Project
24 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
26 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
27 * endorse or promote products derived from this software without
28 * prior written permission. For written permission, please contact
29 * licensing@OpenSSL.org.
31 * 5. Products derived from this software may not be called "OpenSSL"
32 * nor may "OpenSSL" appear in their names without prior written
33 * permission of the OpenSSL Project.
35 * 6. Redistributions of any form whatsoever must retain the following
37 * "This product includes software developed by the OpenSSL Project
38 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
40 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
41 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
43 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
44 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
45 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
46 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
47 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
50 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
51 * OF THE POSSIBILITY OF SUCH DAMAGE.
52 * ====================================================================
54 * This product includes cryptographic software written by Eric Young
55 * (eay@cryptsoft.com). This product includes software written by Tim
56 * Hudson (tjh@cryptsoft.com).
61 #include <openssl/asn1.h>
62 #include <openssl/x509v3.h>
64 #define ASN1_GEN_FLAG 0x10000
65 #define ASN1_GEN_FLAG_IMP (ASN1_GEN_FLAG|1)
66 #define ASN1_GEN_FLAG_EXP (ASN1_GEN_FLAG|2)
67 #define ASN1_GEN_FLAG_TAG (ASN1_GEN_FLAG|3)
68 #define ASN1_GEN_FLAG_BITWRAP (ASN1_GEN_FLAG|4)
69 #define ASN1_GEN_FLAG_OCTWRAP (ASN1_GEN_FLAG|5)
70 #define ASN1_GEN_FLAG_SEQWRAP (ASN1_GEN_FLAG|6)
71 #define ASN1_GEN_FLAG_SETWRAP (ASN1_GEN_FLAG|7)
72 #define ASN1_GEN_FLAG_FORMAT (ASN1_GEN_FLAG|8)
74 #define ASN1_GEN_STR(str,val) {str, sizeof(str) - 1, val}
76 #define ASN1_FLAG_EXP_MAX 20
77 /* Maximum number of nested sequences */
78 #define ASN1_GEN_SEQ_MAX_DEPTH 50
83 #define ASN1_GEN_FORMAT_ASCII 1
85 #define ASN1_GEN_FORMAT_UTF8 2
87 #define ASN1_GEN_FORMAT_HEX 3
89 #define ASN1_GEN_FORMAT_BITLIST 4
111 tag_exp_type exp_list[ASN1_FLAG_EXP_MAX];
115 static ASN1_TYPE *generate_v3(char *str, X509V3_CTX *cnf, int depth,
117 static int bitstr_cb(const char *elem, int len, void *bitstr);
118 static int asn1_cb(const char *elem, int len, void *bitstr);
119 static int append_exp(tag_exp_arg *arg, int exp_tag, int exp_class,
120 int exp_constructed, int exp_pad, int imp_ok);
121 static int parse_tagging(const char *vstart, int vlen, int *ptag,
123 static ASN1_TYPE *asn1_multi(int utype, const char *section, X509V3_CTX *cnf,
124 int depth, int *perr);
125 static ASN1_TYPE *asn1_str2type(const char *str, int format, int utype);
126 static int asn1_str2tag(const char *tagstr, int len);
128 ASN1_TYPE *ASN1_generate_nconf(char *str, CONF *nconf)
133 return ASN1_generate_v3(str, NULL);
135 X509V3_set_nconf(&cnf, nconf);
136 return ASN1_generate_v3(str, &cnf);
139 ASN1_TYPE *ASN1_generate_v3(char *str, X509V3_CTX *cnf)
142 ASN1_TYPE *ret = generate_v3(str, cnf, 0, &err);
144 ASN1err(ASN1_F_ASN1_GENERATE_V3, err);
148 static ASN1_TYPE *generate_v3(char *str, X509V3_CTX *cnf, int depth,
152 tag_exp_arg asn1_tags;
157 unsigned char *orig_der = NULL, *new_der = NULL;
158 const unsigned char *cpy_start;
160 const unsigned char *cp;
163 int hdr_constructed = 0, hdr_tag, hdr_class;
166 asn1_tags.imp_tag = -1;
167 asn1_tags.imp_class = -1;
168 asn1_tags.format = ASN1_GEN_FORMAT_ASCII;
169 asn1_tags.exp_count = 0;
170 if (CONF_parse_list(str, ',', 1, asn1_cb, &asn1_tags) != 0)
173 if ((asn1_tags.utype == V_ASN1_SEQUENCE)
174 || (asn1_tags.utype == V_ASN1_SET)) {
176 *perr = ASN1_R_SEQUENCE_OR_SET_NEEDS_CONFIG;
179 if (depth >= ASN1_GEN_SEQ_MAX_DEPTH) {
180 *perr = ASN1_R_ILLEGAL_NESTED_TAGGING;
183 ret = asn1_multi(asn1_tags.utype, asn1_tags.str, cnf, depth, perr);
185 ret = asn1_str2type(asn1_tags.str, asn1_tags.format, asn1_tags.utype);
190 /* If no tagging return base type */
191 if ((asn1_tags.imp_tag == -1) && (asn1_tags.exp_count == 0))
194 /* Generate the encoding */
195 cpy_len = i2d_ASN1_TYPE(ret, &orig_der);
198 /* Set point to start copying for modified encoding */
199 cpy_start = orig_der;
201 /* Do we need IMPLICIT tagging? */
202 if (asn1_tags.imp_tag != -1) {
203 /* If IMPLICIT we will replace the underlying tag */
204 /* Skip existing tag+len */
205 r = ASN1_get_object(&cpy_start, &hdr_len, &hdr_tag, &hdr_class,
209 /* Update copy length */
210 cpy_len -= cpy_start - orig_der;
212 * For IMPLICIT tagging the length should match the original length
213 * and constructed flag should be consistent.
216 /* Indefinite length constructed */
220 /* Just retain constructed flag */
221 hdr_constructed = r & V_ASN1_CONSTRUCTED;
223 * Work out new length with IMPLICIT tag: ignore constructed because
224 * it will mess up if indefinite length
226 len = ASN1_object_size(0, hdr_len, asn1_tags.imp_tag);
230 /* Work out length in any EXPLICIT, starting from end */
232 for (i = 0, etmp = asn1_tags.exp_list + asn1_tags.exp_count - 1;
233 i < asn1_tags.exp_count; i++, etmp--) {
234 /* Content length: number of content octets + any padding */
235 len += etmp->exp_pad;
237 /* Total object length: length including new header */
238 len = ASN1_object_size(0, len, etmp->exp_tag);
241 /* Allocate buffer for new encoding */
243 new_der = OPENSSL_malloc(len);
247 /* Generate tagged encoding */
251 /* Output explicit tags first */
253 for (i = 0, etmp = asn1_tags.exp_list; i < asn1_tags.exp_count;
255 ASN1_put_object(&p, etmp->exp_constructed, etmp->exp_len,
256 etmp->exp_tag, etmp->exp_class);
261 /* If IMPLICIT, output tag */
263 if (asn1_tags.imp_tag != -1) {
264 if (asn1_tags.imp_class == V_ASN1_UNIVERSAL
265 && (asn1_tags.imp_tag == V_ASN1_SEQUENCE
266 || asn1_tags.imp_tag == V_ASN1_SET))
267 hdr_constructed = V_ASN1_CONSTRUCTED;
268 ASN1_put_object(&p, hdr_constructed, hdr_len,
269 asn1_tags.imp_tag, asn1_tags.imp_class);
272 /* Copy across original encoding */
273 memcpy(p, cpy_start, cpy_len);
277 /* Obtain new ASN1_TYPE structure */
278 ret = d2i_ASN1_TYPE(NULL, &cp, len);
282 OPENSSL_free(orig_der);
284 OPENSSL_free(new_der);
290 static int asn1_cb(const char *elem, int len, void *bitstr)
292 tag_exp_arg *arg = bitstr;
296 const char *p, *vstart = NULL;
298 int tmp_tag, tmp_class;
303 for (i = 0, p = elem; i < len; p++, i++) {
304 /* Look for the ':' in name value pairs */
307 vlen = len - (vstart - elem);
313 utype = asn1_str2tag(elem, len);
316 ASN1err(ASN1_F_ASN1_CB, ASN1_R_UNKNOWN_TAG);
317 ERR_add_error_data(2, "tag=", elem);
321 /* If this is not a modifier mark end of string and exit */
322 if (!(utype & ASN1_GEN_FLAG)) {
325 /* If no value and not end of string, error */
326 if (!vstart && elem[len]) {
327 ASN1err(ASN1_F_ASN1_CB, ASN1_R_MISSING_VALUE);
335 case ASN1_GEN_FLAG_IMP:
336 /* Check for illegal multiple IMPLICIT tagging */
337 if (arg->imp_tag != -1) {
338 ASN1err(ASN1_F_ASN1_CB, ASN1_R_ILLEGAL_NESTED_TAGGING);
341 if (!parse_tagging(vstart, vlen, &arg->imp_tag, &arg->imp_class))
345 case ASN1_GEN_FLAG_EXP:
347 if (!parse_tagging(vstart, vlen, &tmp_tag, &tmp_class))
349 if (!append_exp(arg, tmp_tag, tmp_class, 1, 0, 0))
353 case ASN1_GEN_FLAG_SEQWRAP:
354 if (!append_exp(arg, V_ASN1_SEQUENCE, V_ASN1_UNIVERSAL, 1, 0, 1))
358 case ASN1_GEN_FLAG_SETWRAP:
359 if (!append_exp(arg, V_ASN1_SET, V_ASN1_UNIVERSAL, 1, 0, 1))
363 case ASN1_GEN_FLAG_BITWRAP:
364 if (!append_exp(arg, V_ASN1_BIT_STRING, V_ASN1_UNIVERSAL, 0, 1, 1))
368 case ASN1_GEN_FLAG_OCTWRAP:
369 if (!append_exp(arg, V_ASN1_OCTET_STRING, V_ASN1_UNIVERSAL, 0, 0, 1))
373 case ASN1_GEN_FLAG_FORMAT:
375 ASN1err(ASN1_F_ASN1_CB, ASN1_R_UNKNOWN_FORMAT);
378 if (!strncmp(vstart, "ASCII", 5))
379 arg->format = ASN1_GEN_FORMAT_ASCII;
380 else if (!strncmp(vstart, "UTF8", 4))
381 arg->format = ASN1_GEN_FORMAT_UTF8;
382 else if (!strncmp(vstart, "HEX", 3))
383 arg->format = ASN1_GEN_FORMAT_HEX;
384 else if (!strncmp(vstart, "BITLIST", 7))
385 arg->format = ASN1_GEN_FORMAT_BITLIST;
387 ASN1err(ASN1_F_ASN1_CB, ASN1_R_UNKNOWN_FORMAT);
398 static int parse_tagging(const char *vstart, int vlen, int *ptag, int *pclass)
405 tag_num = strtoul(vstart, &eptr, 10);
406 /* Check we haven't gone past max length: should be impossible */
407 if (eptr && *eptr && (eptr > vstart + vlen))
410 ASN1err(ASN1_F_PARSE_TAGGING, ASN1_R_INVALID_NUMBER);
414 /* If we have non numeric characters, parse them */
416 vlen -= eptr - vstart;
423 *pclass = V_ASN1_UNIVERSAL;
427 *pclass = V_ASN1_APPLICATION;
431 *pclass = V_ASN1_PRIVATE;
435 *pclass = V_ASN1_CONTEXT_SPECIFIC;
441 ASN1err(ASN1_F_PARSE_TAGGING, ASN1_R_INVALID_MODIFIER);
442 ERR_add_error_data(2, "Char=", erch);
447 *pclass = V_ASN1_CONTEXT_SPECIFIC;
453 /* Handle multiple types: SET and SEQUENCE */
455 static ASN1_TYPE *asn1_multi(int utype, const char *section, X509V3_CTX *cnf,
456 int depth, int *perr)
458 ASN1_TYPE *ret = NULL;
459 STACK_OF(ASN1_TYPE) *sk = NULL;
460 STACK_OF(CONF_VALUE) *sect = NULL;
461 unsigned char *der = NULL;
464 sk = sk_ASN1_TYPE_new_null();
470 sect = X509V3_get_section(cnf, (char *)section);
473 for (i = 0; i < sk_CONF_VALUE_num(sect); i++) {
475 generate_v3(sk_CONF_VALUE_value(sect, i)->value, cnf,
479 if (!sk_ASN1_TYPE_push(sk, typ))
485 * Now we has a STACK of the components, convert to the correct form
488 if (utype == V_ASN1_SET)
489 derlen = i2d_ASN1_SET_ANY(sk, &der);
491 derlen = i2d_ASN1_SEQUENCE_ANY(sk, &der);
496 if (!(ret = ASN1_TYPE_new()))
499 if (!(ret->value.asn1_string = ASN1_STRING_type_new(utype)))
504 ret->value.asn1_string->data = der;
505 ret->value.asn1_string->length = derlen;
515 sk_ASN1_TYPE_pop_free(sk, ASN1_TYPE_free);
517 X509V3_section_free(cnf, sect);
522 static int append_exp(tag_exp_arg *arg, int exp_tag, int exp_class,
523 int exp_constructed, int exp_pad, int imp_ok)
525 tag_exp_type *exp_tmp;
526 /* Can only have IMPLICIT if permitted */
527 if ((arg->imp_tag != -1) && !imp_ok) {
528 ASN1err(ASN1_F_APPEND_EXP, ASN1_R_ILLEGAL_IMPLICIT_TAG);
532 if (arg->exp_count == ASN1_FLAG_EXP_MAX) {
533 ASN1err(ASN1_F_APPEND_EXP, ASN1_R_DEPTH_EXCEEDED);
537 exp_tmp = &arg->exp_list[arg->exp_count++];
540 * If IMPLICIT set tag to implicit value then reset implicit tag since it
543 if (arg->imp_tag != -1) {
544 exp_tmp->exp_tag = arg->imp_tag;
545 exp_tmp->exp_class = arg->imp_class;
549 exp_tmp->exp_tag = exp_tag;
550 exp_tmp->exp_class = exp_class;
552 exp_tmp->exp_constructed = exp_constructed;
553 exp_tmp->exp_pad = exp_pad;
558 static int asn1_str2tag(const char *tagstr, int len)
561 static const struct tag_name_st *tntmp, tnst[] = {
562 ASN1_GEN_STR("BOOL", V_ASN1_BOOLEAN),
563 ASN1_GEN_STR("BOOLEAN", V_ASN1_BOOLEAN),
564 ASN1_GEN_STR("NULL", V_ASN1_NULL),
565 ASN1_GEN_STR("INT", V_ASN1_INTEGER),
566 ASN1_GEN_STR("INTEGER", V_ASN1_INTEGER),
567 ASN1_GEN_STR("ENUM", V_ASN1_ENUMERATED),
568 ASN1_GEN_STR("ENUMERATED", V_ASN1_ENUMERATED),
569 ASN1_GEN_STR("OID", V_ASN1_OBJECT),
570 ASN1_GEN_STR("OBJECT", V_ASN1_OBJECT),
571 ASN1_GEN_STR("UTCTIME", V_ASN1_UTCTIME),
572 ASN1_GEN_STR("UTC", V_ASN1_UTCTIME),
573 ASN1_GEN_STR("GENERALIZEDTIME", V_ASN1_GENERALIZEDTIME),
574 ASN1_GEN_STR("GENTIME", V_ASN1_GENERALIZEDTIME),
575 ASN1_GEN_STR("OCT", V_ASN1_OCTET_STRING),
576 ASN1_GEN_STR("OCTETSTRING", V_ASN1_OCTET_STRING),
577 ASN1_GEN_STR("BITSTR", V_ASN1_BIT_STRING),
578 ASN1_GEN_STR("BITSTRING", V_ASN1_BIT_STRING),
579 ASN1_GEN_STR("UNIVERSALSTRING", V_ASN1_UNIVERSALSTRING),
580 ASN1_GEN_STR("UNIV", V_ASN1_UNIVERSALSTRING),
581 ASN1_GEN_STR("IA5", V_ASN1_IA5STRING),
582 ASN1_GEN_STR("IA5STRING", V_ASN1_IA5STRING),
583 ASN1_GEN_STR("UTF8", V_ASN1_UTF8STRING),
584 ASN1_GEN_STR("UTF8String", V_ASN1_UTF8STRING),
585 ASN1_GEN_STR("BMP", V_ASN1_BMPSTRING),
586 ASN1_GEN_STR("BMPSTRING", V_ASN1_BMPSTRING),
587 ASN1_GEN_STR("VISIBLESTRING", V_ASN1_VISIBLESTRING),
588 ASN1_GEN_STR("VISIBLE", V_ASN1_VISIBLESTRING),
589 ASN1_GEN_STR("PRINTABLESTRING", V_ASN1_PRINTABLESTRING),
590 ASN1_GEN_STR("PRINTABLE", V_ASN1_PRINTABLESTRING),
591 ASN1_GEN_STR("T61", V_ASN1_T61STRING),
592 ASN1_GEN_STR("T61STRING", V_ASN1_T61STRING),
593 ASN1_GEN_STR("TELETEXSTRING", V_ASN1_T61STRING),
594 ASN1_GEN_STR("GeneralString", V_ASN1_GENERALSTRING),
595 ASN1_GEN_STR("GENSTR", V_ASN1_GENERALSTRING),
596 ASN1_GEN_STR("NUMERIC", V_ASN1_NUMERICSTRING),
597 ASN1_GEN_STR("NUMERICSTRING", V_ASN1_NUMERICSTRING),
600 ASN1_GEN_STR("SEQUENCE", V_ASN1_SEQUENCE),
601 ASN1_GEN_STR("SEQ", V_ASN1_SEQUENCE),
602 ASN1_GEN_STR("SET", V_ASN1_SET),
605 ASN1_GEN_STR("EXP", ASN1_GEN_FLAG_EXP),
606 ASN1_GEN_STR("EXPLICIT", ASN1_GEN_FLAG_EXP),
608 ASN1_GEN_STR("IMP", ASN1_GEN_FLAG_IMP),
609 ASN1_GEN_STR("IMPLICIT", ASN1_GEN_FLAG_IMP),
610 /* OCTET STRING wrapper */
611 ASN1_GEN_STR("OCTWRAP", ASN1_GEN_FLAG_OCTWRAP),
612 /* SEQUENCE wrapper */
613 ASN1_GEN_STR("SEQWRAP", ASN1_GEN_FLAG_SEQWRAP),
615 ASN1_GEN_STR("SETWRAP", ASN1_GEN_FLAG_SETWRAP),
616 /* BIT STRING wrapper */
617 ASN1_GEN_STR("BITWRAP", ASN1_GEN_FLAG_BITWRAP),
618 ASN1_GEN_STR("FORM", ASN1_GEN_FLAG_FORMAT),
619 ASN1_GEN_STR("FORMAT", ASN1_GEN_FLAG_FORMAT),
623 len = strlen(tagstr);
626 for (i = 0; i < sizeof(tnst) / sizeof(struct tag_name_st); i++, tntmp++) {
627 if ((len == tntmp->len) && !strncmp(tntmp->strnam, tagstr, len))
634 static ASN1_TYPE *asn1_str2type(const char *str, int format, int utype)
636 ASN1_TYPE *atmp = NULL;
640 unsigned char *rdata;
645 if (!(atmp = ASN1_TYPE_new())) {
646 ASN1err(ASN1_F_ASN1_STR2TYPE, ERR_R_MALLOC_FAILURE);
657 ASN1err(ASN1_F_ASN1_STR2TYPE, ASN1_R_ILLEGAL_NULL_VALUE);
663 if (format != ASN1_GEN_FORMAT_ASCII) {
664 ASN1err(ASN1_F_ASN1_STR2TYPE, ASN1_R_NOT_ASCII_FORMAT);
669 vtmp.value = (char *)str;
670 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) {
679 ASN1err(ASN1_F_ASN1_STR2TYPE, ASN1_R_INTEGER_NOT_ASCII_FORMAT);
682 if (!(atmp->value.integer = s2i_ASN1_INTEGER(NULL, (char *)str))) {
683 ASN1err(ASN1_F_ASN1_STR2TYPE, ASN1_R_ILLEGAL_INTEGER);
689 if (format != ASN1_GEN_FORMAT_ASCII) {
690 ASN1err(ASN1_F_ASN1_STR2TYPE, ASN1_R_OBJECT_NOT_ASCII_FORMAT);
693 if (!(atmp->value.object = OBJ_txt2obj(str, 0))) {
694 ASN1err(ASN1_F_ASN1_STR2TYPE, ASN1_R_ILLEGAL_OBJECT);
700 case V_ASN1_GENERALIZEDTIME:
701 if (format != ASN1_GEN_FORMAT_ASCII) {
702 ASN1err(ASN1_F_ASN1_STR2TYPE, ASN1_R_TIME_NOT_ASCII_FORMAT);
705 if (!(atmp->value.asn1_string = ASN1_STRING_new())) {
706 ASN1err(ASN1_F_ASN1_STR2TYPE, ERR_R_MALLOC_FAILURE);
709 if (!ASN1_STRING_set(atmp->value.asn1_string, str, -1)) {
710 ASN1err(ASN1_F_ASN1_STR2TYPE, ERR_R_MALLOC_FAILURE);
713 atmp->value.asn1_string->type = utype;
714 if (!ASN1_TIME_check(atmp->value.asn1_string)) {
715 ASN1err(ASN1_F_ASN1_STR2TYPE, ASN1_R_ILLEGAL_TIME_VALUE);
721 case V_ASN1_BMPSTRING:
722 case V_ASN1_PRINTABLESTRING:
723 case V_ASN1_IA5STRING:
724 case V_ASN1_T61STRING:
725 case V_ASN1_UTF8STRING:
726 case V_ASN1_VISIBLESTRING:
727 case V_ASN1_UNIVERSALSTRING:
728 case V_ASN1_GENERALSTRING:
729 case V_ASN1_NUMERICSTRING:
731 if (format == ASN1_GEN_FORMAT_ASCII)
732 format = MBSTRING_ASC;
733 else if (format == ASN1_GEN_FORMAT_UTF8)
734 format = MBSTRING_UTF8;
736 ASN1err(ASN1_F_ASN1_STR2TYPE, ASN1_R_ILLEGAL_FORMAT);
740 if (ASN1_mbstring_copy(&atmp->value.asn1_string, (unsigned char *)str,
741 -1, format, ASN1_tag2bit(utype)) <= 0) {
742 ASN1err(ASN1_F_ASN1_STR2TYPE, ERR_R_MALLOC_FAILURE);
748 case V_ASN1_BIT_STRING:
750 case V_ASN1_OCTET_STRING:
752 if (!(atmp->value.asn1_string = ASN1_STRING_new())) {
753 ASN1err(ASN1_F_ASN1_STR2TYPE, ERR_R_MALLOC_FAILURE);
757 if (format == ASN1_GEN_FORMAT_HEX) {
759 if (!(rdata = string_to_hex((char *)str, &rdlen))) {
760 ASN1err(ASN1_F_ASN1_STR2TYPE, ASN1_R_ILLEGAL_HEX);
764 atmp->value.asn1_string->data = rdata;
765 atmp->value.asn1_string->length = rdlen;
766 atmp->value.asn1_string->type = utype;
768 } else if (format == ASN1_GEN_FORMAT_ASCII)
769 ASN1_STRING_set(atmp->value.asn1_string, str, -1);
770 else if ((format == ASN1_GEN_FORMAT_BITLIST)
771 && (utype == V_ASN1_BIT_STRING)) {
773 (str, ',', 1, bitstr_cb, atmp->value.bit_string)) {
774 ASN1err(ASN1_F_ASN1_STR2TYPE, ASN1_R_LIST_ERROR);
780 ASN1err(ASN1_F_ASN1_STR2TYPE, ASN1_R_ILLEGAL_BITSTRING_FORMAT);
784 if ((utype == V_ASN1_BIT_STRING) && no_unused) {
785 atmp->value.asn1_string->flags
786 &= ~(ASN1_STRING_FLAG_BITS_LEFT | 0x07);
787 atmp->value.asn1_string->flags |= ASN1_STRING_FLAG_BITS_LEFT;
793 ASN1err(ASN1_F_ASN1_STR2TYPE, ASN1_R_UNSUPPORTED_TYPE);
801 ERR_add_error_data(2, "string=", str);
804 ASN1_TYPE_free(atmp);
809 static int bitstr_cb(const char *elem, int len, void *bitstr)
815 bitnum = strtoul(elem, &eptr, 10);
816 if (eptr && *eptr && (eptr != elem + len))
819 ASN1err(ASN1_F_BITSTR_CB, ASN1_R_INVALID_NUMBER);
822 if (!ASN1_BIT_STRING_set_bit(bitstr, bitnum, 1)) {
823 ASN1err(ASN1_F_BITSTR_CB, ERR_R_MALLOC_FAILURE);
829 static int mask_cb(const char *elem, int len, void *arg)
831 unsigned long *pmask = arg, tmpmask;
835 if (len == 3 && !strncmp(elem, "DIR", 3)) {
836 *pmask |= B_ASN1_DIRECTORYSTRING;
839 tag = asn1_str2tag(elem, len);
840 if (!tag || (tag & ASN1_GEN_FLAG))
842 tmpmask = ASN1_tag2bit(tag);
849 int ASN1_str2mask(const char *str, unsigned long *pmask)
852 return CONF_parse_list(str, '|', 1, mask_cb, pmask);