Coverage Report

Created: 2026-04-12 07:08

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/openssl/crypto/ocsp/ocsp_srv.c
Line
Count
Source
1
/*
2
 * Copyright 2001-2026 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/objects.h>
13
#include <openssl/x509.h>
14
#include <openssl/pem.h>
15
#include <openssl/x509v3.h>
16
#include <openssl/ocsp.h>
17
#include "ocsp_local.h"
18
19
/*
20
 * Utility functions related to sending OCSP responses and extracting
21
 * relevant information from the request.
22
 */
23
int OCSP_request_onereq_count(OCSP_REQUEST *req)
24
0
{
25
0
    return sk_OCSP_ONEREQ_num(req->tbsRequest.requestList);
26
0
}
27
28
OCSP_ONEREQ *OCSP_request_onereq_get0(OCSP_REQUEST *req, int i)
29
0
{
30
0
    return sk_OCSP_ONEREQ_value(req->tbsRequest.requestList, i);
31
0
}
32
33
OCSP_CERTID *OCSP_onereq_get0_id(OCSP_ONEREQ *one)
34
0
{
35
0
    return one->reqCert;
36
0
}
37
38
int OCSP_id_get0_info(ASN1_OCTET_STRING **piNameHash, ASN1_OBJECT **pmd,
39
    ASN1_OCTET_STRING **pikeyHash,
40
    ASN1_INTEGER **pserial, OCSP_CERTID *cid)
41
0
{
42
0
    if (!cid)
43
0
        return 0;
44
0
    if (pmd)
45
0
        *pmd = cid->hashAlgorithm.algorithm;
46
0
    if (piNameHash)
47
0
        *piNameHash = &cid->issuerNameHash;
48
0
    if (pikeyHash)
49
0
        *pikeyHash = &cid->issuerKeyHash;
50
0
    if (pserial)
51
0
        *pserial = &cid->serialNumber;
52
0
    return 1;
53
0
}
54
55
int OCSP_request_is_signed(OCSP_REQUEST *req)
56
0
{
57
0
    if (req->optionalSignature)
58
0
        return 1;
59
0
    return 0;
60
0
}
61
62
/* Create an OCSP response and encode an optional basic response */
63
OCSP_RESPONSE *OCSP_response_create(int status, OCSP_BASICRESP *bs)
64
0
{
65
0
    OCSP_RESPONSE *rsp = NULL;
66
67
0
    if ((rsp = OCSP_RESPONSE_new()) == NULL)
68
0
        goto err;
69
0
    if (!(ASN1_ENUMERATED_set(rsp->responseStatus, status)))
70
0
        goto err;
71
0
    if (!bs)
72
0
        return rsp;
73
0
    if ((rsp->responseBytes = OCSP_RESPBYTES_new()) == NULL)
74
0
        goto err;
75
0
    rsp->responseBytes->responseType = OBJ_nid2obj(NID_id_pkix_OCSP_basic);
76
0
    if (!ASN1_item_pack(bs, ASN1_ITEM_rptr(OCSP_BASICRESP), &rsp->responseBytes->response))
77
0
        goto err;
78
0
    return rsp;
79
0
err:
80
0
    OCSP_RESPONSE_free(rsp);
81
0
    return NULL;
82
0
}
83
84
OCSP_SINGLERESP *OCSP_basic_add1_status(OCSP_BASICRESP *rsp,
85
    OCSP_CERTID *cid,
86
    int status, int reason,
87
    ASN1_TIME *revtime,
88
    ASN1_TIME *thisupd,
89
    ASN1_TIME *nextupd)
90
0
{
91
0
    OCSP_SINGLERESP *single = NULL;
92
0
    OCSP_CERTSTATUS *cs;
93
0
    OCSP_REVOKEDINFO *ri;
94
95
0
    if (rsp->tbsResponseData.responses == NULL
96
0
        && (rsp->tbsResponseData.responses
97
0
               = sk_OCSP_SINGLERESP_new_null())
98
0
            == NULL)
99
0
        goto err;
100
101
0
    if ((single = OCSP_SINGLERESP_new()) == NULL)
102
0
        goto err;
103
104
0
    if (!ASN1_TIME_to_generalizedtime(thisupd, &single->thisUpdate))
105
0
        goto err;
106
0
    if (nextupd && !ASN1_TIME_to_generalizedtime(nextupd, &single->nextUpdate))
107
0
        goto err;
108
109
0
    OCSP_CERTID_free(single->certId);
110
111
0
    if ((single->certId = OCSP_CERTID_dup(cid)) == NULL)
112
0
        goto err;
113
114
0
    cs = single->certStatus;
115
0
    switch (cs->type = status) {
116
0
    case V_OCSP_CERTSTATUS_REVOKED:
117
0
        if (!revtime) {
118
0
            ERR_raise(ERR_LIB_OCSP, OCSP_R_NO_REVOKED_TIME);
119
0
            goto err;
120
0
        }
121
0
        if ((cs->value.revoked = ri = OCSP_REVOKEDINFO_new()) == NULL)
122
0
            goto err;
123
0
        if (!ASN1_TIME_to_generalizedtime(revtime, &ri->revocationTime))
124
0
            goto err;
125
0
        if (reason != OCSP_REVOKED_STATUS_NOSTATUS) {
126
0
            if ((ri->revocationReason = ASN1_ENUMERATED_new()) == NULL)
127
0
                goto err;
128
0
            if (!(ASN1_ENUMERATED_set(ri->revocationReason, reason)))
129
0
                goto err;
130
0
        }
131
0
        break;
132
133
0
    case V_OCSP_CERTSTATUS_GOOD:
134
0
        if ((cs->value.good = ASN1_NULL_new()) == NULL)
135
0
            goto err;
136
0
        break;
137
138
0
    case V_OCSP_CERTSTATUS_UNKNOWN:
139
0
        if ((cs->value.unknown = ASN1_NULL_new()) == NULL)
140
0
            goto err;
141
0
        break;
142
143
0
    default:
144
0
        goto err;
145
0
    }
146
0
    if (!(sk_OCSP_SINGLERESP_push(rsp->tbsResponseData.responses, single)))
147
0
        goto err;
148
0
    return single;
149
0
err:
150
0
    OCSP_SINGLERESP_free(single);
151
0
    return NULL;
152
0
}
153
154
/* Add a certificate to an OCSP request */
155
int OCSP_basic_add1_cert(OCSP_BASICRESP *resp, X509 *cert)
156
0
{
157
0
    return ossl_x509_add_cert_new(&resp->certs, cert, X509_ADD_FLAG_UP_REF);
158
0
}
159
160
/*
161
 * Sign an OCSP response using the parameters contained in the digest context,
162
 * set the responderID to the subject name in the signer's certificate, and
163
 * include one or more optional certificates in the response.
164
 */
165
int OCSP_basic_sign_ctx(OCSP_BASICRESP *brsp,
166
    X509 *signer, EVP_MD_CTX *ctx,
167
    const STACK_OF(X509) *certs, unsigned long flags)
168
0
{
169
0
    OCSP_RESPID *rid;
170
0
    EVP_PKEY_CTX *pkctx;
171
0
    EVP_PKEY *pkey;
172
173
0
    if (ctx == NULL || (pkctx = EVP_MD_CTX_get_pkey_ctx(ctx)) == NULL) {
174
0
        ERR_raise(ERR_LIB_OCSP, OCSP_R_NO_SIGNER_KEY);
175
0
        goto err;
176
0
    }
177
178
0
    pkey = EVP_PKEY_CTX_get0_pkey(pkctx);
179
0
    if (pkey == NULL || !X509_check_private_key(signer, pkey)) {
180
0
        ERR_raise(ERR_LIB_OCSP, OCSP_R_PRIVATE_KEY_DOES_NOT_MATCH_CERTIFICATE);
181
0
        goto err;
182
0
    }
183
184
0
    if (!(flags & OCSP_NOCERTS)) {
185
0
        if (!OCSP_basic_add1_cert(brsp, signer)
186
0
            || !X509_add_certs(brsp->certs, certs, X509_ADD_FLAG_UP_REF))
187
0
            goto err;
188
0
    }
189
190
0
    rid = &brsp->tbsResponseData.responderId;
191
0
    if (flags & OCSP_RESPID_KEY) {
192
0
        if (!OCSP_RESPID_set_by_key(rid, signer))
193
0
            goto err;
194
0
    } else if (!OCSP_RESPID_set_by_name(rid, signer)) {
195
0
        goto err;
196
0
    }
197
198
0
    if (!(flags & OCSP_NOTIME) && !X509_gmtime_adj(brsp->tbsResponseData.producedAt, 0))
199
0
        goto err;
200
201
    /*
202
     * Right now, I think that not doing double hashing is the right thing.
203
     * -- Richard Levitte
204
     */
205
0
    if (!OCSP_BASICRESP_sign_ctx(brsp, ctx, 0))
206
0
        goto err;
207
208
0
    return 1;
209
0
err:
210
0
    return 0;
211
0
}
212
213
int OCSP_basic_sign(OCSP_BASICRESP *brsp,
214
    X509 *signer, EVP_PKEY *key, const EVP_MD *dgst,
215
    const STACK_OF(X509) *certs, unsigned long flags)
216
0
{
217
0
    EVP_MD_CTX *ctx = EVP_MD_CTX_new();
218
0
    EVP_PKEY_CTX *pkctx = NULL;
219
0
    int i;
220
221
0
    if (ctx == NULL)
222
0
        return 0;
223
224
0
    if (!EVP_DigestSignInit_ex(ctx, &pkctx, EVP_MD_get0_name(dgst),
225
0
            signer->libctx, signer->propq, key, NULL)) {
226
0
        EVP_MD_CTX_free(ctx);
227
0
        return 0;
228
0
    }
229
0
    i = OCSP_basic_sign_ctx(brsp, signer, ctx, certs, flags);
230
0
    EVP_MD_CTX_free(ctx);
231
0
    return i;
232
0
}
233
234
int OCSP_RESPID_set_by_name(OCSP_RESPID *respid, X509 *cert)
235
0
{
236
0
    if (!X509_NAME_set(&respid->value.byName, X509_get_subject_name(cert)))
237
0
        return 0;
238
239
0
    respid->type = V_OCSP_RESPID_NAME;
240
241
0
    return 1;
242
0
}
243
244
int OCSP_RESPID_set_by_key_ex(OCSP_RESPID *respid, X509 *cert,
245
    OSSL_LIB_CTX *libctx, const char *propq)
246
0
{
247
0
    ASN1_OCTET_STRING *byKey = NULL;
248
0
    unsigned char md[SHA_DIGEST_LENGTH];
249
0
    EVP_MD *sha1 = EVP_MD_fetch(libctx, "SHA1", propq);
250
0
    int ret = 0;
251
252
0
    if (sha1 == NULL)
253
0
        return 0;
254
255
    /* RFC2560 requires SHA1 */
256
0
    if (!X509_pubkey_digest(cert, sha1, md, NULL))
257
0
        goto err;
258
259
0
    byKey = ASN1_OCTET_STRING_new();
260
0
    if (byKey == NULL)
261
0
        goto err;
262
263
0
    if (!(ASN1_OCTET_STRING_set(byKey, md, SHA_DIGEST_LENGTH))) {
264
0
        ASN1_OCTET_STRING_free(byKey);
265
0
        goto err;
266
0
    }
267
268
0
    respid->type = V_OCSP_RESPID_KEY;
269
0
    respid->value.byKey = byKey;
270
271
0
    ret = 1;
272
0
err:
273
0
    EVP_MD_free(sha1);
274
0
    return ret;
275
0
}
276
277
int OCSP_RESPID_set_by_key(OCSP_RESPID *respid, X509 *cert)
278
0
{
279
0
    if (cert == NULL)
280
0
        return 0;
281
0
    return OCSP_RESPID_set_by_key_ex(respid, cert, cert->libctx, cert->propq);
282
0
}
283
284
int OCSP_RESPID_match_ex(OCSP_RESPID *respid, X509 *cert, OSSL_LIB_CTX *libctx,
285
    const char *propq)
286
0
{
287
0
    EVP_MD *sha1 = NULL;
288
0
    int ret = 0;
289
290
0
    if (respid->type == V_OCSP_RESPID_KEY) {
291
0
        unsigned char md[SHA_DIGEST_LENGTH];
292
293
0
        sha1 = EVP_MD_fetch(libctx, "SHA1", propq);
294
0
        if (sha1 == NULL)
295
0
            goto err;
296
297
0
        if (respid->value.byKey == NULL)
298
0
            goto err;
299
300
        /* RFC2560 requires SHA1 */
301
0
        if (!X509_pubkey_digest(cert, sha1, md, NULL))
302
0
            goto err;
303
304
0
        ret = (ASN1_STRING_length(respid->value.byKey) == SHA_DIGEST_LENGTH)
305
0
            && (memcmp(ASN1_STRING_get0_data(respid->value.byKey), md,
306
0
                    SHA_DIGEST_LENGTH)
307
0
                == 0);
308
0
    } else if (respid->type == V_OCSP_RESPID_NAME) {
309
0
        if (respid->value.byName == NULL)
310
0
            return 0;
311
312
0
        return X509_NAME_cmp(respid->value.byName,
313
0
                   X509_get_subject_name(cert))
314
0
            == 0;
315
0
    }
316
317
0
err:
318
0
    EVP_MD_free(sha1);
319
0
    return ret;
320
0
}
321
322
int OCSP_RESPID_match(OCSP_RESPID *respid, X509 *cert)
323
0
{
324
0
    if (cert == NULL)
325
0
        return 0;
326
0
    return OCSP_RESPID_match_ex(respid, cert, cert->libctx, cert->propq);
327
0
}