os/ossrv/ssl/libcrypto/src/crypto/asn1/tasn_fre.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* tasn_fre.c */
sl@0
     2
/* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL
sl@0
     3
 * project 2000.
sl@0
     4
 */
sl@0
     5
/* ====================================================================
sl@0
     6
 * Copyright (c) 2000 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
sl@0
    60
#include <stddef.h>
sl@0
    61
#include <openssl/asn1.h>
sl@0
    62
#include <openssl/asn1t.h>
sl@0
    63
#include <openssl/objects.h>
sl@0
    64
sl@0
    65
static void asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int combine);
sl@0
    66
sl@0
    67
/* Free up an ASN1 structure */
sl@0
    68
sl@0
    69
EXPORT_C void ASN1_item_free(ASN1_VALUE *val, const ASN1_ITEM *it)
sl@0
    70
	{
sl@0
    71
	asn1_item_combine_free(&val, it, 0);
sl@0
    72
	}
sl@0
    73
sl@0
    74
EXPORT_C void ASN1_item_ex_free(ASN1_VALUE **pval, const ASN1_ITEM *it)
sl@0
    75
	{
sl@0
    76
	asn1_item_combine_free(pval, it, 0);
sl@0
    77
	}
sl@0
    78
sl@0
    79
static void asn1_item_combine_free(ASN1_VALUE **pval, const ASN1_ITEM *it, int combine)
sl@0
    80
	{
sl@0
    81
	const ASN1_TEMPLATE *tt = NULL, *seqtt;
sl@0
    82
	const ASN1_EXTERN_FUNCS *ef;
sl@0
    83
	const ASN1_COMPAT_FUNCS *cf;
sl@0
    84
	const ASN1_AUX *aux = it->funcs;
sl@0
    85
	ASN1_aux_cb *asn1_cb;
sl@0
    86
	int i;
sl@0
    87
	if (!pval)
sl@0
    88
		return;
sl@0
    89
	if ((it->itype != ASN1_ITYPE_PRIMITIVE) && !*pval)
sl@0
    90
		return;
sl@0
    91
	if (aux && aux->asn1_cb)
sl@0
    92
		asn1_cb = aux->asn1_cb;
sl@0
    93
	else
sl@0
    94
		asn1_cb = 0;
sl@0
    95
sl@0
    96
	switch(it->itype)
sl@0
    97
		{
sl@0
    98
sl@0
    99
		case ASN1_ITYPE_PRIMITIVE:
sl@0
   100
		if (it->templates)
sl@0
   101
			ASN1_template_free(pval, it->templates);
sl@0
   102
		else
sl@0
   103
			ASN1_primitive_free(pval, it);
sl@0
   104
		break;
sl@0
   105
sl@0
   106
		case ASN1_ITYPE_MSTRING:
sl@0
   107
		ASN1_primitive_free(pval, it);
sl@0
   108
		break;
sl@0
   109
sl@0
   110
		case ASN1_ITYPE_CHOICE:
sl@0
   111
		if (asn1_cb)
sl@0
   112
			{
sl@0
   113
			i = asn1_cb(ASN1_OP_FREE_PRE, pval, it);
sl@0
   114
			if (i == 2)
sl@0
   115
				return;
sl@0
   116
			}
sl@0
   117
		i = asn1_get_choice_selector(pval, it);
sl@0
   118
		if (asn1_cb)
sl@0
   119
			asn1_cb(ASN1_OP_FREE_PRE, pval, it);
sl@0
   120
		if ((i >= 0) && (i < it->tcount))
sl@0
   121
			{
sl@0
   122
			ASN1_VALUE **pchval;
sl@0
   123
			tt = it->templates + i;
sl@0
   124
			pchval = asn1_get_field_ptr(pval, tt);
sl@0
   125
			ASN1_template_free(pchval, tt);
sl@0
   126
			}
sl@0
   127
		if (asn1_cb)
sl@0
   128
			asn1_cb(ASN1_OP_FREE_POST, pval, it);
sl@0
   129
		if (!combine)
sl@0
   130
			{
sl@0
   131
			OPENSSL_free(*pval);
sl@0
   132
			*pval = NULL;
sl@0
   133
			}
sl@0
   134
		break;
sl@0
   135
sl@0
   136
		case ASN1_ITYPE_COMPAT:
sl@0
   137
		cf = it->funcs;
sl@0
   138
		if (cf && cf->asn1_free)
sl@0
   139
			cf->asn1_free(*pval);
sl@0
   140
		break;
sl@0
   141
sl@0
   142
		case ASN1_ITYPE_EXTERN:
sl@0
   143
		ef = it->funcs;
sl@0
   144
		if (ef && ef->asn1_ex_free)
sl@0
   145
			ef->asn1_ex_free(pval, it);
sl@0
   146
		break;
sl@0
   147
sl@0
   148
		case ASN1_ITYPE_NDEF_SEQUENCE:
sl@0
   149
		case ASN1_ITYPE_SEQUENCE:
sl@0
   150
		if (asn1_do_lock(pval, -1, it) > 0)
sl@0
   151
			return;
sl@0
   152
		if (asn1_cb)
sl@0
   153
			{
sl@0
   154
			i = asn1_cb(ASN1_OP_FREE_PRE, pval, it);
sl@0
   155
			if (i == 2)
sl@0
   156
				return;
sl@0
   157
			}		
sl@0
   158
		asn1_enc_free(pval, it);
sl@0
   159
		/* If we free up as normal we will invalidate any
sl@0
   160
		 * ANY DEFINED BY field and we wont be able to 
sl@0
   161
		 * determine the type of the field it defines. So
sl@0
   162
		 * free up in reverse order.
sl@0
   163
		 */
sl@0
   164
		tt = it->templates + it->tcount - 1;
sl@0
   165
		for (i = 0; i < it->tcount; tt--, i++)
sl@0
   166
			{
sl@0
   167
			ASN1_VALUE **pseqval;
sl@0
   168
			seqtt = asn1_do_adb(pval, tt, 0);
sl@0
   169
			if (!seqtt)
sl@0
   170
				continue;
sl@0
   171
			pseqval = asn1_get_field_ptr(pval, seqtt);
sl@0
   172
			ASN1_template_free(pseqval, seqtt);
sl@0
   173
			}
sl@0
   174
		if (asn1_cb)
sl@0
   175
			asn1_cb(ASN1_OP_FREE_POST, pval, it);
sl@0
   176
		if (!combine)
sl@0
   177
			{
sl@0
   178
			OPENSSL_free(*pval);
sl@0
   179
			*pval = NULL;
sl@0
   180
			}
sl@0
   181
		break;
sl@0
   182
		}
sl@0
   183
	}
sl@0
   184
sl@0
   185
EXPORT_C void ASN1_template_free(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt)
sl@0
   186
	{
sl@0
   187
	int i;
sl@0
   188
	if (tt->flags & ASN1_TFLG_SK_MASK)
sl@0
   189
		{
sl@0
   190
		STACK_OF(ASN1_VALUE) *sk = (STACK_OF(ASN1_VALUE) *)*pval;
sl@0
   191
		for (i = 0; i < sk_ASN1_VALUE_num(sk); i++)
sl@0
   192
			{
sl@0
   193
			ASN1_VALUE *vtmp;
sl@0
   194
			vtmp = sk_ASN1_VALUE_value(sk, i);
sl@0
   195
			asn1_item_combine_free(&vtmp, ASN1_ITEM_ptr(tt->item),
sl@0
   196
									0);
sl@0
   197
			}
sl@0
   198
		sk_ASN1_VALUE_free(sk);
sl@0
   199
		*pval = NULL;
sl@0
   200
		}
sl@0
   201
	else
sl@0
   202
		asn1_item_combine_free(pval, ASN1_ITEM_ptr(tt->item),
sl@0
   203
						tt->flags & ASN1_TFLG_COMBINE);
sl@0
   204
	}
sl@0
   205
sl@0
   206
EXPORT_C void ASN1_primitive_free(ASN1_VALUE **pval, const ASN1_ITEM *it)
sl@0
   207
	{
sl@0
   208
	int utype;
sl@0
   209
	if (it)
sl@0
   210
		{
sl@0
   211
		const ASN1_PRIMITIVE_FUNCS *pf;
sl@0
   212
		pf = it->funcs;
sl@0
   213
		if (pf && pf->prim_free)
sl@0
   214
			{
sl@0
   215
			pf->prim_free(pval, it);
sl@0
   216
			return;
sl@0
   217
			}
sl@0
   218
		}
sl@0
   219
	/* Special case: if 'it' is NULL free contents of ASN1_TYPE */
sl@0
   220
	if (!it)
sl@0
   221
		{
sl@0
   222
		ASN1_TYPE *typ = (ASN1_TYPE *)*pval;
sl@0
   223
		utype = typ->type;
sl@0
   224
		pval = (ASN1_VALUE **)&typ->value.ptr;
sl@0
   225
		if (!*pval)
sl@0
   226
			return;
sl@0
   227
		}
sl@0
   228
	else if (it->itype == ASN1_ITYPE_MSTRING)
sl@0
   229
		{
sl@0
   230
		utype = -1;
sl@0
   231
		if (!*pval)
sl@0
   232
			return;
sl@0
   233
		}
sl@0
   234
	else
sl@0
   235
		{
sl@0
   236
		utype = it->utype;
sl@0
   237
		if ((utype != V_ASN1_BOOLEAN) && !*pval)
sl@0
   238
			return;
sl@0
   239
		}
sl@0
   240
sl@0
   241
	switch(utype)
sl@0
   242
		{
sl@0
   243
		case V_ASN1_OBJECT:
sl@0
   244
		ASN1_OBJECT_free((ASN1_OBJECT *)*pval);
sl@0
   245
		break;
sl@0
   246
sl@0
   247
		case V_ASN1_BOOLEAN:
sl@0
   248
		if (it)
sl@0
   249
			*(ASN1_BOOLEAN *)pval = it->size;
sl@0
   250
		else
sl@0
   251
			*(ASN1_BOOLEAN *)pval = -1;
sl@0
   252
		return;
sl@0
   253
sl@0
   254
		case V_ASN1_NULL:
sl@0
   255
		break;
sl@0
   256
sl@0
   257
		case V_ASN1_ANY:
sl@0
   258
		ASN1_primitive_free(pval, NULL);
sl@0
   259
		OPENSSL_free(*pval);
sl@0
   260
		break;
sl@0
   261
sl@0
   262
		default:
sl@0
   263
		ASN1_STRING_free((ASN1_STRING *)*pval);
sl@0
   264
		*pval = NULL;
sl@0
   265
		break;
sl@0
   266
		}
sl@0
   267
	*pval = NULL;
sl@0
   268
	}