Coverage Report

Created: 2025-12-04 06:33

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