/src/openssl/crypto/ocsp/ocsp_srv.c
Line | Count | Source |
1 | | /* |
2 | | * Copyright 2001-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/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 | | STACK_OF(X509) *certs, unsigned long flags) |
168 | 0 | { |
169 | 0 | OCSP_RESPID *rid; |
170 | 0 | EVP_PKEY *pkey; |
171 | |
|
172 | 0 | if (ctx == NULL || EVP_MD_CTX_get_pkey_ctx(ctx) == NULL) { |
173 | 0 | ERR_raise(ERR_LIB_OCSP, OCSP_R_NO_SIGNER_KEY); |
174 | 0 | goto err; |
175 | 0 | } |
176 | | |
177 | 0 | pkey = EVP_PKEY_CTX_get0_pkey(EVP_MD_CTX_get_pkey_ctx(ctx)); |
178 | 0 | if (pkey == NULL || !X509_check_private_key(signer, pkey)) { |
179 | 0 | ERR_raise(ERR_LIB_OCSP, OCSP_R_PRIVATE_KEY_DOES_NOT_MATCH_CERTIFICATE); |
180 | 0 | goto err; |
181 | 0 | } |
182 | | |
183 | 0 | if (!(flags & OCSP_NOCERTS)) { |
184 | 0 | if (!OCSP_basic_add1_cert(brsp, signer) |
185 | 0 | || !X509_add_certs(brsp->certs, certs, X509_ADD_FLAG_UP_REF)) |
186 | 0 | goto err; |
187 | 0 | } |
188 | | |
189 | 0 | rid = &brsp->tbsResponseData.responderId; |
190 | 0 | if (flags & OCSP_RESPID_KEY) { |
191 | 0 | if (!OCSP_RESPID_set_by_key(rid, signer)) |
192 | 0 | goto err; |
193 | 0 | } else if (!OCSP_RESPID_set_by_name(rid, signer)) { |
194 | 0 | goto err; |
195 | 0 | } |
196 | | |
197 | 0 | if (!(flags & OCSP_NOTIME) && !X509_gmtime_adj(brsp->tbsResponseData.producedAt, 0)) |
198 | 0 | goto err; |
199 | | |
200 | | /* |
201 | | * Right now, I think that not doing double hashing is the right thing. |
202 | | * -- Richard Levitte |
203 | | */ |
204 | 0 | if (!OCSP_BASICRESP_sign_ctx(brsp, ctx, 0)) |
205 | 0 | goto err; |
206 | | |
207 | 0 | return 1; |
208 | 0 | err: |
209 | 0 | return 0; |
210 | 0 | } |
211 | | |
212 | | int OCSP_basic_sign(OCSP_BASICRESP *brsp, |
213 | | X509 *signer, EVP_PKEY *key, const EVP_MD *dgst, |
214 | | STACK_OF(X509) *certs, unsigned long flags) |
215 | 0 | { |
216 | 0 | EVP_MD_CTX *ctx = EVP_MD_CTX_new(); |
217 | 0 | EVP_PKEY_CTX *pkctx = NULL; |
218 | 0 | int i; |
219 | |
|
220 | 0 | if (ctx == NULL) |
221 | 0 | return 0; |
222 | | |
223 | 0 | if (!EVP_DigestSignInit_ex(ctx, &pkctx, EVP_MD_get0_name(dgst), |
224 | 0 | signer->libctx, signer->propq, key, NULL)) { |
225 | 0 | EVP_MD_CTX_free(ctx); |
226 | 0 | return 0; |
227 | 0 | } |
228 | 0 | i = OCSP_basic_sign_ctx(brsp, signer, ctx, certs, flags); |
229 | 0 | EVP_MD_CTX_free(ctx); |
230 | 0 | return i; |
231 | 0 | } |
232 | | |
233 | | int OCSP_RESPID_set_by_name(OCSP_RESPID *respid, X509 *cert) |
234 | 0 | { |
235 | 0 | if (!X509_NAME_set(&respid->value.byName, X509_get_subject_name(cert))) |
236 | 0 | return 0; |
237 | | |
238 | 0 | respid->type = V_OCSP_RESPID_NAME; |
239 | |
|
240 | 0 | return 1; |
241 | 0 | } |
242 | | |
243 | | int OCSP_RESPID_set_by_key_ex(OCSP_RESPID *respid, X509 *cert, |
244 | | OSSL_LIB_CTX *libctx, const char *propq) |
245 | 0 | { |
246 | 0 | ASN1_OCTET_STRING *byKey = NULL; |
247 | 0 | unsigned char md[SHA_DIGEST_LENGTH]; |
248 | 0 | EVP_MD *sha1 = EVP_MD_fetch(libctx, "SHA1", propq); |
249 | 0 | int ret = 0; |
250 | |
|
251 | 0 | if (sha1 == NULL) |
252 | 0 | return 0; |
253 | | |
254 | | /* RFC2560 requires SHA1 */ |
255 | 0 | if (!X509_pubkey_digest(cert, sha1, md, NULL)) |
256 | 0 | goto err; |
257 | | |
258 | 0 | byKey = ASN1_OCTET_STRING_new(); |
259 | 0 | if (byKey == NULL) |
260 | 0 | goto err; |
261 | | |
262 | 0 | if (!(ASN1_OCTET_STRING_set(byKey, md, SHA_DIGEST_LENGTH))) { |
263 | 0 | ASN1_OCTET_STRING_free(byKey); |
264 | 0 | goto err; |
265 | 0 | } |
266 | | |
267 | 0 | respid->type = V_OCSP_RESPID_KEY; |
268 | 0 | respid->value.byKey = byKey; |
269 | |
|
270 | 0 | ret = 1; |
271 | 0 | err: |
272 | 0 | EVP_MD_free(sha1); |
273 | 0 | return ret; |
274 | 0 | } |
275 | | |
276 | | int OCSP_RESPID_set_by_key(OCSP_RESPID *respid, X509 *cert) |
277 | 0 | { |
278 | 0 | if (cert == NULL) |
279 | 0 | return 0; |
280 | 0 | return OCSP_RESPID_set_by_key_ex(respid, cert, cert->libctx, cert->propq); |
281 | 0 | } |
282 | | |
283 | | int OCSP_RESPID_match_ex(OCSP_RESPID *respid, X509 *cert, OSSL_LIB_CTX *libctx, |
284 | | const char *propq) |
285 | 0 | { |
286 | 0 | EVP_MD *sha1 = NULL; |
287 | 0 | int ret = 0; |
288 | |
|
289 | 0 | if (respid->type == V_OCSP_RESPID_KEY) { |
290 | 0 | unsigned char md[SHA_DIGEST_LENGTH]; |
291 | |
|
292 | 0 | sha1 = EVP_MD_fetch(libctx, "SHA1", propq); |
293 | 0 | if (sha1 == NULL) |
294 | 0 | goto err; |
295 | | |
296 | 0 | if (respid->value.byKey == NULL) |
297 | 0 | goto err; |
298 | | |
299 | | /* RFC2560 requires SHA1 */ |
300 | 0 | if (!X509_pubkey_digest(cert, sha1, md, NULL)) |
301 | 0 | goto err; |
302 | | |
303 | 0 | ret = (ASN1_STRING_length(respid->value.byKey) == SHA_DIGEST_LENGTH) |
304 | 0 | && (memcmp(ASN1_STRING_get0_data(respid->value.byKey), md, |
305 | 0 | SHA_DIGEST_LENGTH) |
306 | 0 | == 0); |
307 | 0 | } else if (respid->type == V_OCSP_RESPID_NAME) { |
308 | 0 | if (respid->value.byName == NULL) |
309 | 0 | return 0; |
310 | | |
311 | 0 | return X509_NAME_cmp(respid->value.byName, |
312 | 0 | X509_get_subject_name(cert)) |
313 | 0 | == 0; |
314 | 0 | } |
315 | | |
316 | 0 | err: |
317 | 0 | EVP_MD_free(sha1); |
318 | 0 | return ret; |
319 | 0 | } |
320 | | |
321 | | int OCSP_RESPID_match(OCSP_RESPID *respid, X509 *cert) |
322 | 0 | { |
323 | 0 | if (cert == NULL) |
324 | 0 | return 0; |
325 | 0 | return OCSP_RESPID_match_ex(respid, cert, cert->libctx, cert->propq); |
326 | 0 | } |