Coverage Report

Created: 2026-07-23 06:28

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
15.0M
    {                                                          \
21
15.0M
        return ASN1_STRING_type_new(V_##sname);                \
22
15.0M
    }                                                          \
ASN1_OCTET_STRING_new
Line
Count
Source
20
134k
    {                                                          \
21
134k
        return ASN1_STRING_type_new(V_##sname);                \
22
134k
    }                                                          \
ASN1_INTEGER_new
Line
Count
Source
20
9.87M
    {                                                          \
21
9.87M
        return ASN1_STRING_type_new(V_##sname);                \
22
9.87M
    }                                                          \
Unexecuted instantiation: ASN1_ENUMERATED_new
ASN1_BIT_STRING_new
Line
Count
Source
20
4.81M
    {                                                          \
21
4.81M
        return ASN1_STRING_type_new(V_##sname);                \
22
4.81M
    }                                                          \
ASN1_UTF8STRING_new
Line
Count
Source
20
121k
    {                                                          \
21
121k
        return ASN1_STRING_type_new(V_##sname);                \
22
121k
    }                                                          \
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
129k
    {                                                          \
21
129k
        return ASN1_STRING_type_new(V_##sname);                \
22
129k
    }                                                          \
Unexecuted instantiation: ASN1_VISIBLESTRING_new
Unexecuted instantiation: ASN1_UNIVERSALSTRING_new
Unexecuted instantiation: ASN1_BMPSTRING_new
23
    void sname##_free(sname *x)                                \
24
24.0M
    {                                                          \
25
24.0M
        ASN1_STRING_free(x);                                   \
26
24.0M
    }
ASN1_OCTET_STRING_free
Line
Count
Source
24
9.98M
    {                                                          \
25
9.98M
        ASN1_STRING_free(x);                                   \
26
9.98M
    }
ASN1_INTEGER_free
Line
Count
Source
24
6.50M
    {                                                          \
25
6.50M
        ASN1_STRING_free(x);                                   \
26
6.50M
    }
ASN1_ENUMERATED_free
Line
Count
Source
24
4.28M
    {                                                          \
25
4.28M
        ASN1_STRING_free(x);                                   \
26
4.28M
    }
ASN1_BIT_STRING_free
Line
Count
Source
24
3.23M
    {                                                          \
25
3.23M
        ASN1_STRING_free(x);                                   \
26
3.23M
    }
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
86.0k
    {                                                          \
25
86.0k
        ASN1_STRING_free(x);                                   \
26
86.0k
    }
Unexecuted instantiation: ASN1_VISIBLESTRING_free
Unexecuted instantiation: ASN1_UNIVERSALSTRING_free
Unexecuted instantiation: ASN1_BMPSTRING_free
27
28
74.5M
IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_OCTET_STRING)
29
106M
IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_INTEGER)
30
106M
IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_ENUMERATED)
31
81.7M
IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_BIT_STRING)
32
81.7M
IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_UTF8STRING)
33
4.44M
IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_PRINTABLESTRING)
34
247k
IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_T61STRING)
35
12.7M
IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_IA5STRING)
36
12.7M
IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_GENERALSTRING)
37
118k
IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_UTCTIME)
38
6.86M
IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_GENERALIZEDTIME)
39
6.86M
IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_VISIBLESTRING)
40
118k
IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_UNIVERSALSTRING)
41
118k
IMPLEMENT_ASN1_STRING_FUNCTIONS(ASN1_BMPSTRING)
42
118k
43
1.04M
IMPLEMENT_ASN1_TYPE(ASN1_NULL)
44
1.04M
IMPLEMENT_ASN1_FUNCTIONS(ASN1_NULL)
45
1.04M
46
534M
IMPLEMENT_ASN1_TYPE(ASN1_OBJECT)
47
534M
48
606M
IMPLEMENT_ASN1_TYPE(ASN1_ANY)
49
606M
50
606M
/* Just swallow an ASN1_SEQUENCE in an ASN1_STRING */
51
606M
IMPLEMENT_ASN1_TYPE(ASN1_SEQUENCE)
52
16.7M
53
16.7M
IMPLEMENT_ASN1_FUNCTIONS_fname(ASN1_TYPE, ASN1_ANY, ASN1_TYPE)
54
16.7M
55
16.7M
/* Multistring types */
56
16.7M
57
212M
IMPLEMENT_ASN1_MSTRING(ASN1_PRINTABLE, B_ASN1_PRINTABLE)
58
IMPLEMENT_ASN1_FUNCTIONS_name(ASN1_STRING, ASN1_PRINTABLE)
59
60
560k
IMPLEMENT_ASN1_MSTRING(DISPLAYTEXT, B_ASN1_DISPLAYTEXT)
61
IMPLEMENT_ASN1_FUNCTIONS_name(ASN1_STRING, DISPLAYTEXT)
62
63
698k
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.81M
IMPLEMENT_ASN1_TYPE_ex(ASN1_BOOLEAN, ASN1_BOOLEAN, -1)
68
288k
IMPLEMENT_ASN1_TYPE_ex(ASN1_TBOOLEAN, ASN1_BOOLEAN, 1)
69
21.2M
IMPLEMENT_ASN1_TYPE_ex(ASN1_FBOOLEAN, ASN1_BOOLEAN, 0)
70
71
/* Special, OCTET STRING with indefinite length constructed support */
72
73
843k
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
111k
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)