Coverage Report

Created: 2026-02-14 07:20

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl36/crypto/x509/t_x509.c
Line
Count
Source
1
/*
2
 * Copyright 1995-2025 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
/*
11
 * because of EVP_PKEY_asn1_find deprecation
12
 */
13
#define OPENSSL_SUPPRESS_DEPRECATED
14
15
#include <stdio.h>
16
#include "internal/cryptlib.h"
17
#include <openssl/buffer.h>
18
#include <openssl/bn.h>
19
#include <openssl/objects.h>
20
#include <openssl/x509.h>
21
#include <openssl/x509v3.h>
22
#include "crypto/asn1.h"
23
#include "crypto/x509.h"
24
25
void OSSL_STACK_OF_X509_free(STACK_OF(X509) *certs)
26
4.49M
{
27
4.49M
    sk_X509_pop_free(certs, X509_free);
28
4.49M
}
29
30
#ifndef OPENSSL_NO_STDIO
31
int X509_print_fp(FILE *fp, X509 *x)
32
0
{
33
0
    return X509_print_ex_fp(fp, x, XN_FLAG_COMPAT, X509_FLAG_COMPAT);
34
0
}
35
36
int X509_print_ex_fp(FILE *fp, X509 *x, unsigned long nmflag,
37
    unsigned long cflag)
38
0
{
39
0
    BIO *b;
40
0
    int ret;
41
42
0
    if ((b = BIO_new(BIO_s_file())) == NULL) {
43
0
        ERR_raise(ERR_LIB_X509, ERR_R_BUF_LIB);
44
0
        return 0;
45
0
    }
46
0
    BIO_set_fp(b, fp, BIO_NOCLOSE);
47
0
    ret = X509_print_ex(b, x, nmflag, cflag);
48
0
    BIO_free(b);
49
0
    return ret;
50
0
}
51
#endif
52
53
int X509_print(BIO *bp, X509 *x)
54
40.3k
{
55
40.3k
    return X509_print_ex(bp, x, XN_FLAG_COMPAT, X509_FLAG_COMPAT);
56
40.3k
}
57
58
int X509_print_ex(BIO *bp, X509 *x, unsigned long nmflags,
59
    unsigned long cflag)
60
28.1k
{
61
28.1k
    long l;
62
28.1k
    int ret = 0;
63
28.1k
    char mlch = ' ';
64
28.1k
    int nmindent = 0, printok = 0;
65
28.1k
    EVP_PKEY *pkey = NULL;
66
67
28.1k
    if ((nmflags & XN_FLAG_SEP_MASK) == XN_FLAG_SEP_MULTILINE) {
68
0
        mlch = '\n';
69
0
        nmindent = 12;
70
0
    }
71
72
28.1k
    if (nmflags == XN_FLAG_COMPAT)
73
19.4k
        printok = 1;
74
75
28.1k
    if (!(cflag & X509_FLAG_NO_HEADER)) {
76
19.4k
        if (BIO_write(bp, "Certificate:\n", 13) <= 0)
77
0
            goto err;
78
19.4k
        if (BIO_write(bp, "    Data:\n", 10) <= 0)
79
0
            goto err;
80
19.4k
    }
81
28.1k
    if (!(cflag & X509_FLAG_NO_VERSION)) {
82
19.4k
        l = X509_get_version(x);
83
19.4k
        if (l >= X509_VERSION_1 && l <= X509_VERSION_3) {
84
18.5k
            if (BIO_printf(bp, "%8sVersion: %ld (0x%lx)\n", "", l + 1, (unsigned long)l) <= 0)
85
0
                goto err;
86
18.5k
        } else {
87
908
            if (BIO_printf(bp, "%8sVersion: Unknown (%ld)\n", "", l) <= 0)
88
0
                goto err;
89
908
        }
90
19.4k
    }
91
28.1k
    if (!(cflag & X509_FLAG_NO_SERIAL)) {
92
21.6k
        const ASN1_INTEGER *bs = X509_get0_serialNumber(x);
93
94
21.6k
        if (BIO_write(bp, "        Serial Number:", 22) <= 0)
95
0
            goto err;
96
21.6k
        if (ossl_serial_number_print(bp, bs, 12) != 0)
97
0
            goto err;
98
21.6k
        if (BIO_puts(bp, "\n") <= 0)
99
0
            goto err;
100
21.6k
    }
101
102
28.1k
    if (!(cflag & X509_FLAG_NO_SIGNAME)) {
103
19.4k
        const X509_ALGOR *tsig_alg = X509_get0_tbs_sigalg(x);
104
105
19.4k
        if (BIO_puts(bp, "    ") <= 0)
106
0
            goto err;
107
19.4k
        if (X509_signature_print(bp, tsig_alg, NULL) <= 0)
108
0
            goto err;
109
19.4k
    }
110
111
28.1k
    if (!(cflag & X509_FLAG_NO_ISSUER)) {
112
21.5k
        if (BIO_printf(bp, "        Issuer:%c", mlch) <= 0)
113
0
            goto err;
114
21.5k
        if (X509_NAME_print_ex(bp, X509_get_issuer_name(x), nmindent, nmflags)
115
21.5k
            < printok)
116
42
            goto err;
117
21.5k
        if (BIO_write(bp, "\n", 1) <= 0)
118
0
            goto err;
119
21.5k
    }
120
28.0k
    if (!(cflag & X509_FLAG_NO_VALIDITY)) {
121
21.6k
        if (BIO_write(bp, "        Validity\n", 17) <= 0)
122
0
            goto err;
123
21.6k
        if (BIO_write(bp, "            Not Before: ", 24) <= 0)
124
0
            goto err;
125
21.6k
        if (ossl_asn1_time_print_ex(bp, X509_get0_notBefore(x), ASN1_DTFLGS_RFC822) == 0)
126
0
            goto err;
127
21.6k
        if (BIO_write(bp, "\n            Not After : ", 25) <= 0)
128
0
            goto err;
129
21.6k
        if (ossl_asn1_time_print_ex(bp, X509_get0_notAfter(x), ASN1_DTFLGS_RFC822) == 0)
130
0
            goto err;
131
21.6k
        if (BIO_write(bp, "\n", 1) <= 0)
132
0
            goto err;
133
21.6k
    }
134
28.0k
    if (!(cflag & X509_FLAG_NO_SUBJECT)) {
135
21.6k
        if (BIO_printf(bp, "        Subject:%c", mlch) <= 0)
136
0
            goto err;
137
21.6k
        if (X509_NAME_print_ex(bp, X509_get_subject_name(x), nmindent, nmflags) < printok)
138
22
            goto err;
139
21.6k
        if (BIO_write(bp, "\n", 1) <= 0)
140
0
            goto err;
141
21.6k
    }
142
28.0k
    if (!(cflag & X509_FLAG_NO_PUBKEY)) {
143
19.4k
        X509_PUBKEY *xpkey = X509_get_X509_PUBKEY(x);
144
19.4k
        ASN1_OBJECT *xpoid;
145
19.4k
        X509_PUBKEY_get0_param(&xpoid, NULL, NULL, NULL, xpkey);
146
19.4k
        if (BIO_write(bp, "        Subject Public Key Info:\n", 33) <= 0)
147
0
            goto err;
148
19.4k
        if (BIO_printf(bp, "%12sPublic Key Algorithm: ", "") <= 0)
149
0
            goto err;
150
19.4k
        if (i2a_ASN1_OBJECT(bp, xpoid) <= 0)
151
0
            goto err;
152
19.4k
        if (BIO_puts(bp, "\n") <= 0)
153
0
            goto err;
154
155
19.4k
        pkey = X509_get0_pubkey(x);
156
19.4k
        if (pkey == NULL) {
157
14.8k
            BIO_printf(bp, "%12sUnable to load Public Key\n", "");
158
14.8k
            ERR_print_errors(bp);
159
14.8k
        } else {
160
4.61k
            EVP_PKEY_print_public(bp, pkey, 16, NULL);
161
4.61k
        }
162
19.4k
    }
163
164
28.0k
    if (!(cflag & X509_FLAG_NO_IDS)) {
165
19.4k
        const ASN1_BIT_STRING *iuid, *suid;
166
19.4k
        X509_get0_uids(x, &iuid, &suid);
167
19.4k
        if (iuid != NULL) {
168
44
            if (BIO_printf(bp, "%8sIssuer Unique ID: ", "") <= 0)
169
0
                goto err;
170
44
            if (!X509_signature_dump(bp, iuid, 12))
171
0
                goto err;
172
44
        }
173
19.4k
        if (suid != NULL) {
174
95
            if (BIO_printf(bp, "%8sSubject Unique ID: ", "") <= 0)
175
0
                goto err;
176
95
            if (!X509_signature_dump(bp, suid, 12))
177
0
                goto err;
178
95
        }
179
19.4k
    }
180
181
28.0k
    if (!(cflag & X509_FLAG_NO_EXTENSIONS)
182
21.6k
        && !X509V3_extensions_print(bp, "X509v3 extensions",
183
21.6k
            X509_get0_extensions(x), cflag, 8))
184
0
        goto err;
185
186
28.0k
    if (!(cflag & X509_FLAG_NO_SIGDUMP)) {
187
19.4k
        const X509_ALGOR *sig_alg;
188
19.4k
        const ASN1_BIT_STRING *sig;
189
19.4k
        X509_get0_signature(&sig, &sig_alg, x);
190
19.4k
        if (X509_signature_print(bp, sig_alg, sig) <= 0)
191
0
            goto err;
192
19.4k
    }
193
28.0k
    if (!(cflag & X509_FLAG_NO_AUX)) {
194
19.4k
        if (!X509_aux_print(bp, x, 0))
195
0
            goto err;
196
19.4k
    }
197
28.0k
    ret = 1;
198
28.1k
err:
199
28.1k
    return ret;
200
28.0k
}
201
202
int X509_ocspid_print(BIO *bp, X509 *x)
203
0
{
204
0
    unsigned char *der = NULL;
205
0
    unsigned char *dertmp;
206
0
    int derlen;
207
0
    int i;
208
0
    unsigned char SHA1md[SHA_DIGEST_LENGTH];
209
0
    ASN1_BIT_STRING *keybstr;
210
0
    const X509_NAME *subj;
211
0
    EVP_MD *md = NULL;
212
213
0
    if (x == NULL || bp == NULL)
214
0
        return 0;
215
    /*
216
     * display the hash of the subject as it would appear in OCSP requests
217
     */
218
0
    if (BIO_printf(bp, "        Subject OCSP hash: ") <= 0)
219
0
        goto err;
220
0
    subj = X509_get_subject_name(x);
221
0
    derlen = i2d_X509_NAME(subj, NULL);
222
0
    if (derlen <= 0)
223
0
        goto err;
224
0
    if ((der = dertmp = OPENSSL_malloc(derlen)) == NULL)
225
0
        goto err;
226
0
    if (i2d_X509_NAME(subj, &dertmp) < 0)
227
0
        goto err;
228
229
0
    md = EVP_MD_fetch(x->libctx, SN_sha1, x->propq);
230
0
    if (md == NULL)
231
0
        goto err;
232
0
    if (!EVP_Digest(der, derlen, SHA1md, NULL, md, NULL))
233
0
        goto err;
234
0
    for (i = 0; i < SHA_DIGEST_LENGTH; i++) {
235
0
        if (BIO_printf(bp, "%02X", SHA1md[i]) <= 0)
236
0
            goto err;
237
0
    }
238
0
    OPENSSL_free(der);
239
0
    der = NULL;
240
241
    /*
242
     * display the hash of the public key as it would appear in OCSP requests
243
     */
244
0
    if (BIO_printf(bp, "\n        Public key OCSP hash: ") <= 0)
245
0
        goto err;
246
247
0
    keybstr = X509_get0_pubkey_bitstr(x);
248
249
0
    if (keybstr == NULL)
250
0
        goto err;
251
252
0
    if (!EVP_Digest(ASN1_STRING_get0_data(keybstr),
253
0
            ASN1_STRING_length(keybstr), SHA1md, NULL, md, NULL))
254
0
        goto err;
255
0
    for (i = 0; i < SHA_DIGEST_LENGTH; i++) {
256
0
        if (BIO_printf(bp, "%02X", SHA1md[i]) <= 0)
257
0
            goto err;
258
0
    }
259
0
    BIO_printf(bp, "\n");
260
0
    EVP_MD_free(md);
261
262
0
    return 1;
263
0
err:
264
0
    OPENSSL_free(der);
265
0
    EVP_MD_free(md);
266
0
    return 0;
267
0
}
268
269
int X509_signature_dump(BIO *bp, const ASN1_STRING *sig, int indent)
270
90.4k
{
271
90.4k
    const unsigned char *s;
272
90.4k
    int i, n;
273
274
90.4k
    n = sig->length;
275
90.4k
    s = sig->data;
276
107M
    for (i = 0; i < n; i++) {
277
107M
        if ((i % 18) == 0) {
278
5.72M
            if (i > 0 && BIO_write(bp, "\n", 1) <= 0)
279
0
                return 0;
280
5.72M
            if (BIO_indent(bp, indent, indent) <= 0)
281
0
                return 0;
282
5.72M
        }
283
107M
        if (BIO_printf(bp, "%02x%s", s[i], ((i + 1) == n) ? "" : ":") <= 0)
284
0
            return 0;
285
107M
    }
286
90.4k
    if (BIO_write(bp, "\n", 1) != 1)
287
0
        return 0;
288
289
90.4k
    return 1;
290
90.4k
}
291
292
int X509_signature_print(BIO *bp, const X509_ALGOR *sigalg,
293
    const ASN1_STRING *sig)
294
170k
{
295
170k
#ifndef OPENSSL_NO_DEPRECATED_3_6
296
170k
    int sig_nid;
297
170k
#endif
298
170k
    int indent = 4;
299
170k
    if (BIO_printf(bp, "%*sSignature Algorithm: ", indent, "") <= 0)
300
0
        return 0;
301
170k
    if (i2a_ASN1_OBJECT(bp, sigalg->algorithm) <= 0)
302
0
        return 0;
303
304
170k
    if (sig && BIO_printf(bp, "\n%*sSignature Value:", indent, "") <= 0)
305
0
        return 0;
306
170k
#ifndef OPENSSL_NO_DEPRECATED_3_6
307
170k
    sig_nid = OBJ_obj2nid(sigalg->algorithm);
308
170k
    if (sig_nid != NID_undef) {
309
43.5k
        int pkey_nid, dig_nid;
310
43.5k
        const EVP_PKEY_ASN1_METHOD *ameth;
311
43.5k
        if (OBJ_find_sigid_algs(sig_nid, &dig_nid, &pkey_nid)) {
312
19.7k
            ameth = EVP_PKEY_asn1_find(NULL, pkey_nid);
313
19.7k
            if (ameth && ameth->sig_print)
314
18.6k
                return ameth->sig_print(bp, sigalg, sig, indent + 4, 0);
315
19.7k
        }
316
43.5k
    }
317
151k
#endif
318
151k
    if (BIO_write(bp, "\n", 1) != 1)
319
0
        return 0;
320
151k
    if (sig)
321
81.1k
        return X509_signature_dump(bp, sig, indent + 4);
322
70.3k
    return 1;
323
151k
}
324
325
int X509_aux_print(BIO *out, X509 *x, int indent)
326
40.1k
{
327
40.1k
    char oidstr[80], first;
328
40.1k
    STACK_OF(ASN1_OBJECT) *trust, *reject;
329
40.1k
    const unsigned char *alias, *keyid;
330
40.1k
    int keyidlen;
331
40.1k
    int i;
332
40.1k
    if (X509_trusted(x) == 0)
333
40.1k
        return 1;
334
0
    trust = X509_get0_trust_objects(x);
335
0
    reject = X509_get0_reject_objects(x);
336
0
    if (trust) {
337
0
        first = 1;
338
0
        BIO_printf(out, "%*sTrusted Uses:\n%*s", indent, "", indent + 2, "");
339
0
        for (i = 0; i < sk_ASN1_OBJECT_num(trust); i++) {
340
0
            if (!first)
341
0
                BIO_puts(out, ", ");
342
0
            else
343
0
                first = 0;
344
0
            OBJ_obj2txt(oidstr, sizeof(oidstr),
345
0
                sk_ASN1_OBJECT_value(trust, i), 0);
346
0
            BIO_puts(out, oidstr);
347
0
        }
348
0
        BIO_puts(out, "\n");
349
0
    } else
350
0
        BIO_printf(out, "%*sNo Trusted Uses.\n", indent, "");
351
0
    if (reject) {
352
0
        first = 1;
353
0
        BIO_printf(out, "%*sRejected Uses:\n%*s", indent, "", indent + 2, "");
354
0
        for (i = 0; i < sk_ASN1_OBJECT_num(reject); i++) {
355
0
            if (!first)
356
0
                BIO_puts(out, ", ");
357
0
            else
358
0
                first = 0;
359
0
            OBJ_obj2txt(oidstr, sizeof(oidstr),
360
0
                sk_ASN1_OBJECT_value(reject, i), 0);
361
0
            BIO_puts(out, oidstr);
362
0
        }
363
0
        BIO_puts(out, "\n");
364
0
    } else
365
0
        BIO_printf(out, "%*sNo Rejected Uses.\n", indent, "");
366
0
    alias = X509_alias_get0(x, &i);
367
0
    if (alias)
368
0
        BIO_printf(out, "%*sAlias: %.*s\n", indent, "", i, alias);
369
0
    keyid = X509_keyid_get0(x, &keyidlen);
370
0
    if (keyid) {
371
0
        BIO_printf(out, "%*sKey Id: ", indent, "");
372
0
        for (i = 0; i < keyidlen; i++)
373
0
            BIO_printf(out, "%s%02X", i ? ":" : "", keyid[i]);
374
0
        BIO_write(out, "\n", 1);
375
0
    }
376
0
    return 1;
377
40.1k
}
378
379
/*
380
 * Helper functions for improving certificate verification error diagnostics
381
 */
382
383
int ossl_x509_print_ex_brief(BIO *bio, X509 *cert, unsigned long neg_cflags)
384
3.79k
{
385
3.79k
    unsigned long flags = ASN1_STRFLGS_RFC2253 | ASN1_STRFLGS_ESC_QUOTE | XN_FLAG_SEP_CPLUS_SPC | XN_FLAG_FN_SN;
386
387
3.79k
    if (cert == NULL)
388
0
        return BIO_printf(bio, "    (no certificate)\n") > 0;
389
3.79k
    if (BIO_printf(bio, "    certificate\n") <= 0
390
3.79k
        || !X509_print_ex(bio, cert, flags, ~X509_FLAG_NO_SUBJECT))
391
0
        return 0;
392
3.79k
    if (X509_check_issued((X509 *)cert, cert) == X509_V_OK) {
393
133
        if (BIO_printf(bio, "        self-issued\n") <= 0)
394
0
            return 0;
395
3.65k
    } else {
396
3.65k
        if (BIO_printf(bio, " ") <= 0
397
3.65k
            || !X509_print_ex(bio, cert, flags, ~X509_FLAG_NO_ISSUER))
398
0
            return 0;
399
3.65k
    }
400
3.79k
    if (!X509_print_ex(bio, cert, flags,
401
3.79k
            ~(X509_FLAG_NO_SERIAL | X509_FLAG_NO_VALIDITY)))
402
0
        return 0;
403
3.79k
    if (X509_cmp_current_time(X509_get0_notBefore(cert)) > 0)
404
241
        if (BIO_printf(bio, "        not yet valid\n") <= 0)
405
0
            return 0;
406
3.79k
    if (X509_cmp_current_time(X509_get0_notAfter(cert)) < 0)
407
504
        if (BIO_printf(bio, "        no more valid\n") <= 0)
408
0
            return 0;
409
3.79k
    return X509_print_ex(bio, cert, flags,
410
3.79k
        ~neg_cflags & ~X509_FLAG_EXTENSIONS_ONLY_KID);
411
3.79k
}
412
413
static int print_certs(BIO *bio, const STACK_OF(X509) *certs)
414
0
{
415
0
    int i;
416
417
0
    if (certs == NULL || sk_X509_num(certs) <= 0)
418
0
        return BIO_printf(bio, "    (no certificates)\n") >= 0;
419
420
0
    for (i = 0; i < sk_X509_num(certs); i++) {
421
0
        X509 *cert = sk_X509_value(certs, i);
422
423
0
        if (cert != NULL) {
424
0
            if (!ossl_x509_print_ex_brief(bio, cert, 0))
425
0
                return 0;
426
0
            if (!X509V3_extensions_print(bio, NULL,
427
0
                    X509_get0_extensions(cert),
428
0
                    X509_FLAG_EXTENSIONS_ONLY_KID, 8))
429
0
                return 0;
430
0
        }
431
0
    }
432
0
    return 1;
433
0
}
434
435
static int print_store_certs(BIO *bio, X509_STORE *store)
436
0
{
437
0
    if (store != NULL) {
438
0
        STACK_OF(X509) *certs = X509_STORE_get1_all_certs(store);
439
0
        int ret = print_certs(bio, certs);
440
441
0
        OSSL_STACK_OF_X509_free(certs);
442
0
        return ret;
443
0
    } else {
444
0
        return BIO_printf(bio, "    (no trusted store)\n") >= 0;
445
0
    }
446
0
}
447
448
/* Extend the error queue with details on a failed cert verification */
449
int X509_STORE_CTX_print_verify_cb(int ok, X509_STORE_CTX *ctx)
450
0
{
451
0
    if (ok == 0 && ctx != NULL) {
452
0
        int cert_error = X509_STORE_CTX_get_error(ctx);
453
0
        BIO *bio = BIO_new(BIO_s_mem()); /* may be NULL */
454
455
0
        if (bio == NULL)
456
0
            return 0;
457
0
        BIO_printf(bio, "%s at depth = %d error = %d (%s)\n",
458
0
            X509_STORE_CTX_get0_parent_ctx(ctx) != NULL
459
0
                ? "CRL path validation"
460
0
                : "Certificate verification",
461
0
            X509_STORE_CTX_get_error_depth(ctx),
462
0
            cert_error, X509_verify_cert_error_string(cert_error));
463
0
        {
464
0
            X509_STORE *ts = X509_STORE_CTX_get0_store(ctx);
465
0
            X509_VERIFY_PARAM *vpm = X509_STORE_get0_param(ts);
466
0
            char *str;
467
0
            int idx = 0;
468
469
0
            switch (cert_error) {
470
0
            case X509_V_ERR_HOSTNAME_MISMATCH:
471
0
                BIO_printf(bio, "Expected hostname(s) = ");
472
0
                while ((str = X509_VERIFY_PARAM_get0_host(vpm, idx++)) != NULL)
473
0
                    BIO_printf(bio, "%s%s", idx == 1 ? "" : ", ", str);
474
0
                BIO_printf(bio, "\n");
475
0
                break;
476
0
            case X509_V_ERR_EMAIL_MISMATCH:
477
0
                str = X509_VERIFY_PARAM_get0_email(vpm);
478
0
                if (str != NULL)
479
0
                    BIO_printf(bio, "Expected email address = %s\n", str);
480
0
                break;
481
0
            case X509_V_ERR_IP_ADDRESS_MISMATCH:
482
0
                str = X509_VERIFY_PARAM_get1_ip_asc(vpm);
483
0
                if (str != NULL)
484
0
                    BIO_printf(bio, "Expected IP address = %s\n", str);
485
0
                OPENSSL_free(str);
486
0
                break;
487
0
            default:
488
0
                break;
489
0
            }
490
0
        }
491
492
0
        BIO_printf(bio, "Failure for:\n");
493
0
        ossl_x509_print_ex_brief(bio, X509_STORE_CTX_get_current_cert(ctx),
494
0
            X509_FLAG_NO_EXTENSIONS);
495
0
        if (cert_error == X509_V_ERR_CERT_UNTRUSTED
496
0
            || cert_error == X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT
497
0
            || cert_error == X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN
498
0
            || cert_error == X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT
499
0
            || cert_error == X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY
500
0
            || cert_error == X509_V_ERR_UNABLE_TO_GET_CRL_ISSUER
501
0
            || cert_error == X509_V_ERR_STORE_LOOKUP) {
502
0
            BIO_printf(bio, "Non-trusted certs:\n");
503
0
            print_certs(bio, X509_STORE_CTX_get0_untrusted(ctx));
504
0
            BIO_printf(bio, "Certs in trust store:\n");
505
0
            print_store_certs(bio, X509_STORE_CTX_get0_store(ctx));
506
0
        }
507
0
        ERR_raise(ERR_LIB_X509, X509_R_CERTIFICATE_VERIFICATION_FAILED);
508
0
        ERR_add_error_mem_bio("\n", bio);
509
0
        BIO_free(bio);
510
0
    }
511
512
0
    return ok;
513
0
}
514
515
/*
516
 * Prints serial numbers in decimal and hexadecimal. The indent argument is only
517
 * used if the serial number is too large to fit in an int64_t.
518
 */
519
int ossl_serial_number_print(BIO *out, const ASN1_INTEGER *bs, int indent)
520
21.6k
{
521
21.6k
    int i, ok;
522
21.6k
    int64_t l;
523
21.6k
    uint64_t ul;
524
21.6k
    const char *neg;
525
526
21.6k
    if (bs->length == 0) {
527
0
        if (BIO_puts(out, " (Empty)") <= 0)
528
0
            return -1;
529
0
        return 0;
530
0
    }
531
532
21.6k
    ERR_set_mark();
533
21.6k
    ok = ASN1_INTEGER_get_int64(&l, bs);
534
21.6k
    ERR_pop_to_mark();
535
536
21.6k
    if (ok) { /* Reading an int64_t succeeded: print decimal and hex. */
537
20.4k
        if (bs->type == V_ASN1_NEG_INTEGER) {
538
6.99k
            ul = 0 - (uint64_t)l;
539
6.99k
            neg = "-";
540
13.4k
        } else {
541
13.4k
            ul = l;
542
13.4k
            neg = "";
543
13.4k
        }
544
20.4k
        if (BIO_printf(out, " %s%ju (%s0x%jx)", neg, ul, neg, ul) <= 0)
545
0
            return -1;
546
20.4k
    } else { /* Reading an int64_t failed: just print hex. */
547
1.19k
        neg = (bs->type == V_ASN1_NEG_INTEGER) ? " (Negative)" : "";
548
1.19k
        if (BIO_printf(out, "\n%*s%s", indent, "", neg) <= 0)
549
0
            return -1;
550
551
18.1k
        for (i = 0; i < bs->length - 1; i++) {
552
16.9k
            if (BIO_printf(out, "%02x%c", bs->data[i], ':') <= 0)
553
0
                return -1;
554
16.9k
        }
555
1.19k
        if (BIO_printf(out, "%02x", bs->data[i]) <= 0)
556
0
            return -1;
557
1.19k
    }
558
21.6k
    return 0;
559
21.6k
}