Coverage Report

Created: 2026-02-14 07:20

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl33/crypto/x509/v3_prn.c
Line
Count
Source
1
/*
2
 * Copyright 1999-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
/* X509 v3 extension utilities */
11
12
#include <stdio.h>
13
#include "internal/cryptlib.h"
14
#include <openssl/conf.h>
15
#include <openssl/x509v3.h>
16
17
/* Extension printing routines */
18
19
static int unknown_ext_print(BIO *out, const unsigned char *ext, int extlen,
20
    unsigned long flag, int indent, int supported);
21
22
/* Print out a name+value stack */
23
24
void X509V3_EXT_val_prn(BIO *out, STACK_OF(CONF_VALUE) *val, int indent,
25
    int ml)
26
161k
{
27
161k
    int i;
28
161k
    CONF_VALUE *nval;
29
161k
    if (!val)
30
0
        return;
31
161k
    if (!ml || !sk_CONF_VALUE_num(val)) {
32
126k
        BIO_printf(out, "%*s", indent, "");
33
126k
        if (!sk_CONF_VALUE_num(val))
34
16.0k
            BIO_puts(out, "<EMPTY>\n");
35
126k
    }
36
510k
    for (i = 0; i < sk_CONF_VALUE_num(val); i++) {
37
348k
        if (ml) {
38
63.5k
            if (i > 0)
39
29.0k
                BIO_printf(out, "\n");
40
63.5k
            BIO_printf(out, "%*s", indent, "");
41
285k
        } else if (i > 0)
42
174k
            BIO_printf(out, ", ");
43
348k
        nval = sk_CONF_VALUE_value(val, i);
44
348k
        if (!nval->name)
45
73.0k
            BIO_puts(out, nval->value);
46
275k
        else if (!nval->value)
47
49.2k
            BIO_puts(out, nval->name);
48
226k
#ifndef CHARSET_EBCDIC
49
226k
        else
50
226k
            BIO_printf(out, "%s:%s", nval->name, nval->value);
51
#else
52
        else {
53
            int len;
54
            char *tmp;
55
            len = strlen(nval->value) + 1;
56
            tmp = OPENSSL_malloc(len);
57
            if (tmp != NULL) {
58
                ascii2ebcdic(tmp, nval->value, len);
59
                BIO_printf(out, "%s:%s", nval->name, tmp);
60
                OPENSSL_free(tmp);
61
            }
62
        }
63
#endif
64
348k
    }
65
161k
}
66
67
/* Main routine: print out a general extension */
68
69
int X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag,
70
    int indent)
71
2.60M
{
72
2.60M
    void *ext_str = NULL;
73
2.60M
    char *value = NULL;
74
2.60M
    ASN1_OCTET_STRING *extoct;
75
2.60M
    const unsigned char *p;
76
2.60M
    int extlen;
77
2.60M
    const X509V3_EXT_METHOD *method;
78
2.60M
    STACK_OF(CONF_VALUE) *nval = NULL;
79
2.60M
    int ok = 1;
80
81
2.60M
    extoct = X509_EXTENSION_get_data(ext);
82
2.60M
    p = ASN1_STRING_get0_data(extoct);
83
2.60M
    extlen = ASN1_STRING_length(extoct);
84
85
2.60M
    if ((method = X509V3_EXT_get(ext)) == NULL)
86
266k
        return unknown_ext_print(out, p, extlen, flag, indent, 0);
87
2.34M
    if (method->it)
88
2.15M
        ext_str = ASN1_item_d2i(NULL, &p, extlen, ASN1_ITEM_ptr(method->it));
89
190k
    else
90
190k
        ext_str = method->d2i(NULL, &p, extlen);
91
92
2.34M
    if (!ext_str)
93
1.24M
        return unknown_ext_print(out, p, extlen, flag, indent, 1);
94
95
1.10M
    if (method->i2s) {
96
58.7k
        if ((value = method->i2s(method, ext_str)) == NULL) {
97
2.26k
            ok = 0;
98
2.26k
            goto err;
99
2.26k
        }
100
56.4k
#ifndef CHARSET_EBCDIC
101
56.4k
        BIO_printf(out, "%*s%s", indent, "", value);
102
#else
103
        {
104
            int len;
105
            char *tmp;
106
            len = strlen(value) + 1;
107
            tmp = OPENSSL_malloc(len);
108
            if (tmp != NULL) {
109
                ascii2ebcdic(tmp, value, len);
110
                BIO_printf(out, "%*s%s", indent, "", tmp);
111
                OPENSSL_free(tmp);
112
            }
113
        }
114
#endif
115
1.04M
    } else if (method->i2v) {
116
220k
        if ((nval = method->i2v(method, ext_str, NULL)) == NULL) {
117
59.1k
            ok = 0;
118
59.1k
            goto err;
119
59.1k
        }
120
161k
        X509V3_EXT_val_prn(out, nval, indent,
121
161k
            method->ext_flags & X509V3_EXT_MULTILINE);
122
821k
    } else if (method->i2r) {
123
821k
        if (!method->i2r(method, ext_str, out, indent))
124
149k
            ok = 0;
125
821k
    } else
126
0
        ok = 0;
127
128
1.10M
err:
129
1.10M
    sk_CONF_VALUE_pop_free(nval, X509V3_conf_free);
130
1.10M
    OPENSSL_free(value);
131
1.10M
    if (method->it)
132
1.00M
        ASN1_item_free(ext_str, ASN1_ITEM_ptr(method->it));
133
96.2k
    else
134
96.2k
        method->ext_free(ext_str);
135
1.10M
    return ok;
136
1.10M
}
137
138
int X509V3_extensions_print(BIO *bp, const char *title,
139
    const STACK_OF(X509_EXTENSION) *exts,
140
    unsigned long flag, int indent)
141
199k
{
142
199k
    int i, j;
143
144
199k
    if (sk_X509_EXTENSION_num(exts) <= 0)
145
119k
        return 1;
146
147
79.3k
    if (title) {
148
79.3k
        BIO_printf(bp, "%*s%s:\n", indent, "", title);
149
79.3k
        indent += 4;
150
79.3k
    }
151
152
2.43M
    for (i = 0; i < sk_X509_EXTENSION_num(exts); i++) {
153
2.35M
        ASN1_OBJECT *obj;
154
2.35M
        X509_EXTENSION *ex;
155
156
2.35M
        ex = sk_X509_EXTENSION_value(exts, i);
157
2.35M
        obj = X509_EXTENSION_get_object(ex);
158
2.35M
        if ((flag & X509_FLAG_EXTENSIONS_ONLY_KID) != 0
159
0
            && OBJ_obj2nid(obj) != NID_subject_key_identifier
160
0
            && OBJ_obj2nid(obj) != NID_authority_key_identifier)
161
0
            continue;
162
2.35M
        if (indent && BIO_printf(bp, "%*s", indent, "") <= 0)
163
0
            return 0;
164
2.35M
        i2a_ASN1_OBJECT(bp, obj);
165
2.35M
        j = X509_EXTENSION_get_critical(ex);
166
2.35M
        if (BIO_printf(bp, ": %s\n", j ? "critical" : "") <= 0)
167
0
            return 0;
168
2.35M
        if (!X509V3_EXT_print(bp, ex, flag, indent + 4)) {
169
1.56M
            BIO_printf(bp, "%*s", indent + 4, "");
170
1.56M
            ASN1_STRING_print(bp, X509_EXTENSION_get_data(ex));
171
1.56M
        }
172
2.35M
        if (BIO_write(bp, "\n", 1) <= 0)
173
0
            return 0;
174
2.35M
    }
175
79.3k
    return 1;
176
79.3k
}
177
178
static int unknown_ext_print(BIO *out, const unsigned char *ext, int extlen,
179
    unsigned long flag, int indent, int supported)
180
1.50M
{
181
1.50M
    switch (flag & X509V3_EXT_UNKNOWN_MASK) {
182
183
1.49M
    case X509V3_EXT_DEFAULT:
184
1.49M
        return 0;
185
186
0
    case X509V3_EXT_ERROR_UNKNOWN:
187
0
        if (supported)
188
0
            BIO_printf(out, "%*s<Parse Error>", indent, "");
189
0
        else
190
0
            BIO_printf(out, "%*s<Not Supported>", indent, "");
191
0
        return 1;
192
193
0
    case X509V3_EXT_PARSE_UNKNOWN:
194
0
        return ASN1_parse_dump(out, ext, extlen, indent, -1);
195
0
    case X509V3_EXT_DUMP_UNKNOWN:
196
0
        return BIO_dump_indent(out, (const char *)ext, extlen, indent);
197
198
8.04k
    default:
199
8.04k
        return 1;
200
1.50M
    }
201
1.50M
}
202
203
#ifndef OPENSSL_NO_STDIO
204
int X509V3_EXT_print_fp(FILE *fp, X509_EXTENSION *ext, int flag, int indent)
205
0
{
206
0
    BIO *bio_tmp;
207
0
    int ret;
208
209
0
    if ((bio_tmp = BIO_new_fp(fp, BIO_NOCLOSE)) == NULL)
210
0
        return 0;
211
0
    ret = X509V3_EXT_print(bio_tmp, ext, flag, indent);
212
0
    BIO_free(bio_tmp);
213
0
    return ret;
214
0
}
215
#endif