Coverage Report

Created: 2023-06-08 06:41

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