Coverage Report

Created: 2026-03-09 06:55

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl/crypto/objects/obj_lib.c
Line
Count
Source
1
/*
2
 * Copyright 1995-2020 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 "internal/cryptlib.h"
12
#include <openssl/objects.h>
13
#include <openssl/buffer.h>
14
#include "crypto/asn1.h"
15
#include "crypto/asn1/asn1_local.h"
16
17
ASN1_OBJECT *OBJ_dup(const ASN1_OBJECT *o)
18
0
{
19
0
    ASN1_OBJECT *r;
20
21
0
    if (o == NULL)
22
0
        return NULL;
23
    /* If object isn't dynamic it's an internal OID which is never freed */
24
0
    if (!(o->flags & ASN1_OBJECT_FLAG_DYNAMIC))
25
0
        return (ASN1_OBJECT *)o;
26
27
0
    r = ossl_asn1_object_new();
28
0
    if (r == NULL) {
29
0
        ERR_raise(ERR_LIB_OBJ, ERR_R_ASN1_LIB);
30
0
        return NULL;
31
0
    }
32
33
    /* Set dynamic flags so everything gets freed up on error */
34
35
0
    r->flags = o->flags | (ASN1_OBJECT_FLAG_DYNAMIC | ASN1_OBJECT_FLAG_DYNAMIC_STRINGS | ASN1_OBJECT_FLAG_DYNAMIC_DATA);
36
37
0
    if (o->length > 0 && (r->data = OPENSSL_memdup(o->data, o->length)) == NULL)
38
0
        goto err;
39
40
0
    r->length = o->length;
41
0
    r->nid = o->nid;
42
43
0
    if (o->ln != NULL && (r->ln = OPENSSL_strdup(o->ln)) == NULL)
44
0
        goto err;
45
46
0
    if (o->sn != NULL && (r->sn = OPENSSL_strdup(o->sn)) == NULL)
47
0
        goto err;
48
49
0
    return r;
50
0
err:
51
0
    ASN1_OBJECT_free(r);
52
0
    return NULL;
53
0
}
54
55
int OBJ_cmp(const ASN1_OBJECT *a, const ASN1_OBJECT *b)
56
0
{
57
0
    int ret;
58
59
0
    ret = (a->length - b->length);
60
0
    if (ret)
61
0
        return ret;
62
0
    return memcmp(a->data, b->data, a->length);
63
0
}