Coverage Report

Created: 2025-07-11 06:57

/src/openssl/crypto/asn1/a_object.c
Line
Count
Source (jump to first uncovered line)
1
/*
2
 * Copyright 1995-2024 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
0
{
53
0
    int i, first, len = 0, c, use_bn;
54
0
    char ftmp[24], *tmp = ftmp;
55
0
    int tmpsize = sizeof(ftmp);
56
0
    const char *p;
57
0
    unsigned long l;
58
0
    BIGNUM *bl = NULL;
59
60
0
    if (num == 0) {
61
0
        return 0;
62
0
    } else if (num == -1) {
63
0
        size_t num_s = strlen(buf);
64
65
0
        if (num_s >= INT_MAX) {
66
0
            ERR_raise(ERR_LIB_ASN1, ASN1_R_LENGTH_TOO_LONG);
67
0
            goto err;
68
0
        }
69
0
        num = (int)num_s;
70
0
    }
71
72
0
    p = buf;
73
0
    c = *(p++);
74
0
    num--;
75
0
    if ((c >= '0') && (c <= '2')) {
76
0
        first = c - '0';
77
0
    } else {
78
0
        ERR_raise(ERR_LIB_ASN1, ASN1_R_FIRST_NUM_TOO_LARGE);
79
0
        goto err;
80
0
    }
81
82
0
    if (num <= 0) {
83
0
        ERR_raise(ERR_LIB_ASN1, ASN1_R_MISSING_SECOND_NUMBER);
84
0
        goto err;
85
0
    }
86
0
    c = *(p++);
87
0
    num--;
88
0
    for (;;) {
89
0
        if (num <= 0)
90
0
            break;
91
0
        if ((c != '.') && (c != ' ')) {
92
0
            ERR_raise(ERR_LIB_ASN1, ASN1_R_INVALID_SEPARATOR);
93
0
            goto err;
94
0
        }
95
0
        l = 0;
96
0
        use_bn = 0;
97
0
        for (;;) {
98
0
            if (num <= 0)
99
0
                break;
100
0
            num--;
101
0
            c = *(p++);
102
0
            if ((c == ' ') || (c == '.'))
103
0
                break;
104
0
            if (!ossl_isdigit(c)) {
105
0
                ERR_raise(ERR_LIB_ASN1, ASN1_R_INVALID_DIGIT);
106
0
                goto err;
107
0
            }
108
0
            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
0
            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
0
                l = l * 10L + (long)(c - '0');
121
0
        }
122
0
        if (len == 0) {
123
0
            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
0
            if (use_bn) {
128
0
                if (!BN_add_word(bl, first * 40))
129
0
                    goto err;
130
0
            } else
131
0
                l += (long)first *40;
132
0
        }
133
0
        i = 0;
134
0
        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
0
        } else {
153
154
0
            for (;;) {
155
0
                tmp[i++] = (unsigned char)l & 0x7f;
156
0
                l >>= 7L;
157
0
                if (l == 0L)
158
0
                    break;
159
0
            }
160
161
0
        }
162
0
        if (out != NULL) {
163
0
            if (len + i > olen) {
164
0
                ERR_raise(ERR_LIB_ASN1, ASN1_R_BUFFER_TOO_SMALL);
165
0
                goto err;
166
0
            }
167
0
            while (--i > 0)
168
0
                out[len++] = tmp[i] | 0x80;
169
0
            out[len++] = tmp[0];
170
0
        } else
171
0
            len += i;
172
0
    }
173
0
    if (tmp != ftmp)
174
0
        OPENSSL_free(tmp);
175
0
    BN_free(bl);
176
0
    return len;
177
0
 err:
178
0
    if (tmp != ftmp)
179
0
        OPENSSL_free(tmp);
180
0
    BN_free(bl);
181
0
    return 0;
182
0
}
183
184
int i2t_ASN1_OBJECT(char *buf, int buf_len, const ASN1_OBJECT *a)
185
0
{
186
0
    return OBJ_obj2txt(buf, buf_len, a, 0);
187
0
}
188
189
int i2a_ASN1_OBJECT(BIO *bp, const ASN1_OBJECT *a)
190
0
{
191
0
    char buf[80], *p = buf;
192
0
    int i;
193
194
0
    if ((a == NULL) || (a->data == NULL))
195
0
        return BIO_write(bp, "NULL", 4);
196
0
    i = i2t_ASN1_OBJECT(buf, sizeof(buf), a);
197
0
    if (i > (int)(sizeof(buf) - 1)) {
198
0
        if (i > INT_MAX - 1) {  /* catch an integer overflow */
199
0
            ERR_raise(ERR_LIB_ASN1, ASN1_R_LENGTH_TOO_LONG);
200
0
            return -1;
201
0
        }
202
0
        if ((p = OPENSSL_malloc(i + 1)) == NULL)
203
0
            return -1;
204
0
        i2t_ASN1_OBJECT(p, i + 1, a);
205
0
    }
206
0
    if (i <= 0) {
207
0
        i = BIO_write(bp, "<INVALID>", 9);
208
0
        if (i > 0)
209
0
            i += BIO_dump(bp, (const char *)a->data, a->length);
210
0
        return i;
211
0
    }
212
0
    BIO_write(bp, p, i);
213
0
    if (p != buf)
214
0
        OPENSSL_free(p);
215
0
    return i;
216
0
}
217
218
ASN1_OBJECT *d2i_ASN1_OBJECT(ASN1_OBJECT **a, const unsigned char **pp,
219
                             long length)
220
0
{
221
0
    const unsigned char *p;
222
0
    long len;
223
0
    int tag, xclass;
224
0
    int inf, i;
225
0
    ASN1_OBJECT *ret = NULL;
226
0
    p = *pp;
227
0
    inf = ASN1_get_object(&p, &len, &tag, &xclass, length);
228
0
    if (inf & 0x80) {
229
0
        i = ASN1_R_BAD_OBJECT_HEADER;
230
0
        goto err;
231
0
    }
232
233
0
    if (tag != V_ASN1_OBJECT) {
234
0
        i = ASN1_R_EXPECTING_AN_OBJECT;
235
0
        goto err;
236
0
    }
237
0
    ret = ossl_c2i_ASN1_OBJECT(a, &p, len);
238
0
    if (ret)
239
0
        *pp = p;
240
0
    return ret;
241
0
 err:
242
0
    ERR_raise(ERR_LIB_ASN1, i);
243
0
    return NULL;
244
0
}
245
246
ASN1_OBJECT *ossl_c2i_ASN1_OBJECT(ASN1_OBJECT **a, const unsigned char **pp,
247
                                  long len)
248
0
{
249
0
    ASN1_OBJECT *ret = NULL, tobj;
250
0
    const unsigned char *p;
251
0
    unsigned char *data;
252
0
    int i, length;
253
254
    /*
255
     * Sanity check OID encoding. Need at least one content octet. MSB must
256
     * be clear in the last octet. can't have leading 0x80 in subidentifiers,
257
     * see: X.690 8.19.2
258
     */
259
0
    if (len <= 0 || len > INT_MAX || pp == NULL || (p = *pp) == NULL ||
260
0
        p[len - 1] & 0x80) {
261
0
        ERR_raise(ERR_LIB_ASN1, ASN1_R_INVALID_OBJECT_ENCODING);
262
0
        return NULL;
263
0
    }
264
    /* Now 0 < len <= INT_MAX, so the cast is safe. */
265
0
    length = (int)len;
266
    /*
267
     * Try to lookup OID in table: these are all valid encodings so if we get
268
     * a match we know the OID is valid.
269
     */
270
0
    tobj.nid = NID_undef;
271
0
    tobj.data = p;
272
0
    tobj.length = length;
273
0
    tobj.flags = 0;
274
0
    i = OBJ_obj2nid(&tobj);
275
0
    if (i != NID_undef) {
276
        /*
277
         * Return shared registered OID object: this improves efficiency
278
         * because we don't have to return a dynamically allocated OID
279
         * and NID lookups can use the cached value.
280
         */
281
0
        ret = OBJ_nid2obj(i);
282
0
        if (a) {
283
0
            ASN1_OBJECT_free(*a);
284
0
            *a = ret;
285
0
        }
286
0
        *pp += len;
287
0
        return ret;
288
0
    }
289
0
    for (i = 0; i < length; i++, p++) {
290
0
        if (*p == 0x80 && (!i || !(p[-1] & 0x80))) {
291
0
            ERR_raise(ERR_LIB_ASN1, ASN1_R_INVALID_OBJECT_ENCODING);
292
0
            return NULL;
293
0
        }
294
0
    }
295
296
0
    if ((a == NULL) || ((*a) == NULL) ||
297
0
        !((*a)->flags & ASN1_OBJECT_FLAG_DYNAMIC)) {
298
0
        if ((ret = ASN1_OBJECT_new()) == NULL)
299
0
            return NULL;
300
0
    } else {
301
0
        ret = (*a);
302
0
    }
303
304
0
    p = *pp;
305
    /* detach data from object */
306
0
    data = (unsigned char *)ret->data;
307
0
    ret->data = NULL;
308
    /* once detached we can change it */
309
0
    if ((data == NULL) || (ret->length < length)) {
310
0
        ret->length = 0;
311
0
        OPENSSL_free(data);
312
0
        data = OPENSSL_malloc(length);
313
0
        if (data == NULL)
314
0
            goto err;
315
0
        ret->flags |= ASN1_OBJECT_FLAG_DYNAMIC_DATA;
316
0
    }
317
0
    memcpy(data, p, length);
318
    /* If there are dynamic strings, free them here, and clear the flag */
319
0
    if ((ret->flags & ASN1_OBJECT_FLAG_DYNAMIC_STRINGS) != 0) {
320
0
        OPENSSL_free((char *)ret->sn);
321
0
        OPENSSL_free((char *)ret->ln);
322
0
        ret->flags &= ~ASN1_OBJECT_FLAG_DYNAMIC_STRINGS;
323
0
    }
324
    /* reattach data to object, after which it remains const */
325
0
    ret->data = data;
326
0
    ret->length = length;
327
0
    ret->sn = NULL;
328
0
    ret->ln = NULL;
329
    /* ret->flags=ASN1_OBJECT_FLAG_DYNAMIC; we know it is dynamic */
330
0
    p += length;
331
332
0
    if (a != NULL)
333
0
        (*a) = ret;
334
0
    *pp = p;
335
0
    return ret;
336
0
 err:
337
0
    ERR_raise(ERR_LIB_ASN1, i);
338
0
    if ((a == NULL) || (*a != ret))
339
0
        ASN1_OBJECT_free(ret);
340
0
    return NULL;
341
0
}
342
343
ASN1_OBJECT *ASN1_OBJECT_new(void)
344
0
{
345
0
    ASN1_OBJECT *ret;
346
347
0
    ret = OPENSSL_zalloc(sizeof(*ret));
348
0
    if (ret == NULL)
349
0
        return NULL;
350
0
    ret->flags = ASN1_OBJECT_FLAG_DYNAMIC;
351
0
    return ret;
352
0
}
353
354
void ASN1_OBJECT_free(ASN1_OBJECT *a)
355
2.54k
{
356
2.54k
    if (a == NULL)
357
0
        return;
358
2.54k
    if (a->flags & ASN1_OBJECT_FLAG_DYNAMIC_STRINGS) {
359
0
#ifndef CONST_STRICT
360
        /*
361
         * Disable purely for compile-time strict const checking.  Doing this
362
         * on a "real" compile will cause memory leaks
363
         */
364
0
        OPENSSL_free((void*)a->sn);
365
0
        OPENSSL_free((void*)a->ln);
366
0
#endif
367
0
        a->sn = a->ln = NULL;
368
0
    }
369
2.54k
    if (a->flags & ASN1_OBJECT_FLAG_DYNAMIC_DATA) {
370
0
        OPENSSL_free((void*)a->data);
371
0
        a->data = NULL;
372
0
        a->length = 0;
373
0
    }
374
2.54k
    if (a->flags & ASN1_OBJECT_FLAG_DYNAMIC)
375
0
        OPENSSL_free(a);
376
2.54k
}
377
378
ASN1_OBJECT *ASN1_OBJECT_create(int nid, unsigned char *data, int len,
379
                                const char *sn, const char *ln)
380
0
{
381
0
    ASN1_OBJECT o;
382
383
0
    o.sn = sn;
384
0
    o.ln = ln;
385
0
    o.data = data;
386
0
    o.nid = nid;
387
0
    o.length = len;
388
0
    o.flags = ASN1_OBJECT_FLAG_DYNAMIC | ASN1_OBJECT_FLAG_DYNAMIC_STRINGS |
389
0
        ASN1_OBJECT_FLAG_DYNAMIC_DATA;
390
0
    return OBJ_dup(&o);
391
0
}