Coverage Report

Created: 2025-12-31 06:58

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl33/crypto/asn1/tasn_typ.c
Line
Count
Source
1
/*
2
 * Copyright 2000-2016 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 <openssl/asn1.h>
12
#include <openssl/asn1t.h>
13
14
/* Declarations for string types */
15
16
#define IMPLEMENT_ASN1_STRING_FUNCTIONS(sname)                 \
17
    IMPLEMENT_ASN1_TYPE(sname)                                 \
18
    IMPLEMENT_ASN1_ENCODE_FUNCTIONS_fname(sname, sname, sname) \
19
    sname *sname##_new(void)                                   \
20
14.2M
    {                                                          \
21
14.2M
        return ASN1_STRING_type_new(V_##sname);                \
22
14.2M
    }                                                          \
ASN1_OCTET_STRING_new
Line
Count
Source
20
130k
    {                                                          \
21
130k
        return ASN1_STRING_type_new(V_##sname);                \
22
130k
    }                                                          \
ASN1_INTEGER_new
Line
Count
Source
20
8.90M
    {                                                          \
21
8.90M
        return ASN1_STRING_type_new(V_##sname);                \
22
8.90M
    }                                                          \
Unexecuted instantiation: ASN1_ENUMERATED_new
ASN1_BIT_STRING_new
Line
Count
Source
20
4.96M
    {                                                          \
21
4.96M
        return ASN1_STRING_type_new(V_##sname);                \
22
4.96M
    }                                                          \
ASN1_UTF8STRING_new
Line
Count
Source
20
120k
    {                                                          \
21
120k
        return ASN1_STRING_type_new(V_##sname);                \
22
120k
    }                                                          \
Unexecuted instantiation: ASN1_PRINTABLESTRING_new
Unexecuted instantiation: ASN1_T61STRING_new
Unexecuted instantiation: ASN1_IA5STRING_new
Unexecuted instantiation: ASN1_GENERALSTRING_new
Unexecuted instantiation: ASN1_UTCTIME_new
ASN1_GENERALIZEDTIME_new
Line
Count
Source
20
135k
    {                                                          \
21
135k
        return ASN1_STRING_type_new(V_##sname);                \
22
135k
    }                                                          \
Unexecuted instantiation: ASN1_VISIBLESTRING_new
Unexecuted instantiation: ASN1_UNIVERSALSTRING_new
Unexecuted instantiation: ASN1_BMPSTRING_new
23
    void sname##_free(sname *x)                                \
24
25.9M
    {                                                          \
25
25.9M
        ASN1_STRING_free(x);                                   \
26
25.9M
    }
ASN1_OCTET_STRING_free
Line
Count
Source
24
10.3M
    {                                                          \
25
10.3M
        ASN1_STRING_free(x);                                   \
26
10.3M
    }
ASN1_INTEGER_free
Line
Count
Source
24
7.36M
    {                                                          \
25
7.36M
        ASN1_STRING_free(x);                                   \
26
7.36M
    }
ASN1_ENUMERATED_free
Line
Count
Source
24
5.13M
    {                                                          \
25
5.13M
        ASN1_STRING_free(x);                                   \
26
5.13M
    }
ASN1_BIT_STRING_free
Line
Count
Source
24
3.02M
    {                                                          \
25
3.02M
        ASN1_STRING_free(x);                                   \
26
3.02M
    }
Unexecuted instantiation: ASN1_UTF8STRING_free
Unexecuted instantiation: ASN1_PRINTABLESTRING_free
Unexecuted instantiation: ASN1_T61STRING_free
Unexecuted instantiation: ASN1_IA5STRING_free
Unexecuted instantiation: ASN1_GENERALSTRING_free
Unexecuted instantiation: ASN1_UTCTIME_free
ASN1_GENERALIZEDTIME_free
Line
Count
Source
24
92.5k
    {                                                          \
25
92.5k
        ASN1_STRING_free(x);                                   \
26
92.5k
    }
Unexecuted instantiation: ASN1_VISIBLESTRING_free
Unexecuted instantiation: ASN1_UNIVERSALSTRING_free
Unexecuted instantiation: ASN1_BMPSTRING_free
27
28
74.0M
IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_OCTET_STRING)
29
120M
IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_INTEGER)
30
120M
IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_ENUMERATED)
31
76.7M
IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_BIT_STRING)
32
76.7M
IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_UTF8STRING)
33
3.12M
IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_PRINTABLESTRING)
34
234k
IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_T61STRING)
35
16.0M
IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_IA5STRING)
36
16.0M
IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_GENERALSTRING)
37
142k
IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_UTCTIME)
38
6.46M
IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_GENERALIZEDTIME)
39
6.46M
IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_VISIBLESTRING)
40
142k
IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_UNIVERSALSTRING)
41
142k
IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_BMPSTRING)
42
142k
43
1.11M
IMPLEMENT_ASN1_TYPE(ASN1_NULL)
44
1.11M
IMPLEMENT_ASN1_FUNCTIONS(ASN1_NULL)
45
1.11M
46
500M
IMPLEMENT_ASN1_TYPE(ASN1_OBJECT)
47
500M
48
622M
IMPLEMENT_ASN1_TYPE(ASN1_ANY)
49
622M
50
622M
/* Just swallow an ASN1_SEQUENCE in an ASN1_STRING */
51
622M
IMPLEMENT_ASN1_TYPE(ASN1_SEQUENCE)
52
16.1M
53
16.1M
IMPLEMENT_ASN1_FUNCTIONS_fname(ASN1_TYPE, ASN1_ANY, ASN1_TYPE)
54
16.1M
55
16.1M
/* Multistring types */
56
16.1M
57
195M
IMPLEMENT_ASN1_MSTRING(ASN1_PRINTABLE, B_ASN1_PRINTABLE)
58
IMPLEMENT_ASN1_FUNCTIONS_name(ASN1_STRING, ASN1_PRINTABLE)
59
60
630k
IMPLEMENT_ASN1_MSTRING(DISPLAYTEXT, B_ASN1_DISPLAYTEXT)
61
IMPLEMENT_ASN1_FUNCTIONS_name(ASN1_STRING, DISPLAYTEXT)
62
63
658k
IMPLEMENT_ASN1_MSTRING(DIRECTORYSTRING, B_ASN1_DIRECTORYSTRING)
64
IMPLEMENT_ASN1_FUNCTIONS_name(ASN1_STRING, DIRECTORYSTRING)
65
66
/* Three separate BOOLEAN type: normal, DEFAULT TRUE and DEFAULT FALSE */
67
5.62M
IMPLEMENT_ASN1_TYPE_ex(ASN1_BOOLEAN, ASN1_BOOLEAN, -1)
68
266k
IMPLEMENT_ASN1_TYPE_ex(ASN1_TBOOLEAN, ASN1_BOOLEAN, 1)
69
24.6M
IMPLEMENT_ASN1_TYPE_ex(ASN1_FBOOLEAN, ASN1_BOOLEAN, 0)
70
71
/* Special, OCTET STRING with indefinite length constructed support */
72
73
958k
IMPLEMENT_ASN1_TYPE_ex(ASN1_OCTET_STRING_NDEF, ASN1_OCTET_STRING, ASN1_TFLG_NDEF)
74
75
ASN1_ITEM_TEMPLATE(ASN1_SEQUENCE_ANY) = ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SEQUENCE_OF, 0, ASN1_SEQUENCE_ANY, ASN1_ANY)
76
133k
ASN1_ITEM_TEMPLATE_END(ASN1_SEQUENCE_ANY)
77
78
ASN1_ITEM_TEMPLATE(ASN1_SET_ANY) = ASN1_EX_TEMPLATE_TYPE(ASN1_TFLG_SET_OF, 0, ASN1_SET_ANY, ASN1_ANY)
79
ASN1_ITEM_TEMPLATE_END(ASN1_SET_ANY)
80
81
IMPLEMENT_ASN1_ENCODE_FUNCTIONS_fname(ASN1_SEQUENCE_ANY, ASN1_SEQUENCE_ANY, ASN1_SEQUENCE_ANY)
82
IMPLEMENT_ASN1_ENCODE_FUNCTIONS_fname(ASN1_SEQUENCE_ANY, ASN1_SET_ANY, ASN1_SET_ANY)