Coverage Report

Created: 2023-06-08 06:40

/src/openssl111/crypto/asn1/tasn_enc.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 2000-2020 The OpenSSL Project Authors. All Rights Reserved.
3
 *
4
 * Licensed under the OpenSSL license (the "License").  You may not use
5
 * this file except in compliance with the License.  You can obtain a copy
6
 * in the file LICENSE in the source distribution or at
7
 * https://www.openssl.org/source/license.html
8
 */
9
10
#include <stddef.h>
11
#include <string.h>
12
#include "internal/cryptlib.h"
13
#include <openssl/asn1.h>
14
#include <openssl/asn1t.h>
15
#include <openssl/objects.h>
16
#include "crypto/asn1.h"
17
#include "asn1_local.h"
18
19
static int asn1_i2d_ex_primitive(ASN1_VALUE **pval, unsigned char **out,
20
                                 const ASN1_ITEM *it, int tag, int aclass);
21
static int asn1_set_seq_out(STACK_OF(ASN1_VALUE) *sk, unsigned char **out,
22
                            int skcontlen, const ASN1_ITEM *item,
23
                            int do_sort, int iclass);
24
static int asn1_template_ex_i2d(ASN1_VALUE **pval, unsigned char **out,
25
                                const ASN1_TEMPLATE *tt, int tag, int aclass);
26
static int asn1_item_flags_i2d(ASN1_VALUE *val, unsigned char **out,
27
                               const ASN1_ITEM *it, int flags);
28
static int asn1_ex_i2c(ASN1_VALUE **pval, unsigned char *cout, int *putype,
29
                       const ASN1_ITEM *it);
30
31
/*
32
 * Top level i2d equivalents: the 'ndef' variant instructs the encoder to use
33
 * indefinite length constructed encoding, where appropriate
34
 */
35
36
int ASN1_item_ndef_i2d(ASN1_VALUE *val, unsigned char **out,
37
                       const ASN1_ITEM *it)
38
0
{
39
0
    return asn1_item_flags_i2d(val, out, it, ASN1_TFLG_NDEF);
40
0
}
41
42
int ASN1_item_i2d(ASN1_VALUE *val, unsigned char **out, const ASN1_ITEM *it)
43
4.05k
{
44
4.05k
    return asn1_item_flags_i2d(val, out, it, 0);
45
4.05k
}
46
47
/*
48
 * Encode an ASN1 item, this is use by the standard 'i2d' function. 'out'
49
 * points to a buffer to output the data to. The new i2d has one additional
50
 * feature. If the output buffer is NULL (i.e. *out == NULL) then a buffer is
51
 * allocated and populated with the encoding.
52
 */
53
54
static int asn1_item_flags_i2d(ASN1_VALUE *val, unsigned char **out,
55
                               const ASN1_ITEM *it, int flags)
56
4.05k
{
57
4.05k
    if (out && !*out) {
58
3.47k
        unsigned char *p, *buf;
59
3.47k
        int len;
60
61
3.47k
        len = ASN1_item_ex_i2d(&val, NULL, it, -1, flags);
62
3.47k
        if (len <= 0)
63
0
            return len;
64
3.47k
        if ((buf = OPENSSL_malloc(len)) == NULL) {
65
0
            ASN1err(ASN1_F_ASN1_ITEM_FLAGS_I2D, ERR_R_MALLOC_FAILURE);
66
0
            return -1;
67
0
        }
68
3.47k
        p = buf;
69
3.47k
        ASN1_item_ex_i2d(&val, &p, it, -1, flags);
70
3.47k
        *out = buf;
71
3.47k
        return len;
72
3.47k
    }
73
74
579
    return ASN1_item_ex_i2d(&val, out, it, -1, flags);
75
4.05k
}
76
77
/*
78
 * Encode an item, taking care of IMPLICIT tagging (if any). This function
79
 * performs the normal item handling: it can be used in external types.
80
 */
81
82
int ASN1_item_ex_i2d(ASN1_VALUE **pval, unsigned char **out,
83
                     const ASN1_ITEM *it, int tag, int aclass)
84
249k
{
85
249k
    const ASN1_TEMPLATE *tt = NULL;
86
249k
    int i, seqcontlen, seqlen, ndef = 1;
87
249k
    const ASN1_EXTERN_FUNCS *ef;
88
249k
    const ASN1_AUX *aux = it->funcs;
89
249k
    ASN1_aux_cb *asn1_cb = 0;
90
91
249k
    if ((it->itype != ASN1_ITYPE_PRIMITIVE) && !*pval)
92
0
        return 0;
93
94
249k
    if (aux && aux->asn1_cb)
95
9.14k
        asn1_cb = aux->asn1_cb;
96
97
249k
    switch (it->itype) {
98
99
122k
    case ASN1_ITYPE_PRIMITIVE:
100
122k
        if (it->templates)
101
27.9k
            return asn1_template_ex_i2d(pval, out, it->templates,
102
27.9k
                                        tag, aclass);
103
94.6k
        return asn1_i2d_ex_primitive(pval, out, it, tag, aclass);
104
105
58.6k
    case ASN1_ITYPE_MSTRING:
106
        /*
107
         * It never makes sense for multi-strings to have implicit tagging, so
108
         * if tag != -1, then this looks like an error in the template.
109
         */
110
58.6k
        if (tag != -1) {
111
0
            ASN1err(ASN1_F_ASN1_ITEM_EX_I2D, ASN1_R_BAD_TEMPLATE);
112
0
            return -1;
113
0
        }
114
58.6k
        return asn1_i2d_ex_primitive(pval, out, it, -1, aclass);
115
116
0
    case ASN1_ITYPE_CHOICE:
117
        /*
118
         * It never makes sense for CHOICE types to have implicit tagging, so
119
         * if tag != -1, then this looks like an error in the template.
120
         */
121
0
        if (tag != -1) {
122
0
            ASN1err(ASN1_F_ASN1_ITEM_EX_I2D, ASN1_R_BAD_TEMPLATE);
123
0
            return -1;
124
0
        }
125
0
        if (asn1_cb && !asn1_cb(ASN1_OP_I2D_PRE, pval, it, NULL))
126
0
            return 0;
127
0
        i = asn1_get_choice_selector(pval, it);
128
0
        if ((i >= 0) && (i < it->tcount)) {
129
0
            ASN1_VALUE **pchval;
130
0
            const ASN1_TEMPLATE *chtt;
131
0
            chtt = it->templates + i;
132
0
            pchval = asn1_get_field_ptr(pval, chtt);
133
0
            return asn1_template_ex_i2d(pchval, out, chtt, -1, aclass);
134
0
        }
135
        /* Fixme: error condition if selector out of range */
136
0
        if (asn1_cb && !asn1_cb(ASN1_OP_I2D_POST, pval, it, NULL))
137
0
            return 0;
138
0
        break;
139
140
6
    case ASN1_ITYPE_EXTERN:
141
        /* If new style i2d it does all the work */
142
6
        ef = it->funcs;
143
6
        return ef->asn1_ex_i2d(pval, out, it, tag, aclass);
144
145
0
    case ASN1_ITYPE_NDEF_SEQUENCE:
146
        /* Use indefinite length constructed if requested */
147
0
        if (aclass & ASN1_TFLG_NDEF)
148
0
            ndef = 2;
149
        /* fall through */
150
151
68.3k
    case ASN1_ITYPE_SEQUENCE:
152
68.3k
        i = asn1_enc_restore(&seqcontlen, out, pval, it);
153
        /* An error occurred */
154
68.3k
        if (i < 0)
155
0
            return 0;
156
        /* We have a valid cached encoding... */
157
68.3k
        if (i > 0)
158
8.67k
            return seqcontlen;
159
        /* Otherwise carry on */
160
59.6k
        seqcontlen = 0;
161
        /* If no IMPLICIT tagging set to SEQUENCE, UNIVERSAL */
162
59.6k
        if (tag == -1) {
163
59.6k
            tag = V_ASN1_SEQUENCE;
164
            /* Retain any other flags in aclass */
165
59.6k
            aclass = (aclass & ~ASN1_TFLG_TAG_CLASS)
166
59.6k
                | V_ASN1_UNIVERSAL;
167
59.6k
        }
168
59.6k
        if (asn1_cb && !asn1_cb(ASN1_OP_I2D_PRE, pval, it, NULL))
169
0
            return 0;
170
        /* First work out sequence content length */
171
184k
        for (i = 0, tt = it->templates; i < it->tcount; tt++, i++) {
172
125k
            const ASN1_TEMPLATE *seqtt;
173
125k
            ASN1_VALUE **pseqval;
174
125k
            int tmplen;
175
125k
            seqtt = asn1_do_adb(pval, tt, 1);
176
125k
            if (!seqtt)
177
0
                return 0;
178
125k
            pseqval = asn1_get_field_ptr(pval, seqtt);
179
125k
            tmplen = asn1_template_ex_i2d(pseqval, NULL, seqtt, -1, aclass);
180
125k
            if (tmplen == -1 || (tmplen > INT_MAX - seqcontlen))
181
0
                return -1;
182
125k
            seqcontlen += tmplen;
183
125k
        }
184
185
59.6k
        seqlen = ASN1_object_size(ndef, seqcontlen, tag);
186
59.6k
        if (!out || seqlen == -1)
187
38.6k
            return seqlen;
188
        /* Output SEQUENCE header */
189
21.0k
        ASN1_put_object(out, ndef, seqcontlen, tag, aclass);
190
66.0k
        for (i = 0, tt = it->templates; i < it->tcount; tt++, i++) {
191
45.0k
            const ASN1_TEMPLATE *seqtt;
192
45.0k
            ASN1_VALUE **pseqval;
193
45.0k
            seqtt = asn1_do_adb(pval, tt, 1);
194
45.0k
            if (!seqtt)
195
0
                return 0;
196
45.0k
            pseqval = asn1_get_field_ptr(pval, seqtt);
197
            /* FIXME: check for errors in enhanced version */
198
45.0k
            asn1_template_ex_i2d(pseqval, out, seqtt, -1, aclass);
199
45.0k
        }
200
21.0k
        if (ndef == 2)
201
0
            ASN1_put_eoc(out);
202
21.0k
        if (asn1_cb && !asn1_cb(ASN1_OP_I2D_POST, pval, it, NULL))
203
0
            return 0;
204
21.0k
        return seqlen;
205
206
0
    default:
207
0
        return 0;
208
209
249k
    }
210
0
    return 0;
211
249k
}
212
213
static int asn1_template_ex_i2d(ASN1_VALUE **pval, unsigned char **out,
214
                                const ASN1_TEMPLATE *tt, int tag, int iclass)
215
198k
{
216
198k
    int i, ret, flags, ttag, tclass, ndef;
217
198k
    ASN1_VALUE *tval;
218
198k
    flags = tt->flags;
219
220
    /*
221
     * If field is embedded then val needs fixing so it is a pointer to
222
     * a pointer to a field.
223
     */
224
198k
    if (flags & ASN1_TFLG_EMBED) {
225
26.0k
        tval = (ASN1_VALUE *)pval;
226
26.0k
        pval = &tval;
227
26.0k
    }
228
    /*
229
     * Work out tag and class to use: tagging may come either from the
230
     * template or the arguments, not both because this would create
231
     * ambiguity. Additionally the iclass argument may contain some
232
     * additional flags which should be noted and passed down to other
233
     * levels.
234
     */
235
198k
    if (flags & ASN1_TFLG_TAG_MASK) {
236
        /* Error if argument and template tagging */
237
0
        if (tag != -1)
238
            /* FIXME: error code here */
239
0
            return -1;
240
        /* Get tagging from template */
241
0
        ttag = tt->tag;
242
0
        tclass = flags & ASN1_TFLG_TAG_CLASS;
243
198k
    } else if (tag != -1) {
244
        /* No template tagging, get from arguments */
245
0
        ttag = tag;
246
0
        tclass = iclass & ASN1_TFLG_TAG_CLASS;
247
198k
    } else {
248
198k
        ttag = -1;
249
198k
        tclass = 0;
250
198k
    }
251
    /*
252
     * Remove any class mask from iflag.
253
     */
254
198k
    iclass &= ~ASN1_TFLG_TAG_CLASS;
255
256
    /*
257
     * At this point 'ttag' contains the outer tag to use, 'tclass' is the
258
     * class and iclass is any flags passed to this function.
259
     */
260
261
    /* if template and arguments require ndef, use it */
262
198k
    if ((flags & ASN1_TFLG_NDEF) && (iclass & ASN1_TFLG_NDEF))
263
0
        ndef = 2;
264
198k
    else
265
198k
        ndef = 1;
266
267
198k
    if (flags & ASN1_TFLG_SK_MASK) {
268
        /* SET OF, SEQUENCE OF */
269
27.9k
        STACK_OF(ASN1_VALUE) *sk = (STACK_OF(ASN1_VALUE) *)*pval;
270
27.9k
        int isset, sktag, skaclass;
271
27.9k
        int skcontlen, sklen;
272
27.9k
        ASN1_VALUE *skitem;
273
274
27.9k
        if (!*pval)
275
0
            return 0;
276
277
27.9k
        if (flags & ASN1_TFLG_SET_OF) {
278
27.9k
            isset = 1;
279
            /* 2 means we reorder */
280
27.9k
            if (flags & ASN1_TFLG_SEQUENCE_OF)
281
0
                isset = 2;
282
27.9k
        } else
283
0
            isset = 0;
284
285
        /*
286
         * Work out inner tag value: if EXPLICIT or no tagging use underlying
287
         * type.
288
         */
289
27.9k
        if ((ttag != -1) && !(flags & ASN1_TFLG_EXPTAG)) {
290
0
            sktag = ttag;
291
0
            skaclass = tclass;
292
27.9k
        } else {
293
27.9k
            skaclass = V_ASN1_UNIVERSAL;
294
27.9k
            if (isset)
295
27.9k
                sktag = V_ASN1_SET;
296
0
            else
297
0
                sktag = V_ASN1_SEQUENCE;
298
27.9k
        }
299
300
        /* Determine total length of items */
301
27.9k
        skcontlen = 0;
302
57.2k
        for (i = 0; i < sk_ASN1_VALUE_num(sk); i++) {
303
29.3k
            int tmplen;
304
29.3k
            skitem = sk_ASN1_VALUE_value(sk, i);
305
29.3k
            tmplen = ASN1_item_ex_i2d(&skitem, NULL, ASN1_ITEM_ptr(tt->item),
306
29.3k
                                      -1, iclass);
307
29.3k
            if (tmplen == -1 || (skcontlen > INT_MAX - tmplen))
308
0
                return -1;
309
29.3k
            skcontlen += tmplen;
310
29.3k
        }
311
27.9k
        sklen = ASN1_object_size(ndef, skcontlen, sktag);
312
27.9k
        if (sklen == -1)
313
0
            return -1;
314
        /* If EXPLICIT need length of surrounding tag */
315
27.9k
        if (flags & ASN1_TFLG_EXPTAG)
316
0
            ret = ASN1_object_size(ndef, sklen, ttag);
317
27.9k
        else
318
27.9k
            ret = sklen;
319
320
27.9k
        if (!out || ret == -1)
321
13.9k
            return ret;
322
323
        /* Now encode this lot... */
324
        /* EXPLICIT tag */
325
13.9k
        if (flags & ASN1_TFLG_EXPTAG)
326
0
            ASN1_put_object(out, ndef, sklen, ttag, tclass);
327
        /* SET or SEQUENCE and IMPLICIT tag */
328
13.9k
        ASN1_put_object(out, ndef, skcontlen, sktag, skaclass);
329
        /* And the stuff itself */
330
13.9k
        asn1_set_seq_out(sk, out, skcontlen, ASN1_ITEM_ptr(tt->item),
331
13.9k
                         isset, iclass);
332
13.9k
        if (ndef == 2) {
333
0
            ASN1_put_eoc(out);
334
0
            if (flags & ASN1_TFLG_EXPTAG)
335
0
                ASN1_put_eoc(out);
336
0
        }
337
338
13.9k
        return ret;
339
27.9k
    }
340
341
170k
    if (flags & ASN1_TFLG_EXPTAG) {
342
        /* EXPLICIT tagging */
343
        /* Find length of tagged item */
344
0
        i = ASN1_item_ex_i2d(pval, NULL, ASN1_ITEM_ptr(tt->item), -1, iclass);
345
0
        if (!i)
346
0
            return 0;
347
        /* Find length of EXPLICIT tag */
348
0
        ret = ASN1_object_size(ndef, i, ttag);
349
0
        if (out && ret != -1) {
350
            /* Output tag and item */
351
0
            ASN1_put_object(out, ndef, i, ttag, tclass);
352
0
            ASN1_item_ex_i2d(pval, out, ASN1_ITEM_ptr(tt->item), -1, iclass);
353
0
            if (ndef == 2)
354
0
                ASN1_put_eoc(out);
355
0
        }
356
0
        return ret;
357
0
    }
358
359
    /* Either normal or IMPLICIT tagging: combine class and flags */
360
170k
    return ASN1_item_ex_i2d(pval, out, ASN1_ITEM_ptr(tt->item),
361
170k
                            ttag, tclass | iclass);
362
363
170k
}
364
365
/* Temporary structure used to hold DER encoding of items for SET OF */
366
367
typedef struct {
368
    unsigned char *data;
369
    int length;
370
    ASN1_VALUE *field;
371
} DER_ENC;
372
373
static int der_cmp(const void *a, const void *b)
374
2.08k
{
375
2.08k
    const DER_ENC *d1 = a, *d2 = b;
376
2.08k
    int cmplen, i;
377
2.08k
    cmplen = (d1->length < d2->length) ? d1->length : d2->length;
378
2.08k
    i = memcmp(d1->data, d2->data, cmplen);
379
2.08k
    if (i)
380
1.31k
        return i;
381
770
    return d1->length - d2->length;
382
2.08k
}
383
384
/* Output the content octets of SET OF or SEQUENCE OF */
385
386
static int asn1_set_seq_out(STACK_OF(ASN1_VALUE) *sk, unsigned char **out,
387
                            int skcontlen, const ASN1_ITEM *item,
388
                            int do_sort, int iclass)
389
13.9k
{
390
13.9k
    int i;
391
13.9k
    ASN1_VALUE *skitem;
392
13.9k
    unsigned char *tmpdat = NULL, *p = NULL;
393
13.9k
    DER_ENC *derlst = NULL, *tder;
394
13.9k
    if (do_sort) {
395
        /* Don't need to sort less than 2 items */
396
13.9k
        if (sk_ASN1_VALUE_num(sk) < 2)
397
13.8k
            do_sort = 0;
398
101
        else {
399
101
            derlst = OPENSSL_malloc(sk_ASN1_VALUE_num(sk)
400
101
                                    * sizeof(*derlst));
401
101
            if (derlst == NULL)
402
0
                return 0;
403
101
            tmpdat = OPENSSL_malloc(skcontlen);
404
101
            if (tmpdat == NULL) {
405
0
                OPENSSL_free(derlst);
406
0
                return 0;
407
0
            }
408
101
        }
409
13.9k
    }
410
    /* If not sorting just output each item */
411
13.9k
    if (!do_sort) {
412
27.7k
        for (i = 0; i < sk_ASN1_VALUE_num(sk); i++) {
413
13.8k
            skitem = sk_ASN1_VALUE_value(sk, i);
414
13.8k
            ASN1_item_ex_i2d(&skitem, out, item, -1, iclass);
415
13.8k
        }
416
13.8k
        return 1;
417
13.8k
    }
418
101
    p = tmpdat;
419
420
    /* Doing sort: build up a list of each member's DER encoding */
421
903
    for (i = 0, tder = derlst; i < sk_ASN1_VALUE_num(sk); i++, tder++) {
422
802
        skitem = sk_ASN1_VALUE_value(sk, i);
423
802
        tder->data = p;
424
802
        tder->length = ASN1_item_ex_i2d(&skitem, &p, item, -1, iclass);
425
802
        tder->field = skitem;
426
802
    }
427
428
    /* Now sort them */
429
101
    qsort(derlst, sk_ASN1_VALUE_num(sk), sizeof(*derlst), der_cmp);
430
    /* Output sorted DER encoding */
431
101
    p = *out;
432
903
    for (i = 0, tder = derlst; i < sk_ASN1_VALUE_num(sk); i++, tder++) {
433
802
        memcpy(p, tder->data, tder->length);
434
802
        p += tder->length;
435
802
    }
436
101
    *out = p;
437
    /* If do_sort is 2 then reorder the STACK */
438
101
    if (do_sort == 2) {
439
0
        for (i = 0, tder = derlst; i < sk_ASN1_VALUE_num(sk); i++, tder++)
440
0
            (void)sk_ASN1_VALUE_set(sk, i, tder->field);
441
0
    }
442
101
    OPENSSL_free(derlst);
443
101
    OPENSSL_free(tmpdat);
444
101
    return 1;
445
13.9k
}
446
447
static int asn1_i2d_ex_primitive(ASN1_VALUE **pval, unsigned char **out,
448
                                 const ASN1_ITEM *it, int tag, int aclass)
449
153k
{
450
153k
    int len;
451
153k
    int utype;
452
153k
    int usetag;
453
153k
    int ndef = 0;
454
455
153k
    utype = it->utype;
456
457
    /*
458
     * Get length of content octets and maybe find out the underlying type.
459
     */
460
461
153k
    len = asn1_ex_i2c(pval, NULL, &utype, it);
462
463
    /*
464
     * If SEQUENCE, SET or OTHER then header is included in pseudo content
465
     * octets so don't include tag+length. We need to check here because the
466
     * call to asn1_ex_i2c() could change utype.
467
     */
468
153k
    if ((utype == V_ASN1_SEQUENCE) || (utype == V_ASN1_SET) ||
469
153k
        (utype == V_ASN1_OTHER))
470
2.57k
        usetag = 0;
471
150k
    else
472
150k
        usetag = 1;
473
474
    /* -1 means omit type */
475
476
153k
    if (len == -1)
477
2.60k
        return 0;
478
479
    /* -2 return is special meaning use ndef */
480
150k
    if (len == -2) {
481
0
        ndef = 2;
482
0
        len = 0;
483
0
    }
484
485
    /* If not implicitly tagged get tag from underlying type */
486
150k
    if (tag == -1)
487
150k
        tag = utype;
488
489
    /* Output tag+length followed by content octets */
490
150k
    if (out) {
491
38.5k
        if (usetag)
492
37.9k
            ASN1_put_object(out, ndef, len, tag, aclass);
493
38.5k
        asn1_ex_i2c(pval, *out, &utype, it);
494
38.5k
        if (ndef)
495
0
            ASN1_put_eoc(out);
496
38.5k
        else
497
38.5k
            *out += len;
498
38.5k
    }
499
500
150k
    if (usetag)
501
148k
        return ASN1_object_size(ndef, len, tag);
502
2.57k
    return len;
503
150k
}
504
505
/* Produce content octets from a structure */
506
507
static int asn1_ex_i2c(ASN1_VALUE **pval, unsigned char *cout, int *putype,
508
                       const ASN1_ITEM *it)
509
191k
{
510
191k
    ASN1_BOOLEAN *tbool = NULL;
511
191k
    ASN1_STRING *strtmp;
512
191k
    ASN1_OBJECT *otmp;
513
191k
    int utype;
514
191k
    const unsigned char *cont;
515
191k
    unsigned char c;
516
191k
    int len;
517
191k
    const ASN1_PRIMITIVE_FUNCS *pf;
518
191k
    pf = it->funcs;
519
191k
    if (pf && pf->prim_i2c)
520
4.47k
        return pf->prim_i2c(pval, cout, putype, it);
521
522
    /* Should type be omitted? */
523
187k
    if ((it->itype != ASN1_ITYPE_PRIMITIVE)
524
187k
        || (it->utype != V_ASN1_BOOLEAN)) {
525
187k
        if (!*pval)
526
2.60k
            return -1;
527
187k
    }
528
529
184k
    if (it->itype == ASN1_ITYPE_MSTRING) {
530
        /* If MSTRING type set the underlying type */
531
73.3k
        strtmp = (ASN1_STRING *)*pval;
532
73.3k
        utype = strtmp->type;
533
73.3k
        *putype = utype;
534
111k
    } else if (it->utype == V_ASN1_ANY) {
535
        /* If ANY set type and pointer to value */
536
11.3k
        ASN1_TYPE *typ;
537
11.3k
        typ = (ASN1_TYPE *)*pval;
538
11.3k
        utype = typ->type;
539
11.3k
        *putype = utype;
540
11.3k
        pval = &typ->value.asn1_value;
541
11.3k
    } else
542
100k
        utype = *putype;
543
544
184k
    switch (utype) {
545
87.9k
    case V_ASN1_OBJECT:
546
87.9k
        otmp = (ASN1_OBJECT *)*pval;
547
87.9k
        cont = otmp->data;
548
87.9k
        len = otmp->length;
549
87.9k
        if (cont == NULL || len == 0)
550
0
            return -1;
551
87.9k
        break;
552
553
87.9k
    case V_ASN1_NULL:
554
7.15k
        cont = NULL;
555
7.15k
        len = 0;
556
7.15k
        break;
557
558
55
    case V_ASN1_BOOLEAN:
559
55
        tbool = (ASN1_BOOLEAN *)pval;
560
55
        if (*tbool == -1)
561
0
            return -1;
562
55
        if (it->utype != V_ASN1_ANY) {
563
            /*
564
             * Default handling if value == size field then omit
565
             */
566
0
            if (*tbool && (it->size > 0))
567
0
                return -1;
568
0
            if (!*tbool && !it->size)
569
0
                return -1;
570
0
        }
571
55
        c = (unsigned char)*tbool;
572
55
        cont = &c;
573
55
        len = 1;
574
55
        break;
575
576
11.9k
    case V_ASN1_BIT_STRING:
577
11.9k
        return i2c_ASN1_BIT_STRING((ASN1_BIT_STRING *)*pval,
578
11.9k
                                   cout ? &cout : NULL);
579
580
723
    case V_ASN1_INTEGER:
581
748
    case V_ASN1_ENUMERATED:
582
        /*
583
         * These are all have the same content format as ASN1_INTEGER
584
         */
585
748
        return i2c_ASN1_INTEGER((ASN1_INTEGER *)*pval, cout ? &cout : NULL);
586
587
137
    case V_ASN1_OCTET_STRING:
588
537
    case V_ASN1_NUMERICSTRING:
589
567
    case V_ASN1_PRINTABLESTRING:
590
577
    case V_ASN1_T61STRING:
591
587
    case V_ASN1_VIDEOTEXSTRING:
592
592
    case V_ASN1_IA5STRING:
593
592
    case V_ASN1_UTCTIME:
594
597
    case V_ASN1_GENERALIZEDTIME:
595
602
    case V_ASN1_GRAPHICSTRING:
596
692
    case V_ASN1_VISIBLESTRING:
597
717
    case V_ASN1_GENERALSTRING:
598
722
    case V_ASN1_UNIVERSALSTRING:
599
727
    case V_ASN1_BMPSTRING:
600
69.4k
    case V_ASN1_UTF8STRING:
601
70.3k
    case V_ASN1_SEQUENCE:
602
70.4k
    case V_ASN1_SET:
603
76.9k
    default:
604
        /* All based on ASN1_STRING and handled the same */
605
76.9k
        strtmp = (ASN1_STRING *)*pval;
606
        /* Special handling for NDEF */
607
76.9k
        if ((it->size == ASN1_TFLG_NDEF)
608
76.9k
            && (strtmp->flags & ASN1_STRING_FLAG_NDEF)) {
609
0
            if (cout) {
610
0
                strtmp->data = cout;
611
0
                strtmp->length = 0;
612
0
            }
613
            /* Special return code */
614
0
            return -2;
615
0
        }
616
76.9k
        cont = strtmp->data;
617
76.9k
        len = strtmp->length;
618
619
76.9k
        break;
620
621
184k
    }
622
172k
    if (cout && len)
623
32.6k
        memcpy(cout, cont, len);
624
172k
    return len;
625
184k
}