Coverage Report

Created: 2026-02-14 07:20

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
346k
{
53
346k
    int i, first, len = 0, c, use_bn;
54
346k
    char ftmp[24], *tmp = ftmp;
55
346k
    int tmpsize = sizeof(ftmp);
56
346k
    const char *p;
57
346k
    unsigned long l;
58
346k
    BIGNUM *bl = NULL;
59
60
346k
    if (num == 0) {
61
0
        return 0;
62
346k
    } else if (num == -1) {
63
346k
        size_t num_s = strlen(buf);
64
65
346k
        if (num_s >= INT_MAX) {
66
0
            ERR_raise(ERR_LIB_ASN1, ASN1_R_LENGTH_TOO_LONG);
67
0
            goto err;
68
0
        }
69
346k
        num = (int)num_s;
70
346k
    }
71
72
346k
    p = buf;
73
346k
    c = *(p++);
74
346k
    num--;
75
346k
    if ((c >= '0') && (c <= '2')) {
76
346k
        first = c - '0';
77
346k
    } else {
78
0
        ERR_raise(ERR_LIB_ASN1, ASN1_R_FIRST_NUM_TOO_LARGE);
79
0
        goto err;
80
0
    }
81
82
346k
    if (num <= 0) {
83
0
        ERR_raise(ERR_LIB_ASN1, ASN1_R_MISSING_SECOND_NUMBER);
84
0
        goto err;
85
0
    }
86
346k
    c = *(p++);
87
346k
    num--;
88
3.11M
    for (;;) {
89
3.11M
        if (num <= 0)
90
346k
            break;
91
2.77M
        if ((c != '.') && (c != ' ')) {
92
0
            ERR_raise(ERR_LIB_ASN1, ASN1_R_INVALID_SEPARATOR);
93
0
            goto err;
94
0
        }
95
2.77M
        l = 0;
96
2.77M
        use_bn = 0;
97
7.61M
        for (;;) {
98
7.61M
            if (num <= 0)
99
346k
                break;
100
7.27M
            num--;
101
7.27M
            c = *(p++);
102
7.27M
            if ((c == ' ') || (c == '.'))
103
2.42M
                break;
104
4.84M
            if (!ossl_isdigit(c)) {
105
0
                ERR_raise(ERR_LIB_ASN1, ASN1_R_INVALID_DIGIT);
106
0
                goto err;
107
0
            }
108
4.84M
            if (!use_bn && l >= ((ULONG_MAX - 80) / 10L)) {
109
0
                use_bn = 1;
110
0
                if (bl == NULL)
111
0
                    bl = BN_new();
112
0
                if (bl == NULL || !BN_set_word(bl, l))
113
0
                    goto err;
114
0
            }
115
4.84M
            if (use_bn) {
116
0
                if (!BN_mul_word(bl, 10L)
117
0
                    || !BN_add_word(bl, c - '0'))
118
0
                    goto err;
119
0
            } else
120
4.84M
                l = l * 10L + (long)(c - '0');
121
4.84M
        }
122
2.77M
        if (len == 0) {
123
346k
            if ((first < 2) && (l >= 40)) {
124
0
                ERR_raise(ERR_LIB_ASN1, ASN1_R_SECOND_NUMBER_TOO_LARGE);
125
0
                goto err;
126
0
            }
127
346k
            if (use_bn) {
128
0
                if (!BN_add_word(bl, first * 40))
129
0
                    goto err;
130
0
            } else
131
346k
                l += (long)first * 40;
132
346k
        }
133
2.77M
        i = 0;
134
2.77M
        if (use_bn) {
135
0
            int blsize;
136
0
            blsize = BN_num_bits(bl);
137
0
            blsize = (blsize + 6) / 7;
138
0
            if (blsize > tmpsize) {
139
0
                if (tmp != ftmp)
140
0
                    OPENSSL_free(tmp);
141
0
                tmpsize = blsize + 32;
142
0
                tmp = OPENSSL_malloc(tmpsize);
143
0
                if (tmp == NULL)
144
0
                    goto err;
145
0
            }
146
0
            while (blsize--) {
147
0
                BN_ULONG t = BN_div_word(bl, 0x80L);
148
0
                if (t == (BN_ULONG)-1)
149
0
                    goto err;
150
0
                tmp[i++] = (unsigned char)t;
151
0
            }
152
2.77M
        } else {
153
154
3.11M
            for (;;) {
155
3.11M
                tmp[i++] = (unsigned char)l & 0x7f;
156
3.11M
                l >>= 7L;
157
3.11M
                if (l == 0L)
158
2.77M
                    break;
159
3.11M
            }
160
2.77M
        }
161
2.77M
        if (out != NULL) {
162
1.38M
            if (len + i > olen) {
163
0
                ERR_raise(ERR_LIB_ASN1, ASN1_R_BUFFER_TOO_SMALL);
164
0
                goto err;
165
0
            }
166
1.55M
            while (--i > 0)
167
173k
                out[len++] = tmp[i] | 0x80;
168
1.38M
            out[len++] = tmp[0];
169
1.38M
        } else
170
1.38M
            len += i;
171
2.77M
    }
172
346k
    if (tmp != ftmp)
173
0
        OPENSSL_free(tmp);
174
346k
    BN_free(bl);
175
346k
    return len;
176
0
err:
177
0
    if (tmp != ftmp)
178
0
        OPENSSL_free(tmp);
179
0
    BN_free(bl);
180
0
    return 0;
181
346k
}
182
183
int i2t_ASN1_OBJECT(char *buf, int buf_len, const ASN1_OBJECT *a)
184
8.33M
{
185
8.33M
    return OBJ_obj2txt(buf, buf_len, a, 0);
186
8.33M
}
187
188
int i2a_ASN1_OBJECT(BIO *bp, const ASN1_OBJECT *a)
189
3.81M
{
190
3.81M
    char buf[80], *p = buf;
191
3.81M
    int i;
192
193
3.81M
    if ((a == NULL) || (a->data == NULL))
194
0
        return BIO_write(bp, "NULL", 4);
195
3.81M
    i = i2t_ASN1_OBJECT(buf, sizeof(buf), a);
196
3.81M
    if (i > (int)(sizeof(buf) - 1)) {
197
29.5k
        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
29.5k
        if ((p = OPENSSL_malloc(i + 1)) == NULL)
202
0
            return -1;
203
29.5k
        i2t_ASN1_OBJECT(p, i + 1, a);
204
29.5k
    }
205
3.81M
    if (i <= 0) {
206
5.14k
        i = BIO_write(bp, "<INVALID>", 9);
207
5.14k
        if (i > 0)
208
5.14k
            i += BIO_dump(bp, (const char *)a->data, a->length);
209
5.14k
        return i;
210
5.14k
    }
211
3.81M
    BIO_write(bp, p, i);
212
3.81M
    if (p != buf)
213
29.5k
        OPENSSL_free(p);
214
3.81M
    return i;
215
3.81M
}
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
48.3k
        i = ASN1_R_BAD_OBJECT_HEADER;
229
48.3k
        goto err;
230
48.3k
    }
231
232
2.35M
    if (tag != V_ASN1_OBJECT) {
233
0
        i = ASN1_R_EXPECTING_AN_OBJECT;
234
0
        goto err;
235
0
    }
236
2.35M
    ret = ossl_c2i_ASN1_OBJECT(a, &p, len);
237
2.35M
    if (ret)
238
2.24M
        *pp = p;
239
2.35M
    return ret;
240
48.3k
err:
241
48.3k
    ERR_raise(ERR_LIB_ASN1, i);
242
48.3k
    return NULL;
243
2.35M
}
244
245
ASN1_OBJECT *ossl_c2i_ASN1_OBJECT(ASN1_OBJECT **a, const unsigned char **pp,
246
    long len)
247
33.1M
{
248
33.1M
    ASN1_OBJECT *ret = NULL, tobj;
249
33.1M
    const unsigned char *p;
250
33.1M
    unsigned char *data;
251
33.1M
    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
33.1M
    if (len <= 0 || len > INT_MAX || pp == NULL || (p = *pp) == NULL || p[len - 1] & 0x80) {
259
126k
        ERR_raise(ERR_LIB_ASN1, ASN1_R_INVALID_OBJECT_ENCODING);
260
126k
        return NULL;
261
126k
    }
262
    /* Now 0 < len <= INT_MAX, so the cast is safe. */
263
33.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
33.0M
    tobj.nid = NID_undef;
269
33.0M
    tobj.data = p;
270
33.0M
    tobj.length = length;
271
33.0M
    tobj.flags = 0;
272
33.0M
    i = OBJ_obj2nid(&tobj);
273
33.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
14.6M
        ret = OBJ_nid2obj(i);
280
14.6M
        if (a) {
281
14.3M
            ASN1_OBJECT_free(*a);
282
14.3M
            *a = ret;
283
14.3M
        }
284
14.6M
        *pp += len;
285
14.6M
        return ret;
286
14.6M
    }
287
220M
    for (i = 0; i < length; i++, p++) {
288
202M
        if (*p == 0x80 && (!i || !(p[-1] & 0x80))) {
289
41.3k
            ERR_raise(ERR_LIB_ASN1, ASN1_R_INVALID_OBJECT_ENCODING);
290
41.3k
            return NULL;
291
41.3k
        }
292
202M
    }
293
294
18.3M
    if ((a == NULL) || ((*a) == NULL) || !((*a)->flags & ASN1_OBJECT_FLAG_DYNAMIC)) {
295
18.1M
        if ((ret = ASN1_OBJECT_new()) == NULL)
296
0
            return NULL;
297
18.1M
    } else {
298
151k
        ret = (*a);
299
151k
    }
300
301
18.3M
    p = *pp;
302
    /* detach data from object */
303
18.3M
    data = (unsigned char *)ret->data;
304
18.3M
    ret->data = NULL;
305
    /* once detached we can change it */
306
18.3M
    if ((data == NULL) || (ret->length < length)) {
307
18.1M
        ret->length = 0;
308
18.1M
        OPENSSL_free(data);
309
18.1M
        data = OPENSSL_malloc(length);
310
18.1M
        if (data == NULL)
311
0
            goto err;
312
18.1M
        ret->flags |= ASN1_OBJECT_FLAG_DYNAMIC_DATA;
313
18.1M
    }
314
18.3M
    memcpy(data, p, length);
315
    /* If there are dynamic strings, free them here, and clear the flag */
316
18.3M
    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
18.3M
    ret->data = data;
323
18.3M
    ret->length = length;
324
18.3M
    ret->sn = NULL;
325
18.3M
    ret->ln = NULL;
326
    /* ret->flags=ASN1_OBJECT_FLAG_DYNAMIC; we know it is dynamic */
327
18.3M
    p += length;
328
329
18.3M
    if (a != NULL)
330
18.3M
        (*a) = ret;
331
18.3M
    *pp = p;
332
18.3M
    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
18.3M
}
339
340
ASN1_OBJECT *ASN1_OBJECT_new(void)
341
34.3M
{
342
34.3M
    ASN1_OBJECT *ret;
343
344
34.3M
    ret = OPENSSL_zalloc(sizeof(*ret));
345
34.3M
    if (ret == NULL)
346
0
        return NULL;
347
34.3M
    ret->flags = ASN1_OBJECT_FLAG_DYNAMIC;
348
34.3M
    return ret;
349
34.3M
}
350
351
void ASN1_OBJECT_free(ASN1_OBJECT *a)
352
77.4M
{
353
77.4M
    if (a == NULL)
354
6.71M
        return;
355
70.7M
    if (a->flags & ASN1_OBJECT_FLAG_DYNAMIC_STRINGS) {
356
16.2M
#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
16.2M
        OPENSSL_free((void *)a->sn);
362
16.2M
        OPENSSL_free((void *)a->ln);
363
16.2M
#endif
364
16.2M
        a->sn = a->ln = NULL;
365
16.2M
    }
366
70.7M
    if (a->flags & ASN1_OBJECT_FLAG_DYNAMIC_DATA) {
367
34.3M
        OPENSSL_free((void *)a->data);
368
34.3M
        a->data = NULL;
369
34.3M
        a->length = 0;
370
34.3M
    }
371
70.7M
    if (a->flags & ASN1_OBJECT_FLAG_DYNAMIC)
372
34.3M
        OPENSSL_free(a);
373
70.7M
}
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
}