13db8676fc876e7a1085cc3fbc0cf72f5d414897
[openssl.git] / crypto / asn1 / tasn_new.c
1 /* tasn_new.c */
2 /*
3  * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL project
4  * 2000.
5  */
6 /* ====================================================================
7  * Copyright (c) 2000-2004 The OpenSSL Project.  All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  *
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  *
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
19  *    distribution.
20  *
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/)"
25  *
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.
30  *
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.
34  *
35  * 6. Redistributions of any form whatsoever must retain the following
36  *    acknowledgment:
37  *    "This product includes software developed by the OpenSSL Project
38  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
39  *
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  * ====================================================================
53  *
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).
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 #include "asn1_locl.h"
67
68 static int asn1_item_embed_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
69                                int embed);
70 static int asn1_primitive_new(ASN1_VALUE **pval, const ASN1_ITEM *it);
71 static void asn1_item_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
72 static int asn1_template_new(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
73 static void asn1_template_clear(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt);
74 static void asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
75
76 ASN1_VALUE *ASN1_item_new(const ASN1_ITEM *it)
77 {
78     ASN1_VALUE *ret = NULL;
79     if (ASN1_item_ex_new(&ret, it) > 0)
80         return ret;
81     return NULL;
82 }
83
84 /* Allocate an ASN1 structure */
85
86 int ASN1_item_ex_new(ASN1_VALUE **pval, const ASN1_ITEM *it)
87 {
88     return asn1_item_embed_new(pval, it, 0);
89 }
90
91 int asn1_item_embed_new(ASN1_VALUE **pval, const ASN1_ITEM *it, int embed)
92 {
93     const ASN1_TEMPLATE *tt = NULL;
94     const ASN1_EXTERN_FUNCS *ef;
95     const ASN1_AUX *aux = it->funcs;
96     ASN1_aux_cb *asn1_cb;
97     ASN1_VALUE **pseqval;
98     int i;
99     if (aux && aux->asn1_cb)
100         asn1_cb = aux->asn1_cb;
101     else
102         asn1_cb = 0;
103
104 #ifdef CRYPTO_MDEBUG
105     if (it->sname)
106         CRYPTO_push_info(it->sname);
107 #endif
108
109     switch (it->itype) {
110
111     case ASN1_ITYPE_EXTERN:
112         ef = it->funcs;
113         if (ef && ef->asn1_ex_new) {
114             if (!ef->asn1_ex_new(pval, it))
115                 goto memerr;
116         }
117         break;
118
119     case ASN1_ITYPE_PRIMITIVE:
120         if (it->templates) {
121             if (!asn1_template_new(pval, it->templates))
122                 goto memerr;
123         } else if (!asn1_primitive_new(pval, it))
124             goto memerr;
125         break;
126
127     case ASN1_ITYPE_MSTRING:
128         if (!asn1_primitive_new(pval, it))
129             goto memerr;
130         break;
131
132     case ASN1_ITYPE_CHOICE:
133         if (asn1_cb) {
134             i = asn1_cb(ASN1_OP_NEW_PRE, pval, it, NULL);
135             if (!i)
136                 goto auxerr;
137             if (i == 2) {
138 #ifdef CRYPTO_MDEBUG
139                 if (it->sname)
140                     CRYPTO_pop_info();
141 #endif
142                 return 1;
143             }
144         }
145         if (embed) {
146             memset(*pval, 0, it->size);
147         } else {
148             *pval = OPENSSL_zalloc(it->size);
149             if (!*pval)
150                 goto memerr;
151         }
152         asn1_set_choice_selector(pval, -1, it);
153         if (asn1_cb && !asn1_cb(ASN1_OP_NEW_POST, pval, it, NULL))
154             goto auxerr;
155         break;
156
157     case ASN1_ITYPE_NDEF_SEQUENCE:
158     case ASN1_ITYPE_SEQUENCE:
159         if (asn1_cb) {
160             i = asn1_cb(ASN1_OP_NEW_PRE, pval, it, NULL);
161             if (!i)
162                 goto auxerr;
163             if (i == 2) {
164 #ifdef CRYPTO_MDEBUG
165                 if (it->sname)
166                     CRYPTO_pop_info();
167 #endif
168                 return 1;
169             }
170         }
171         if (embed) {
172             memset(*pval, 0, it->size);
173         } else {
174             *pval = OPENSSL_zalloc(it->size);
175             if (!*pval)
176                 goto memerr;
177         }
178         asn1_do_lock(pval, 0, it);
179         asn1_enc_init(pval, it);
180         for (i = 0, tt = it->templates; i < it->tcount; tt++, i++) {
181             pseqval = asn1_get_field_ptr(pval, tt);
182             if (!asn1_template_new(pseqval, tt))
183                 goto memerr;
184         }
185         if (asn1_cb && !asn1_cb(ASN1_OP_NEW_POST, pval, it, NULL))
186             goto auxerr;
187         break;
188     }
189 #ifdef CRYPTO_MDEBUG
190     if (it->sname)
191         CRYPTO_pop_info();
192 #endif
193     return 1;
194
195  memerr:
196     ASN1err(ASN1_F_ASN1_ITEM_EMBED_NEW, ERR_R_MALLOC_FAILURE);
197 #ifdef CRYPTO_MDEBUG
198     if (it->sname)
199         CRYPTO_pop_info();
200 #endif
201     return 0;
202
203  auxerr:
204     ASN1err(ASN1_F_ASN1_ITEM_EMBED_NEW, ASN1_R_AUX_ERROR);
205     ASN1_item_ex_free(pval, it);
206 #ifdef CRYPTO_MDEBUG
207     if (it->sname)
208         CRYPTO_pop_info();
209 #endif
210     return 0;
211
212 }
213
214 static void asn1_item_clear(ASN1_VALUE **pval, const ASN1_ITEM *it)
215 {
216     const ASN1_EXTERN_FUNCS *ef;
217
218     switch (it->itype) {
219
220     case ASN1_ITYPE_EXTERN:
221         ef = it->funcs;
222         if (ef && ef->asn1_ex_clear)
223             ef->asn1_ex_clear(pval, it);
224         else
225             *pval = NULL;
226         break;
227
228     case ASN1_ITYPE_PRIMITIVE:
229         if (it->templates)
230             asn1_template_clear(pval, it->templates);
231         else
232             asn1_primitive_clear(pval, it);
233         break;
234
235     case ASN1_ITYPE_MSTRING:
236         asn1_primitive_clear(pval, it);
237         break;
238
239     case ASN1_ITYPE_CHOICE:
240     case ASN1_ITYPE_SEQUENCE:
241     case ASN1_ITYPE_NDEF_SEQUENCE:
242         *pval = NULL;
243         break;
244     }
245 }
246
247 static int asn1_template_new(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt)
248 {
249     const ASN1_ITEM *it = ASN1_ITEM_ptr(tt->item);
250     int embed = tt->flags & ASN1_TFLG_EMBED;
251     ASN1_VALUE *tval;
252     int ret;
253     if (embed) {
254         tval = (ASN1_VALUE *)pval;
255         pval = &tval;
256     }
257     if (tt->flags & ASN1_TFLG_OPTIONAL) {
258         asn1_template_clear(pval, tt);
259         return 1;
260     }
261     /* If ANY DEFINED BY nothing to do */
262
263     if (tt->flags & ASN1_TFLG_ADB_MASK) {
264         *pval = NULL;
265         return 1;
266     }
267 #ifdef CRYPTO_MDEBUG
268     if (tt->field_name)
269         CRYPTO_push_info(tt->field_name);
270 #endif
271     /* If SET OF or SEQUENCE OF, its a STACK */
272     if (tt->flags & ASN1_TFLG_SK_MASK) {
273         STACK_OF(ASN1_VALUE) *skval;
274         skval = sk_ASN1_VALUE_new_null();
275         if (!skval) {
276             ASN1err(ASN1_F_ASN1_TEMPLATE_NEW, ERR_R_MALLOC_FAILURE);
277             ret = 0;
278             goto done;
279         }
280         *pval = (ASN1_VALUE *)skval;
281         ret = 1;
282         goto done;
283     }
284     /* Otherwise pass it back to the item routine */
285     ret = asn1_item_embed_new(pval, it, embed);
286  done:
287 #ifdef CRYPTO_MDEBUG
288     if (it->sname)
289         CRYPTO_pop_info();
290 #endif
291     return ret;
292 }
293
294 static void asn1_template_clear(ASN1_VALUE **pval, const ASN1_TEMPLATE *tt)
295 {
296     /* If ADB or STACK just NULL the field */
297     if (tt->flags & (ASN1_TFLG_ADB_MASK | ASN1_TFLG_SK_MASK))
298         *pval = NULL;
299     else
300         asn1_item_clear(pval, ASN1_ITEM_ptr(tt->item));
301 }
302
303 /*
304  * NB: could probably combine most of the real XXX_new() behaviour and junk
305  * all the old functions.
306  */
307
308 static int asn1_primitive_new(ASN1_VALUE **pval, const ASN1_ITEM *it)
309 {
310     ASN1_TYPE *typ;
311     ASN1_STRING *str;
312     int utype;
313
314     if (!it)
315         return 0;
316
317     if (it->funcs) {
318         const ASN1_PRIMITIVE_FUNCS *pf = it->funcs;
319         if (pf->prim_new)
320             return pf->prim_new(pval, it);
321     }
322
323     if (it->itype == ASN1_ITYPE_MSTRING)
324         utype = -1;
325     else
326         utype = it->utype;
327     switch (utype) {
328     case V_ASN1_OBJECT:
329         *pval = (ASN1_VALUE *)OBJ_nid2obj(NID_undef);
330         return 1;
331
332     case V_ASN1_BOOLEAN:
333         *(ASN1_BOOLEAN *)pval = it->size;
334         return 1;
335
336     case V_ASN1_NULL:
337         *pval = (ASN1_VALUE *)1;
338         return 1;
339
340     case V_ASN1_ANY:
341         typ = OPENSSL_malloc(sizeof(*typ));
342         if (!typ)
343             return 0;
344         typ->value.ptr = NULL;
345         typ->type = -1;
346         *pval = (ASN1_VALUE *)typ;
347         break;
348
349     default:
350         str = ASN1_STRING_type_new(utype);
351         if (it->itype == ASN1_ITYPE_MSTRING && str)
352             str->flags |= ASN1_STRING_FLAG_MSTRING;
353         *pval = (ASN1_VALUE *)str;
354         break;
355     }
356     if (*pval)
357         return 1;
358     return 0;
359 }
360
361 static void asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it)
362 {
363     int utype;
364     if (it && it->funcs) {
365         const ASN1_PRIMITIVE_FUNCS *pf = it->funcs;
366         if (pf->prim_clear)
367             pf->prim_clear(pval, it);
368         else
369             *pval = NULL;
370         return;
371     }
372     if (!it || (it->itype == ASN1_ITYPE_MSTRING))
373         utype = -1;
374     else
375         utype = it->utype;
376     if (utype == V_ASN1_BOOLEAN)
377         *(ASN1_BOOLEAN *)pval = it->size;
378     else
379         *pval = NULL;
380 }