os/ossrv/ssl/libcrypto/src/crypto/asn1/asn1_gen.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* asn1_gen.c */
sl@0
     2
/* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL
sl@0
     3
 * project 2002.
sl@0
     4
 */
sl@0
     5
/* ====================================================================
sl@0
     6
 * Copyright (c) 2002 The OpenSSL Project.  All rights reserved.
sl@0
     7
 *
sl@0
     8
 * Redistribution and use in source and binary forms, with or without
sl@0
     9
 * modification, are permitted provided that the following conditions
sl@0
    10
 * are met:
sl@0
    11
 *
sl@0
    12
 * 1. Redistributions of source code must retain the above copyright
sl@0
    13
 *    notice, this list of conditions and the following disclaimer. 
sl@0
    14
 *
sl@0
    15
 * 2. Redistributions in binary form must reproduce the above copyright
sl@0
    16
 *    notice, this list of conditions and the following disclaimer in
sl@0
    17
 *    the documentation and/or other materials provided with the
sl@0
    18
 *    distribution.
sl@0
    19
 *
sl@0
    20
 * 3. All advertising materials mentioning features or use of this
sl@0
    21
 *    software must display the following acknowledgment:
sl@0
    22
 *    "This product includes software developed by the OpenSSL Project
sl@0
    23
 *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
sl@0
    24
 *
sl@0
    25
 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
sl@0
    26
 *    endorse or promote products derived from this software without
sl@0
    27
 *    prior written permission. For written permission, please contact
sl@0
    28
 *    licensing@OpenSSL.org.
sl@0
    29
 *
sl@0
    30
 * 5. Products derived from this software may not be called "OpenSSL"
sl@0
    31
 *    nor may "OpenSSL" appear in their names without prior written
sl@0
    32
 *    permission of the OpenSSL Project.
sl@0
    33
 *
sl@0
    34
 * 6. Redistributions of any form whatsoever must retain the following
sl@0
    35
 *    acknowledgment:
sl@0
    36
 *    "This product includes software developed by the OpenSSL Project
sl@0
    37
 *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
sl@0
    38
 *
sl@0
    39
 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
sl@0
    40
 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
sl@0
    41
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
sl@0
    42
 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
sl@0
    43
 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
sl@0
    44
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
sl@0
    45
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
sl@0
    46
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
sl@0
    47
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
sl@0
    48
 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
sl@0
    49
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
sl@0
    50
 * OF THE POSSIBILITY OF SUCH DAMAGE.
sl@0
    51
 * ====================================================================
sl@0
    52
 *
sl@0
    53
 * This product includes cryptographic software written by Eric Young
sl@0
    54
 * (eay@cryptsoft.com).  This product includes software written by Tim
sl@0
    55
 * Hudson (tjh@cryptsoft.com).
sl@0
    56
 *
sl@0
    57
 */
sl@0
    58
 /*
sl@0
    59
 © Portions copyright (c) 2006 Nokia Corporation.  All rights reserved.
sl@0
    60
 */
sl@0
    61
 
sl@0
    62
sl@0
    63
#include "cryptlib.h"
sl@0
    64
#include <openssl/asn1.h>
sl@0
    65
#include <openssl/x509v3.h>
sl@0
    66
#if (defined(SYMBIAN) && (defined(__WINSCW__) || defined(__WINS__)))
sl@0
    67
#include "libcrypto_wsd.h"
sl@0
    68
#include "libcrypto_wsd_macros.h"
sl@0
    69
#endif
sl@0
    70
sl@0
    71
sl@0
    72
#define ASN1_GEN_FLAG		0x10000
sl@0
    73
#define ASN1_GEN_FLAG_IMP	(ASN1_GEN_FLAG|1)
sl@0
    74
#define ASN1_GEN_FLAG_EXP	(ASN1_GEN_FLAG|2)
sl@0
    75
#define ASN1_GEN_FLAG_TAG	(ASN1_GEN_FLAG|3)
sl@0
    76
#define ASN1_GEN_FLAG_BITWRAP	(ASN1_GEN_FLAG|4)
sl@0
    77
#define ASN1_GEN_FLAG_OCTWRAP	(ASN1_GEN_FLAG|5)
sl@0
    78
#define ASN1_GEN_FLAG_SEQWRAP	(ASN1_GEN_FLAG|6)
sl@0
    79
#define ASN1_GEN_FLAG_SETWRAP	(ASN1_GEN_FLAG|7)
sl@0
    80
#define ASN1_GEN_FLAG_FORMAT	(ASN1_GEN_FLAG|8)
sl@0
    81
sl@0
    82
#define ASN1_GEN_STR(str,val)	{str, sizeof(str) - 1, val}
sl@0
    83
sl@0
    84
#define ASN1_FLAG_EXP_MAX	20
sl@0
    85
sl@0
    86
/* Input formats */
sl@0
    87
sl@0
    88
/* ASCII: default */
sl@0
    89
#define ASN1_GEN_FORMAT_ASCII	1
sl@0
    90
/* UTF8 */
sl@0
    91
#define ASN1_GEN_FORMAT_UTF8	2
sl@0
    92
/* Hex */
sl@0
    93
#define ASN1_GEN_FORMAT_HEX	3
sl@0
    94
/* List of bits */
sl@0
    95
#define ASN1_GEN_FORMAT_BITLIST	4
sl@0
    96
sl@0
    97
sl@0
    98
struct tag_name_st
sl@0
    99
	{
sl@0
   100
	const char *strnam;
sl@0
   101
	int len;
sl@0
   102
	int tag;
sl@0
   103
	};
sl@0
   104
sl@0
   105
typedef struct
sl@0
   106
	{
sl@0
   107
	int exp_tag;
sl@0
   108
	int exp_class;
sl@0
   109
	int exp_constructed;
sl@0
   110
	int exp_pad;
sl@0
   111
	long exp_len;
sl@0
   112
	} tag_exp_type;
sl@0
   113
sl@0
   114
typedef struct
sl@0
   115
	{
sl@0
   116
	int imp_tag;
sl@0
   117
	int imp_class;
sl@0
   118
	int utype;
sl@0
   119
	int format;
sl@0
   120
	const char *str;
sl@0
   121
	tag_exp_type exp_list[ASN1_FLAG_EXP_MAX];
sl@0
   122
	int exp_count;
sl@0
   123
	} tag_exp_arg;
sl@0
   124
sl@0
   125
static int bitstr_cb(const char *elem, int len, void *bitstr);
sl@0
   126
static int asn1_cb(const char *elem, int len, void *bitstr);
sl@0
   127
static int append_exp(tag_exp_arg *arg, int exp_tag, int exp_class, int exp_constructed, int exp_pad, int imp_ok);
sl@0
   128
static int parse_tagging(const char *vstart, int vlen, int *ptag, int *pclass);
sl@0
   129
static ASN1_TYPE *asn1_multi(int utype, const char *section, X509V3_CTX *cnf);
sl@0
   130
static ASN1_TYPE *asn1_str2type(const char *str, int format, int utype);
sl@0
   131
static int asn1_str2tag(const char *tagstr, int len);
sl@0
   132
sl@0
   133
EXPORT_C ASN1_TYPE *ASN1_generate_nconf(char *str, CONF *nconf)
sl@0
   134
	{
sl@0
   135
	X509V3_CTX cnf;
sl@0
   136
sl@0
   137
	if (!nconf)
sl@0
   138
		return ASN1_generate_v3(str, NULL);
sl@0
   139
sl@0
   140
	X509V3_set_nconf(&cnf, nconf);
sl@0
   141
	return ASN1_generate_v3(str, &cnf);
sl@0
   142
	}
sl@0
   143
sl@0
   144
EXPORT_C ASN1_TYPE *ASN1_generate_v3(char *str, X509V3_CTX *cnf)
sl@0
   145
	{
sl@0
   146
	ASN1_TYPE *ret;
sl@0
   147
	tag_exp_arg asn1_tags;
sl@0
   148
	tag_exp_type *etmp;
sl@0
   149
sl@0
   150
	int i, len;
sl@0
   151
sl@0
   152
	unsigned char *orig_der = NULL, *new_der = NULL;
sl@0
   153
	const unsigned char *cpy_start;
sl@0
   154
	unsigned char *p;
sl@0
   155
	const unsigned char *cp;
sl@0
   156
	int cpy_len;
sl@0
   157
	long hdr_len;
sl@0
   158
	int hdr_constructed = 0, hdr_tag, hdr_class;
sl@0
   159
	int r;
sl@0
   160
sl@0
   161
	asn1_tags.imp_tag = -1;
sl@0
   162
	asn1_tags.imp_class = -1;
sl@0
   163
	asn1_tags.format = ASN1_GEN_FORMAT_ASCII;
sl@0
   164
	asn1_tags.exp_count = 0;
sl@0
   165
	if (CONF_parse_list(str, ',', 1, asn1_cb, &asn1_tags) != 0)
sl@0
   166
		return NULL;
sl@0
   167
sl@0
   168
	if ((asn1_tags.utype == V_ASN1_SEQUENCE) || (asn1_tags.utype == V_ASN1_SET))
sl@0
   169
		{
sl@0
   170
		if (!cnf)
sl@0
   171
			{
sl@0
   172
			ASN1err(ASN1_F_ASN1_GENERATE_V3, ASN1_R_SEQUENCE_OR_SET_NEEDS_CONFIG);
sl@0
   173
			return NULL;
sl@0
   174
			}
sl@0
   175
		ret = asn1_multi(asn1_tags.utype, asn1_tags.str, cnf);
sl@0
   176
		}
sl@0
   177
	else
sl@0
   178
		ret = asn1_str2type(asn1_tags.str, asn1_tags.format, asn1_tags.utype);
sl@0
   179
sl@0
   180
	if (!ret)
sl@0
   181
		return NULL;
sl@0
   182
sl@0
   183
	/* If no tagging return base type */
sl@0
   184
	if ((asn1_tags.imp_tag == -1) && (asn1_tags.exp_count == 0))
sl@0
   185
		return ret;
sl@0
   186
sl@0
   187
	/* Generate the encoding */
sl@0
   188
	cpy_len = i2d_ASN1_TYPE(ret, &orig_der);
sl@0
   189
	ASN1_TYPE_free(ret);
sl@0
   190
	ret = NULL;
sl@0
   191
	/* Set point to start copying for modified encoding */
sl@0
   192
	cpy_start = orig_der;
sl@0
   193
sl@0
   194
	/* Do we need IMPLICIT tagging? */
sl@0
   195
	if (asn1_tags.imp_tag != -1)
sl@0
   196
		{
sl@0
   197
		/* If IMPLICIT we will replace the underlying tag */
sl@0
   198
		/* Skip existing tag+len */
sl@0
   199
		r = ASN1_get_object(&cpy_start, &hdr_len, &hdr_tag, &hdr_class, cpy_len);
sl@0
   200
		if (r & 0x80)
sl@0
   201
			goto err;
sl@0
   202
		/* Update copy length */
sl@0
   203
		cpy_len -= cpy_start - orig_der;
sl@0
   204
		/* For IMPLICIT tagging the length should match the
sl@0
   205
		 * original length and constructed flag should be
sl@0
   206
		 * consistent.
sl@0
   207
		 */
sl@0
   208
		if (r & 0x1)
sl@0
   209
			{
sl@0
   210
			/* Indefinite length constructed */
sl@0
   211
			hdr_constructed = 2;
sl@0
   212
			hdr_len = 0;
sl@0
   213
			}
sl@0
   214
		else
sl@0
   215
			/* Just retain constructed flag */
sl@0
   216
			hdr_constructed = r & V_ASN1_CONSTRUCTED;
sl@0
   217
		/* Work out new length with IMPLICIT tag: ignore constructed
sl@0
   218
		 * because it will mess up if indefinite length
sl@0
   219
		 */
sl@0
   220
		len = ASN1_object_size(0, hdr_len, asn1_tags.imp_tag);
sl@0
   221
		}
sl@0
   222
	else
sl@0
   223
		len = cpy_len;
sl@0
   224
sl@0
   225
	/* Work out length in any EXPLICIT, starting from end */
sl@0
   226
sl@0
   227
	for(i = 0, etmp = asn1_tags.exp_list + asn1_tags.exp_count - 1; i < asn1_tags.exp_count; i++, etmp--)
sl@0
   228
		{
sl@0
   229
		/* Content length: number of content octets + any padding */
sl@0
   230
		len += etmp->exp_pad;
sl@0
   231
		etmp->exp_len = len;
sl@0
   232
		/* Total object length: length including new header */
sl@0
   233
		len = ASN1_object_size(0, len, etmp->exp_tag);
sl@0
   234
		}
sl@0
   235
sl@0
   236
	/* Allocate buffer for new encoding */
sl@0
   237
sl@0
   238
	new_der = OPENSSL_malloc(len);
sl@0
   239
#ifdef SYMBIAN
sl@0
   240
  if(new_der==NULL)
sl@0
   241
  {
sl@0
   242
  	return NULL;
sl@0
   243
  }	
sl@0
   244
#endif
sl@0
   245
	/* Generate tagged encoding */
sl@0
   246
sl@0
   247
	p = new_der;
sl@0
   248
sl@0
   249
	/* Output explicit tags first */
sl@0
   250
sl@0
   251
	for (i = 0, etmp = asn1_tags.exp_list; i < asn1_tags.exp_count; i++, etmp++)
sl@0
   252
		{
sl@0
   253
		ASN1_put_object(&p, etmp->exp_constructed, etmp->exp_len,
sl@0
   254
					etmp->exp_tag, etmp->exp_class);
sl@0
   255
		if (etmp->exp_pad)
sl@0
   256
			*p++ = 0;
sl@0
   257
		}
sl@0
   258
sl@0
   259
	/* If IMPLICIT, output tag */
sl@0
   260
sl@0
   261
	if (asn1_tags.imp_tag != -1)
sl@0
   262
		ASN1_put_object(&p, hdr_constructed, hdr_len,
sl@0
   263
					asn1_tags.imp_tag, asn1_tags.imp_class);
sl@0
   264
sl@0
   265
	/* Copy across original encoding */
sl@0
   266
	memcpy(p, cpy_start, cpy_len);
sl@0
   267
sl@0
   268
	cp = new_der;
sl@0
   269
sl@0
   270
	/* Obtain new ASN1_TYPE structure */
sl@0
   271
	ret = d2i_ASN1_TYPE(NULL, &cp, len);
sl@0
   272
sl@0
   273
	err:
sl@0
   274
	if (orig_der)
sl@0
   275
		OPENSSL_free(orig_der);
sl@0
   276
	if (new_der)
sl@0
   277
		OPENSSL_free(new_der);
sl@0
   278
sl@0
   279
	return ret;
sl@0
   280
sl@0
   281
	}
sl@0
   282
sl@0
   283
static int asn1_cb(const char *elem, int len, void *bitstr)
sl@0
   284
	{
sl@0
   285
	tag_exp_arg *arg = bitstr;
sl@0
   286
	int i;
sl@0
   287
	int utype;
sl@0
   288
	int vlen = 0;
sl@0
   289
	const char *p, *vstart = NULL;
sl@0
   290
sl@0
   291
	int tmp_tag, tmp_class;
sl@0
   292
sl@0
   293
	for(i = 0, p = elem; i < len; p++, i++)
sl@0
   294
		{
sl@0
   295
		/* Look for the ':' in name value pairs */
sl@0
   296
		if (*p == ':')
sl@0
   297
			{
sl@0
   298
			vstart = p + 1;
sl@0
   299
			vlen = len - (vstart - elem);
sl@0
   300
			len = p - elem;
sl@0
   301
			break;
sl@0
   302
			}
sl@0
   303
		}
sl@0
   304
sl@0
   305
	utype = asn1_str2tag(elem, len);
sl@0
   306
sl@0
   307
	if (utype == -1)
sl@0
   308
		{
sl@0
   309
		ASN1err(ASN1_F_ASN1_CB, ASN1_R_UNKNOWN_TAG);
sl@0
   310
		ERR_add_error_data(2, "tag=", elem);
sl@0
   311
		return -1;
sl@0
   312
		}
sl@0
   313
sl@0
   314
	/* If this is not a modifier mark end of string and exit */
sl@0
   315
	if (!(utype & ASN1_GEN_FLAG))
sl@0
   316
		{
sl@0
   317
		arg->utype = utype;
sl@0
   318
		arg->str = vstart;
sl@0
   319
		/* If no value and not end of string, error */
sl@0
   320
		if (!vstart && elem[len])
sl@0
   321
			{
sl@0
   322
			ASN1err(ASN1_F_ASN1_CB, ASN1_R_MISSING_VALUE);
sl@0
   323
			return -1;
sl@0
   324
			}
sl@0
   325
		return 0;
sl@0
   326
		}
sl@0
   327
sl@0
   328
	switch(utype)
sl@0
   329
		{
sl@0
   330
sl@0
   331
		case ASN1_GEN_FLAG_IMP:
sl@0
   332
		/* Check for illegal multiple IMPLICIT tagging */
sl@0
   333
		if (arg->imp_tag != -1)
sl@0
   334
			{
sl@0
   335
			ASN1err(ASN1_F_ASN1_CB, ASN1_R_ILLEGAL_NESTED_TAGGING);
sl@0
   336
			return -1;
sl@0
   337
			}
sl@0
   338
		if (!parse_tagging(vstart, vlen, &arg->imp_tag, &arg->imp_class))
sl@0
   339
			return -1;
sl@0
   340
		break;
sl@0
   341
sl@0
   342
		case ASN1_GEN_FLAG_EXP:
sl@0
   343
sl@0
   344
		if (!parse_tagging(vstart, vlen, &tmp_tag, &tmp_class))
sl@0
   345
			return -1;
sl@0
   346
		if (!append_exp(arg, tmp_tag, tmp_class, 1, 0, 0))
sl@0
   347
			return -1;
sl@0
   348
		break;
sl@0
   349
sl@0
   350
		case ASN1_GEN_FLAG_SEQWRAP:
sl@0
   351
		if (!append_exp(arg, V_ASN1_SEQUENCE, V_ASN1_UNIVERSAL, 1, 0, 1))
sl@0
   352
			return -1;
sl@0
   353
		break;
sl@0
   354
sl@0
   355
		case ASN1_GEN_FLAG_SETWRAP:
sl@0
   356
		if (!append_exp(arg, V_ASN1_SET, V_ASN1_UNIVERSAL, 1, 0, 1))
sl@0
   357
			return -1;
sl@0
   358
		break;
sl@0
   359
sl@0
   360
		case ASN1_GEN_FLAG_BITWRAP:
sl@0
   361
		if (!append_exp(arg, V_ASN1_BIT_STRING, V_ASN1_UNIVERSAL, 0, 1, 1))
sl@0
   362
			return -1;
sl@0
   363
		break;
sl@0
   364
sl@0
   365
		case ASN1_GEN_FLAG_OCTWRAP:
sl@0
   366
		if (!append_exp(arg, V_ASN1_OCTET_STRING, V_ASN1_UNIVERSAL, 0, 0, 1))
sl@0
   367
			return -1;
sl@0
   368
		break;
sl@0
   369
sl@0
   370
		case ASN1_GEN_FLAG_FORMAT:
sl@0
   371
		if (!strncmp(vstart, "ASCII", 5))
sl@0
   372
			arg->format = ASN1_GEN_FORMAT_ASCII;
sl@0
   373
		else if (!strncmp(vstart, "UTF8", 4))
sl@0
   374
			arg->format = ASN1_GEN_FORMAT_UTF8;
sl@0
   375
		else if (!strncmp(vstart, "HEX", 3))
sl@0
   376
			arg->format = ASN1_GEN_FORMAT_HEX;
sl@0
   377
		else if (!strncmp(vstart, "BITLIST", 3))
sl@0
   378
			arg->format = ASN1_GEN_FORMAT_BITLIST;
sl@0
   379
		else
sl@0
   380
			{
sl@0
   381
			ASN1err(ASN1_F_ASN1_CB, ASN1_R_UNKOWN_FORMAT);
sl@0
   382
			return -1;
sl@0
   383
			}
sl@0
   384
		break;
sl@0
   385
sl@0
   386
		}
sl@0
   387
sl@0
   388
	return 1;
sl@0
   389
sl@0
   390
	}
sl@0
   391
sl@0
   392
static int parse_tagging(const char *vstart, int vlen, int *ptag, int *pclass)
sl@0
   393
	{
sl@0
   394
	char erch[2];
sl@0
   395
	long tag_num;
sl@0
   396
	char *eptr;
sl@0
   397
	if (!vstart)
sl@0
   398
		return 0;
sl@0
   399
	tag_num = strtoul(vstart, &eptr, 10);
sl@0
   400
	/* Check we haven't gone past max length: should be impossible */
sl@0
   401
	if (eptr && *eptr && (eptr > vstart + vlen))
sl@0
   402
		return 0;
sl@0
   403
	if (tag_num < 0)
sl@0
   404
		{
sl@0
   405
		ASN1err(ASN1_F_PARSE_TAGGING, ASN1_R_INVALID_NUMBER);
sl@0
   406
		return 0;
sl@0
   407
		}
sl@0
   408
	*ptag = tag_num;
sl@0
   409
	/* If we have non numeric characters, parse them */
sl@0
   410
	if (eptr)
sl@0
   411
		vlen -= eptr - vstart;
sl@0
   412
	else 
sl@0
   413
		vlen = 0;
sl@0
   414
	if (vlen)
sl@0
   415
		{
sl@0
   416
		switch (*eptr)
sl@0
   417
			{
sl@0
   418
sl@0
   419
			case 'U':
sl@0
   420
			*pclass = V_ASN1_UNIVERSAL;
sl@0
   421
			break;
sl@0
   422
sl@0
   423
			case 'A':
sl@0
   424
			*pclass = V_ASN1_APPLICATION;
sl@0
   425
			break;
sl@0
   426
sl@0
   427
			case 'P':
sl@0
   428
			*pclass = V_ASN1_PRIVATE;
sl@0
   429
			break;
sl@0
   430
sl@0
   431
			case 'C':
sl@0
   432
			*pclass = V_ASN1_CONTEXT_SPECIFIC;
sl@0
   433
			break;
sl@0
   434
sl@0
   435
			default:
sl@0
   436
			erch[0] = *eptr;
sl@0
   437
			erch[1] = 0;
sl@0
   438
			ASN1err(ASN1_F_PARSE_TAGGING, ASN1_R_INVALID_MODIFIER);
sl@0
   439
			ERR_add_error_data(2, "Char=", erch);
sl@0
   440
			return 0;
sl@0
   441
			break;
sl@0
   442
sl@0
   443
			}
sl@0
   444
		}
sl@0
   445
	else
sl@0
   446
		*pclass = V_ASN1_CONTEXT_SPECIFIC;
sl@0
   447
sl@0
   448
	return 1;
sl@0
   449
sl@0
   450
	}
sl@0
   451
sl@0
   452
/* Handle multiple types: SET and SEQUENCE */
sl@0
   453
sl@0
   454
static ASN1_TYPE *asn1_multi(int utype, const char *section, X509V3_CTX *cnf)
sl@0
   455
	{
sl@0
   456
	ASN1_TYPE *ret = NULL, *typ = NULL;
sl@0
   457
	STACK_OF(ASN1_TYPE) *sk = NULL;
sl@0
   458
	STACK_OF(CONF_VALUE) *sect = NULL;
sl@0
   459
	unsigned char *der = NULL, *p;
sl@0
   460
	int derlen;
sl@0
   461
	int i, is_set;
sl@0
   462
	sk = sk_ASN1_TYPE_new_null();
sl@0
   463
	if (section)
sl@0
   464
		{
sl@0
   465
		if (!cnf)
sl@0
   466
			goto bad;
sl@0
   467
		sect = X509V3_get_section(cnf, (char *)section);
sl@0
   468
		if (!sect)
sl@0
   469
			goto bad;
sl@0
   470
		for (i = 0; i < sk_CONF_VALUE_num(sect); i++)
sl@0
   471
			{
sl@0
   472
			typ = ASN1_generate_v3(sk_CONF_VALUE_value(sect, i)->value, cnf);
sl@0
   473
			if (!typ)
sl@0
   474
				goto bad;
sl@0
   475
			sk_ASN1_TYPE_push(sk, typ);
sl@0
   476
			typ = NULL;
sl@0
   477
			}
sl@0
   478
		}
sl@0
   479
sl@0
   480
	/* Now we has a STACK of the components, convert to the correct form */
sl@0
   481
sl@0
   482
	if (utype == V_ASN1_SET)
sl@0
   483
		is_set = 1;
sl@0
   484
	else
sl@0
   485
		is_set = 0;
sl@0
   486
sl@0
   487
sl@0
   488
	derlen = i2d_ASN1_SET_OF_ASN1_TYPE(sk, NULL, i2d_ASN1_TYPE, utype,
sl@0
   489
					   V_ASN1_UNIVERSAL, is_set);
sl@0
   490
	der = OPENSSL_malloc(derlen);
sl@0
   491
#ifdef SYMBIAN
sl@0
   492
  if(der==NULL)
sl@0
   493
  {
sl@0
   494
  	return NULL;
sl@0
   495
  }	
sl@0
   496
#endif
sl@0
   497
	p = der;
sl@0
   498
	i2d_ASN1_SET_OF_ASN1_TYPE(sk, &p, i2d_ASN1_TYPE, utype,
sl@0
   499
				  V_ASN1_UNIVERSAL, is_set);
sl@0
   500
sl@0
   501
	if (!(ret = ASN1_TYPE_new()))
sl@0
   502
		goto bad;
sl@0
   503
sl@0
   504
	if (!(ret->value.asn1_string = ASN1_STRING_type_new(utype)))
sl@0
   505
		goto bad;
sl@0
   506
sl@0
   507
	ret->type = utype;
sl@0
   508
sl@0
   509
	ret->value.asn1_string->data = der;
sl@0
   510
	ret->value.asn1_string->length = derlen;
sl@0
   511
sl@0
   512
	der = NULL;
sl@0
   513
sl@0
   514
	bad:
sl@0
   515
sl@0
   516
	if (der)
sl@0
   517
		OPENSSL_free(der);
sl@0
   518
sl@0
   519
	if (sk)
sl@0
   520
		sk_ASN1_TYPE_pop_free(sk, ASN1_TYPE_free);
sl@0
   521
	if (typ)
sl@0
   522
		ASN1_TYPE_free(typ);
sl@0
   523
	if (sect)
sl@0
   524
		X509V3_section_free(cnf, sect);
sl@0
   525
sl@0
   526
	return ret;
sl@0
   527
	}
sl@0
   528
sl@0
   529
static int append_exp(tag_exp_arg *arg, int exp_tag, int exp_class, int exp_constructed, int exp_pad, int imp_ok)
sl@0
   530
	{
sl@0
   531
	tag_exp_type *exp_tmp;
sl@0
   532
	/* Can only have IMPLICIT if permitted */
sl@0
   533
	if ((arg->imp_tag != -1) && !imp_ok)
sl@0
   534
		{
sl@0
   535
		ASN1err(ASN1_F_APPEND_EXP, ASN1_R_ILLEGAL_IMPLICIT_TAG);
sl@0
   536
		return 0;
sl@0
   537
		}
sl@0
   538
sl@0
   539
	if (arg->exp_count == ASN1_FLAG_EXP_MAX)
sl@0
   540
		{
sl@0
   541
		ASN1err(ASN1_F_APPEND_EXP, ASN1_R_DEPTH_EXCEEDED);
sl@0
   542
		return 0;
sl@0
   543
		}
sl@0
   544
sl@0
   545
	exp_tmp = &arg->exp_list[arg->exp_count++];
sl@0
   546
sl@0
   547
	/* If IMPLICIT set tag to implicit value then
sl@0
   548
	 * reset implicit tag since it has been used.
sl@0
   549
	 */
sl@0
   550
	if (arg->imp_tag != -1)
sl@0
   551
		{
sl@0
   552
		exp_tmp->exp_tag = arg->imp_tag;
sl@0
   553
		exp_tmp->exp_class = arg->imp_class;
sl@0
   554
		arg->imp_tag = -1;
sl@0
   555
		arg->imp_class = -1;
sl@0
   556
		}
sl@0
   557
	else
sl@0
   558
		{
sl@0
   559
		exp_tmp->exp_tag = exp_tag;
sl@0
   560
		exp_tmp->exp_class = exp_class;
sl@0
   561
		}
sl@0
   562
	exp_tmp->exp_constructed = exp_constructed;
sl@0
   563
	exp_tmp->exp_pad = exp_pad;
sl@0
   564
sl@0
   565
	return 1;
sl@0
   566
	}
sl@0
   567
#ifdef  EMULATOR
sl@0
   568
GET_STATIC_VAR_FROM_TLS(tntmp,asn1_gen,struct tag_name_st*)
sl@0
   569
#define tntmp (*GET_WSD_VAR_NAME(tntmp,asn1_gen,s)())
sl@0
   570
static const struct tag_name_st tnst [] = {
sl@0
   571
		ASN1_GEN_STR("BOOL", V_ASN1_BOOLEAN),
sl@0
   572
		ASN1_GEN_STR("BOOLEAN", V_ASN1_BOOLEAN),
sl@0
   573
		ASN1_GEN_STR("NULL", V_ASN1_NULL),
sl@0
   574
		ASN1_GEN_STR("INT", V_ASN1_INTEGER),
sl@0
   575
		ASN1_GEN_STR("INTEGER", V_ASN1_INTEGER),
sl@0
   576
		ASN1_GEN_STR("ENUM", V_ASN1_ENUMERATED),
sl@0
   577
		ASN1_GEN_STR("ENUMERATED", V_ASN1_ENUMERATED),
sl@0
   578
		ASN1_GEN_STR("OID", V_ASN1_OBJECT),
sl@0
   579
		ASN1_GEN_STR("OBJECT", V_ASN1_OBJECT),
sl@0
   580
		ASN1_GEN_STR("UTCTIME", V_ASN1_UTCTIME),
sl@0
   581
		ASN1_GEN_STR("UTC", V_ASN1_UTCTIME),
sl@0
   582
		ASN1_GEN_STR("GENERALIZEDTIME", V_ASN1_GENERALIZEDTIME),
sl@0
   583
		ASN1_GEN_STR("GENTIME", V_ASN1_GENERALIZEDTIME),
sl@0
   584
		ASN1_GEN_STR("OCT", V_ASN1_OCTET_STRING),
sl@0
   585
		ASN1_GEN_STR("OCTETSTRING", V_ASN1_OCTET_STRING),
sl@0
   586
		ASN1_GEN_STR("BITSTR", V_ASN1_BIT_STRING),
sl@0
   587
		ASN1_GEN_STR("BITSTRING", V_ASN1_BIT_STRING),
sl@0
   588
		ASN1_GEN_STR("UNIVERSALSTRING", V_ASN1_UNIVERSALSTRING),
sl@0
   589
		ASN1_GEN_STR("UNIV", V_ASN1_UNIVERSALSTRING),
sl@0
   590
		ASN1_GEN_STR("IA5", V_ASN1_IA5STRING),
sl@0
   591
		ASN1_GEN_STR("IA5STRING", V_ASN1_IA5STRING),
sl@0
   592
		ASN1_GEN_STR("UTF8", V_ASN1_UTF8STRING),
sl@0
   593
		ASN1_GEN_STR("UTF8String", V_ASN1_UTF8STRING),
sl@0
   594
		ASN1_GEN_STR("BMP", V_ASN1_BMPSTRING),
sl@0
   595
		ASN1_GEN_STR("BMPSTRING", V_ASN1_BMPSTRING),
sl@0
   596
		ASN1_GEN_STR("VISIBLESTRING", V_ASN1_VISIBLESTRING),
sl@0
   597
		ASN1_GEN_STR("VISIBLE", V_ASN1_VISIBLESTRING),
sl@0
   598
		ASN1_GEN_STR("PRINTABLESTRING", V_ASN1_PRINTABLESTRING),
sl@0
   599
		ASN1_GEN_STR("PRINTABLE", V_ASN1_PRINTABLESTRING),
sl@0
   600
		ASN1_GEN_STR("T61", V_ASN1_T61STRING),
sl@0
   601
		ASN1_GEN_STR("T61STRING", V_ASN1_T61STRING),
sl@0
   602
		ASN1_GEN_STR("TELETEXSTRING", V_ASN1_T61STRING),
sl@0
   603
		ASN1_GEN_STR("GeneralString", V_ASN1_GENERALSTRING),
sl@0
   604
		ASN1_GEN_STR("GENSTR", V_ASN1_GENERALSTRING),
sl@0
   605
sl@0
   606
		/* Special cases */
sl@0
   607
		ASN1_GEN_STR("SEQUENCE", V_ASN1_SEQUENCE),
sl@0
   608
		ASN1_GEN_STR("SEQ", V_ASN1_SEQUENCE),
sl@0
   609
		ASN1_GEN_STR("SET", V_ASN1_SET),
sl@0
   610
		/* type modifiers */
sl@0
   611
		/* Explicit tag */
sl@0
   612
		ASN1_GEN_STR("EXP", ASN1_GEN_FLAG_EXP),
sl@0
   613
		ASN1_GEN_STR("EXPLICIT", ASN1_GEN_FLAG_EXP),
sl@0
   614
		/* Implicit tag */
sl@0
   615
		ASN1_GEN_STR("IMP", ASN1_GEN_FLAG_IMP),
sl@0
   616
		ASN1_GEN_STR("IMPLICIT", ASN1_GEN_FLAG_IMP),
sl@0
   617
		/* OCTET STRING wrapper */
sl@0
   618
		ASN1_GEN_STR("OCTWRAP", ASN1_GEN_FLAG_OCTWRAP),
sl@0
   619
		/* SEQUENCE wrapper */
sl@0
   620
		ASN1_GEN_STR("SEQWRAP", ASN1_GEN_FLAG_SEQWRAP),
sl@0
   621
		/* SET wrapper */
sl@0
   622
		ASN1_GEN_STR("SETWRAP", ASN1_GEN_FLAG_SETWRAP),
sl@0
   623
		/* BIT STRING wrapper */
sl@0
   624
		ASN1_GEN_STR("BITWRAP", ASN1_GEN_FLAG_BITWRAP),
sl@0
   625
		ASN1_GEN_STR("FORM", ASN1_GEN_FLAG_FORMAT),
sl@0
   626
		ASN1_GEN_STR("FORMAT", ASN1_GEN_FLAG_FORMAT),
sl@0
   627
	};
sl@0
   628
#endif
sl@0
   629
sl@0
   630
static int asn1_str2tag(const char *tagstr, int len)
sl@0
   631
	{
sl@0
   632
	unsigned int i;
sl@0
   633
#ifndef EMULATOR	
sl@0
   634
	static struct tag_name_st *tntmp, tnst [] = {
sl@0
   635
		ASN1_GEN_STR("BOOL", V_ASN1_BOOLEAN),
sl@0
   636
		ASN1_GEN_STR("BOOLEAN", V_ASN1_BOOLEAN),
sl@0
   637
		ASN1_GEN_STR("NULL", V_ASN1_NULL),
sl@0
   638
		ASN1_GEN_STR("INT", V_ASN1_INTEGER),
sl@0
   639
		ASN1_GEN_STR("INTEGER", V_ASN1_INTEGER),
sl@0
   640
		ASN1_GEN_STR("ENUM", V_ASN1_ENUMERATED),
sl@0
   641
		ASN1_GEN_STR("ENUMERATED", V_ASN1_ENUMERATED),
sl@0
   642
		ASN1_GEN_STR("OID", V_ASN1_OBJECT),
sl@0
   643
		ASN1_GEN_STR("OBJECT", V_ASN1_OBJECT),
sl@0
   644
		ASN1_GEN_STR("UTCTIME", V_ASN1_UTCTIME),
sl@0
   645
		ASN1_GEN_STR("UTC", V_ASN1_UTCTIME),
sl@0
   646
		ASN1_GEN_STR("GENERALIZEDTIME", V_ASN1_GENERALIZEDTIME),
sl@0
   647
		ASN1_GEN_STR("GENTIME", V_ASN1_GENERALIZEDTIME),
sl@0
   648
		ASN1_GEN_STR("OCT", V_ASN1_OCTET_STRING),
sl@0
   649
		ASN1_GEN_STR("OCTETSTRING", V_ASN1_OCTET_STRING),
sl@0
   650
		ASN1_GEN_STR("BITSTR", V_ASN1_BIT_STRING),
sl@0
   651
		ASN1_GEN_STR("BITSTRING", V_ASN1_BIT_STRING),
sl@0
   652
		ASN1_GEN_STR("UNIVERSALSTRING", V_ASN1_UNIVERSALSTRING),
sl@0
   653
		ASN1_GEN_STR("UNIV", V_ASN1_UNIVERSALSTRING),
sl@0
   654
		ASN1_GEN_STR("IA5", V_ASN1_IA5STRING),
sl@0
   655
		ASN1_GEN_STR("IA5STRING", V_ASN1_IA5STRING),
sl@0
   656
		ASN1_GEN_STR("UTF8", V_ASN1_UTF8STRING),
sl@0
   657
		ASN1_GEN_STR("UTF8String", V_ASN1_UTF8STRING),
sl@0
   658
		ASN1_GEN_STR("BMP", V_ASN1_BMPSTRING),
sl@0
   659
		ASN1_GEN_STR("BMPSTRING", V_ASN1_BMPSTRING),
sl@0
   660
		ASN1_GEN_STR("VISIBLESTRING", V_ASN1_VISIBLESTRING),
sl@0
   661
		ASN1_GEN_STR("VISIBLE", V_ASN1_VISIBLESTRING),
sl@0
   662
		ASN1_GEN_STR("PRINTABLESTRING", V_ASN1_PRINTABLESTRING),
sl@0
   663
		ASN1_GEN_STR("PRINTABLE", V_ASN1_PRINTABLESTRING),
sl@0
   664
		ASN1_GEN_STR("T61", V_ASN1_T61STRING),
sl@0
   665
		ASN1_GEN_STR("T61STRING", V_ASN1_T61STRING),
sl@0
   666
		ASN1_GEN_STR("TELETEXSTRING", V_ASN1_T61STRING),
sl@0
   667
		ASN1_GEN_STR("GeneralString", V_ASN1_GENERALSTRING),
sl@0
   668
		ASN1_GEN_STR("GENSTR", V_ASN1_GENERALSTRING),
sl@0
   669
sl@0
   670
		/* Special cases */
sl@0
   671
		ASN1_GEN_STR("SEQUENCE", V_ASN1_SEQUENCE),
sl@0
   672
		ASN1_GEN_STR("SEQ", V_ASN1_SEQUENCE),
sl@0
   673
		ASN1_GEN_STR("SET", V_ASN1_SET),
sl@0
   674
		/* type modifiers */
sl@0
   675
		/* Explicit tag */
sl@0
   676
		ASN1_GEN_STR("EXP", ASN1_GEN_FLAG_EXP),
sl@0
   677
		ASN1_GEN_STR("EXPLICIT", ASN1_GEN_FLAG_EXP),
sl@0
   678
		/* Implicit tag */
sl@0
   679
		ASN1_GEN_STR("IMP", ASN1_GEN_FLAG_IMP),
sl@0
   680
		ASN1_GEN_STR("IMPLICIT", ASN1_GEN_FLAG_IMP),
sl@0
   681
		/* OCTET STRING wrapper */
sl@0
   682
		ASN1_GEN_STR("OCTWRAP", ASN1_GEN_FLAG_OCTWRAP),
sl@0
   683
		/* SEQUENCE wrapper */
sl@0
   684
		ASN1_GEN_STR("SEQWRAP", ASN1_GEN_FLAG_SEQWRAP),
sl@0
   685
		/* SET wrapper */
sl@0
   686
		ASN1_GEN_STR("SETWRAP", ASN1_GEN_FLAG_SETWRAP),
sl@0
   687
		/* BIT STRING wrapper */
sl@0
   688
		ASN1_GEN_STR("BITWRAP", ASN1_GEN_FLAG_BITWRAP),
sl@0
   689
		ASN1_GEN_STR("FORM", ASN1_GEN_FLAG_FORMAT),
sl@0
   690
		ASN1_GEN_STR("FORMAT", ASN1_GEN_FLAG_FORMAT),
sl@0
   691
	};
sl@0
   692
#endif //EMULATOR
sl@0
   693
sl@0
   694
	if (len == -1)
sl@0
   695
		len = strlen(tagstr);
sl@0
   696
#ifndef EMULATOR	
sl@0
   697
	tntmp = tnst;
sl@0
   698
#else
sl@0
   699
    tntmp =(struct tag_name_st *) tnst;
sl@0
   700
#endif		
sl@0
   701
	for (i = 0; i < sizeof(tnst) / sizeof(struct tag_name_st); i++, tntmp++)
sl@0
   702
		{
sl@0
   703
		if ((len == tntmp->len) && !strncmp(tntmp->strnam, tagstr, len))
sl@0
   704
			return tntmp->tag;
sl@0
   705
		}
sl@0
   706
	
sl@0
   707
	return -1;
sl@0
   708
	}
sl@0
   709
sl@0
   710
static ASN1_TYPE *asn1_str2type(const char *str, int format, int utype)
sl@0
   711
	{
sl@0
   712
	ASN1_TYPE *atmp = NULL;
sl@0
   713
sl@0
   714
	CONF_VALUE vtmp;
sl@0
   715
sl@0
   716
	unsigned char *rdata;
sl@0
   717
	long rdlen;
sl@0
   718
sl@0
   719
	int no_unused = 1;
sl@0
   720
sl@0
   721
	if (!(atmp = ASN1_TYPE_new()))
sl@0
   722
		{
sl@0
   723
		ASN1err(ASN1_F_ASN1_STR2TYPE, ERR_R_MALLOC_FAILURE);
sl@0
   724
		return NULL;
sl@0
   725
		}
sl@0
   726
sl@0
   727
	if (!str)
sl@0
   728
		str = "";
sl@0
   729
sl@0
   730
	switch(utype)
sl@0
   731
		{
sl@0
   732
sl@0
   733
		case V_ASN1_NULL:
sl@0
   734
		if (str && *str)
sl@0
   735
			{
sl@0
   736
			ASN1err(ASN1_F_ASN1_STR2TYPE, ASN1_R_ILLEGAL_NULL_VALUE);
sl@0
   737
			goto bad_form;
sl@0
   738
			}
sl@0
   739
		break;
sl@0
   740
		
sl@0
   741
		case V_ASN1_BOOLEAN:
sl@0
   742
		if (format != ASN1_GEN_FORMAT_ASCII)
sl@0
   743
			{
sl@0
   744
			ASN1err(ASN1_F_ASN1_STR2TYPE, ASN1_R_NOT_ASCII_FORMAT);
sl@0
   745
			goto bad_form;
sl@0
   746
			}
sl@0
   747
			
sl@0
   748
		vtmp.name = NULL;
sl@0
   749
		vtmp.section = NULL;
sl@0
   750
		vtmp.value = (char *)str;
sl@0
   751
		if (!X509V3_get_value_bool(&vtmp, &atmp->value.boolean))
sl@0
   752
			{
sl@0
   753
			ASN1err(ASN1_F_ASN1_STR2TYPE, ASN1_R_ILLEGAL_BOOLEAN);
sl@0
   754
			goto bad_str;
sl@0
   755
			}
sl@0
   756
		break;
sl@0
   757
sl@0
   758
		case V_ASN1_INTEGER:
sl@0
   759
		case V_ASN1_ENUMERATED:
sl@0
   760
		if (format != ASN1_GEN_FORMAT_ASCII)
sl@0
   761
			{
sl@0
   762
			ASN1err(ASN1_F_ASN1_STR2TYPE, ASN1_R_INTEGER_NOT_ASCII_FORMAT);
sl@0
   763
			goto bad_form;
sl@0
   764
			}
sl@0
   765
		if (!(atmp->value.integer = s2i_ASN1_INTEGER(NULL, (char *)str)))
sl@0
   766
			{
sl@0
   767
			ASN1err(ASN1_F_ASN1_STR2TYPE, ASN1_R_ILLEGAL_INTEGER);
sl@0
   768
			goto bad_str;
sl@0
   769
			}
sl@0
   770
		break;
sl@0
   771
sl@0
   772
		case V_ASN1_OBJECT:
sl@0
   773
		if (format != ASN1_GEN_FORMAT_ASCII)
sl@0
   774
			{
sl@0
   775
			ASN1err(ASN1_F_ASN1_STR2TYPE, ASN1_R_OBJECT_NOT_ASCII_FORMAT);
sl@0
   776
			goto bad_form;
sl@0
   777
			}
sl@0
   778
		if (!(atmp->value.object = OBJ_txt2obj(str, 0)))
sl@0
   779
			{
sl@0
   780
			ASN1err(ASN1_F_ASN1_STR2TYPE, ASN1_R_ILLEGAL_OBJECT);
sl@0
   781
			goto bad_str;
sl@0
   782
			}
sl@0
   783
		break;
sl@0
   784
sl@0
   785
		case V_ASN1_UTCTIME:
sl@0
   786
		case V_ASN1_GENERALIZEDTIME:
sl@0
   787
		if (format != ASN1_GEN_FORMAT_ASCII)
sl@0
   788
			{
sl@0
   789
			ASN1err(ASN1_F_ASN1_STR2TYPE, ASN1_R_TIME_NOT_ASCII_FORMAT);
sl@0
   790
			goto bad_form;
sl@0
   791
			}
sl@0
   792
		if (!(atmp->value.asn1_string = ASN1_STRING_new()))
sl@0
   793
			{
sl@0
   794
			ASN1err(ASN1_F_ASN1_STR2TYPE, ERR_R_MALLOC_FAILURE);
sl@0
   795
			goto bad_str;
sl@0
   796
			}
sl@0
   797
		if (!ASN1_STRING_set(atmp->value.asn1_string, str, -1))
sl@0
   798
			{
sl@0
   799
			ASN1err(ASN1_F_ASN1_STR2TYPE, ERR_R_MALLOC_FAILURE);
sl@0
   800
			goto bad_str;
sl@0
   801
			}
sl@0
   802
		atmp->value.asn1_string->type = utype;
sl@0
   803
		if (!ASN1_TIME_check(atmp->value.asn1_string))
sl@0
   804
			{
sl@0
   805
			ASN1err(ASN1_F_ASN1_STR2TYPE, ASN1_R_ILLEGAL_TIME_VALUE);
sl@0
   806
			goto bad_str;
sl@0
   807
			}
sl@0
   808
sl@0
   809
		break;
sl@0
   810
sl@0
   811
		case V_ASN1_BMPSTRING:
sl@0
   812
		case V_ASN1_PRINTABLESTRING:
sl@0
   813
		case V_ASN1_IA5STRING:
sl@0
   814
		case V_ASN1_T61STRING:
sl@0
   815
		case V_ASN1_UTF8STRING:
sl@0
   816
		case V_ASN1_VISIBLESTRING:
sl@0
   817
		case V_ASN1_UNIVERSALSTRING:
sl@0
   818
		case V_ASN1_GENERALSTRING:
sl@0
   819
sl@0
   820
		if (format == ASN1_GEN_FORMAT_ASCII)
sl@0
   821
			format = MBSTRING_ASC;
sl@0
   822
		else if (format == ASN1_GEN_FORMAT_UTF8)
sl@0
   823
			format = MBSTRING_UTF8;
sl@0
   824
		else
sl@0
   825
			{
sl@0
   826
			ASN1err(ASN1_F_ASN1_STR2TYPE, ASN1_R_ILLEGAL_FORMAT);
sl@0
   827
			goto bad_form;
sl@0
   828
			}
sl@0
   829
sl@0
   830
sl@0
   831
		if (ASN1_mbstring_copy(&atmp->value.asn1_string, (unsigned char *)str,
sl@0
   832
						-1, format, ASN1_tag2bit(utype)) <= 0)
sl@0
   833
			{
sl@0
   834
			ASN1err(ASN1_F_ASN1_STR2TYPE, ERR_R_MALLOC_FAILURE);
sl@0
   835
			goto bad_str;
sl@0
   836
			}
sl@0
   837
		
sl@0
   838
sl@0
   839
		break;
sl@0
   840
sl@0
   841
		case V_ASN1_BIT_STRING:
sl@0
   842
sl@0
   843
		case V_ASN1_OCTET_STRING:
sl@0
   844
sl@0
   845
		if (!(atmp->value.asn1_string = ASN1_STRING_new()))
sl@0
   846
			{
sl@0
   847
			ASN1err(ASN1_F_ASN1_STR2TYPE, ERR_R_MALLOC_FAILURE);
sl@0
   848
			goto bad_form;
sl@0
   849
			}
sl@0
   850
sl@0
   851
		if (format == ASN1_GEN_FORMAT_HEX)
sl@0
   852
			{
sl@0
   853
sl@0
   854
			if (!(rdata = string_to_hex((char *)str, &rdlen)))
sl@0
   855
				{
sl@0
   856
				ASN1err(ASN1_F_ASN1_STR2TYPE, ASN1_R_ILLEGAL_HEX);
sl@0
   857
				goto bad_str;
sl@0
   858
				}
sl@0
   859
sl@0
   860
			atmp->value.asn1_string->data = rdata;
sl@0
   861
			atmp->value.asn1_string->length = rdlen;
sl@0
   862
			atmp->value.asn1_string->type = utype;
sl@0
   863
sl@0
   864
			}
sl@0
   865
		else if (format == ASN1_GEN_FORMAT_ASCII)
sl@0
   866
			ASN1_STRING_set(atmp->value.asn1_string, str, -1);
sl@0
   867
		else if ((format == ASN1_GEN_FORMAT_BITLIST) && (utype == V_ASN1_BIT_STRING))
sl@0
   868
			{
sl@0
   869
			if (!CONF_parse_list(str, ',', 1, bitstr_cb, atmp->value.bit_string))
sl@0
   870
				{
sl@0
   871
				ASN1err(ASN1_F_ASN1_STR2TYPE, ASN1_R_LIST_ERROR);
sl@0
   872
				goto bad_str;
sl@0
   873
				}
sl@0
   874
			no_unused = 0;
sl@0
   875
			
sl@0
   876
			}
sl@0
   877
		else 
sl@0
   878
			{
sl@0
   879
			ASN1err(ASN1_F_ASN1_STR2TYPE, ASN1_R_ILLEGAL_BITSTRING_FORMAT);
sl@0
   880
			goto bad_form;
sl@0
   881
			}
sl@0
   882
sl@0
   883
		if ((utype == V_ASN1_BIT_STRING) && no_unused)
sl@0
   884
			{
sl@0
   885
			atmp->value.asn1_string->flags
sl@0
   886
				&= ~(ASN1_STRING_FLAG_BITS_LEFT|0x07);
sl@0
   887
        		atmp->value.asn1_string->flags
sl@0
   888
				|= ASN1_STRING_FLAG_BITS_LEFT;
sl@0
   889
			}
sl@0
   890
sl@0
   891
sl@0
   892
		break;
sl@0
   893
sl@0
   894
		default:
sl@0
   895
		ASN1err(ASN1_F_ASN1_STR2TYPE, ASN1_R_UNSUPPORTED_TYPE);
sl@0
   896
		goto bad_str;
sl@0
   897
		break;
sl@0
   898
		}
sl@0
   899
sl@0
   900
sl@0
   901
	atmp->type = utype;
sl@0
   902
	return atmp;
sl@0
   903
sl@0
   904
sl@0
   905
	bad_str:
sl@0
   906
	ERR_add_error_data(2, "string=", str);
sl@0
   907
	bad_form:
sl@0
   908
sl@0
   909
	ASN1_TYPE_free(atmp);
sl@0
   910
	return NULL;
sl@0
   911
sl@0
   912
	}
sl@0
   913
	
sl@0
   914
static int bitstr_cb(const char *elem, int len, void *bitstr)
sl@0
   915
	{
sl@0
   916
	long bitnum;
sl@0
   917
	char *eptr;
sl@0
   918
	if (!elem)
sl@0
   919
		return 0;
sl@0
   920
	bitnum = strtoul(elem, &eptr, 10);
sl@0
   921
	if (eptr && *eptr && (eptr != elem + len))
sl@0
   922
		return 0;
sl@0
   923
	if (bitnum < 0)
sl@0
   924
		{
sl@0
   925
		ASN1err(ASN1_F_BITSTR_CB, ASN1_R_INVALID_NUMBER);
sl@0
   926
		return 0;
sl@0
   927
		}
sl@0
   928
	if (!ASN1_BIT_STRING_set_bit(bitstr, bitnum, 1))
sl@0
   929
		{
sl@0
   930
		ASN1err(ASN1_F_BITSTR_CB, ERR_R_MALLOC_FAILURE);
sl@0
   931
		return 0;
sl@0
   932
		}
sl@0
   933
	return 1;
sl@0
   934
	}
sl@0
   935