ASN1 parse fix and release file changes.
[openssl.git] / crypto / asn1 / tasn_dec.c
1 /* tasn_dec.c */
2 /* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL
3  * project 2000.
4  */
5 /* ====================================================================
6  * Copyright (c) 2000 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 <string.h>
62 #include <openssl/asn1.h>
63 #include <openssl/asn1t.h>
64 #include <openssl/objects.h>
65 #include <openssl/buffer.h>
66 #include <openssl/err.h>
67
68 static int asn1_check_eoc(unsigned char **in, long len);
69 static int asn1_collect(BUF_MEM *buf, unsigned char **in, long len, char inf, int tag, int aclass);
70 static int collect_data(BUF_MEM *buf, unsigned char **p, long plen);
71 static int asn1_check_tlen(long *olen, int *otag, unsigned char *oclass, char *inf, char *cst,
72                         unsigned char **in, long len, int exptag, int expclass, char opt, ASN1_TLC *ctx);
73 static int asn1_template_ex_d2i(ASN1_VALUE **pval, unsigned char **in, long len, const ASN1_TEMPLATE *tt, char opt, ASN1_TLC *ctx);
74 static int asn1_template_noexp_d2i(ASN1_VALUE **val, unsigned char **in, long len, const ASN1_TEMPLATE *tt, char opt, ASN1_TLC *ctx);
75 static int asn1_d2i_ex_primitive(ASN1_VALUE **pval, unsigned char **in, long len,
76                                         const ASN1_ITEM *it, int tag, int aclass, char opt, ASN1_TLC *ctx);
77
78 /* Table to convert tags to bit values, used for MSTRING type */
79 static unsigned long tag2bit[32]={
80 0,      0,      0,      B_ASN1_BIT_STRING,      /* tags  0 -  3 */
81 B_ASN1_OCTET_STRING,    0,      0,              B_ASN1_UNKNOWN,/* tags  4- 7 */
82 B_ASN1_UNKNOWN, B_ASN1_UNKNOWN, B_ASN1_UNKNOWN, B_ASN1_UNKNOWN,/* tags  8-11 */
83 B_ASN1_UTF8STRING,B_ASN1_UNKNOWN,B_ASN1_UNKNOWN,B_ASN1_UNKNOWN,/* tags 12-15 */
84 0,      0,      B_ASN1_NUMERICSTRING,B_ASN1_PRINTABLESTRING,   /* tags 16-19 */
85 B_ASN1_T61STRING,B_ASN1_VIDEOTEXSTRING,B_ASN1_IA5STRING,       /* tags 20-22 */
86 B_ASN1_UTCTIME, B_ASN1_GENERALIZEDTIME,                        /* tags 23-24 */ 
87 B_ASN1_GRAPHICSTRING,B_ASN1_ISO64STRING,B_ASN1_GENERALSTRING,  /* tags 25-27 */
88 B_ASN1_UNIVERSALSTRING,B_ASN1_UNKNOWN,B_ASN1_BMPSTRING,B_ASN1_UNKNOWN, /* tags 28-31 */
89         };
90
91 unsigned long ASN1_tag2bit(int tag)
92 {
93         if((tag < 0) || (tag > 30)) return 0;
94         return tag2bit[tag];
95 }
96
97 /* Macro to initialize and invalidate the cache */
98
99 #define asn1_tlc_clear(c)       if(c) (c)->valid = 0
100
101 /* Decode an ASN1 item, this currently behaves just 
102  * like a standard 'd2i' function. 'in' points to 
103  * a buffer to read the data from, in future we will
104  * have more advanced versions that can input data
105  * a piece at a time and this will simply be a special
106  * case.
107  */
108
109 ASN1_VALUE *ASN1_item_d2i(ASN1_VALUE **pval, unsigned char **in, long len, const ASN1_ITEM *it)
110 {
111         ASN1_TLC c;
112         ASN1_VALUE *ptmpval = NULL;
113         if(!pval) pval = &ptmpval;
114         asn1_tlc_clear(&c);
115         if(ASN1_item_ex_d2i(pval, in, len, it, -1, 0, 0, &c) > 0) 
116                 return *pval;
117         return NULL;
118 }
119
120 int ASN1_template_d2i(ASN1_VALUE **pval, unsigned char **in, long len, const ASN1_TEMPLATE *tt)
121 {
122         ASN1_TLC c;
123         asn1_tlc_clear(&c);
124         return asn1_template_ex_d2i(pval, in, len, tt, 0, &c);
125 }
126
127
128 /* Decode an item, taking care of IMPLICIT tagging, if any.
129  * If 'opt' set and tag mismatch return -1 to handle OPTIONAL
130  */
131
132 int ASN1_item_ex_d2i(ASN1_VALUE **pval, unsigned char **in, long len, const ASN1_ITEM *it,
133                                 int tag, int aclass, char opt, ASN1_TLC *ctx)
134 {
135         const ASN1_TEMPLATE *tt, *errtt = NULL;
136         const ASN1_COMPAT_FUNCS *cf;
137         const ASN1_EXTERN_FUNCS *ef;
138         const ASN1_AUX *aux = it->funcs;
139         ASN1_aux_cb *asn1_cb;
140         unsigned char *p, *q, imphack = 0, oclass;
141         char seq_eoc, seq_nolen, cst, isopt;
142         long tmplen;
143         int i;
144         int otag;
145         int ret = 0;
146         ASN1_VALUE *pchval, **pchptr, *ptmpval;
147         if(!pval) return 0;
148         if(aux && aux->asn1_cb) asn1_cb = aux->asn1_cb;
149         else asn1_cb = 0;
150
151         switch(it->itype) {
152
153                 case ASN1_ITYPE_PRIMITIVE:
154                 if(it->templates) {
155                         /* tagging or OPTIONAL is currently illegal on an item template
156                          * because the flags can't get passed down. In practice this isn't
157                          * a problem: we include the relevant flags from the item template
158                          * in the template itself.
159                          */
160                         if ((tag != -1) || opt) {
161                                 ASN1err(ASN1_F_ASN1_ITEM_EX_D2I, ASN1_R_ILLEGAL_OPTIONS_ON_ITEM_TEMPLATE);
162                                 goto err;
163                         }
164                         return asn1_template_ex_d2i(pval, in, len, it->templates, opt, ctx);
165                 }
166                 return asn1_d2i_ex_primitive(pval, in, len, it, tag, aclass, opt, ctx);
167                 break;
168
169                 case ASN1_ITYPE_MSTRING:
170                 p = *in;
171                 /* Just read in tag and class */
172                 ret = asn1_check_tlen(NULL, &otag, &oclass, NULL, NULL, &p, len, -1, 0, 1, ctx);
173                 if(!ret) {
174                         ASN1err(ASN1_F_ASN1_ITEM_EX_D2I, ERR_R_NESTED_ASN1_ERROR);
175                         goto err;
176                 } 
177                 /* Must be UNIVERSAL class */
178                 if(oclass != V_ASN1_UNIVERSAL) {
179                         /* If OPTIONAL, assume this is OK */
180                         if(opt) return -1;
181                         ASN1err(ASN1_F_ASN1_ITEM_EX_D2I, ASN1_R_MSTRING_NOT_UNIVERSAL);
182                         goto err;
183                 } 
184                 /* Check tag matches bit map */
185                 if(!(ASN1_tag2bit(otag) & it->utype)) {
186                         /* If OPTIONAL, assume this is OK */
187                         if(opt) return -1;
188                         ASN1err(ASN1_F_ASN1_ITEM_EX_D2I, ASN1_R_MSTRING_WRONG_TAG);
189                         goto err;
190                 } 
191                 return asn1_d2i_ex_primitive(pval, in, len, it, otag, 0, 0, ctx);
192
193                 case ASN1_ITYPE_EXTERN:
194                 /* Use new style d2i */
195                 ef = it->funcs;
196                 return ef->asn1_ex_d2i(pval, in, len, it, tag, aclass, opt, ctx);
197
198                 case ASN1_ITYPE_COMPAT:
199                 /* we must resort to old style evil hackery */
200                 cf = it->funcs;
201
202                 /* If OPTIONAL see if it is there */
203                 if(opt) {
204                         int exptag;
205                         p = *in;
206                         if(tag == -1) exptag = it->utype;
207                         else exptag = tag;
208                         /* Don't care about anything other than presence of expected tag */
209                         ret = asn1_check_tlen(NULL, NULL, NULL, NULL, NULL, &p, len, exptag, aclass, 1, ctx);
210                         if(!ret) {
211                                 ASN1err(ASN1_F_ASN1_ITEM_EX_D2I, ERR_R_NESTED_ASN1_ERROR);
212                                 goto err;
213                         }
214                         if(ret == -1) return -1;
215                 }
216                 /* This is the old style evil hack IMPLICIT handling:
217                  * since the underlying code is expecting a tag and
218                  * class other than the one present we change the
219                  * buffer temporarily then change it back afterwards.
220                  * This doesn't and never did work for tags > 30.
221                  *
222                  * Yes this is *horrible* but it is only needed for
223                  * old style d2i which will hopefully not be around
224                  * for much longer.
225                  * FIXME: should copy the buffer then modify it so
226                  * the input buffer can be const: we should *always*
227                  * copy because the old style d2i might modify the
228                  * buffer.
229                  */
230
231                 if(tag != -1) {
232                         p = *in;
233                         imphack = *p;
234                         *p = (unsigned char)((*p & V_ASN1_CONSTRUCTED) | it->utype);
235                 }
236
237                 ptmpval = cf->asn1_d2i(pval, in, len);
238
239                 if(tag != -1) *p = imphack;
240
241                 if(ptmpval) return 1;
242                 ASN1err(ASN1_F_ASN1_ITEM_EX_D2I, ERR_R_NESTED_ASN1_ERROR);
243                 goto err;
244
245
246                 case ASN1_ITYPE_CHOICE:
247                 if(asn1_cb && !asn1_cb(ASN1_OP_D2I_PRE, pval, it))
248                                 goto auxerr;
249
250                 /* Allocate structure */
251                 if(!*pval) {
252                         if(!ASN1_item_ex_new(pval, it)) {
253                                 ASN1err(ASN1_F_ASN1_ITEM_EX_D2I, ERR_R_NESTED_ASN1_ERROR);
254                                 goto err;
255                         }
256                 }
257                 /* CHOICE type, try each possibility in turn */
258                 pchval = NULL;
259                 p = *in;
260                 for(i = 0, tt=it->templates; i < it->tcount; i++, tt++) {
261                         pchptr = asn1_get_field_ptr(pval, tt);
262                         /* We mark field as OPTIONAL so its absence
263                          * can be recognised.
264                          */
265                         ret = asn1_template_ex_d2i(pchptr, &p, len, tt, 1, ctx);
266                         /* If field not present, try the next one */
267                         if(ret == -1) continue;
268                         /* If positive return, read OK, break loop */
269                         if(ret > 0) break;
270                         /* Otherwise must be an ASN1 parsing error */
271                         errtt = tt;
272                         ASN1err(ASN1_F_ASN1_ITEM_EX_D2I, ERR_R_NESTED_ASN1_ERROR);
273                         goto err;
274                 }
275                 /* Did we fall off the end without reading anything? */
276                 if(i == it->tcount) {
277                         /* If OPTIONAL, this is OK */
278                         if(opt) {
279                                 /* Free and zero it */
280                                 ASN1_item_ex_free(pval, it);
281                                 return -1;
282                         }
283                         ASN1err(ASN1_F_ASN1_ITEM_EX_D2I, ASN1_R_NO_MATCHING_CHOICE_TYPE);
284                         goto err;
285                 }
286                 asn1_set_choice_selector(pval, i, it);
287                 *in = p;
288                 if(asn1_cb && !asn1_cb(ASN1_OP_D2I_POST, pval, it))
289                                 goto auxerr;
290                 return 1;
291
292                 case ASN1_ITYPE_NDEF_SEQUENCE:
293                 case ASN1_ITYPE_SEQUENCE:
294                 p = *in;
295                 tmplen = len;
296
297                 /* If no IMPLICIT tagging set to SEQUENCE, UNIVERSAL */
298                 if(tag == -1) {
299                         tag = V_ASN1_SEQUENCE;
300                         aclass = V_ASN1_UNIVERSAL;
301                 }
302                 /* Get SEQUENCE length and update len, p */
303                 ret = asn1_check_tlen(&len, NULL, NULL, &seq_eoc, &cst, &p, len, tag, aclass, opt, ctx);
304                 if(!ret) {
305                         ASN1err(ASN1_F_ASN1_ITEM_EX_D2I, ERR_R_NESTED_ASN1_ERROR);
306                         goto err;
307                 } else if(ret == -1) return -1;
308                 if(aux && (aux->flags & ASN1_AFLG_BROKEN)) {
309                         len = tmplen - (p - *in);
310                         seq_nolen = 1;
311                 } else seq_nolen = seq_eoc;     /* If indefinite we don't do a length check */
312                 if(!cst) {
313                         ASN1err(ASN1_F_ASN1_ITEM_EX_D2I, ASN1_R_SEQUENCE_NOT_CONSTRUCTED);
314                         goto err;
315                 }
316
317                 if(!*pval) {
318                         if(!ASN1_item_ex_new(pval, it)) {
319                                 ASN1err(ASN1_F_ASN1_ITEM_EX_D2I, ERR_R_NESTED_ASN1_ERROR);
320                                 goto err;
321                         }
322                 }
323                 if(asn1_cb && !asn1_cb(ASN1_OP_D2I_PRE, pval, it))
324                                 goto auxerr;
325
326                 /* Get each field entry */
327                 for(i = 0, tt = it->templates; i < it->tcount; i++, tt++) {
328                         const ASN1_TEMPLATE *seqtt;
329                         ASN1_VALUE **pseqval;
330                         seqtt = asn1_do_adb(pval, tt, 1);
331                         if(!seqtt) goto err;
332                         pseqval = asn1_get_field_ptr(pval, seqtt);
333                         /* Have we ran out of data? */
334                         if(!len) break;
335                         q = p;
336                         if(asn1_check_eoc(&p, len)) {
337                                 if(!seq_eoc) {
338                                         ASN1err(ASN1_F_ASN1_ITEM_EX_D2I, ASN1_R_UNEXPECTED_EOC);
339                                         goto err;
340                                 }
341                                 len -= p - q;
342                                 seq_eoc = 0;
343                                 q = p;
344                                 break;
345                         }
346                         /* This determines the OPTIONAL flag value. The field cannot
347                          * be omitted if it is the last of a SEQUENCE and there is
348                          * still data to be read. This isn't strictly necessary but
349                          * it increases efficiency in some cases.
350                          */
351                         if(i == (it->tcount - 1)) isopt = 0;
352                         else isopt = (char)(seqtt->flags & ASN1_TFLG_OPTIONAL);
353                         /* attempt to read in field, allowing each to be OPTIONAL */
354                         ret = asn1_template_ex_d2i(pseqval, &p, len, seqtt, isopt, ctx);
355                         if(!ret) {
356                                 errtt = seqtt;
357                                 goto err;
358                         } else if(ret == -1) {
359                                 /* OPTIONAL component absent. Free and zero the field
360                                  */
361                                 ASN1_template_free(pseqval, seqtt);
362                                 continue;
363                         }
364                         /* Update length */
365                         len -= p - q;
366                 }
367                 /* Check for EOC if expecting one */
368                 if(seq_eoc && !asn1_check_eoc(&p, len)) {
369                         ASN1err(ASN1_F_ASN1_ITEM_EX_D2I, ASN1_R_MISSING_EOC);
370                         goto err;
371                 }
372                 /* Check all data read */
373                 if(!seq_nolen && len) {
374                         ASN1err(ASN1_F_ASN1_ITEM_EX_D2I, ASN1_R_SEQUENCE_LENGTH_MISMATCH);
375                         goto err;
376                 }
377
378                 /* If we get here we've got no more data in the SEQUENCE,
379                  * however we may not have read all fields so check all
380                  * remaining are OPTIONAL and clear any that are.
381                  */
382                 for(; i < it->tcount; tt++, i++) {
383                         const ASN1_TEMPLATE *seqtt;
384                         seqtt = asn1_do_adb(pval, tt, 1);
385                         if(!seqtt) goto err;
386                         if(seqtt->flags & ASN1_TFLG_OPTIONAL) {
387                                 ASN1_VALUE **pseqval;
388                                 pseqval = asn1_get_field_ptr(pval, seqtt);
389                                 ASN1_template_free(pseqval, seqtt);
390                         } else {
391                                 errtt = seqtt;
392                                 ASN1err(ASN1_F_ASN1_ITEM_EX_D2I, ASN1_R_FIELD_MISSING);
393                                 goto err;
394                         }
395                 }
396                 /* Save encoding */
397                 if(!asn1_enc_save(pval, *in, p - *in, it)) goto auxerr;
398                 *in = p;
399                 if(asn1_cb && !asn1_cb(ASN1_OP_D2I_POST, pval, it))
400                                 goto auxerr;
401                 return 1;
402
403                 default:
404                 return 0;
405         }
406         auxerr:
407         ASN1err(ASN1_F_ASN1_ITEM_EX_D2I, ASN1_R_AUX_ERROR);
408         err:
409         ASN1_item_ex_free(pval, it);
410         if(errtt) ERR_add_error_data(4, "Field=", errtt->field_name, ", Type=", it->sname);
411         else ERR_add_error_data(2, "Type=", it->sname);
412         return 0;
413 }
414
415 /* Templates are handled with two separate functions. One handles any EXPLICIT tag and the other handles the
416  * rest.
417  */
418
419 static int asn1_template_ex_d2i(ASN1_VALUE **val, unsigned char **in, long inlen, const ASN1_TEMPLATE *tt, char opt, ASN1_TLC *ctx)
420 {
421         int flags, aclass;
422         int ret;
423         long len;
424         unsigned char *p, *q;
425         char exp_eoc;
426         if(!val) return 0;
427         flags = tt->flags;
428         aclass = flags & ASN1_TFLG_TAG_CLASS;
429
430         p = *in;
431
432         /* Check if EXPLICIT tag expected */
433         if(flags & ASN1_TFLG_EXPTAG) {
434                 char cst;
435                 /* Need to work out amount of data available to the inner content and where it
436                  * starts: so read in EXPLICIT header to get the info.
437                  */
438                 ret = asn1_check_tlen(&len, NULL, NULL, &exp_eoc, &cst, &p, inlen, tt->tag, aclass, opt, ctx);
439                 q = p;
440                 if(!ret) {
441                         ASN1err(ASN1_F_ASN1_TEMPLATE_EX_D2I, ERR_R_NESTED_ASN1_ERROR);
442                         return 0;
443                 } else if(ret == -1) return -1;
444                 if(!cst) {
445                         ASN1err(ASN1_F_ASN1_TEMPLATE_EX_D2I, ASN1_R_EXPLICIT_TAG_NOT_CONSTRUCTED);
446                         return 0;
447                 }
448                 /* We've found the field so it can't be OPTIONAL now */
449                 ret = asn1_template_noexp_d2i(val, &p, len, tt, 0, ctx);
450                 if(!ret) {
451                         ASN1err(ASN1_F_ASN1_TEMPLATE_EX_D2I, ERR_R_NESTED_ASN1_ERROR);
452                         return 0;
453                 }
454                 /* We read the field in OK so update length */
455                 len -= p - q;
456                 if(exp_eoc) {
457                         /* If NDEF we must have an EOC here */
458                         if(!asn1_check_eoc(&p, len)) {
459                                 ASN1err(ASN1_F_ASN1_TEMPLATE_D2I, ASN1_R_MISSING_EOC);
460                                 goto err;
461                         }
462                 } else {
463                         /* Otherwise we must hit the EXPLICIT tag end or its an error */
464                         if(len) {
465                                 ASN1err(ASN1_F_ASN1_TEMPLATE_D2I, ASN1_R_EXPLICIT_LENGTH_MISMATCH);
466                                 goto err;
467                         }
468                 }
469         } else 
470                 return asn1_template_noexp_d2i(val, in, inlen, tt, opt, ctx);
471
472         *in = p;
473         return 1;
474
475         err:
476         ASN1_template_free(val, tt);
477         *val = NULL;
478         return 0;
479 }
480
481 static int asn1_template_noexp_d2i(ASN1_VALUE **val, unsigned char **in, long len, const ASN1_TEMPLATE *tt, char opt, ASN1_TLC *ctx)
482 {
483         int flags, aclass;
484         int ret;
485         unsigned char *p, *q;
486         if(!val) return 0;
487         flags = tt->flags;
488         aclass = flags & ASN1_TFLG_TAG_CLASS;
489
490         p = *in;
491         q = p;
492
493         if(flags & ASN1_TFLG_SK_MASK) {
494                 /* SET OF, SEQUENCE OF */
495                 int sktag, skaclass;
496                 char sk_eoc;
497                 /* First work out expected inner tag value */
498                 if(flags & ASN1_TFLG_IMPTAG) {
499                         sktag = tt->tag;
500                         skaclass = aclass;
501                 } else {
502                         skaclass = V_ASN1_UNIVERSAL;
503                         if(flags & ASN1_TFLG_SET_OF) sktag = V_ASN1_SET;
504                         else sktag = V_ASN1_SEQUENCE;
505                 }
506                 /* Get the tag */
507                 ret = asn1_check_tlen(&len, NULL, NULL, &sk_eoc, NULL, &p, len, sktag, skaclass, opt, ctx);
508                 if(!ret) {
509                         ASN1err(ASN1_F_ASN1_TEMPLATE_EX_D2I, ERR_R_NESTED_ASN1_ERROR);
510                         return 0;
511                 } else if(ret == -1) return -1;
512                 if(!*val) *val = (ASN1_VALUE *)sk_new_null();
513                 else {
514                         /* We've got a valid STACK: free up any items present */
515                         STACK *sktmp = (STACK *)*val;
516                         ASN1_VALUE *vtmp;
517                         while(sk_num(sktmp) > 0) {
518                                 vtmp = (ASN1_VALUE *)sk_pop(sktmp);
519                                 ASN1_item_ex_free(&vtmp, ASN1_ITEM_ptr(tt->item));
520                         }
521                 }
522                                 
523                 if(!*val) {
524                         ASN1err(ASN1_F_ASN1_TEMPLATE_EX_D2I, ERR_R_MALLOC_FAILURE);
525                         goto err;
526                 }
527                 /* Read as many items as we can */
528                 while(len > 0) {
529                         ASN1_VALUE *skfield;
530                         q = p;
531                         /* See if EOC found */
532                         if(asn1_check_eoc(&p, len)) {
533                                 if(!sk_eoc) {
534                                         ASN1err(ASN1_F_ASN1_TEMPLATE_D2I, ASN1_R_UNEXPECTED_EOC);
535                                         goto err;
536                                 }
537                                 len -= p - q;
538                                 sk_eoc = 0;
539                                 break;
540                         }
541                         skfield = NULL;
542                         if(!ASN1_item_ex_d2i(&skfield, &p, len, ASN1_ITEM_ptr(tt->item), -1, 0, 0, ctx)) {
543                                 ASN1err(ASN1_F_ASN1_TEMPLATE_D2I, ERR_R_NESTED_ASN1_ERROR);
544                                 goto err;
545                         }
546                         len -= p - q;
547                         if(!sk_push((STACK *)*val, (char *)skfield)) {
548                                 ASN1err(ASN1_F_ASN1_TEMPLATE_D2I, ERR_R_MALLOC_FAILURE);
549                                 goto err;
550                         }
551                 }
552                 if(sk_eoc) {
553                         ASN1err(ASN1_F_ASN1_TEMPLATE_D2I, ASN1_R_MISSING_EOC);
554                         goto err;
555                 }
556         } else if(flags & ASN1_TFLG_IMPTAG) {
557                 /* IMPLICIT tagging */
558                 ret = ASN1_item_ex_d2i(val, &p, len, ASN1_ITEM_ptr(tt->item), tt->tag, aclass, opt, ctx);
559                 if(!ret) {
560                         ASN1err(ASN1_F_ASN1_TEMPLATE_D2I, ERR_R_NESTED_ASN1_ERROR);
561                         goto err;
562                 } else if(ret == -1) return -1;
563         } else {
564                 /* Nothing special */
565                 ret = ASN1_item_ex_d2i(val, &p, len, ASN1_ITEM_ptr(tt->item), -1, 0, opt, ctx);
566                 if(!ret) {
567                         ASN1err(ASN1_F_ASN1_TEMPLATE_D2I, ERR_R_NESTED_ASN1_ERROR);
568                         goto err;
569                 } else if(ret == -1) return -1;
570         }
571
572         *in = p;
573         return 1;
574
575         err:
576         ASN1_template_free(val, tt);
577         *val = NULL;
578         return 0;
579 }
580
581 static int asn1_d2i_ex_primitive(ASN1_VALUE **pval, unsigned char **in, long inlen, 
582                                                 const ASN1_ITEM *it,
583                                                 int tag, int aclass, char opt, ASN1_TLC *ctx)
584 {
585         int ret = 0, utype;
586         long plen;
587         char cst, inf, free_cont = 0;
588         unsigned char *p;
589         BUF_MEM buf;
590         unsigned char *cont = NULL;
591         long len; 
592         if(!pval) {
593                 ASN1err(ASN1_F_ASN1_D2I_EX_PRIMITIVE, ASN1_R_ILLEGAL_NULL);
594                 return 0; /* Should never happen */
595         }
596
597         if(it->itype == ASN1_ITYPE_MSTRING) {
598                 utype = tag;
599                 tag = -1;
600         } else utype = it->utype;
601
602         if(utype == V_ASN1_ANY) {
603                 /* If type is ANY need to figure out type from tag */
604                 unsigned char oclass;
605                 if(tag >= 0) {
606                         ASN1err(ASN1_F_ASN1_D2I_EX_PRIMITIVE, ASN1_R_ILLEGAL_TAGGED_ANY);
607                         return 0;
608                 }
609                 if(opt) {
610                         ASN1err(ASN1_F_ASN1_D2I_EX_PRIMITIVE, ASN1_R_ILLEGAL_OPTIONAL_ANY);
611                         return 0;
612                 }
613                 p = *in;
614                 ret = asn1_check_tlen(NULL, &utype, &oclass, NULL, NULL, &p, inlen, -1, 0, 0, ctx);
615                 if(!ret) {
616                         ASN1err(ASN1_F_ASN1_D2I_EX_PRIMITIVE, ERR_R_NESTED_ASN1_ERROR);
617                         return 0;
618                 }
619                 if(oclass != V_ASN1_UNIVERSAL) utype = V_ASN1_OTHER;
620         }
621         if(tag == -1) {
622                 tag = utype;
623                 aclass = V_ASN1_UNIVERSAL;
624         }
625         p = *in;
626         /* Check header */
627         ret = asn1_check_tlen(&plen, NULL, NULL, &inf, &cst, &p, inlen, tag, aclass, opt, ctx);
628         if(!ret) {
629                 ASN1err(ASN1_F_ASN1_D2I_EX_PRIMITIVE, ERR_R_NESTED_ASN1_ERROR);
630                 return 0;
631         } else if(ret == -1) return -1;
632         /* SEQUENCE, SET and "OTHER" are left in encoded form */
633         if((utype == V_ASN1_SEQUENCE) || (utype == V_ASN1_SET) || (utype == V_ASN1_OTHER)) {
634                 /* Clear context cache for type OTHER because the auto clear when
635                  * we have a exact match wont work
636                  */
637                 if(utype == V_ASN1_OTHER) {
638                         asn1_tlc_clear(ctx);
639                 /* SEQUENCE and SET must be constructed */
640                 } else if(!cst) {
641                         ASN1err(ASN1_F_ASN1_D2I_EX_PRIMITIVE, ASN1_R_TYPE_NOT_CONSTRUCTED);
642                         return 0;
643                 }
644
645                 cont = *in;
646                 /* If indefinite length constructed find the real end */
647                 if(inf) {
648                         if(!asn1_collect(NULL, &p, plen, inf, -1, -1)) goto err;
649                         len = p - cont;
650                 } else {
651                         len = p - cont + plen;
652                         p += plen;
653                         buf.data = NULL;
654                 }
655         } else if(cst) {
656                 buf.length = 0;
657                 buf.max = 0;
658                 buf.data = NULL;
659                 /* Should really check the internal tags are correct but
660                  * some things may get this wrong. The relevant specs
661                  * say that constructed string types should be OCTET STRINGs
662                  * internally irrespective of the type. So instead just check
663                  * for UNIVERSAL class and ignore the tag.
664                  */
665                 if(!asn1_collect(&buf, &p, plen, inf, -1, V_ASN1_UNIVERSAL)) goto err;
666                 len = buf.length;
667                 /* Append a final null to string */
668                 if(!BUF_MEM_grow_clean(&buf, len + 1)) {
669                         ASN1err(ASN1_F_ASN1_D2I_EX_PRIMITIVE, ERR_R_MALLOC_FAILURE);
670                         return 0;
671                 }
672                 buf.data[len] = 0;
673                 cont = (unsigned char *)buf.data;
674                 free_cont = 1;
675         } else {
676                 cont = p;
677                 len = plen;
678                 p += plen;
679         }
680
681         /* We now have content length and type: translate into a structure */
682         if(!asn1_ex_c2i(pval, cont, len, utype, &free_cont, it)) goto err;
683
684         *in = p;
685         ret = 1;
686         err:
687         if(free_cont && buf.data) OPENSSL_free(buf.data);
688         return ret;
689 }
690
691 /* Translate ASN1 content octets into a structure */
692
693 int asn1_ex_c2i(ASN1_VALUE **pval, unsigned char *cont, int len, int utype, char *free_cont, const ASN1_ITEM *it)
694 {
695         ASN1_VALUE **opval = NULL;
696         ASN1_STRING *stmp;
697         ASN1_TYPE *typ = NULL;
698         int ret = 0;
699         const ASN1_PRIMITIVE_FUNCS *pf;
700         ASN1_INTEGER **tint;
701         pf = it->funcs;
702         if(pf && pf->prim_c2i) return pf->prim_c2i(pval, cont, len, utype, free_cont, it);
703         /* If ANY type clear type and set pointer to internal value */
704         if(it->utype == V_ASN1_ANY) {
705                 if(!*pval) {
706                         typ = ASN1_TYPE_new();
707                         *pval = (ASN1_VALUE *)typ;
708                 } else typ = (ASN1_TYPE *)*pval;
709                 if(utype != typ->type) ASN1_TYPE_set(typ, utype, NULL);
710                 opval = pval;
711                 pval = (ASN1_VALUE **)&typ->value.ptr;
712         }
713         switch(utype) {
714                 case V_ASN1_OBJECT:
715                 if(!c2i_ASN1_OBJECT((ASN1_OBJECT **)pval, &cont, len)) goto err;
716                 break;
717
718                 case V_ASN1_NULL:
719                 if(len) {
720                         ASN1err(ASN1_F_ASN1_D2I_EX_PRIMITIVE, ASN1_R_NULL_IS_WRONG_LENGTH);
721                         goto err;
722                 }
723                 *pval = (ASN1_VALUE *)1;
724                 break;
725
726                 case V_ASN1_BOOLEAN:
727                 if(len != 1) {
728                         ASN1err(ASN1_F_ASN1_D2I_EX_PRIMITIVE, ASN1_R_BOOLEAN_IS_WRONG_LENGTH);
729                         goto err;
730                 } else {
731                         ASN1_BOOLEAN *tbool;
732                         tbool = (ASN1_BOOLEAN *)pval;
733                         *tbool = *cont;
734                 }
735                 break;
736
737                 case V_ASN1_BIT_STRING:
738                 if(!c2i_ASN1_BIT_STRING((ASN1_BIT_STRING **)pval, &cont, len)) goto err;
739                 break;
740
741                 case V_ASN1_INTEGER:
742                 case V_ASN1_NEG_INTEGER:
743                 case V_ASN1_ENUMERATED:
744                 case V_ASN1_NEG_ENUMERATED:
745                 tint = (ASN1_INTEGER **)pval;
746                 if(!c2i_ASN1_INTEGER(tint, &cont, len)) goto err;
747                 /* Fixup type to match the expected form */
748                 (*tint)->type = utype | ((*tint)->type & V_ASN1_NEG);
749                 break;
750
751                 case V_ASN1_OCTET_STRING:
752                 case V_ASN1_NUMERICSTRING:
753                 case V_ASN1_PRINTABLESTRING:
754                 case V_ASN1_T61STRING:
755                 case V_ASN1_VIDEOTEXSTRING:
756                 case V_ASN1_IA5STRING:
757                 case V_ASN1_UTCTIME:
758                 case V_ASN1_GENERALIZEDTIME:
759                 case V_ASN1_GRAPHICSTRING:
760                 case V_ASN1_VISIBLESTRING:
761                 case V_ASN1_GENERALSTRING:
762                 case V_ASN1_UNIVERSALSTRING:
763                 case V_ASN1_BMPSTRING:
764                 case V_ASN1_UTF8STRING:
765                 case V_ASN1_OTHER:
766                 case V_ASN1_SET:
767                 case V_ASN1_SEQUENCE:
768                 default:
769                 /* All based on ASN1_STRING and handled the same */
770                 if(!*pval) {
771                         stmp = ASN1_STRING_type_new(utype);
772                         if(!stmp) {
773                                 ASN1err(ASN1_F_ASN1_D2I_EX_PRIMITIVE, ERR_R_MALLOC_FAILURE);
774                                 goto err;
775                         }
776                         *pval = (ASN1_VALUE *)stmp;
777                 } else {
778                         stmp = (ASN1_STRING *)*pval;
779                         stmp->type = utype;
780                 }
781                 /* If we've already allocated a buffer use it */
782                 if(*free_cont) {
783                         if(stmp->data) OPENSSL_free(stmp->data);
784                         stmp->data = cont;
785                         stmp->length = len;
786                         *free_cont = 0;
787                 } else {
788                         if(!ASN1_STRING_set(stmp, cont, len)) {
789                                 ASN1err(ASN1_F_ASN1_D2I_EX_PRIMITIVE, ERR_R_MALLOC_FAILURE);
790                                 ASN1_STRING_free(stmp); 
791                                 *pval = NULL;
792                                 goto err;
793                         }
794                 }
795                 break;
796         }
797         /* If ASN1_ANY and NULL type fix up value */
798         if(typ && utype==V_ASN1_NULL) typ->value.ptr = NULL;
799
800         ret = 1;
801         err:
802         if(!ret)
803                 {
804                 ASN1_TYPE_free(typ);
805                 if (opval)
806                         *opval = NULL;
807                 }
808         return ret;
809 }
810
811 /* This function collects the asn1 data from a constructred string
812  * type into a buffer. The values of 'in' and 'len' should refer
813  * to the contents of the constructed type and 'inf' should be set
814  * if it is indefinite length. If 'buf' is NULL then we just want
815  * to find the end of the current structure: useful for indefinite
816  * length constructed stuff.
817  */
818
819 static int asn1_collect(BUF_MEM *buf, unsigned char **in, long len, char inf, int tag, int aclass)
820 {
821         unsigned char *p, *q;
822         long plen;
823         char cst, ininf;
824         p = *in;
825         inf &= 1;
826         /* If no buffer and not indefinite length constructed just pass over the encoded data */
827         if(!buf && !inf) {
828                 *in += len;
829                 return 1;
830         }
831         while(len > 0) {
832                 q = p;
833                 /* Check for EOC */
834                 if(asn1_check_eoc(&p, len)) {
835                         /* EOC is illegal outside indefinite length constructed form */
836                         if(!inf) {
837                                 ASN1err(ASN1_F_ASN1_COLLECT, ASN1_R_UNEXPECTED_EOC);
838                                 return 0;
839                         }
840                         inf = 0;
841                         break;
842                 }
843                 if(!asn1_check_tlen(&plen, NULL, NULL, &ininf, &cst, &p, len, tag, aclass, 0, NULL)) {
844                         ASN1err(ASN1_F_ASN1_COLLECT, ERR_R_NESTED_ASN1_ERROR);
845                         return 0;
846                 }
847                 /* If indefinite length constructed update max length */
848                 if(cst) {
849                         if(!asn1_collect(buf, &p, plen, ininf, tag, aclass)) return 0;
850                 } else {
851                         if(!collect_data(buf, &p, plen)) return 0;
852                 }
853                 len -= p - q;
854         }
855         if(inf) {
856                 ASN1err(ASN1_F_ASN1_COLLECT, ASN1_R_MISSING_EOC);
857                 return 0;
858         }
859         *in = p;
860         return 1;
861 }
862
863 static int collect_data(BUF_MEM *buf, unsigned char **p, long plen)
864 {
865                 int len;
866                 if(buf) {
867                         len = buf->length;
868                         if(!BUF_MEM_grow_clean(buf, len + plen)) {
869                                 ASN1err(ASN1_F_COLLECT_DATA, ERR_R_MALLOC_FAILURE);
870                                 return 0;
871                         }
872                         memcpy(buf->data + len, *p, plen);
873                 }
874                 *p += plen;
875                 return 1;
876 }
877
878 /* Check for ASN1 EOC and swallow it if found */
879
880 static int asn1_check_eoc(unsigned char **in, long len)
881 {
882         unsigned char *p;
883         if(len < 2) return 0;
884         p = *in;
885         if(!p[0] && !p[1]) {
886                 *in += 2;
887                 return 1;
888         }
889         return 0;
890 }
891
892 /* Check an ASN1 tag and length: a bit like ASN1_get_object
893  * but it sets the length for indefinite length constructed
894  * form, we don't know the exact length but we can set an
895  * upper bound to the amount of data available minus the
896  * header length just read.
897  */
898
899 static int asn1_check_tlen(long *olen, int *otag, unsigned char *oclass, char *inf, char *cst,
900                 unsigned char **in, long len, int exptag, int expclass, char opt, ASN1_TLC *ctx)
901 {
902         int i;
903         int ptag, pclass;
904         long plen;
905         unsigned char *p, *q;
906         p = *in;
907         q = p;
908
909         if(ctx && ctx->valid) {
910                 i = ctx->ret;
911                 plen = ctx->plen;
912                 pclass = ctx->pclass;
913                 ptag = ctx->ptag;
914                 p += ctx->hdrlen;
915         } else {
916                 i = ASN1_get_object(&p, &plen, &ptag, &pclass, len);
917                 if(ctx) {
918                         ctx->ret = i;
919                         ctx->plen = plen;
920                         ctx->pclass = pclass;
921                         ctx->ptag = ptag;
922                         ctx->hdrlen = p - q;
923                         ctx->valid = 1;
924                         /* If definite length, and no error, length +
925                          * header can't exceed total amount of data available. 
926                          */
927                         if(!(i & 0x81) && ((plen + ctx->hdrlen) > len)) {
928                                 ASN1err(ASN1_F_ASN1_CHECK_TLEN, ASN1_R_TOO_LONG);
929                                 asn1_tlc_clear(ctx);
930                                 return 0;
931                         }
932                 }
933         }
934
935         if(i & 0x80) {
936                 ASN1err(ASN1_F_ASN1_CHECK_TLEN, ASN1_R_BAD_OBJECT_HEADER);
937                 asn1_tlc_clear(ctx);
938                 return 0;
939         }
940         if(exptag >= 0) {
941                 if((exptag != ptag) || (expclass != pclass)) {
942                         /* If type is OPTIONAL, not an error, but indicate missing
943                          * type.
944                          */
945                         if(opt) return -1;
946                         asn1_tlc_clear(ctx);
947                         ASN1err(ASN1_F_ASN1_CHECK_TLEN, ASN1_R_WRONG_TAG);
948                         return 0;
949                 }
950                 /* We have a tag and class match, so assume we are going to do something with it */
951                 asn1_tlc_clear(ctx);
952         }
953
954         if(i & 1) plen = len - (p - q);
955
956         if(inf) *inf = i & 1;
957
958         if(cst) *cst = i & V_ASN1_CONSTRUCTED;
959
960         if(olen) *olen = plen;
961         if(oclass) *oclass = pclass;
962         if(otag) *otag = ptag;
963
964         *in = p;
965         return 1;
966 }