os/ossrv/ssl/libcrypto/src/crypto/asn1/x_name.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* crypto/asn1/x_name.c */
sl@0
     2
/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
sl@0
     3
 * All rights reserved.
sl@0
     4
 *
sl@0
     5
 * This package is an SSL implementation written
sl@0
     6
 * by Eric Young (eay@cryptsoft.com).
sl@0
     7
 * The implementation was written so as to conform with Netscapes SSL.
sl@0
     8
 * 
sl@0
     9
 * This library is free for commercial and non-commercial use as long as
sl@0
    10
 * the following conditions are aheared to.  The following conditions
sl@0
    11
 * apply to all code found in this distribution, be it the RC4, RSA,
sl@0
    12
 * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
sl@0
    13
 * included with this distribution is covered by the same copyright terms
sl@0
    14
 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
sl@0
    15
 * 
sl@0
    16
 * Copyright remains Eric Young's, and as such any Copyright notices in
sl@0
    17
 * the code are not to be removed.
sl@0
    18
 * If this package is used in a product, Eric Young should be given attribution
sl@0
    19
 * as the author of the parts of the library used.
sl@0
    20
 * This can be in the form of a textual message at program startup or
sl@0
    21
 * in documentation (online or textual) provided with the package.
sl@0
    22
 * 
sl@0
    23
 * Redistribution and use in source and binary forms, with or without
sl@0
    24
 * modification, are permitted provided that the following conditions
sl@0
    25
 * are met:
sl@0
    26
 * 1. Redistributions of source code must retain the copyright
sl@0
    27
 *    notice, this list of conditions and the following disclaimer.
sl@0
    28
 * 2. Redistributions in binary form must reproduce the above copyright
sl@0
    29
 *    notice, this list of conditions and the following disclaimer in the
sl@0
    30
 *    documentation and/or other materials provided with the distribution.
sl@0
    31
 * 3. All advertising materials mentioning features or use of this software
sl@0
    32
 *    must display the following acknowledgement:
sl@0
    33
 *    "This product includes cryptographic software written by
sl@0
    34
 *     Eric Young (eay@cryptsoft.com)"
sl@0
    35
 *    The word 'cryptographic' can be left out if the rouines from the library
sl@0
    36
 *    being used are not cryptographic related :-).
sl@0
    37
 * 4. If you include any Windows specific code (or a derivative thereof) from 
sl@0
    38
 *    the apps directory (application code) you must include an acknowledgement:
sl@0
    39
 *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
sl@0
    40
 * 
sl@0
    41
 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
sl@0
    42
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
sl@0
    43
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
sl@0
    44
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
sl@0
    45
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
sl@0
    46
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
sl@0
    47
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
sl@0
    48
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
sl@0
    49
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
sl@0
    50
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
sl@0
    51
 * SUCH DAMAGE.
sl@0
    52
 * 
sl@0
    53
 * The licence and distribution terms for any publically available version or
sl@0
    54
 * derivative of this code cannot be changed.  i.e. this code cannot simply be
sl@0
    55
 * copied and put under another distribution licence
sl@0
    56
 * [including the GNU Public Licence.]
sl@0
    57
 */
sl@0
    58
sl@0
    59
#include <stdio.h>
sl@0
    60
#include "cryptlib.h"
sl@0
    61
#include <openssl/asn1t.h>
sl@0
    62
#include <openssl/x509.h>
sl@0
    63
sl@0
    64
static int x509_name_ex_d2i(ASN1_VALUE **val, const unsigned char **in, long len, const ASN1_ITEM *it,
sl@0
    65
					int tag, int aclass, char opt, ASN1_TLC *ctx);
sl@0
    66
sl@0
    67
static int x509_name_ex_i2d(ASN1_VALUE **val, unsigned char **out, const ASN1_ITEM *it, int tag, int aclass);
sl@0
    68
static int x509_name_ex_new(ASN1_VALUE **val, const ASN1_ITEM *it);
sl@0
    69
static void x509_name_ex_free(ASN1_VALUE **val, const ASN1_ITEM *it);
sl@0
    70
sl@0
    71
static int x509_name_encode(X509_NAME *a);
sl@0
    72
sl@0
    73
ASN1_SEQUENCE(X509_NAME_ENTRY) = {
sl@0
    74
	ASN1_SIMPLE(X509_NAME_ENTRY, object, ASN1_OBJECT),
sl@0
    75
	ASN1_SIMPLE(X509_NAME_ENTRY, value, ASN1_PRINTABLE)
sl@0
    76
} ASN1_SEQUENCE_END(X509_NAME_ENTRY)
sl@0
    77
sl@0
    78
IMPLEMENT_ASN1_FUNCTIONS(X509_NAME_ENTRY)
sl@0
    79
IMPLEMENT_ASN1_DUP_FUNCTION(X509_NAME_ENTRY)
sl@0
    80
sl@0
    81
/* For the "Name" type we need a SEQUENCE OF { SET OF X509_NAME_ENTRY }
sl@0
    82
 * so declare two template wrappers for this
sl@0
    83
 */
sl@0
    84
sl@0
    85
ASN1_ITEM_TEMPLATE(X509_NAME_ENTRIES) =
sl@0
    86
	ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SET_OF, 0, RDNS, X509_NAME_ENTRY)
sl@0
    87
ASN1_ITEM_TEMPLATE_END(X509_NAME_ENTRIES)
sl@0
    88
sl@0
    89
ASN1_ITEM_TEMPLATE(X509_NAME_INTERNAL) =
sl@0
    90
	ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SEQUENCE_OF, 0, Name, X509_NAME_ENTRIES)
sl@0
    91
ASN1_ITEM_TEMPLATE_END(X509_NAME_INTERNAL)
sl@0
    92
sl@0
    93
/* Normally that's where it would end: we'd have two nested STACK structures
sl@0
    94
 * representing the ASN1. Unfortunately X509_NAME uses a completely different
sl@0
    95
 * form and caches encodings so we have to process the internal form and convert
sl@0
    96
 * to the external form.
sl@0
    97
 */
sl@0
    98
sl@0
    99
const ASN1_EXTERN_FUNCS x509_name_ff = {
sl@0
   100
	NULL,
sl@0
   101
	x509_name_ex_new,
sl@0
   102
	x509_name_ex_free,
sl@0
   103
	0,	/* Default clear behaviour is OK */
sl@0
   104
	x509_name_ex_d2i,
sl@0
   105
	x509_name_ex_i2d
sl@0
   106
};
sl@0
   107
sl@0
   108
IMPLEMENT_EXTERN_ASN1(X509_NAME, V_ASN1_SEQUENCE, x509_name_ff) 
sl@0
   109
sl@0
   110
IMPLEMENT_ASN1_FUNCTIONS(X509_NAME)
sl@0
   111
IMPLEMENT_ASN1_DUP_FUNCTION(X509_NAME)
sl@0
   112
sl@0
   113
static int x509_name_ex_new(ASN1_VALUE **val, const ASN1_ITEM *it)
sl@0
   114
{
sl@0
   115
	X509_NAME *ret = NULL;
sl@0
   116
	ret = OPENSSL_malloc(sizeof(X509_NAME));
sl@0
   117
	if(!ret) goto memerr;
sl@0
   118
	if ((ret->entries=sk_X509_NAME_ENTRY_new_null()) == NULL)
sl@0
   119
		goto memerr;
sl@0
   120
	if((ret->bytes = BUF_MEM_new()) == NULL) goto memerr;
sl@0
   121
	ret->modified=1;
sl@0
   122
	*val = (ASN1_VALUE *)ret;
sl@0
   123
	return 1;
sl@0
   124
sl@0
   125
 memerr:
sl@0
   126
	ASN1err(ASN1_F_X509_NAME_EX_NEW, ERR_R_MALLOC_FAILURE);
sl@0
   127
	if (ret)
sl@0
   128
		{
sl@0
   129
		if (ret->entries)
sl@0
   130
			sk_X509_NAME_ENTRY_free(ret->entries);
sl@0
   131
		OPENSSL_free(ret);
sl@0
   132
		}
sl@0
   133
	return 0;
sl@0
   134
}
sl@0
   135
sl@0
   136
static void x509_name_ex_free(ASN1_VALUE **pval, const ASN1_ITEM *it)
sl@0
   137
{
sl@0
   138
	X509_NAME *a;
sl@0
   139
	if(!pval || !*pval)
sl@0
   140
	    return;
sl@0
   141
	a = (X509_NAME *)*pval;
sl@0
   142
sl@0
   143
	BUF_MEM_free(a->bytes);
sl@0
   144
	sk_X509_NAME_ENTRY_pop_free(a->entries,X509_NAME_ENTRY_free);
sl@0
   145
	OPENSSL_free(a);
sl@0
   146
	*pval = NULL;
sl@0
   147
}
sl@0
   148
sl@0
   149
/* Used with sk_pop_free() to free up the internal representation.
sl@0
   150
 * NB: we only free the STACK and not its contents because it is
sl@0
   151
 * already present in the X509_NAME structure.
sl@0
   152
 */
sl@0
   153
sl@0
   154
static void sk_internal_free(void *a)
sl@0
   155
{
sl@0
   156
	sk_free(a);
sl@0
   157
}
sl@0
   158
sl@0
   159
static int x509_name_ex_d2i(ASN1_VALUE **val, const unsigned char **in, long len, const ASN1_ITEM *it,
sl@0
   160
					int tag, int aclass, char opt, ASN1_TLC *ctx)
sl@0
   161
{
sl@0
   162
	const unsigned char *p = *in, *q;
sl@0
   163
	union { STACK *s; ASN1_VALUE *a; } intname = {NULL};
sl@0
   164
	union { X509_NAME *x; ASN1_VALUE *a; } nm = {NULL};
sl@0
   165
	int i, j, ret;
sl@0
   166
	STACK_OF(X509_NAME_ENTRY) *entries;
sl@0
   167
	X509_NAME_ENTRY *entry;
sl@0
   168
	q = p;
sl@0
   169
sl@0
   170
	/* Get internal representation of Name */
sl@0
   171
	ret = ASN1_item_ex_d2i(&intname.a,
sl@0
   172
			       &p, len, ASN1_ITEM_rptr(X509_NAME_INTERNAL),
sl@0
   173
			       tag, aclass, opt, ctx);
sl@0
   174
	
sl@0
   175
	if(ret <= 0) return ret;
sl@0
   176
sl@0
   177
	if(*val) x509_name_ex_free(val, NULL);
sl@0
   178
	if(!x509_name_ex_new(&nm.a, NULL)) goto err;
sl@0
   179
	/* We've decoded it: now cache encoding */
sl@0
   180
	if(!BUF_MEM_grow(nm.x->bytes, p - q)) goto err;
sl@0
   181
	memcpy(nm.x->bytes->data, q, p - q);
sl@0
   182
sl@0
   183
	/* Convert internal representation to X509_NAME structure */
sl@0
   184
	for(i = 0; i < sk_num(intname.s); i++) {
sl@0
   185
		entries = (STACK_OF(X509_NAME_ENTRY) *)sk_value(intname.s, i);
sl@0
   186
		for(j = 0; j < sk_X509_NAME_ENTRY_num(entries); j++) {
sl@0
   187
			entry = sk_X509_NAME_ENTRY_value(entries, j);
sl@0
   188
			entry->set = i;
sl@0
   189
			if(!sk_X509_NAME_ENTRY_push(nm.x->entries, entry))
sl@0
   190
				goto err;
sl@0
   191
		}
sl@0
   192
		sk_X509_NAME_ENTRY_free(entries);
sl@0
   193
	}
sl@0
   194
	sk_free(intname.s);
sl@0
   195
	nm.x->modified = 0;
sl@0
   196
	*val = nm.a;
sl@0
   197
	*in = p;
sl@0
   198
	return ret;
sl@0
   199
	err:
sl@0
   200
	ASN1err(ASN1_F_X509_NAME_EX_D2I, ERR_R_NESTED_ASN1_ERROR);
sl@0
   201
	return 0;
sl@0
   202
}
sl@0
   203
sl@0
   204
static int x509_name_ex_i2d(ASN1_VALUE **val, unsigned char **out, const ASN1_ITEM *it, int tag, int aclass)
sl@0
   205
{
sl@0
   206
	int ret;
sl@0
   207
	X509_NAME *a = (X509_NAME *)*val;
sl@0
   208
	if(a->modified) {
sl@0
   209
		ret = x509_name_encode((X509_NAME *)a);
sl@0
   210
		if(ret < 0) return ret;
sl@0
   211
	}
sl@0
   212
	ret = a->bytes->length;
sl@0
   213
	if(out != NULL) {
sl@0
   214
		memcpy(*out,a->bytes->data,ret);
sl@0
   215
		*out+=ret;
sl@0
   216
	}
sl@0
   217
	return ret;
sl@0
   218
}
sl@0
   219
sl@0
   220
static int x509_name_encode(X509_NAME *a)
sl@0
   221
{
sl@0
   222
	union { STACK *s; ASN1_VALUE *a; } intname = {NULL};
sl@0
   223
	int len;
sl@0
   224
	unsigned char *p;
sl@0
   225
	STACK_OF(X509_NAME_ENTRY) *entries = NULL;
sl@0
   226
	X509_NAME_ENTRY *entry;
sl@0
   227
	int i, set = -1;
sl@0
   228
	intname.s = sk_new_null();
sl@0
   229
	if(!intname.s) goto memerr;
sl@0
   230
	for(i = 0; i < sk_X509_NAME_ENTRY_num(a->entries); i++) {
sl@0
   231
		entry = sk_X509_NAME_ENTRY_value(a->entries, i);
sl@0
   232
		if(entry->set != set) {
sl@0
   233
			entries = sk_X509_NAME_ENTRY_new_null();
sl@0
   234
			if(!entries) goto memerr;
sl@0
   235
			if(!sk_push(intname.s, (char *)entries)) goto memerr;
sl@0
   236
			set = entry->set;
sl@0
   237
		}
sl@0
   238
		if(!sk_X509_NAME_ENTRY_push(entries, entry)) goto memerr;
sl@0
   239
	}
sl@0
   240
	len = ASN1_item_ex_i2d(&intname.a, NULL,
sl@0
   241
			       ASN1_ITEM_rptr(X509_NAME_INTERNAL), -1, -1);
sl@0
   242
	if (!BUF_MEM_grow(a->bytes,len)) goto memerr;
sl@0
   243
	p=(unsigned char *)a->bytes->data;
sl@0
   244
	ASN1_item_ex_i2d(&intname.a,
sl@0
   245
			 &p, ASN1_ITEM_rptr(X509_NAME_INTERNAL), -1, -1);
sl@0
   246
	sk_pop_free(intname.s, sk_internal_free);
sl@0
   247
	a->modified = 0;
sl@0
   248
	return len;
sl@0
   249
	memerr:
sl@0
   250
	sk_pop_free(intname.s, sk_internal_free);
sl@0
   251
	ASN1err(ASN1_F_X509_NAME_ENCODE, ERR_R_MALLOC_FAILURE);
sl@0
   252
	return -1;
sl@0
   253
}
sl@0
   254
sl@0
   255
sl@0
   256
EXPORT_C int X509_NAME_set(X509_NAME **xn, X509_NAME *name)
sl@0
   257
	{
sl@0
   258
	X509_NAME *in;
sl@0
   259
sl@0
   260
	if (!xn || !name) return(0);
sl@0
   261
sl@0
   262
	if (*xn != name)
sl@0
   263
		{
sl@0
   264
		in=X509_NAME_dup(name);
sl@0
   265
		if (in != NULL)
sl@0
   266
			{
sl@0
   267
			X509_NAME_free(*xn);
sl@0
   268
			*xn=in;
sl@0
   269
			}
sl@0
   270
		}
sl@0
   271
	return(*xn != NULL);
sl@0
   272
	}
sl@0
   273
	
sl@0
   274
IMPLEMENT_STACK_OF(X509_NAME_ENTRY)
sl@0
   275
IMPLEMENT_ASN1_SET_OF(X509_NAME_ENTRY)