Coverage Report

Created: 2026-09-12 06:55

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl41/fuzz/x509.c
Line
Count
Source
1
/*
2
 * Copyright 2016-2026 The OpenSSL Project Authors. All Rights Reserved.
3
 *
4
 * Licensed under the Apache License 2.0 (the "License");
5
 * you may not use this file except in compliance with the License.
6
 * You may obtain a copy of the License at
7
 * https://www.openssl.org/source/license.html
8
 * or in the file LICENSE in the source distribution.
9
 */
10
11
#include <openssl/x509.h>
12
#include <openssl/ocsp.h>
13
#include <openssl/bio.h>
14
#include <openssl/err.h>
15
#include <openssl/rand.h>
16
#include "fuzzer.h"
17
18
int FuzzerInitialize(int *argc, char ***argv)
19
229
{
20
229
    FuzzerSetRand();
21
229
    OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CRYPTO_STRINGS
22
229
            | OPENSSL_INIT_ADD_ALL_CIPHERS | OPENSSL_INIT_ADD_ALL_DIGESTS,
23
229
        NULL);
24
229
    ERR_clear_error();
25
229
    CRYPTO_free_ex_index(0, -1);
26
229
    return 1;
27
229
}
28
29
static int cb(int ok, X509_STORE_CTX *ctx)
30
29.2k
{
31
29.2k
    return 1;
32
29.2k
}
33
34
int FuzzerTestOneInput(const uint8_t *buf, size_t len)
35
10.9k
{
36
10.9k
    const unsigned char *p = buf;
37
10.9k
    size_t orig_len = len;
38
10.9k
    unsigned char *der = NULL;
39
10.9k
    BIO *bio = NULL;
40
10.9k
    X509 *x509_1 = NULL, *x509_2 = NULL;
41
10.9k
    X509_STORE *store = NULL;
42
10.9k
    X509_VERIFY_PARAM *param = NULL;
43
10.9k
    X509_STORE_CTX *ctx = NULL;
44
10.9k
    X509_CRL *crl = NULL;
45
10.9k
    STACK_OF(X509_CRL) *crls = NULL;
46
10.9k
    STACK_OF(X509) *certs = NULL;
47
10.9k
    OCSP_RESPONSE *resp = NULL;
48
10.9k
    OCSP_BASICRESP *bs = NULL;
49
10.9k
    OCSP_CERTID *id = NULL;
50
51
10.9k
    x509_1 = d2i_X509(NULL, &p, (long)len);
52
10.9k
    if (x509_1 == NULL)
53
4.39k
        goto err;
54
55
6.51k
    bio = BIO_new(BIO_s_null());
56
6.51k
    if (bio == NULL)
57
0
        goto err;
58
59
    /* This will load and print the public key as well as extensions */
60
6.51k
    X509_print(bio, x509_1);
61
6.51k
    BIO_free(bio);
62
63
6.51k
    X509_issuer_and_serial_hash(x509_1);
64
65
6.51k
    i2d_X509(x509_1, &der);
66
6.51k
    OPENSSL_free(der);
67
68
6.51k
    len = orig_len - (p - buf);
69
6.51k
    x509_2 = d2i_X509(NULL, &p, (long)len);
70
6.51k
    if (x509_2 == NULL)
71
5.43k
        goto err;
72
73
1.07k
    len = orig_len - (p - buf);
74
1.07k
    crl = d2i_X509_CRL(NULL, &p, (long)len);
75
1.07k
    if (crl == NULL)
76
20
        goto err;
77
78
1.05k
    len = orig_len - (p - buf);
79
1.05k
    resp = d2i_OCSP_RESPONSE(NULL, &p, (long)len);
80
81
1.05k
    store = X509_STORE_new();
82
1.05k
    if (store == NULL)
83
0
        goto err;
84
1.05k
    X509_STORE_add_cert(store, x509_2);
85
86
1.05k
    param = X509_VERIFY_PARAM_new();
87
1.05k
    if (param == NULL)
88
0
        goto err;
89
1.05k
    X509_VERIFY_PARAM_set_flags(param, X509_V_FLAG_NO_CHECK_TIME);
90
1.05k
    X509_VERIFY_PARAM_set_flags(param, X509_V_FLAG_X509_STRICT);
91
1.05k
    X509_VERIFY_PARAM_set_flags(param, X509_V_FLAG_PARTIAL_CHAIN);
92
1.05k
    X509_VERIFY_PARAM_set_flags(param, X509_V_FLAG_CRL_CHECK);
93
94
1.05k
    X509_STORE_set1_param(store, param);
95
96
1.05k
    X509_STORE_set_verify_cb(store, cb);
97
98
1.05k
    ctx = X509_STORE_CTX_new();
99
1.05k
    if (ctx == NULL)
100
0
        goto err;
101
102
1.05k
    if (!X509_STORE_CTX_init(ctx, store, x509_1, NULL))
103
0
        goto err;
104
105
1.05k
    if (crl != NULL) {
106
1.05k
        crls = sk_X509_CRL_new_null();
107
1.05k
        if (crls == NULL
108
1.05k
            || !sk_X509_CRL_push(crls, crl))
109
0
            goto err;
110
111
1.05k
        X509_STORE_CTX_set0_crls(ctx, crls);
112
1.05k
    }
113
114
1.05k
    X509_verify_cert(ctx);
115
116
1.05k
    if (resp != NULL)
117
139
        bs = OCSP_response_get1_basic(resp);
118
119
1.05k
    if (bs != NULL) {
120
86
        int status, reason;
121
86
        ASN1_GENERALIZEDTIME *revtime, *thisupd, *nextupd;
122
123
86
        certs = sk_X509_new_null();
124
86
        if (certs == NULL
125
86
            || !sk_X509_push(certs, x509_1)
126
86
            || !sk_X509_push(certs, x509_2))
127
0
            goto err;
128
129
86
        OCSP_basic_verify(bs, certs, store, OCSP_PARTIAL_CHAIN);
130
131
86
        id = OCSP_cert_to_id(NULL, x509_1, x509_2);
132
86
        if (id == NULL)
133
0
            goto err;
134
86
        OCSP_resp_find_status(bs, id, &status, &reason, &revtime, &thisupd,
135
86
            &nextupd);
136
86
    }
137
138
10.9k
err:
139
10.9k
    X509_STORE_CTX_free(ctx);
140
10.9k
    X509_VERIFY_PARAM_free(param);
141
10.9k
    X509_STORE_free(store);
142
10.9k
    X509_free(x509_1);
143
10.9k
    X509_free(x509_2);
144
10.9k
    X509_CRL_free(crl);
145
10.9k
    OCSP_CERTID_free(id);
146
10.9k
    OCSP_BASICRESP_free(bs);
147
10.9k
    OCSP_RESPONSE_free(resp);
148
10.9k
    sk_X509_CRL_free(crls);
149
10.9k
    sk_X509_free(certs);
150
151
10.9k
    ERR_clear_error();
152
10.9k
    return 0;
153
1.05k
}
154
155
void FuzzerCleanup(void)
156
0
{
157
0
    FuzzerClearRand();
158
0
}