Coverage Report

Created: 2026-09-12 06:55

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl34/crypto/x509/t_acert.c
Line
Count
Source
1
/*
2
 * Copyright 2021-2026 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/buffer.h>
13
#include <openssl/bn.h>
14
#include <openssl/objects.h>
15
#include <openssl/x509_acert.h>
16
17
static int print_attribute(BIO *bp, X509_ATTRIBUTE *a)
18
150k
{
19
150k
    ASN1_OBJECT *aobj;
20
150k
    int i, j, count;
21
150k
    int ret = 0;
22
23
150k
    aobj = X509_ATTRIBUTE_get0_object(a);
24
150k
    if (BIO_printf(bp, "%12s", "") <= 0)
25
0
        goto err;
26
27
150k
    if ((j = i2a_ASN1_OBJECT(bp, aobj)) <= 0)
28
0
        goto err;
29
30
150k
    count = X509_ATTRIBUTE_count(a);
31
150k
    if (count == 0) {
32
271
        ERR_raise(ERR_LIB_X509, X509_R_INVALID_ATTRIBUTES);
33
271
        goto err;
34
271
    }
35
36
150k
    if (j < 25 && (BIO_printf(bp, "%*s", 25 - j, " ") <= 0))
37
0
        goto err;
38
39
150k
    if (BIO_puts(bp, ":") <= 0)
40
0
        goto err;
41
42
5.20M
    for (i = 0; i < count; i++) {
43
5.05M
        ASN1_TYPE *at;
44
5.05M
        int type;
45
5.05M
        ASN1_BIT_STRING *bs;
46
47
5.05M
        at = X509_ATTRIBUTE_get0_type(a, i);
48
5.05M
        type = at->type;
49
50
5.05M
        switch (type) {
51
4.12k
        case V_ASN1_PRINTABLESTRING:
52
441k
        case V_ASN1_T61STRING:
53
1.58M
        case V_ASN1_NUMERICSTRING:
54
1.58M
        case V_ASN1_UTF8STRING:
55
1.61M
        case V_ASN1_IA5STRING:
56
1.61M
            bs = at->value.asn1_string;
57
1.61M
            if (BIO_write(bp, (char *)bs->data, bs->length) != bs->length)
58
0
                goto err;
59
1.61M
            if (BIO_puts(bp, "\n") <= 0)
60
0
                goto err;
61
1.61M
            break;
62
1.61M
        case V_ASN1_SEQUENCE:
63
88.3k
            if (BIO_puts(bp, "\n") <= 0)
64
0
                goto err;
65
88.3k
            if (ASN1_parse_dump(bp, at->value.sequence->data,
66
88.3k
                    at->value.sequence->length, i, 1)
67
88.3k
                <= 0)
68
704
                goto err;
69
87.6k
            break;
70
3.35M
        default:
71
3.35M
            if (BIO_printf(bp, "unable to print attribute of type 0x%X\n",
72
3.35M
                    type)
73
3.35M
                < 0)
74
0
                goto err;
75
3.35M
            break;
76
5.05M
        }
77
5.05M
    }
78
149k
    ret = 1;
79
150k
err:
80
150k
    return ret;
81
149k
}
82
83
int X509_ACERT_print_ex(BIO *bp, X509_ACERT *x, unsigned long nmflags,
84
    unsigned long cflag)
85
17.8k
{
86
17.8k
    int i;
87
17.8k
    char mlch = ' ';
88
89
17.8k
    if ((nmflags & XN_FLAG_SEP_MASK) == XN_FLAG_SEP_MULTILINE) {
90
0
        mlch = '\n';
91
0
    }
92
93
17.8k
    if ((cflag & X509_FLAG_NO_HEADER) == 0) {
94
17.8k
        if (BIO_printf(bp, "Attribute Certificate:\n") <= 0)
95
0
            goto err;
96
17.8k
        if (BIO_printf(bp, "%4sData:\n", "") <= 0)
97
0
            goto err;
98
17.8k
    }
99
100
17.8k
    if ((cflag & X509_FLAG_NO_VERSION) == 0) {
101
17.8k
        long l;
102
103
17.8k
        l = X509_ACERT_get_version(x);
104
17.8k
        if (l == X509_ACERT_VERSION_2) {
105
1.42k
            if (BIO_printf(bp, "%8sVersion: %ld (0x%lx)\n", "", l + 1,
106
1.42k
                    (unsigned long)l)
107
1.42k
                <= 0)
108
0
                goto err;
109
16.4k
        } else {
110
16.4k
            if (BIO_printf(bp, "%8sVersion: Unknown (%ld)\n", "", l) <= 0)
111
0
                goto err;
112
16.4k
        }
113
17.8k
    }
114
115
17.8k
    if ((cflag & X509_FLAG_NO_SERIAL) == 0) {
116
17.8k
        const ASN1_INTEGER *serial;
117
118
17.8k
        serial = X509_ACERT_get0_serialNumber(x);
119
120
17.8k
        if (BIO_printf(bp, "%8sSerial Number: ", "") <= 0)
121
0
            goto err;
122
123
17.8k
        if (i2a_ASN1_INTEGER(bp, serial) <= 0)
124
0
            goto err;
125
126
17.8k
        if (BIO_write(bp, "\n", 1) <= 0)
127
0
            goto err;
128
17.8k
    }
129
130
17.8k
    if ((cflag & X509_FLAG_NO_SUBJECT) == 0) {
131
17.8k
        const GENERAL_NAMES *holderEntities;
132
17.8k
        const OSSL_ISSUER_SERIAL *holder_bcid;
133
17.8k
        const X509_NAME *holderIssuer = NULL;
134
135
17.8k
        if (BIO_printf(bp, "%8sHolder:\n", "") <= 0)
136
0
            goto err;
137
138
17.8k
        holderEntities = X509_ACERT_get0_holder_entityName(x);
139
17.8k
        if (holderEntities != NULL) {
140
8.31k
            for (i = 0; i < sk_GENERAL_NAME_num(holderEntities); i++) {
141
4.74k
                GENERAL_NAME *entity;
142
143
4.74k
                entity = sk_GENERAL_NAME_value(holderEntities, i);
144
145
4.74k
                if (BIO_printf(bp, "%12sName:%c", "", mlch) <= 0)
146
0
                    goto err;
147
4.74k
                if (GENERAL_NAME_print(bp, entity) <= 0)
148
0
                    goto err;
149
4.74k
                if (BIO_write(bp, "\n", 1) <= 0)
150
0
                    goto err;
151
4.74k
            }
152
3.57k
        }
153
154
17.8k
        if ((holder_bcid = X509_ACERT_get0_holder_baseCertId(x)) != NULL)
155
3.86k
            holderIssuer = OSSL_ISSUER_SERIAL_get0_issuer(holder_bcid);
156
157
17.8k
        if (holderIssuer != NULL) {
158
2.11k
            const ASN1_INTEGER *holder_serial;
159
2.11k
            const ASN1_BIT_STRING *iuid;
160
161
2.11k
            if (BIO_printf(bp, "%12sIssuer:%c", "", mlch) <= 0)
162
0
                goto err;
163
164
2.11k
            if (X509_NAME_print_ex(bp, holderIssuer, 0, nmflags) <= 0)
165
0
                goto err;
166
167
2.11k
            if (BIO_write(bp, "\n", 1) <= 0)
168
0
                goto err;
169
170
2.11k
            if (BIO_printf(bp, "%12sSerial: ", "") <= 0)
171
0
                goto err;
172
173
2.11k
            holder_serial = OSSL_ISSUER_SERIAL_get0_serial(holder_bcid);
174
175
2.11k
            if (i2a_ASN1_INTEGER(bp, holder_serial) <= 0)
176
0
                goto err;
177
178
2.11k
            iuid = OSSL_ISSUER_SERIAL_get0_issuerUID(holder_bcid);
179
2.11k
            if (iuid != NULL) {
180
1
                if (BIO_printf(bp, "%12sIssuer UID: ", "") <= 0)
181
0
                    goto err;
182
1
                if (X509_signature_dump(bp, iuid, 24) <= 0)
183
0
                    goto err;
184
1
            }
185
2.11k
            if (BIO_write(bp, "\n", 1) <= 0)
186
0
                goto err;
187
2.11k
        }
188
17.8k
    }
189
190
17.8k
    if ((cflag & X509_FLAG_NO_ISSUER) == 0) {
191
17.8k
        const X509_NAME *issuer;
192
193
17.8k
        if (BIO_printf(bp, "%8sIssuer:%c", "", mlch) <= 0)
194
0
            goto err;
195
17.8k
        issuer = X509_ACERT_get0_issuerName(x);
196
17.8k
        if (issuer) {
197
3.29k
            if (X509_NAME_print_ex(bp, issuer, 0, nmflags) < 0)
198
0
                goto err;
199
14.6k
        } else {
200
14.6k
            if (BIO_printf(bp, "Unsupported Issuer Type") <= 0)
201
0
                goto err;
202
14.6k
        }
203
17.8k
        if (BIO_write(bp, "\n", 1) <= 0)
204
0
            goto err;
205
17.8k
    }
206
207
17.8k
    if ((cflag & X509_FLAG_NO_VALIDITY) == 0) {
208
17.8k
        if (BIO_printf(bp, "%8sValidity\n", "") <= 0)
209
0
            goto err;
210
17.8k
        if (BIO_printf(bp, "%12sNot Before: ", "") <= 0)
211
0
            goto err;
212
17.8k
        if (ASN1_GENERALIZEDTIME_print(bp, X509_ACERT_get0_notBefore(x)) == 0)
213
4.36k
            goto err;
214
13.5k
        if (BIO_printf(bp, "\n%12sNot After : ", "") <= 0)
215
0
            goto err;
216
13.5k
        if (ASN1_GENERALIZEDTIME_print(bp, X509_ACERT_get0_notAfter(x)) == 0)
217
438
            goto err;
218
13.0k
        if (BIO_write(bp, "\n", 1) <= 0)
219
0
            goto err;
220
13.0k
    }
221
222
13.0k
    if ((cflag & X509_FLAG_NO_ATTRIBUTES) == 0) {
223
13.0k
        if (BIO_printf(bp, "%8sAttributes:\n", "") <= 0)
224
0
            goto err;
225
226
13.0k
        if (X509_ACERT_get_attr_count(x) == 0) {
227
3.54k
            if (BIO_printf(bp, "%12s(none)\n", "") <= 0)
228
0
                goto err;
229
9.54k
        } else {
230
159k
            for (i = 0; i < X509_ACERT_get_attr_count(x); i++) {
231
150k
                if (print_attribute(bp, X509_ACERT_get_attr(x, i)) == 0)
232
975
                    goto err;
233
150k
            }
234
9.54k
        }
235
13.0k
    }
236
237
12.1k
    if ((cflag & X509_FLAG_NO_EXTENSIONS) == 0) {
238
12.1k
        const STACK_OF(X509_EXTENSION) *exts;
239
240
12.1k
        exts = X509_ACERT_get0_extensions(x);
241
12.1k
        if (exts != NULL) {
242
5.13k
            if (BIO_printf(bp, "%8sExtensions:\n", "") <= 0)
243
0
                goto err;
244
144k
            for (i = 0; i < sk_X509_EXTENSION_num(exts); i++) {
245
139k
                ASN1_OBJECT *obj;
246
139k
                X509_EXTENSION *ex;
247
139k
                int critical;
248
249
139k
                ex = sk_X509_EXTENSION_value(exts, i);
250
139k
                if (BIO_printf(bp, "%12s", "") <= 0)
251
0
                    goto err;
252
139k
                obj = X509_EXTENSION_get_object(ex);
253
139k
                if (i2a_ASN1_OBJECT(bp, obj) <= 0)
254
0
                    goto err;
255
139k
                critical = X509_EXTENSION_get_critical(ex);
256
139k
                if (BIO_printf(bp, ": %s\n", critical ? "critical" : "") <= 0)
257
0
                    goto err;
258
139k
                if (X509V3_EXT_print(bp, ex, cflag, 20) <= 0) {
259
72.8k
                    if (BIO_printf(bp, "%16s", "") <= 0)
260
0
                        goto err;
261
72.8k
                    if (ASN1_STRING_print(bp, X509_EXTENSION_get_data(ex)) <= 0)
262
0
                        goto err;
263
72.8k
                }
264
139k
                if (BIO_write(bp, "\n", 1) <= 0)
265
0
                    goto err;
266
139k
            }
267
5.13k
        }
268
12.1k
    }
269
270
12.1k
    if ((cflag & X509_FLAG_NO_SIGDUMP) == 0) {
271
12.1k
        const X509_ALGOR *sig_alg;
272
12.1k
        const ASN1_BIT_STRING *sig;
273
274
12.1k
        X509_ACERT_get0_signature(x, &sig, &sig_alg);
275
12.1k
        if (X509_signature_print(bp, sig_alg, sig) <= 0)
276
0
            return 0;
277
12.1k
    }
278
279
12.1k
    return 1;
280
281
5.78k
err:
282
5.78k
    ERR_raise(ERR_LIB_X509, ERR_R_BUF_LIB);
283
5.78k
    return 0;
284
12.1k
}
285
286
int X509_ACERT_print(BIO *bp, X509_ACERT *x)
287
17.8k
{
288
17.8k
    return X509_ACERT_print_ex(bp, x, XN_FLAG_COMPAT, X509_FLAG_COMPAT);
289
17.8k
}