New SILC PKCS API, enabling support for other public keys/certs.
[silc.git] / lib / silcasn1 / silcasn1_encode.c
1 /*
2
3   silcasn1_encode.c
4
5   Author: Pekka Riikonen <priikone@silcnet.org>
6
7   Copyright (C) 2003 - 2005 Pekka Riikonen
8
9   This program is free software; you can redistribute it and/or modify
10   it under the terms of the GNU General Public License as published by
11   the Free Software Foundation; version 2 of the License.
12
13   This program is distributed in the hope that it will be useful,
14   but WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16   GNU General Public License for more details.
17
18 */
19
20 #include "silc.h"
21 #include "silcasn1.h"
22 #include "silcber.h"
23
24 /************************** ASN.1 Encoder routines **************************/
25
26 /* Encode string from UTF-8 string to other string encodings.  Encodes
27    diretly to BER blob. */
28 #define SILC_ASN1_ENCODE_STRING(enc)                                    \
29   unsigned char *s, *d = va_arg(asn1->ap, unsigned char *);             \
30   SilcUInt32 s_len, d_len = va_arg(asn1->ap, SilcUInt32);               \
31   if (!d)                                                               \
32     break;                                                              \
33   s_len = silc_utf8_decoded_len(d, d_len, (enc));                       \
34   if (s_len == 0) {                                                     \
35     SILC_LOG_DEBUG(("Malformed %d string value", (enc)));               \
36     goto fail;                                                          \
37   }                                                                     \
38   silc_stack_push(asn1->stack2, &frame);                                \
39   s = silc_smalloc_ua(stack2, s_len + 1);                               \
40   if (s) {                                                              \
41     silc_utf8_decode(d, d_len, (enc), s, s_len);                        \
42     s[s_len] = '\0';                                                    \
43   }                                                                     \
44   len = silc_ber_encoded_len(tag, s_len, indef);                        \
45   dest = silc_buffer_srealloc_size(stack1, dest,                        \
46                                    silc_buffer_truelen(dest) + len);    \
47   ret = silc_ber_encode(dest, ber_class, SILC_BER_ENC_PRIMITIVE,        \
48                         tag, s, s_len, indef);                          \
49   silc_stack_pop(asn1->stack2);                                         \
50   if (!ret)                                                             \
51     goto fail;
52
53 /* The internal ASN.1 encoder.  The `type', `tag' and `opts' are the
54    first arguments (either very first or first for recursion) for a type.
55    The `depth' includes the current depth of recursion.  The `primitive'
56    is TRUE if this encoder receives one primitive type as argument.  If
57    it is a constructed type it must be FALSE value. */
58
59 static SilcBool
60 silc_asn1_encoder(SilcAsn1 asn1, SilcStack stack1, SilcStack stack2,
61                   SilcAsn1Tag type, SilcAsn1Tag tag, SilcBerClass ber_class,
62                   SilcAsn1Options opts, SilcBuffer dest, SilcUInt32 depth,
63                   SilcBool primitive)
64 {
65   unsigned char *ptr = dest->data;
66   SilcAsn1Tag rtype, rtag;
67   SilcAsn1Options ropts;
68   SilcBerClass rclass;
69   SilcUInt32 len = 0;
70   SilcBool ret = FALSE, indef;
71   SilcBufferStruct buf;
72   SilcStackFrame frame;
73
74 #ifdef SILC_DEBUG
75   char sp[SILC_ASN1_RECURSION_DEPTH + 1];
76   memset(sp, 0, sizeof(sp));
77   if (depth)
78     memset(sp, 32, depth);
79 #endif /* SILC_DEBUG */
80
81   if (depth >= SILC_ASN1_RECURSION_DEPTH) {
82     SILC_LOG_DEBUG(("Maximum recursion depth reached"));
83     return FALSE;
84   }
85
86   while (1) {
87     /* These options cannot be used in encoding */
88     opts &= ~SILC_ASN1_OPTIONAL;
89
90     /* Get length encoding */
91     indef = (opts & SILC_ASN1_INDEFINITE ? TRUE : FALSE);
92
93     /* By default UNIVERSAL is implied unless the following conditions
94        are met when CONTEXT will apply.  For SILC_ASN1_TAG_ANY_PRIMITIVE
95        the class is changed only if flags dictate it. */
96     if (ber_class == SILC_BER_CLASS_UNIVERSAL) {
97       if (type == SILC_ASN1_TAG_ANY_PRIMITIVE) {
98         if (opts & SILC_ASN1_IMPLICIT ||
99             opts & SILC_ASN1_EXPLICIT)
100           ber_class = SILC_BER_CLASS_CONTEXT;
101       } else {
102         if (tag != type ||
103             opts & SILC_ASN1_IMPLICIT ||
104             opts & SILC_ASN1_EXPLICIT)
105           ber_class = SILC_BER_CLASS_CONTEXT;
106       }
107     }
108
109 #ifdef SILC_DEBUG
110     SILC_LOG_DEBUG(
111       ("%04d: %sEncode %s [%d] %s %s %s %s", depth, sp[0] ? sp : "",
112        silc_asn1_tag_name(type), tag,
113        ber_class == SILC_BER_CLASS_UNIVERSAL   ? "univ" :
114        ber_class == SILC_BER_CLASS_APPLICATION ? "appl" :
115        ber_class == SILC_BER_CLASS_CONTEXT     ? "cont" : "priv",
116        (type != SILC_ASN1_TAG_SEQUENCE && type != SILC_ASN1_TAG_SET) ?
117        opts & SILC_ASN1_EXPLICIT ? "constr" :
118        type == SILC_ASN1_TAG_ANY &&
119        !(opts & SILC_ASN1_EXPLICIT) ? "constr" : "primit" : "constr",
120        indef ? opts & SILC_ASN1_EXPLICIT ? "defin" : "indef" : "defin",
121        opts & SILC_ASN1_IMPLICIT ? "implicit" :
122        opts & SILC_ASN1_EXPLICIT ? "explicit" : ""));
123 #endif /* SILC_DEBUG */
124
125     /* If tagging is explicit we add constructed type before the underlaying
126        types.  The underlaying types are encoded recursively with this
127        encoder. */
128     if (opts & SILC_ASN1_EXPLICIT) {
129       memset(&buf, 0, sizeof(buf));
130
131       primitive = (type != SILC_ASN1_TAG_SEQUENCE &&
132                    type != SILC_ASN1_TAG_SET);
133       opts &= ~SILC_ASN1_EXPLICIT;
134
135       silc_stack_push(stack2, &frame);
136       ret = silc_asn1_encoder(asn1, stack2, stack1, type, type,
137                               SILC_BER_CLASS_UNIVERSAL, opts,
138                               &buf, depth + 1, primitive);
139       silc_stack_pop(stack2);
140
141       if (!ret) {
142         SILC_LOG_DEBUG(("Error encoding explicit tag"));
143         goto fail;
144       }
145
146       /* Encode the explicit tag */
147       len = silc_ber_encoded_len(tag, silc_buffer_len(&buf), FALSE);
148       dest = silc_buffer_srealloc_size(stack1, dest,
149                                        silc_buffer_truelen(dest) + len);
150       ret = silc_ber_encode(dest, ber_class, SILC_BER_ENC_CONSTRUCTED,
151                             tag, buf.data, silc_buffer_len(&buf), FALSE);
152       if (!ret)
153         goto fail;
154       if (primitive) {
155         primitive = FALSE;
156         goto cont;
157       }
158       goto ok;
159     }
160
161     /* Encode by the type */
162     switch (type) {
163
164     case SILC_ASN1_TAG_ANY:
165       {
166         /* ANY is another ASN.1 node which is added to this tree */
167         SilcBuffer node = va_arg(asn1->ap, SilcBuffer);
168         if (!node)
169           break;
170
171         /* Encode ASN.1 node into the tree. */
172         if (opts & SILC_ASN1_IMPLICIT || type != tag) {
173           /* We are tagging implicitly so we need to change the identifier
174              of the underlaying type.  Only constructed type is allowed with
175              ANY when tagging implicitly. */
176           const unsigned char *d;
177           SilcUInt32 d_len;
178           SilcBerEncoding enc;
179
180           /* Get the underlaying data */
181           ret = silc_ber_decode(node, NULL, &enc, NULL, &d, &d_len,
182                                 NULL, NULL);
183           if (!ret) {
184             SILC_LOG_DEBUG(("Error decoding underlaying node for ANY"));
185             goto fail;
186           }
187           assert(enc == SILC_BER_ENC_CONSTRUCTED);
188
189           /* Now encode with implicit tagging */
190           len = silc_ber_encoded_len(tag, d_len, FALSE);
191           dest = silc_buffer_srealloc_size(stack1, dest,
192                                            silc_buffer_truelen(dest) + len);
193           ret = silc_ber_encode(dest, ber_class, SILC_BER_ENC_CONSTRUCTED,
194                                 tag, d, d_len, FALSE);
195           if (!ret)
196             goto fail;
197         } else {
198           /* Copy the data directly into the tree. */
199           len = silc_buffer_len(node);
200           dest = silc_buffer_srealloc_size(stack1, dest,
201                                            silc_buffer_truelen(dest) + len);
202           if (!dest)
203             goto fail;
204           silc_buffer_put(dest, node->data, len);
205         }
206         break;
207       }
208
209     case SILC_ASN1_TAG_ANY_PRIMITIVE:
210       {
211         /* ANY_PRIMITIVE is any primitive in encoded format. */
212         SilcBuffer prim = va_arg(asn1->ap, SilcBuffer);
213         if (!prim)
214           break;
215
216         /* Encode the primitive data */
217         len = silc_ber_encoded_len(tag, silc_buffer_len(prim), FALSE);
218         dest = silc_buffer_srealloc_size(stack1, dest,
219                                          silc_buffer_truelen(dest) + len);
220         ret = silc_ber_encode(dest, ber_class, SILC_BER_ENC_PRIMITIVE,
221                               tag, prim->data, silc_buffer_len(prim), FALSE);
222         if (!ret)
223           goto fail;
224         break;
225       }
226
227     case SILC_ASN1_TAG_SEQUENCE:
228     case SILC_ASN1_TAG_SET:
229       {
230         /* SEQUENCE/SET is a sequence of types. Sequences are opened and
231            encoded recursively by calling this same encoder. */
232         memset(&buf, 0, sizeof(buf));
233
234         /* Get type, tag and options for the first argument in recursion */
235         SILC_ASN1_ARGS(asn1, rtype, rtag, rclass, ropts);
236
237         silc_stack_push(stack2, &frame);
238         ret = silc_asn1_encoder(asn1, stack2, stack1, rtype, rtag, rclass,
239                                 ropts, &buf, depth + 1, FALSE);
240         silc_stack_pop(stack2);
241         if (!ret) {
242           SILC_LOG_DEBUG(("Error traversing a SEQUENCE/SET"));
243           goto fail;
244         }
245
246         /* Encode the sequence */
247         len = silc_ber_encoded_len(tag, silc_buffer_len(&buf), indef);
248         dest = silc_buffer_srealloc_size(stack1, dest,
249                                          silc_buffer_truelen(dest) + len);
250         ret = silc_ber_encode(dest, ber_class, SILC_BER_ENC_CONSTRUCTED,
251                               tag, buf.data, silc_buffer_len(&buf), indef);
252         if (!ret)
253           goto fail;
254         break;
255       }
256
257     case SILC_ASN1_TAG_INTEGER:
258     case SILC_ASN1_TAG_ENUM:
259       {
260         /* Integer */
261         SilcMPInt *mpint = va_arg(asn1->ap, SilcMPInt *);
262         if (!mpint)
263           break;
264
265         memset(&buf, 0, sizeof(buf));
266         if (silc_mp_cmp_ui(mpint, 0) < 0) {
267           /* XXX TODO, negative integer.  Take 2s complement, then store
268              bytes in 1s complement */
269         } else {
270           /* Positive */
271           len = silc_mp_sizeinbase(mpint, 2);
272           if (!(len & 7))
273             len = ((len + 7) / 8) + 1;
274           else
275             len = (len + 7) / 8;
276           silc_stack_push(stack2, &frame);
277           silc_buffer_srealloc_size(stack2, &buf,
278                                     silc_buffer_truelen(&buf) + len);
279           buf.data[0] = 0x00;
280           silc_mp_mp2bin_noalloc(mpint, buf.data, silc_buffer_len(&buf));
281         }
282
283         /* Encode the integer */
284         len = silc_ber_encoded_len(tag, len, indef);
285         dest = silc_buffer_srealloc_size(stack1, dest,
286                                          silc_buffer_truelen(dest) + len);
287         ret = silc_ber_encode(dest, ber_class, SILC_BER_ENC_PRIMITIVE,
288                               tag, buf.data, silc_buffer_len(&buf), FALSE);
289         silc_stack_pop(stack2);
290         if (!ret)
291           goto fail;
292         break;
293       }
294
295     case SILC_ASN1_TAG_OID:
296       {
297         /* Object identifier */
298         char *cp, *oidstr = va_arg(asn1->ap, char *);
299         SilcUInt32 words[24], oid, mask;
300         int i, c = -1;
301         if (!oidstr)
302           break;
303
304         /* Get OID words from the string */
305         cp = strchr(oidstr, '.');
306         while (cp) {
307           c = sscanf(oidstr, "%lu", (unsigned long *)&oid);
308           if (c < 1) {
309             SILC_LOG_DEBUG(("Malformed OID string"));
310             goto fail;
311           }
312           if (c + 1 > sizeof(words) / sizeof(words[0]))
313             goto fail;
314           words[c++] = oid;
315           oidstr = cp + 1;
316           cp = strchr(oidstr, '.');
317         }
318         if (c < 2) {
319           SILC_LOG_DEBUG(("Malfromed OID string"));
320           goto fail;
321         }
322
323         /* Get OID data length */
324         for (i = 2, len = 1; i < c; i++) {
325           if (words[i]) {
326             for (oid = words[i]; oid; oid >>= 7)
327               len++;
328             continue;
329           }
330           len++;
331         }
332
333         /* Encode the OID */
334         memset(&buf, 0, sizeof(buf));
335         silc_stack_push(stack2, &frame);
336         silc_buffer_srealloc_size(stack2, &buf,
337                                   silc_buffer_truelen(&buf) + len);
338         buf.data[0] = words[0] * 40 + words[1];
339         for (i = 2, len = 1; i < c; i++) {
340           oid = words[i];
341           if (oid) {
342             c = len;
343             mask = 0;
344             while (oid) {
345               buf.data[len++] = (oid & 0x7f) | mask;
346               oid >>= 7;
347               mask |= 0x80;
348             }
349             mask = len - 1;
350             while (c < mask) {
351               oid = buf.data[c];
352               buf.data[c] = buf.data[mask];
353               buf.data[mask] = oid;
354               c++;
355               mask--;
356             }
357
358             continue;
359           }
360           buf.data[len++] = 0x00;
361         }
362
363         len = silc_ber_encoded_len(tag, len, indef);
364         dest = silc_buffer_srealloc_size(stack1, dest,
365                                          silc_buffer_truelen(dest) + len);
366         ret = silc_ber_encode(dest, ber_class, SILC_BER_ENC_PRIMITIVE,
367                               tag, buf.data, silc_buffer_len(&buf), FALSE);
368         silc_stack_pop(stack2);
369         if (!ret)
370           goto fail;
371         break;
372       }
373
374     case SILC_ASN1_TAG_BOOLEAN:
375       {
376         /* Encodes boolean (TRUE/FALSE) value */
377         unsigned char val[1];
378         val[0] = (va_arg(asn1->ap, SilcUInt32) ? 0xff : 0x00);
379
380         assert(indef == FALSE);
381         len = silc_ber_encoded_len(tag, 1, FALSE);
382         dest = silc_buffer_srealloc_size(stack1, dest,
383                                          silc_buffer_truelen(dest) + len);
384         ret = silc_ber_encode(dest, ber_class, SILC_BER_ENC_PRIMITIVE,
385                               tag, val, 1, FALSE);
386         if (!ret)
387           goto fail;
388         break;
389       }
390
391     case SILC_ASN1_TAG_BIT_STRING:
392       {
393         /* Encode the data as is, with the bit padding. d_len is in bits. */
394         unsigned char *d = va_arg(asn1->ap, unsigned char *);
395         SilcUInt32 d_len = va_arg(asn1->ap, SilcUInt32);
396         unsigned char pad[1];
397         if (!d)
398           break;
399
400         pad[0] = (8 - (d_len & 7)) & 7;
401         d_len = ((d_len + 7) / 8) + 1;
402
403         memset(&buf, 0, sizeof(buf));
404         silc_stack_push(stack2, &frame);
405         silc_buffer_srealloc_size(stack2, &buf,
406                                   silc_buffer_truelen(&buf) + d_len);
407         silc_buffer_put(&buf, pad, 1);
408         silc_buffer_pull(&buf, 1);
409         silc_buffer_put(&buf, d, d_len - 1);
410         silc_buffer_push(&buf, 1);
411
412         len = silc_ber_encoded_len(tag, silc_buffer_len(&buf), indef);
413         dest = silc_buffer_srealloc_size(stack1, dest,
414                                          silc_buffer_truelen(dest) + len);
415         ret = silc_ber_encode(dest, ber_class, SILC_BER_ENC_PRIMITIVE,
416                               tag, buf.data, silc_buffer_len(&buf), indef);
417         silc_stack_pop(stack2);
418         if (!ret)
419           goto fail;
420         break;
421       }
422
423     case SILC_ASN1_TAG_NULL:
424       {
425         /* Encode empty BER block */
426         assert(indef == FALSE);
427         len = silc_ber_encoded_len(tag, 0, FALSE);
428         dest = silc_buffer_srealloc_size(stack1, dest,
429                                          silc_buffer_truelen(dest) + len);
430         ret = silc_ber_encode(dest, ber_class, SILC_BER_ENC_PRIMITIVE,
431                               tag, NULL, 0, FALSE);
432         if (!ret)
433           goto fail;
434         break;
435       }
436
437     case SILC_ASN1_TAG_UTC_TIME:
438       {
439         /* Universal encoded time string */
440         SilcTime timeval = va_arg(asn1->ap, SilcTime);
441         char timestr[32];
442         if (!timeval)
443           break;
444
445         if (!silc_time_universal_string(timeval, timestr, sizeof(timestr))) {
446           SILC_LOG_DEBUG(("Could not encode universal time string"));
447           goto fail;
448         }
449
450         len = silc_ber_encoded_len(tag, strlen(timestr), indef);
451         dest = silc_buffer_srealloc_size(stack1, dest,
452                                          silc_buffer_truelen(dest) + len);
453         ret = silc_ber_encode(dest, ber_class, SILC_BER_ENC_PRIMITIVE,
454                               tag, timestr, strlen(timestr), indef);
455         if (!ret)
456           goto fail;
457         break;
458       }
459
460     case SILC_ASN1_TAG_GENERALIZED_TIME:
461       {
462         /* Generalized encoded time string */
463         SilcTime timeval = va_arg(asn1->ap, SilcTime);
464         char timestr[32];
465         if (!timeval)
466           break;
467
468         if (!silc_time_generalized_string(timeval, timestr, sizeof(timestr))) {
469           SILC_LOG_DEBUG(("Could not encode generalized time string"));
470           goto fail;
471         }
472
473         len = silc_ber_encoded_len(tag, strlen(timestr), indef);
474         dest = silc_buffer_srealloc_size(stack1, dest,
475                                          silc_buffer_truelen(dest) + len);
476         ret = silc_ber_encode(dest, ber_class, SILC_BER_ENC_PRIMITIVE,
477                               tag, timestr, strlen(timestr), indef);
478         if (!ret)
479           goto fail;
480         break;
481       }
482
483     case SILC_ASN1_TAG_UTF8_STRING:
484       {
485         /* UTF-8 string */
486         unsigned char *d = va_arg(asn1->ap, unsigned char *);
487         SilcUInt32 d_len = va_arg(asn1->ap, SilcUInt32);
488         if (!d)
489           break;
490
491         /* By default all strings that get here should already be UTF-8 */
492         if (!silc_utf8_valid(d, d_len)) {
493           SILC_LOG_DEBUG(("Malformed UTF-8 string"));
494           goto fail;
495         }
496
497         len = silc_ber_encoded_len(tag, d_len, indef);
498         dest = silc_buffer_srealloc_size(stack1, dest,
499                                          silc_buffer_truelen(dest) + len);
500         ret = silc_ber_encode(dest, ber_class, SILC_BER_ENC_PRIMITIVE,
501                               tag, d, d_len, indef);
502         if (!ret)
503           goto fail;
504         break;
505       }
506
507     case SILC_ASN1_TAG_OCTET_STRING:
508       {
509         /* Octet string.  We put it in as 8-bit ASCII */
510         SILC_ASN1_ENCODE_STRING(SILC_STRING_ASCII);
511         break;
512       }
513
514     case SILC_ASN1_TAG_NUMERIC_STRING:
515       {
516         /* Numerical (digit) string */
517         SILC_ASN1_ENCODE_STRING(SILC_STRING_NUMERICAL);
518         break;
519       }
520
521     case SILC_ASN1_TAG_PRINTABLE_STRING:
522       {
523         /* Printable string */
524         SILC_ASN1_ENCODE_STRING(SILC_STRING_PRINTABLE);
525         break;
526       }
527
528     case SILC_ASN1_TAG_TELETEX_STRING:
529       {
530         /* Teletex (T61) string */
531         SILC_ASN1_ENCODE_STRING(SILC_STRING_TELETEX);
532         break;
533       }
534
535     case SILC_ASN1_TAG_IA5_STRING:
536       {
537         /* US ASCII string */
538         SILC_ASN1_ENCODE_STRING(SILC_STRING_ASCII);
539         break;
540       }
541
542     case SILC_ASN1_TAG_VISIBLE_STRING:
543       {
544         /* Visible string */
545         SILC_ASN1_ENCODE_STRING(SILC_STRING_VISIBLE);
546         break;
547       }
548
549     case SILC_ASN1_TAG_UNIVERSAL_STRING:
550       {
551         /* Universal (UCS-4) string */
552         SILC_ASN1_ENCODE_STRING(SILC_STRING_UNIVERSAL);
553         break;
554       }
555
556     case SILC_ASN1_TAG_UNRESTRICTED_STRING:
557     case SILC_ASN1_TAG_GENERAL_STRING:
558       {
559         /* Handle now unrestricted and general as 8-bit ascii, which
560            probably isn't correct. */
561         SILC_ASN1_ENCODE_STRING(SILC_STRING_ASCII);
562         break;
563       }
564
565     case SILC_ASN1_TAG_BMP_STRING:
566       {
567         /* BMP (UCS-2) string */
568         SILC_ASN1_ENCODE_STRING(SILC_STRING_UNIVERSAL);
569         break;
570       }
571
572     case SILC_ASN1_TAG_ODE:
573     case SILC_ASN1_TAG_ETI:
574     case SILC_ASN1_TAG_REAL:
575     case SILC_ASN1_TAG_EMBEDDED:
576     case SILC_ASN1_TAG_ROI:
577     case SILC_ASN1_TAG_VIDEOTEX_STRING:
578     case SILC_ASN1_TAG_GRAPHIC_STRING:
579       {
580         SILC_NOT_IMPLEMENTED("Unsupported ASN.1 tag");
581         ret = FALSE;
582         goto fail;
583         break;
584       }
585
586     default:
587       SILC_LOG_DEBUG(("Invalid ASN.1 tag `%d'. Cannot encode ASN.1.", type));
588       ret = FALSE;
589       goto fail;
590       break;
591     }
592
593   cont:
594     if (len)
595       silc_buffer_pull(dest, len);
596     if (primitive) {
597       ret = TRUE;
598       goto ok;
599     }
600
601     /* Get next type, tag and options */
602     SILC_ASN1_ARGS(asn1, type, tag, ber_class, opts);
603     if (type == SILC_ASN1_END) {
604       ret = TRUE;
605       goto ok;
606     }
607   }
608
609  fail:
610   SILC_LOG_DEBUG(("Error encoding type %d (depth %d)", type, depth));
611
612  ok:
613   if (ptr)
614     len = dest->data - ptr;
615   else
616     len = dest->data - dest->head;
617   silc_buffer_push(dest, len);
618
619   return ret;
620 }
621
622 SilcBool silc_asn1_encode(SilcAsn1 asn1, SilcBuffer dest, ...)
623 {
624   SilcAsn1Tag type, tag;
625   SilcAsn1Options opts;
626   SilcBerClass ber_class;
627   SilcStackFrame frame1, frame2;
628   SilcStack stack1 = NULL;
629   SilcBool ret;
630
631   if (!asn1)
632     return FALSE;
633
634   va_start(asn1->ap, dest);
635
636   /* Get the first arguments and call the encoder. */
637   SILC_ASN1_ARGS(asn1, type, tag, ber_class, opts);
638   if (!type) {
639     va_end(asn1->ap);
640     asn1->ap = NULL;
641     return FALSE;
642   }
643
644   /* Handle internal options for encoder. */
645   if (type == SILC_ASN1_TAG_OPTS) {
646     SilcUInt32 o = va_arg(asn1->ap, SilcUInt32);
647
648     if (o & SILC_ASN1_ALLOC) {
649       /* User wants to alloate everything.  Set the stack to NULL so
650          that stack aware calls revert to normal allocation routines. */
651       stack1 = asn1->stack1;
652       asn1->stack1 = NULL;
653     }
654
655     if (o & SILC_ASN1_ACCUMUL) {
656       /* If accumul flag is not set yet, then push the stack. */
657       if (!asn1->accumul) {
658         silc_stack_push(asn1->stack1, NULL);
659         asn1->accumul = 1;
660       }
661     }
662
663     /* Take again the arguments */
664     SILC_ASN1_ARGS(asn1, type, tag, ber_class, opts);
665   } else {
666     /* No flags set, all flags will be reset. */
667
668     /* If accumul flag is set now pop the stack so that all accumulated
669        memory becomes free again. */
670     if (asn1->accumul) {
671       silc_stack_pop(asn1->stack1);
672       asn1->accumul = 0;
673     }
674   }
675
676   /* Push the stack for normal allocation from stack. */
677   if (!asn1->accumul)
678     silc_stack_push(asn1->stack1, &frame1);
679
680   /* Start encoding */
681   silc_stack_push(asn1->stack2, &frame2);
682   ret = silc_asn1_encoder(asn1, asn1->stack1, asn1->stack2,
683                           type, tag, ber_class, opts, dest, 0, FALSE);
684   silc_stack_pop(asn1->stack2);
685
686   /* Pop the stack to free normal allocations from stack. */
687   if (!asn1->accumul)
688     silc_stack_pop(asn1->stack1);
689
690   /* If SILC_ASN1_ALLOC flag was set, restore the stack. */
691   if (stack1 && !asn1->stack1)
692     asn1->stack1 = stack1;
693
694   va_end(asn1->ap);
695   asn1->ap = NULL;
696
697   return ret;
698 }