GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: lib/libcrypto/asn1/tasn_new.c Lines: 103 128 80.5 %
Date: 2017-11-07 Branches: 76 123 61.8 %

Line Branch Exec Source
1
/* $OpenBSD: tasn_new.c,v 1.17 2017/01/29 17:49:22 beck Exp $ */
2
/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3
 * project 2000.
4
 */
5
/* ====================================================================
6
 * Copyright (c) 2000-2004 The OpenSSL Project.  All rights reserved.
7
 *
8
 * Redistribution and use in source and binary forms, with or without
9
 * modification, are permitted provided that the following conditions
10
 * are met:
11
 *
12
 * 1. Redistributions of source code must retain the above copyright
13
 *    notice, this list of conditions and the following disclaimer.
14
 *
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
18
 *    distribution.
19
 *
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/)"
24
 *
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.
29
 *
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.
33
 *
34
 * 6. Redistributions of any form whatsoever must retain the following
35
 *    acknowledgment:
36
 *    "This product includes software developed by the OpenSSL Project
37
 *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38
 *
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
 * ====================================================================
52
 *
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).
56
 *
57
 */
58
59
60
#include <stddef.h>
61
#include <openssl/asn1.h>
62
#include <openssl/objects.h>
63
#include <openssl/err.h>
64
#include <openssl/asn1t.h>
65
#include <string.h>
66
67
static int asn1_item_ex_combine_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
68
    int combine);
69
static void asn1_item_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
70
static void asn1_template_clear(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
71
static void asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
72
73
ASN1_VALUE *
74
ASN1_item_new(const ASN1_ITEM *it)
75
{
76
390670
	ASN1_VALUE *ret = NULL;
77
195335
	if (ASN1_item_ex_new(&ret, it) > 0)
78
195335
		return ret;
79
	return NULL;
80
195335
}
81
82
/* Allocate an ASN1 structure */
83
84
int
85
ASN1_item_ex_new(ASN1_VALUE **pval, const ASN1_ITEM *it)
86
{
87
778742
	return asn1_item_ex_combine_new(pval, it, 0);
88
}
89
90
static int
91
asn1_item_ex_combine_new(ASN1_VALUE **pval, const ASN1_ITEM *it, int combine)
92
{
93
	const ASN1_TEMPLATE *tt = NULL;
94
	const ASN1_EXTERN_FUNCS *ef;
95
2509710
	const ASN1_AUX *aux = it->funcs;
96
	ASN1_aux_cb *asn1_cb = NULL;
97
	ASN1_VALUE **pseqval;
98
	int i;
99
100

1348883
	if (aux != NULL && aux->asn1_cb != NULL)
101
47032
		asn1_cb = aux->asn1_cb;
102
103
1254855
	if (!combine)
104
1254703
		*pval = NULL;
105
106
#ifdef CRYPTO_MDEBUG
107
	if (it->sname)
108
		CRYPTO_push_info(it->sname);
109
#endif
110
111

2505436
	switch (it->itype) {
112
	case ASN1_ITYPE_EXTERN:
113
31376
		ef = it->funcs;
114

62752
		if (ef && ef->asn1_ex_new) {
115
31376
			if (!ef->asn1_ex_new(pval, it))
116
				goto memerr;
117
		}
118
		break;
119
120
	case ASN1_ITYPE_PRIMITIVE:
121
523294
		if (it->templates) {
122
			if (!ASN1_template_new(pval, it->templates))
123
				goto memerr;
124
523294
		} else if (!ASN1_primitive_new(pval, it))
125
			goto memerr;
126
		break;
127
128
	case ASN1_ITYPE_MSTRING:
129
275916
		if (!ASN1_primitive_new(pval, it))
130
			goto memerr;
131
		break;
132
133
	case ASN1_ITYPE_CHOICE:
134
1660
		if (asn1_cb) {
135
			i = asn1_cb(ASN1_OP_NEW_PRE, pval, it, NULL);
136
			if (!i)
137
				goto auxerr;
138
			if (i == 2) {
139
#ifdef CRYPTO_MDEBUG
140
				if (it->sname)
141
					CRYPTO_pop_info();
142
#endif
143
				return 1;
144
			}
145
		}
146
1660
		if (!combine) {
147
1508
			*pval = calloc(1, it->size);
148
1508
			if (!*pval)
149
				goto memerr;
150
		}
151
1660
		asn1_set_choice_selector(pval, -1, it);
152

1660
		if (asn1_cb && !asn1_cb(ASN1_OP_NEW_POST, pval, it, NULL))
153
			goto auxerr;
154
		break;
155
156
	case ASN1_ITYPE_NDEF_SEQUENCE:
157
	case ASN1_ITYPE_SEQUENCE:
158
422609
		if (asn1_cb) {
159
36158
			i = asn1_cb(ASN1_OP_NEW_PRE, pval, it, NULL);
160
36158
			if (!i)
161
				goto auxerr;
162
36158
			if (i == 2) {
163
#ifdef CRYPTO_MDEBUG
164
				if (it->sname)
165
					CRYPTO_pop_info();
166
#endif
167
4274
				return 1;
168
			}
169
		}
170
418335
		if (!combine) {
171
418335
			*pval = calloc(1, it->size);
172
418335
			if (!*pval)
173
				goto memerr;
174
418335
			asn1_do_lock(pval, 0, it);
175
418335
			asn1_enc_init(pval, it);
176
418335
		}
177
2906810
		for (i = 0, tt = it->templates; i < it->tcount; tt++, i++) {
178
1035070
			pseqval = asn1_get_field_ptr(pval, tt);
179
1035070
			if (!ASN1_template_new(pseqval, tt))
180
				goto memerr;
181
		}
182

450219
		if (asn1_cb && !asn1_cb(ASN1_OP_NEW_POST, pval, it, NULL))
183
			goto auxerr;
184
		break;
185
	}
186
#ifdef CRYPTO_MDEBUG
187
	if (it->sname)
188
		CRYPTO_pop_info();
189
#endif
190
1250581
	return 1;
191
192
memerr:
193
	ASN1error(ERR_R_MALLOC_FAILURE);
194
#ifdef CRYPTO_MDEBUG
195
	if (it->sname)
196
		CRYPTO_pop_info();
197
#endif
198
	return 0;
199
200
auxerr:
201
	ASN1error(ASN1_R_AUX_ERROR);
202
	ASN1_item_ex_free(pval, it);
203
#ifdef CRYPTO_MDEBUG
204
	if (it->sname)
205
		CRYPTO_pop_info();
206
#endif
207
	return 0;
208
209
1254855
}
210
211
static void
212
asn1_item_clear(ASN1_VALUE **pval, const ASN1_ITEM *it)
213
{
214
	const ASN1_EXTERN_FUNCS *ef;
215
216

452604
	switch (it->itype) {
217
	case ASN1_ITYPE_EXTERN:
218
		ef = it->funcs;
219
		if (ef && ef->asn1_ex_clear)
220
			ef->asn1_ex_clear(pval, it);
221
		else
222
			*pval = NULL;
223
		break;
224
225
	case ASN1_ITYPE_PRIMITIVE:
226
149842
		if (it->templates)
227
			asn1_template_clear(pval, it->templates);
228
		else
229
149842
			asn1_primitive_clear(pval, it);
230
		break;
231
232
	case ASN1_ITYPE_MSTRING:
233
8
		asn1_primitive_clear(pval, it);
234
8
		break;
235
236
	case ASN1_ITYPE_CHOICE:
237
	case ASN1_ITYPE_SEQUENCE:
238
	case ASN1_ITYPE_NDEF_SEQUENCE:
239
1018
		*pval = NULL;
240
1018
		break;
241
	}
242
150868
}
243
244
int
245
ASN1_template_new(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt)
246
{
247
2070140
	const ASN1_ITEM *it = tt->item;
248
	int ret;
249
250
1035070
	if (tt->flags & ASN1_TFLG_OPTIONAL) {
251
167452
		asn1_template_clear(pval, tt);
252
167452
		return 1;
253
	}
254
	/* If ANY DEFINED BY nothing to do */
255
256
867618
	if (tt->flags & ASN1_TFLG_ADB_MASK) {
257
2026
		*pval = NULL;
258
2026
		return 1;
259
	}
260
#ifdef CRYPTO_MDEBUG
261
	if (tt->field_name)
262
		CRYPTO_push_info(tt->field_name);
263
#endif
264
	/* If SET OF or SEQUENCE OF, its a STACK */
265
865592
	if (tt->flags & ASN1_TFLG_SK_MASK) {
266
		STACK_OF(ASN1_VALUE) *skval;
267
108
		skval = sk_ASN1_VALUE_new_null();
268
108
		if (!skval) {
269
			ASN1error(ERR_R_MALLOC_FAILURE);
270
			ret = 0;
271
			goto done;
272
		}
273
108
		*pval = (ASN1_VALUE *)skval;
274
		ret = 1;
275
108
		goto done;
276
	}
277
	/* Otherwise pass it back to the item routine */
278
865484
	ret = asn1_item_ex_combine_new(pval, it, tt->flags & ASN1_TFLG_COMBINE);
279
done:
280
#ifdef CRYPTO_MDEBUG
281
	if (it->sname)
282
		CRYPTO_pop_info();
283
#endif
284
865592
	return ret;
285
1035070
}
286
287
static void
288
asn1_template_clear(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt)
289
{
290
	/* If ADB or STACK just NULL the field */
291
334904
	if (tt->flags & (ASN1_TFLG_ADB_MASK|ASN1_TFLG_SK_MASK))
292
16584
		*pval = NULL;
293
	else
294
150868
		asn1_item_clear(pval, tt->item);
295
167452
}
296
297
298
/* NB: could probably combine most of the real XXX_new() behaviour and junk
299
 * all the old functions.
300
 */
301
302
int
303
ASN1_primitive_new(ASN1_VALUE **pval, const ASN1_ITEM *it)
304
{
305
	ASN1_TYPE *typ;
306
	ASN1_STRING *str;
307
	int utype;
308
309

2397630
	if (it && it->funcs) {
310
10874
		const ASN1_PRIMITIVE_FUNCS *pf = it->funcs;
311
10874
		if (pf->prim_new)
312
10874
			return pf->prim_new(pval, it);
313
	}
314
315

1576672
	if (!it || (it->itype == ASN1_ITYPE_MSTRING))
316
275916
		utype = V_ASN1_UNDEF;
317
	else
318
512420
		utype = it->utype;
319

788336
	switch (utype) {
320
	case V_ASN1_OBJECT:
321
344132
		*pval = (ASN1_VALUE *)OBJ_nid2obj(NID_undef);
322
344132
		return 1;
323
324
	case V_ASN1_BOOLEAN:
325
		*(ASN1_BOOLEAN *)pval = it->size;
326
		return 1;
327
328
	case V_ASN1_NULL:
329
4
		*pval = (ASN1_VALUE *)1;
330
4
		return 1;
331
332
	case V_ASN1_ANY:
333
46518
		typ = malloc(sizeof(ASN1_TYPE));
334
46518
		if (typ != NULL) {
335
46518
			typ->value.ptr = NULL;
336
46518
			typ->type = V_ASN1_UNDEF;
337
46518
		}
338
46518
		*pval = (ASN1_VALUE *)typ;
339
46518
		break;
340
341
	default:
342
397682
		str = ASN1_STRING_type_new(utype);
343

1193046
		if (it != NULL && it->itype == ASN1_ITYPE_MSTRING &&
344
397682
		    str != NULL)
345
275916
			str->flags |= ASN1_STRING_FLAG_MSTRING;
346
397682
		*pval = (ASN1_VALUE *)str;
347
397682
		break;
348
	}
349
444200
	if (*pval)
350
444200
		return 1;
351
	return 0;
352
799210
}
353
354
static void
355
asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it)
356
{
357
	int utype;
358

449550
	if (it && it->funcs) {
359
		const ASN1_PRIMITIVE_FUNCS *pf = it->funcs;
360
		if (pf->prim_clear)
361
			pf->prim_clear(pval, it);
362
		else
363
			*pval = NULL;
364
		return;
365
	}
366

299700
	if (!it || (it->itype == ASN1_ITYPE_MSTRING))
367
8
		utype = V_ASN1_UNDEF;
368
	else
369
149842
		utype = it->utype;
370
149850
	if (utype == V_ASN1_BOOLEAN)
371
47942
		*(ASN1_BOOLEAN *)pval = it->size;
372
	else
373
101908
		*pval = NULL;
374
299700
}