Coverage Report

Created: 2026-09-12 06:55

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl36/crypto/asn1/a_object.c
Line
Count
Source
1
/*
2
 * Copyright 1995-2025 The OpenSSL Project Authors. All Rights Reserved.
3
 *
4
 * Licensed under the Apache License 2.0 (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 <stdio.h>
11
#include <limits.h>
12
#include "crypto/ctype.h"
13
#include "internal/cryptlib.h"
14
#include <openssl/buffer.h>
15
#include <openssl/asn1.h>
16
#include <openssl/objects.h>
17
#include <openssl/bn.h>
18
#include "crypto/asn1.h"
19
#include "asn1_local.h"
20
21
int i2d_ASN1_OBJECT(const ASN1_OBJECT *a, unsigned char **pp)
22
0
{
23
0
    unsigned char *p, *allocated = NULL;
24
0
    int objsize;
25
26
0
    if ((a == NULL) || (a->data == NULL))
27
0
        return 0;
28
29
0
    objsize = ASN1_object_size(0, a->length, V_ASN1_OBJECT);
30
0
    if (pp == NULL || objsize == -1)
31
0
        return objsize;
32
33
0
    if (*pp == NULL) {
34
0
        if ((p = allocated = OPENSSL_malloc(objsize)) == NULL)
35
0
            return 0;
36
0
    } else {
37
0
        p = *pp;
38
0
    }
39
40
0
    ASN1_put_object(&p, 0, a->length, V_ASN1_OBJECT, V_ASN1_UNIVERSAL);
41
0
    memcpy(p, a->data, a->length);
42
43
    /*
44
     * If a new buffer was allocated, just return it back.
45
     * If not, return the incremented buffer pointer.
46
     */
47
0
    *pp = allocated != NULL ? allocated : p + a->length;
48
0
    return objsize;
49
0
}
50
51
int a2d_ASN1_OBJECT(unsigned char *out, int olen, const char *buf, int num)
52
1.25M
{
53
1.25M
    int i, first, len = 0, c, use_bn;
54
1.25M
    char ftmp[24], *tmp = ftmp;
55
1.25M
    int tmpsize = sizeof(ftmp);
56
1.25M
    const char *p;
57
1.25M
    unsigned long l;
58
1.25M
    BIGNUM *bl = NULL;
59
60
1.25M
    if (num == 0) {
61
0
        return 0;
62
1.25M
    } else if (num == -1) {
63
1.25M
        size_t num_s = strlen(buf);
64
65
1.25M
        if (num_s >= INT_MAX) {
66
0
            ERR_raise(ERR_LIB_ASN1, ASN1_R_LENGTH_TOO_LONG);
67
0
            goto err;
68
0
        }
69
1.25M
        num = (int)num_s;
70
1.25M
    }
71
72
1.25M
    p = buf;
73
1.25M
    c = *(p++);
74
1.25M
    num--;
75
1.25M
    if ((c >= '0') && (c <= '2')) {
76
1.25M
        first = c - '0';
77
1.25M
    } else {
78
22
        ERR_raise(ERR_LIB_ASN1, ASN1_R_FIRST_NUM_TOO_LARGE);
79
22
        goto err;
80
22
    }
81
82
1.25M
    if (num <= 0) {
83
45
        ERR_raise(ERR_LIB_ASN1, ASN1_R_MISSING_SECOND_NUMBER);
84
45
        goto err;
85
45
    }
86
1.25M
    c = *(p++);
87
1.25M
    num--;
88
10.8M
    for (;;) {
89
10.8M
        if (num <= 0)
90
1.24M
            break;
91
9.61M
        if ((c != '.') && (c != ' ')) {
92
77
            ERR_raise(ERR_LIB_ASN1, ASN1_R_INVALID_SEPARATOR);
93
77
            goto err;
94
77
        }
95
9.61M
        l = 0;
96
9.61M
        use_bn = 0;
97
26.5M
        for (;;) {
98
26.5M
            if (num <= 0)
99
1.23M
                break;
100
25.2M
            num--;
101
25.2M
            c = *(p++);
102
25.2M
            if ((c == ' ') || (c == '.'))
103
8.38M
                break;
104
16.8M
            if (!ossl_isdigit(c)) {
105
182
                ERR_raise(ERR_LIB_ASN1, ASN1_R_INVALID_DIGIT);
106
182
                goto err;
107
182
            }
108
16.8M
            if (!use_bn && l >= ((ULONG_MAX - 80) / 10L)) {
109
3.70k
                use_bn = 1;
110
3.70k
                if (bl == NULL)
111
2.66k
                    bl = BN_new();
112
3.70k
                if (bl == NULL || !BN_set_word(bl, l))
113
0
                    goto err;
114
3.70k
            }
115
16.8M
            if (use_bn) {
116
265k
                if (!BN_mul_word(bl, 10L)
117
265k
                    || !BN_add_word(bl, c - '0'))
118
0
                    goto err;
119
265k
            } else
120
16.6M
                l = l * 10L + (long)(c - '0');
121
16.8M
        }
122
9.61M
        if (len == 0) {
123
1.24M
            if ((first < 2) && (l >= 40)) {
124
200
                ERR_raise(ERR_LIB_ASN1, ASN1_R_SECOND_NUMBER_TOO_LARGE);
125
200
                goto err;
126
200
            }
127
1.24M
            if (use_bn) {
128
544
                if (!BN_add_word(bl, first * 40))
129
0
                    goto err;
130
544
            } else
131
1.24M
                l += (long)first * 40;
132
1.24M
        }
133
9.61M
        i = 0;
134
9.61M
        if (use_bn) {
135
3.58k
            int blsize;
136
3.58k
            blsize = BN_num_bits(bl);
137
3.58k
            blsize = (blsize + 6) / 7;
138
3.58k
            if (blsize > tmpsize) {
139
1.22k
                if (tmp != ftmp)
140
298
                    OPENSSL_free(tmp);
141
1.22k
                tmpsize = blsize + 32;
142
1.22k
                tmp = OPENSSL_malloc(tmpsize);
143
1.22k
                if (tmp == NULL)
144
0
                    goto err;
145
1.22k
            }
146
162k
            while (blsize--) {
147
158k
                BN_ULONG t = BN_div_word(bl, 0x80L);
148
158k
                if (t == (BN_ULONG)-1)
149
0
                    goto err;
150
158k
                tmp[i++] = (unsigned char)t;
151
158k
            }
152
9.61M
        } else {
153
154
10.8M
            for (;;) {
155
10.8M
                tmp[i++] = (unsigned char)l & 0x7f;
156
10.8M
                l >>= 7L;
157
10.8M
                if (l == 0L)
158
9.61M
                    break;
159
10.8M
            }
160
9.61M
        }
161
9.61M
        if (out != NULL) {
162
4.80M
            if (len + i > olen) {
163
0
                ERR_raise(ERR_LIB_ASN1, ASN1_R_BUFFER_TOO_SMALL);
164
0
                goto err;
165
0
            }
166
5.47M
            while (--i > 0)
167
669k
                out[len++] = tmp[i] | 0x80;
168
4.80M
            out[len++] = tmp[0];
169
4.80M
        } else
170
4.80M
            len += i;
171
9.61M
    }
172
1.24M
    if (tmp != ftmp)
173
886
        OPENSSL_free(tmp);
174
1.24M
    BN_free(bl);
175
1.24M
    return len;
176
526
err:
177
526
    if (tmp != ftmp)
178
38
        OPENSSL_free(tmp);
179
526
    BN_free(bl);
180
526
    return 0;
181
1.25M
}
182
183
int i2t_ASN1_OBJECT(char *buf, int buf_len, const ASN1_OBJECT *a)
184
6.78M
{
185
6.78M
    return OBJ_obj2txt(buf, buf_len, a, 0);
186
6.78M
}
187
188
int i2a_ASN1_OBJECT(BIO *bp, const ASN1_OBJECT *a)
189
3.97M
{
190
3.97M
    char buf[80], *p = buf;
191
3.97M
    int i;
192
193
3.97M
    if ((a == NULL) || (a->data == NULL))
194
0
        return BIO_write(bp, "NULL", 4);
195
3.97M
    i = i2t_ASN1_OBJECT(buf, sizeof(buf), a);
196
3.97M
    if (i > (int)(sizeof(buf) - 1)) {
197
38.7k
        if (i > INT_MAX - 1) { /* catch an integer overflow */
198
0
            ERR_raise(ERR_LIB_ASN1, ASN1_R_LENGTH_TOO_LONG);
199
0
            return -1;
200
0
        }
201
38.7k
        if ((p = OPENSSL_malloc(i + 1)) == NULL)
202
0
            return -1;
203
38.7k
        i2t_ASN1_OBJECT(p, i + 1, a);
204
38.7k
    }
205
3.97M
    if (i <= 0) {
206
6.41k
        i = BIO_write(bp, "<INVALID>", 9);
207
6.41k
        if (i > 0)
208
6.41k
            i += BIO_dump(bp, (const char *)a->data, a->length);
209
6.41k
        return i;
210
6.41k
    }
211
3.96M
    BIO_write(bp, p, i);
212
3.96M
    if (p != buf)
213
38.7k
        OPENSSL_free(p);
214
3.96M
    return i;
215
3.97M
}
216
217
ASN1_OBJECT *d2i_ASN1_OBJECT(ASN1_OBJECT **a, const unsigned char **pp,
218
    long length)
219
2.39M
{
220
2.39M
    const unsigned char *p;
221
2.39M
    long len;
222
2.39M
    int tag, xclass;
223
2.39M
    int inf, i;
224
2.39M
    ASN1_OBJECT *ret = NULL;
225
2.39M
    p = *pp;
226
2.39M
    inf = ASN1_get_object(&p, &len, &tag, &xclass, length);
227
2.39M
    if (inf & 0x80) {
228
0
        i = ASN1_R_BAD_OBJECT_HEADER;
229
0
        goto err;
230
0
    }
231
232
2.39M
    if (tag != V_ASN1_OBJECT) {
233
0
        i = ASN1_R_EXPECTING_AN_OBJECT;
234
0
        goto err;
235
0
    }
236
2.39M
    ret = ossl_c2i_ASN1_OBJECT(a, &p, len);
237
2.39M
    if (ret)
238
2.21M
        *pp = p;
239
2.39M
    return ret;
240
0
err:
241
0
    ERR_raise(ERR_LIB_ASN1, i);
242
0
    return NULL;
243
2.39M
}
244
245
ASN1_OBJECT *ossl_c2i_ASN1_OBJECT(ASN1_OBJECT **a, const unsigned char **pp,
246
    long len)
247
27.2M
{
248
27.2M
    ASN1_OBJECT *ret = NULL, tobj;
249
27.2M
    const unsigned char *p;
250
27.2M
    unsigned char *data;
251
27.2M
    int i, length;
252
253
    /*
254
     * Sanity check OID encoding. Need at least one content octet. MSB must
255
     * be clear in the last octet. can't have leading 0x80 in subidentifiers,
256
     * see: X.690 8.19.2
257
     */
258
27.2M
    if (len <= 0 || len > INT_MAX || pp == NULL || (p = *pp) == NULL || p[len - 1] & 0x80) {
259
190k
        ERR_raise(ERR_LIB_ASN1, ASN1_R_INVALID_OBJECT_ENCODING);
260
190k
        return NULL;
261
190k
    }
262
    /* Now 0 < len <= INT_MAX, so the cast is safe. */
263
27.0M
    length = (int)len;
264
    /*
265
     * Try to lookup OID in table: these are all valid encodings so if we get
266
     * a match we know the OID is valid.
267
     */
268
27.0M
    tobj.nid = NID_undef;
269
27.0M
    tobj.data = p;
270
27.0M
    tobj.length = length;
271
27.0M
    tobj.flags = 0;
272
27.0M
    i = OBJ_obj2nid(&tobj);
273
27.0M
    if (i != NID_undef) {
274
        /*
275
         * Return shared registered OID object: this improves efficiency
276
         * because we don't have to return a dynamically allocated OID
277
         * and NID lookups can use the cached value.
278
         */
279
12.5M
        ret = OBJ_nid2obj(i);
280
12.5M
        if (a) {
281
11.8M
            ASN1_OBJECT_free(*a);
282
11.8M
            *a = ret;
283
11.8M
        }
284
12.5M
        *pp += len;
285
12.5M
        return ret;
286
12.5M
    }
287
180M
    for (i = 0; i < length; i++, p++) {
288
166M
        if (*p == 0x80 && (!i || !(p[-1] & 0x80))) {
289
31.1k
            ERR_raise(ERR_LIB_ASN1, ASN1_R_INVALID_OBJECT_ENCODING);
290
31.1k
            return NULL;
291
31.1k
        }
292
166M
    }
293
294
14.5M
    if ((a == NULL) || ((*a) == NULL) || !((*a)->flags & ASN1_OBJECT_FLAG_DYNAMIC)) {
295
14.4M
        if ((ret = ASN1_OBJECT_new()) == NULL)
296
0
            return NULL;
297
14.4M
    } else {
298
111k
        ret = (*a);
299
111k
    }
300
301
14.5M
    p = *pp;
302
    /* detach data from object */
303
14.5M
    data = (unsigned char *)ret->data;
304
14.5M
    ret->data = NULL;
305
    /* once detached we can change it */
306
14.5M
    if ((data == NULL) || (ret->length < length)) {
307
14.4M
        ret->length = 0;
308
14.4M
        OPENSSL_free(data);
309
14.4M
        data = OPENSSL_malloc(length);
310
14.4M
        if (data == NULL)
311
0
            goto err;
312
14.4M
        ret->flags |= ASN1_OBJECT_FLAG_DYNAMIC_DATA;
313
14.4M
    }
314
14.5M
    memcpy(data, p, length);
315
    /* If there are dynamic strings, free them here, and clear the flag */
316
14.5M
    if ((ret->flags & ASN1_OBJECT_FLAG_DYNAMIC_STRINGS) != 0) {
317
0
        OPENSSL_free((char *)ret->sn);
318
0
        OPENSSL_free((char *)ret->ln);
319
0
        ret->flags &= ~ASN1_OBJECT_FLAG_DYNAMIC_STRINGS;
320
0
    }
321
    /* reattach data to object, after which it remains const */
322
14.5M
    ret->data = data;
323
14.5M
    ret->length = length;
324
14.5M
    ret->sn = NULL;
325
14.5M
    ret->ln = NULL;
326
    /* ret->flags=ASN1_OBJECT_FLAG_DYNAMIC; we know it is dynamic */
327
14.5M
    p += length;
328
329
14.5M
    if (a != NULL)
330
14.4M
        (*a) = ret;
331
14.5M
    *pp = p;
332
14.5M
    return ret;
333
0
err:
334
0
    ERR_raise(ERR_LIB_ASN1, i);
335
0
    if ((a == NULL) || (*a != ret))
336
0
        ASN1_OBJECT_free(ret);
337
0
    return NULL;
338
14.5M
}
339
340
ASN1_OBJECT *ASN1_OBJECT_new(void)
341
17.5M
{
342
17.5M
    ASN1_OBJECT *ret;
343
344
17.5M
    ret = OPENSSL_zalloc(sizeof(*ret));
345
17.5M
    if (ret == NULL)
346
0
        return NULL;
347
17.5M
    ret->flags = ASN1_OBJECT_FLAG_DYNAMIC;
348
17.5M
    return ret;
349
17.5M
}
350
351
void ASN1_OBJECT_free(ASN1_OBJECT *a)
352
66.1M
{
353
66.1M
    if (a == NULL)
354
4.84M
        return;
355
61.2M
    if (a->flags & ASN1_OBJECT_FLAG_DYNAMIC_STRINGS) {
356
12.7M
#ifndef CONST_STRICT
357
        /*
358
         * Disable purely for compile-time strict const checking.  Doing this
359
         * on a "real" compile will cause memory leaks
360
         */
361
12.7M
        OPENSSL_free((void *)a->sn);
362
12.7M
        OPENSSL_free((void *)a->ln);
363
12.7M
#endif
364
12.7M
        a->sn = a->ln = NULL;
365
12.7M
    }
366
61.2M
    if (a->flags & ASN1_OBJECT_FLAG_DYNAMIC_DATA) {
367
27.1M
        OPENSSL_free((void *)a->data);
368
27.1M
        a->data = NULL;
369
27.1M
        a->length = 0;
370
27.1M
    }
371
61.2M
    if (a->flags & ASN1_OBJECT_FLAG_DYNAMIC)
372
27.1M
        OPENSSL_free(a);
373
61.2M
}
374
375
ASN1_OBJECT *ASN1_OBJECT_create(int nid, unsigned char *data, int len,
376
    const char *sn, const char *ln)
377
0
{
378
0
    ASN1_OBJECT o;
379
380
0
    o.sn = sn;
381
0
    o.ln = ln;
382
0
    o.data = data;
383
0
    o.nid = nid;
384
0
    o.length = len;
385
0
    o.flags = ASN1_OBJECT_FLAG_DYNAMIC | ASN1_OBJECT_FLAG_DYNAMIC_STRINGS | ASN1_OBJECT_FLAG_DYNAMIC_DATA;
386
0
    return OBJ_dup(&o);
387
0
}