Coverage Report

Created: 2025-11-16 06:40

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