/src/openssl34/crypto/cmp/cmp_client.c
Line | Count | Source |
1 | | /* |
2 | | * Copyright 2007-2025 The OpenSSL Project Authors. All Rights Reserved. |
3 | | * Copyright Nokia 2007-2019 |
4 | | * Copyright Siemens AG 2015-2019 |
5 | | * |
6 | | * Licensed under the Apache License 2.0 (the "License"). You may not use |
7 | | * this file except in compliance with the License. You can obtain a copy |
8 | | * in the file LICENSE in the source distribution or at |
9 | | * https://www.openssl.org/source/license.html |
10 | | */ |
11 | | |
12 | | #include "cmp_local.h" |
13 | | #include "internal/cryptlib.h" |
14 | | |
15 | | /* explicit #includes not strictly needed since implied by the above: */ |
16 | | #include <openssl/bio.h> |
17 | | #include <openssl/cmp.h> |
18 | | #include <openssl/err.h> |
19 | | #include <openssl/evp.h> |
20 | | #include <openssl/x509v3.h> |
21 | | #include <openssl/cmp_util.h> |
22 | | |
23 | 0 | #define IS_CREP(t) ((t) == OSSL_CMP_PKIBODY_IP || (t) == OSSL_CMP_PKIBODY_CP \ |
24 | 0 | || (t) == OSSL_CMP_PKIBODY_KUP) |
25 | | |
26 | | /*- |
27 | | * Evaluate whether there's an exception (violating the standard) configured for |
28 | | * handling negative responses without protection or with invalid protection. |
29 | | * Returns 1 on acceptance, 0 on rejection, or -1 on (internal) error. |
30 | | */ |
31 | | static int unprotected_exception(const OSSL_CMP_CTX *ctx, |
32 | | const OSSL_CMP_MSG *rep, |
33 | | int invalid_protection, |
34 | | ossl_unused int expected_type) |
35 | 0 | { |
36 | 0 | int rcvd_type = OSSL_CMP_MSG_get_bodytype(rep /* may be NULL */); |
37 | 0 | const char *msg_type = NULL; |
38 | |
|
39 | 0 | if (!ossl_assert(ctx != NULL && rep != NULL)) |
40 | 0 | return -1; |
41 | | |
42 | 0 | if (!ctx->unprotectedErrors) |
43 | 0 | return 0; |
44 | | |
45 | 0 | switch (rcvd_type) { |
46 | 0 | case OSSL_CMP_PKIBODY_ERROR: |
47 | 0 | msg_type = "error response"; |
48 | 0 | break; |
49 | 0 | case OSSL_CMP_PKIBODY_RP: { |
50 | 0 | OSSL_CMP_PKISI *si = ossl_cmp_revrepcontent_get_pkisi(rep->body->value.rp, |
51 | 0 | OSSL_CMP_REVREQSID); |
52 | |
|
53 | 0 | if (si == NULL) |
54 | 0 | return -1; |
55 | 0 | if (ossl_cmp_pkisi_get_status(si) == OSSL_CMP_PKISTATUS_rejection) |
56 | 0 | msg_type = "revocation response message with rejection status"; |
57 | 0 | break; |
58 | 0 | } |
59 | 0 | case OSSL_CMP_PKIBODY_PKICONF: |
60 | 0 | msg_type = "PKI Confirmation message"; |
61 | 0 | break; |
62 | 0 | default: |
63 | 0 | if (IS_CREP(rcvd_type)) { |
64 | 0 | int any_rid = OSSL_CMP_CERTREQID_NONE; |
65 | 0 | OSSL_CMP_CERTREPMESSAGE *crepmsg = rep->body->value.ip; |
66 | 0 | OSSL_CMP_CERTRESPONSE *crep = ossl_cmp_certrepmessage_get0_certresponse(crepmsg, any_rid); |
67 | |
|
68 | 0 | if (sk_OSSL_CMP_CERTRESPONSE_num(crepmsg->response) > 1) |
69 | 0 | return -1; |
70 | 0 | if (crep == NULL) |
71 | 0 | return -1; |
72 | 0 | if (ossl_cmp_pkisi_get_status(crep->status) |
73 | 0 | == OSSL_CMP_PKISTATUS_rejection) |
74 | 0 | msg_type = "CertRepMessage with rejection status"; |
75 | 0 | } |
76 | 0 | } |
77 | 0 | if (msg_type == NULL) |
78 | 0 | return 0; |
79 | 0 | ossl_cmp_log2(WARN, ctx, "ignoring %s protection of %s", |
80 | 0 | invalid_protection ? "invalid" : "missing", msg_type); |
81 | 0 | return 1; |
82 | 0 | } |
83 | | |
84 | | /* Save error info from PKIStatusInfo field of a certresponse into ctx */ |
85 | | static int save_statusInfo(OSSL_CMP_CTX *ctx, OSSL_CMP_PKISI *si) |
86 | 0 | { |
87 | 0 | int i; |
88 | 0 | OSSL_CMP_PKIFREETEXT *ss; |
89 | |
|
90 | 0 | if (!ossl_assert(ctx != NULL && si != NULL)) |
91 | 0 | return 0; |
92 | | |
93 | 0 | ctx->status = ossl_cmp_pkisi_get_status(si); |
94 | 0 | if (ctx->status < OSSL_CMP_PKISTATUS_accepted) |
95 | 0 | return 0; |
96 | | |
97 | 0 | ctx->failInfoCode = ossl_cmp_pkisi_get_pkifailureinfo(si); |
98 | |
|
99 | 0 | if (!ossl_cmp_ctx_set0_statusString(ctx, sk_ASN1_UTF8STRING_new_null()) |
100 | 0 | || (ctx->statusString == NULL)) |
101 | 0 | return 0; |
102 | | |
103 | 0 | ss = si->statusString; /* may be NULL */ |
104 | 0 | for (i = 0; i < sk_ASN1_UTF8STRING_num(ss); i++) { |
105 | 0 | ASN1_UTF8STRING *str = sk_ASN1_UTF8STRING_value(ss, i); |
106 | 0 | ASN1_UTF8STRING *dup = ASN1_STRING_dup(str); |
107 | |
|
108 | 0 | if (dup == NULL || !sk_ASN1_UTF8STRING_push(ctx->statusString, dup)) { |
109 | 0 | ASN1_UTF8STRING_free(dup); |
110 | 0 | return 0; |
111 | 0 | } |
112 | 0 | } |
113 | 0 | return 1; |
114 | 0 | } |
115 | | |
116 | | static int is_crep_with_waiting(const OSSL_CMP_MSG *resp, int rid) |
117 | 0 | { |
118 | 0 | OSSL_CMP_CERTREPMESSAGE *crepmsg; |
119 | 0 | OSSL_CMP_CERTRESPONSE *crep; |
120 | 0 | int bt = OSSL_CMP_MSG_get_bodytype(resp); |
121 | |
|
122 | 0 | if (!IS_CREP(bt)) |
123 | 0 | return 0; |
124 | | |
125 | 0 | crepmsg = resp->body->value.ip; /* same for cp and kup */ |
126 | 0 | crep = ossl_cmp_certrepmessage_get0_certresponse(crepmsg, rid); |
127 | |
|
128 | 0 | return (crep != NULL |
129 | 0 | && ossl_cmp_pkisi_get_status(crep->status) |
130 | 0 | == OSSL_CMP_PKISTATUS_waiting); |
131 | 0 | } |
132 | | |
133 | | /*- |
134 | | * Perform the generic aspects of sending a request and receiving a response. |
135 | | * Returns 1 on success and provides the received PKIMESSAGE in *rep. |
136 | | * Returns 0 on error. |
137 | | * Regardless of success, caller is responsible for freeing *rep (unless NULL). |
138 | | */ |
139 | | static int send_receive_check(OSSL_CMP_CTX *ctx, const OSSL_CMP_MSG *req, |
140 | | OSSL_CMP_MSG **rep, int expected_type) |
141 | 0 | { |
142 | 0 | int begin_transaction = expected_type != OSSL_CMP_PKIBODY_POLLREP |
143 | 0 | && expected_type != OSSL_CMP_PKIBODY_PKICONF; |
144 | 0 | const char *req_type_str = ossl_cmp_bodytype_to_string(OSSL_CMP_MSG_get_bodytype(req)); |
145 | 0 | const char *expected_type_str = ossl_cmp_bodytype_to_string(expected_type); |
146 | 0 | int bak_msg_timeout = ctx->msg_timeout; |
147 | 0 | int bt; |
148 | 0 | time_t now = time(NULL); |
149 | 0 | int time_left; |
150 | 0 | OSSL_CMP_transfer_cb_t transfer_cb = ctx->transfer_cb; |
151 | |
|
152 | 0 | #ifndef OPENSSL_NO_HTTP |
153 | 0 | if (transfer_cb == NULL) |
154 | 0 | transfer_cb = OSSL_CMP_MSG_http_perform; |
155 | 0 | #endif |
156 | 0 | *rep = NULL; |
157 | |
|
158 | 0 | if (ctx->total_timeout != 0 /* not waiting indefinitely */) { |
159 | 0 | if (begin_transaction) |
160 | 0 | ctx->end_time = now + ctx->total_timeout; |
161 | 0 | if (now >= ctx->end_time) { |
162 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_TOTAL_TIMEOUT); |
163 | 0 | return 0; |
164 | 0 | } |
165 | 0 | if (!ossl_assert(ctx->end_time - now < INT_MAX)) { |
166 | | /* actually cannot happen due to assignment in initial_certreq() */ |
167 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_INVALID_ARGS); |
168 | 0 | return 0; |
169 | 0 | } |
170 | 0 | time_left = (int)(ctx->end_time - now); |
171 | 0 | if (ctx->msg_timeout == 0 || time_left < ctx->msg_timeout) |
172 | 0 | ctx->msg_timeout = time_left; |
173 | 0 | } |
174 | | |
175 | | /* should print error queue since transfer_cb may call ERR_clear_error() */ |
176 | 0 | OSSL_CMP_CTX_print_errors(ctx); |
177 | |
|
178 | 0 | if (ctx->server != NULL) |
179 | 0 | ossl_cmp_log1(INFO, ctx, "sending %s", req_type_str); |
180 | |
|
181 | 0 | *rep = (*transfer_cb)(ctx, req); |
182 | 0 | ctx->msg_timeout = bak_msg_timeout; |
183 | |
|
184 | 0 | if (*rep == NULL) { |
185 | 0 | ERR_raise_data(ERR_LIB_CMP, |
186 | 0 | ctx->total_timeout != 0 && time(NULL) >= ctx->end_time ? CMP_R_TOTAL_TIMEOUT : CMP_R_TRANSFER_ERROR, |
187 | 0 | "request sent: %s, expected response: %s", |
188 | 0 | req_type_str, expected_type_str); |
189 | 0 | return 0; |
190 | 0 | } |
191 | | |
192 | 0 | bt = OSSL_CMP_MSG_get_bodytype(*rep); |
193 | | /* |
194 | | * The body type in the 'bt' variable is not yet verified. |
195 | | * Still we use this preliminary value already for a progress report because |
196 | | * the following msg verification may also produce log entries and may fail. |
197 | | */ |
198 | 0 | ossl_cmp_log2(INFO, ctx, "received %s%s", ossl_cmp_bodytype_to_string(bt), |
199 | 0 | ossl_cmp_is_error_with_waiting(*rep) ? " (waiting)" : ""); |
200 | | |
201 | | /* copy received extraCerts to ctx->extraCertsIn so they can be retrieved */ |
202 | 0 | if (bt != OSSL_CMP_PKIBODY_POLLREP && bt != OSSL_CMP_PKIBODY_PKICONF |
203 | 0 | && !ossl_cmp_ctx_set1_extraCertsIn(ctx, (*rep)->extraCerts)) |
204 | 0 | return 0; |
205 | | |
206 | 0 | if (!ossl_cmp_msg_check_update(ctx, *rep, unprotected_exception, |
207 | 0 | expected_type)) |
208 | 0 | return 0; |
209 | | |
210 | | /* |
211 | | * rep can have the expected response type, which during polling is pollRep. |
212 | | * When polling, also any other non-error response (the final response) |
213 | | * is fine here. When not yet polling, delayed delivery may be initiated |
214 | | * by the server returning an error message with 'waiting' status (or a |
215 | | * response message of expected type ip/cp/kup with 'waiting' status). |
216 | | */ |
217 | 0 | if (bt == expected_type |
218 | 0 | || (expected_type == OSSL_CMP_PKIBODY_POLLREP |
219 | 0 | ? bt != OSSL_CMP_PKIBODY_ERROR |
220 | 0 | : ossl_cmp_is_error_with_waiting(*rep))) |
221 | 0 | return 1; |
222 | | |
223 | | /* received message type is not one of the expected ones (e.g., error) */ |
224 | 0 | ERR_raise(ERR_LIB_CMP, bt == OSSL_CMP_PKIBODY_ERROR ? CMP_R_RECEIVED_ERROR : CMP_R_UNEXPECTED_PKIBODY); /* in next line for mkerr.pl */ |
225 | |
|
226 | 0 | if (bt != OSSL_CMP_PKIBODY_ERROR) { |
227 | 0 | ERR_add_error_data(3, "message type is '", |
228 | 0 | ossl_cmp_bodytype_to_string(bt), "'"); |
229 | 0 | } else { |
230 | 0 | OSSL_CMP_ERRORMSGCONTENT *emc = (*rep)->body->value.error; |
231 | 0 | OSSL_CMP_PKISI *si = emc->pKIStatusInfo; |
232 | 0 | char buf[OSSL_CMP_PKISI_BUFLEN]; |
233 | |
|
234 | 0 | if (save_statusInfo(ctx, si) |
235 | 0 | && OSSL_CMP_CTX_snprint_PKIStatus(ctx, buf, |
236 | 0 | sizeof(buf)) |
237 | 0 | != NULL) |
238 | 0 | ERR_add_error_data(1, buf); |
239 | 0 | if (emc->errorCode != NULL |
240 | 0 | && BIO_snprintf(buf, sizeof(buf), "; errorCode: %08lX", |
241 | 0 | ASN1_INTEGER_get(emc->errorCode)) |
242 | 0 | > 0) |
243 | 0 | ERR_add_error_data(1, buf); |
244 | 0 | if (emc->errorDetails != NULL) { |
245 | 0 | char *text = ossl_sk_ASN1_UTF8STRING2text(emc->errorDetails, ", ", |
246 | 0 | OSSL_CMP_PKISI_BUFLEN - 1); |
247 | |
|
248 | 0 | if (text != NULL && *text != '\0') |
249 | 0 | ERR_add_error_data(2, "; errorDetails: ", text); |
250 | 0 | OPENSSL_free(text); |
251 | 0 | } |
252 | 0 | if (ctx->status != OSSL_CMP_PKISTATUS_rejection) { |
253 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_UNEXPECTED_PKISTATUS); |
254 | 0 | if (ctx->status == OSSL_CMP_PKISTATUS_waiting) |
255 | 0 | ctx->status = OSSL_CMP_PKISTATUS_rejection; |
256 | 0 | } |
257 | 0 | } |
258 | 0 | return 0; |
259 | 0 | } |
260 | | |
261 | | /*- |
262 | | * When a 'waiting' PKIStatus has been received, this function is used to |
263 | | * poll, which should yield a pollRep or the final response. |
264 | | * On receiving a pollRep, which includes a checkAfter value, it return this |
265 | | * value if sleep == 0, else it sleeps as long as indicated and retries. |
266 | | * |
267 | | * A transaction timeout is enabled if ctx->total_timeout is != 0. |
268 | | * In this case polling will continue until the timeout is reached and then |
269 | | * polling is done a last time even if this is before the "checkAfter" time. |
270 | | * |
271 | | * Returns -1 on receiving pollRep if sleep == 0, setting the checkAfter value. |
272 | | * Returns 1 on success and provides the received PKIMESSAGE in *rep. |
273 | | * In this case the caller is responsible for freeing *rep. |
274 | | * Returns 0 on error (which includes the cases that timeout has been reached |
275 | | * or a response with 'waiting' status has been received). |
276 | | */ |
277 | | static int poll_for_response(OSSL_CMP_CTX *ctx, int sleep, int rid, |
278 | | OSSL_CMP_MSG **rep, int *checkAfter) |
279 | 195 | { |
280 | 195 | OSSL_CMP_MSG *preq = NULL; |
281 | 195 | OSSL_CMP_MSG *prep = NULL; |
282 | | |
283 | 195 | ossl_cmp_info(ctx, |
284 | 195 | "received 'waiting' PKIStatus, starting to poll for response"); |
285 | 195 | *rep = NULL; |
286 | 195 | for (;;) { |
287 | 195 | if ((preq = ossl_cmp_pollReq_new(ctx, rid)) == NULL) |
288 | 195 | goto err; |
289 | | |
290 | 0 | if (!send_receive_check(ctx, preq, &prep, OSSL_CMP_PKIBODY_POLLREP)) |
291 | 0 | goto err; |
292 | | |
293 | | /* handle potential pollRep */ |
294 | 0 | if (OSSL_CMP_MSG_get_bodytype(prep) == OSSL_CMP_PKIBODY_POLLREP) { |
295 | 0 | OSSL_CMP_POLLREPCONTENT *prc = prep->body->value.pollRep; |
296 | 0 | OSSL_CMP_POLLREP *pollRep = NULL; |
297 | 0 | int64_t check_after; |
298 | 0 | char str[OSSL_CMP_PKISI_BUFLEN]; |
299 | 0 | int len; |
300 | |
|
301 | 0 | if (sk_OSSL_CMP_POLLREP_num(prc) > 1) { |
302 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_MULTIPLE_RESPONSES_NOT_SUPPORTED); |
303 | 0 | goto err; |
304 | 0 | } |
305 | 0 | pollRep = ossl_cmp_pollrepcontent_get0_pollrep(prc, rid); |
306 | 0 | if (pollRep == NULL) |
307 | 0 | goto err; |
308 | | |
309 | 0 | if (!ASN1_INTEGER_get_int64(&check_after, pollRep->checkAfter)) { |
310 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_BAD_CHECKAFTER_IN_POLLREP); |
311 | 0 | goto err; |
312 | 0 | } |
313 | 0 | if (check_after < 0 || (uint64_t)check_after > (sleep ? ULONG_MAX / 1000 : INT_MAX)) { |
314 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_CHECKAFTER_OUT_OF_RANGE); |
315 | 0 | if (BIO_snprintf(str, OSSL_CMP_PKISI_BUFLEN, "value = %jd", |
316 | 0 | check_after) |
317 | 0 | >= 0) |
318 | 0 | ERR_add_error_data(1, str); |
319 | 0 | goto err; |
320 | 0 | } |
321 | | |
322 | 0 | if (pollRep->reason == NULL |
323 | 0 | || (len = BIO_snprintf(str, OSSL_CMP_PKISI_BUFLEN, |
324 | 0 | " with reason = '")) |
325 | 0 | < 0) { |
326 | 0 | *str = '\0'; |
327 | 0 | } else { |
328 | 0 | char *text = ossl_sk_ASN1_UTF8STRING2text(pollRep->reason, ", ", |
329 | 0 | sizeof(str) - len - 2); |
330 | |
|
331 | 0 | if (text == NULL |
332 | 0 | || BIO_snprintf(str + len, sizeof(str) - len, |
333 | 0 | "%s'", text) |
334 | 0 | < 0) |
335 | 0 | *str = '\0'; |
336 | 0 | OPENSSL_free(text); |
337 | 0 | } |
338 | 0 | ossl_cmp_log2(INFO, ctx, |
339 | 0 | "received polling response%s; checkAfter = %ld seconds", |
340 | 0 | str, check_after); |
341 | |
|
342 | 0 | if (ctx->total_timeout != 0) { /* timeout is not infinite */ |
343 | 0 | const int exp = OSSL_CMP_EXPECTED_RESP_TIME; |
344 | 0 | int64_t time_left = (int64_t)(ctx->end_time - exp - time(NULL)); |
345 | |
|
346 | 0 | if (time_left <= 0) { |
347 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_TOTAL_TIMEOUT); |
348 | 0 | goto err; |
349 | 0 | } |
350 | 0 | if (time_left < check_after) |
351 | 0 | check_after = time_left; |
352 | | /* poll one last time just when timeout was reached */ |
353 | 0 | } |
354 | | |
355 | 0 | OSSL_CMP_MSG_free(preq); |
356 | 0 | preq = NULL; |
357 | 0 | OSSL_CMP_MSG_free(prep); |
358 | 0 | prep = NULL; |
359 | 0 | if (sleep) { |
360 | 0 | OSSL_sleep((unsigned long)(1000 * check_after)); |
361 | 0 | } else { |
362 | 0 | if (checkAfter != NULL) |
363 | 0 | *checkAfter = (int)check_after; |
364 | 0 | return -1; /* exits the loop */ |
365 | 0 | } |
366 | 0 | } else if (is_crep_with_waiting(prep, rid) |
367 | 0 | || ossl_cmp_is_error_with_waiting(prep)) { |
368 | | /* received status must not be 'waiting' */ |
369 | 0 | (void)ossl_cmp_exchange_error(ctx, OSSL_CMP_PKISTATUS_rejection, |
370 | 0 | OSSL_CMP_CTX_FAILINFO_badRequest, |
371 | 0 | "polling already started", |
372 | 0 | 0 /* errorCode */, NULL); |
373 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_UNEXPECTED_PKISTATUS); |
374 | 0 | goto err; |
375 | 0 | } else { |
376 | 0 | ossl_cmp_info(ctx, "received final response after polling"); |
377 | 0 | if (!ossl_cmp_ctx_set1_first_senderNonce(ctx, NULL)) |
378 | 0 | goto err; |
379 | 0 | break; |
380 | 0 | } |
381 | 0 | } |
382 | 0 | if (prep == NULL) |
383 | 0 | goto err; |
384 | | |
385 | 0 | OSSL_CMP_MSG_free(preq); |
386 | 0 | *rep = prep; |
387 | |
|
388 | 0 | return 1; |
389 | 195 | err: |
390 | 195 | (void)ossl_cmp_ctx_set1_first_senderNonce(ctx, NULL); |
391 | 195 | OSSL_CMP_MSG_free(preq); |
392 | 195 | OSSL_CMP_MSG_free(prep); |
393 | 195 | return 0; |
394 | 0 | } |
395 | | |
396 | | static int save_senderNonce_if_waiting(OSSL_CMP_CTX *ctx, |
397 | | const OSSL_CMP_MSG *rep, int rid) |
398 | 0 | { |
399 | | /* |
400 | | * Lightweight CMP Profile section 4.4 states: the senderNonce of the |
401 | | * preceding request message because this value will be needed for checking |
402 | | * the recipNonce of the final response to be received after polling. |
403 | | */ |
404 | 0 | if ((is_crep_with_waiting(rep, rid) |
405 | 0 | || ossl_cmp_is_error_with_waiting(rep)) |
406 | 0 | && !ossl_cmp_ctx_set1_first_senderNonce(ctx, ctx->senderNonce)) |
407 | 0 | return 0; |
408 | | |
409 | 0 | return 1; |
410 | 0 | } |
411 | | |
412 | | /* |
413 | | * Send request and get response possibly with polling initiated by error msg. |
414 | | * Polling for ip/cp/kup/ with 'waiting' status is handled by cert_response(). |
415 | | */ |
416 | | static int send_receive_also_delayed(OSSL_CMP_CTX *ctx, const OSSL_CMP_MSG *req, |
417 | | OSSL_CMP_MSG **rep, int expected_type) |
418 | 0 | { |
419 | |
|
420 | 0 | if (!send_receive_check(ctx, req, rep, expected_type)) |
421 | 0 | return 0; |
422 | | |
423 | 0 | if (ossl_cmp_is_error_with_waiting(*rep)) { |
424 | 0 | if (!save_senderNonce_if_waiting(ctx, *rep, OSSL_CMP_CERTREQID_NONE)) |
425 | 0 | return 0; |
426 | | /* not modifying ctx->status during certConf and error exchanges */ |
427 | 0 | if (expected_type != OSSL_CMP_PKIBODY_PKICONF |
428 | 0 | && !save_statusInfo(ctx, (*rep)->body->value.error->pKIStatusInfo)) |
429 | 0 | return 0; |
430 | | |
431 | 0 | OSSL_CMP_MSG_free(*rep); |
432 | 0 | *rep = NULL; |
433 | |
|
434 | 0 | if (poll_for_response(ctx, 1 /* can sleep */, OSSL_CMP_CERTREQID_NONE, |
435 | 0 | rep, NULL /* checkAfter */) |
436 | 0 | <= 0) { |
437 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_POLLING_FAILED); |
438 | 0 | return 0; |
439 | 0 | } |
440 | 0 | } |
441 | 0 | if (OSSL_CMP_MSG_get_bodytype(*rep) != expected_type) { |
442 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_UNEXPECTED_PKIBODY); |
443 | 0 | return 0; |
444 | 0 | } |
445 | | |
446 | 0 | return 1; |
447 | 0 | } |
448 | | /* |
449 | | * Send certConf for IR, CR or KUR sequences and check response, |
450 | | * not modifying ctx->status during the certConf exchange |
451 | | */ |
452 | | int ossl_cmp_exchange_certConf(OSSL_CMP_CTX *ctx, int certReqId, |
453 | | int fail_info, const char *txt) |
454 | 0 | { |
455 | 0 | OSSL_CMP_MSG *certConf; |
456 | 0 | OSSL_CMP_MSG *PKIconf = NULL; |
457 | 0 | int res = 0; |
458 | | |
459 | | /* OSSL_CMP_certConf_new() also checks if all necessary options are set */ |
460 | 0 | certConf = ossl_cmp_certConf_new(ctx, certReqId, fail_info, txt); |
461 | 0 | if (certConf == NULL) |
462 | 0 | goto err; |
463 | | |
464 | 0 | res = send_receive_also_delayed(ctx, certConf, &PKIconf, |
465 | 0 | OSSL_CMP_PKIBODY_PKICONF); |
466 | |
|
467 | 0 | err: |
468 | 0 | OSSL_CMP_MSG_free(certConf); |
469 | 0 | OSSL_CMP_MSG_free(PKIconf); |
470 | 0 | return res; |
471 | 0 | } |
472 | | |
473 | | /* Send given error and check response */ |
474 | | int ossl_cmp_exchange_error(OSSL_CMP_CTX *ctx, int status, int fail_info, |
475 | | const char *txt, int errorCode, const char *details) |
476 | 0 | { |
477 | 0 | OSSL_CMP_MSG *error = NULL; |
478 | 0 | OSSL_CMP_PKISI *si = NULL; |
479 | 0 | OSSL_CMP_MSG *PKIconf = NULL; |
480 | 0 | int res = 0; |
481 | | |
482 | | /* not overwriting ctx->status on error exchange */ |
483 | 0 | if ((si = OSSL_CMP_STATUSINFO_new(status, fail_info, txt)) == NULL) |
484 | 0 | goto err; |
485 | | /* ossl_cmp_error_new() also checks if all necessary options are set */ |
486 | 0 | if ((error = ossl_cmp_error_new(ctx, si, errorCode, details, 0)) == NULL) |
487 | 0 | goto err; |
488 | | |
489 | 0 | res = send_receive_also_delayed(ctx, error, |
490 | 0 | &PKIconf, OSSL_CMP_PKIBODY_PKICONF); |
491 | |
|
492 | 0 | err: |
493 | 0 | OSSL_CMP_MSG_free(error); |
494 | 0 | OSSL_CMP_PKISI_free(si); |
495 | 0 | OSSL_CMP_MSG_free(PKIconf); |
496 | 0 | return res; |
497 | 0 | } |
498 | | |
499 | | /*- |
500 | | * Retrieve a copy of the certificate, if any, from the given CertResponse. |
501 | | * Take into account PKIStatusInfo of CertResponse in ctx, report it on error. |
502 | | * Returns NULL if not found or on error. |
503 | | */ |
504 | | static X509 *get1_cert_status(OSSL_CMP_CTX *ctx, int bodytype, |
505 | | OSSL_CMP_CERTRESPONSE *crep) |
506 | 0 | { |
507 | 0 | char buf[OSSL_CMP_PKISI_BUFLEN]; |
508 | 0 | X509 *crt = NULL; |
509 | |
|
510 | 0 | if (!ossl_assert(ctx != NULL && crep != NULL)) |
511 | 0 | return NULL; |
512 | | |
513 | 0 | switch (ossl_cmp_pkisi_get_status(crep->status)) { |
514 | 0 | case OSSL_CMP_PKISTATUS_waiting: |
515 | 0 | ossl_cmp_err(ctx, |
516 | 0 | "received \"waiting\" status for cert when actually aiming to extract cert"); |
517 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_ENCOUNTERED_WAITING); |
518 | 0 | goto err; |
519 | 0 | case OSSL_CMP_PKISTATUS_grantedWithMods: |
520 | 0 | ossl_cmp_warn(ctx, "received \"grantedWithMods\" for certificate"); |
521 | 0 | break; |
522 | 0 | case OSSL_CMP_PKISTATUS_accepted: |
523 | 0 | break; |
524 | | /* get all information in case of a rejection before going to error */ |
525 | 0 | case OSSL_CMP_PKISTATUS_rejection: |
526 | 0 | ossl_cmp_err(ctx, "received \"rejection\" status rather than cert"); |
527 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_REQUEST_REJECTED_BY_SERVER); |
528 | 0 | goto err; |
529 | 0 | case OSSL_CMP_PKISTATUS_revocationWarning: |
530 | 0 | ossl_cmp_warn(ctx, |
531 | 0 | "received \"revocationWarning\" - a revocation of the cert is imminent"); |
532 | 0 | break; |
533 | 0 | case OSSL_CMP_PKISTATUS_revocationNotification: |
534 | 0 | ossl_cmp_warn(ctx, |
535 | 0 | "received \"revocationNotification\" - a revocation of the cert has occurred"); |
536 | 0 | break; |
537 | 0 | case OSSL_CMP_PKISTATUS_keyUpdateWarning: |
538 | 0 | if (bodytype != OSSL_CMP_PKIBODY_KUR) { |
539 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_ENCOUNTERED_KEYUPDATEWARNING); |
540 | 0 | goto err; |
541 | 0 | } |
542 | 0 | break; |
543 | 0 | default: |
544 | 0 | ossl_cmp_log1(ERROR, ctx, |
545 | 0 | "received unsupported PKIStatus %d for certificate", |
546 | 0 | ctx->status); |
547 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_UNKNOWN_PKISTATUS); |
548 | 0 | goto err; |
549 | 0 | } |
550 | 0 | crt = ossl_cmp_certresponse_get1_cert(ctx, crep); |
551 | 0 | if (crt == NULL) /* according to PKIStatus, we can expect a cert */ |
552 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_CERTIFICATE_NOT_FOUND); |
553 | |
|
554 | 0 | return crt; |
555 | | |
556 | 0 | err: |
557 | 0 | if (OSSL_CMP_CTX_snprint_PKIStatus(ctx, buf, sizeof(buf)) != NULL) |
558 | 0 | ERR_add_error_data(1, buf); |
559 | 0 | return NULL; |
560 | 0 | } |
561 | | |
562 | | /*- |
563 | | * Callback fn validating that the new certificate can be verified, using |
564 | | * ctx->certConf_cb_arg, which has been initialized using opt_out_trusted, and |
565 | | * ctx->untrusted, which at this point already contains msg->extraCerts. |
566 | | * Returns 0 on acceptance, else a bit field reflecting PKIFailureInfo. |
567 | | * Quoting from RFC 4210 section 5.1. Overall PKI Message: |
568 | | * The extraCerts field can contain certificates that may be useful to |
569 | | * the recipient. For example, this can be used by a CA or RA to |
570 | | * present an end entity with certificates that it needs to verify its |
571 | | * own new certificate (if, for example, the CA that issued the end |
572 | | * entity's certificate is not a root CA for the end entity). Note that |
573 | | * this field does not necessarily contain a certification path; the |
574 | | * recipient may have to sort, select from, or otherwise process the |
575 | | * extra certificates in order to use them. |
576 | | * Note: While often handy, there is no hard requirement by CMP that |
577 | | * an EE must be able to validate the certificates it gets enrolled. |
578 | | */ |
579 | | int OSSL_CMP_certConf_cb(OSSL_CMP_CTX *ctx, X509 *cert, int fail_info, |
580 | | const char **text) |
581 | 0 | { |
582 | 0 | X509_STORE *out_trusted = OSSL_CMP_CTX_get_certConf_cb_arg(ctx); |
583 | 0 | STACK_OF(X509) *chain = NULL; |
584 | |
|
585 | 0 | (void)text; /* make (artificial) use of var to prevent compiler warning */ |
586 | |
|
587 | 0 | if (fail_info != 0) /* accept any error flagged by CMP core library */ |
588 | 0 | return fail_info; |
589 | | |
590 | 0 | if (out_trusted == NULL) { |
591 | 0 | ossl_cmp_debug(ctx, "trying to build chain for newly enrolled cert"); |
592 | 0 | chain = X509_build_chain(cert, ctx->untrusted, out_trusted, |
593 | 0 | 0, ctx->libctx, ctx->propq); |
594 | 0 | } else { |
595 | 0 | X509_STORE_CTX *csc = X509_STORE_CTX_new_ex(ctx->libctx, ctx->propq); |
596 | |
|
597 | 0 | ossl_cmp_debug(ctx, "validating newly enrolled cert"); |
598 | 0 | if (csc == NULL) |
599 | 0 | goto err; |
600 | 0 | if (!X509_STORE_CTX_init(csc, out_trusted, cert, ctx->untrusted)) |
601 | 0 | goto err; |
602 | | /* disable any cert status/revocation checking etc. */ |
603 | 0 | X509_VERIFY_PARAM_clear_flags(X509_STORE_CTX_get0_param(csc), |
604 | 0 | ~(X509_V_FLAG_USE_CHECK_TIME |
605 | 0 | | X509_V_FLAG_NO_CHECK_TIME |
606 | 0 | | X509_V_FLAG_PARTIAL_CHAIN |
607 | 0 | | X509_V_FLAG_POLICY_CHECK)); |
608 | 0 | if (X509_verify_cert(csc) <= 0) |
609 | 0 | goto err; |
610 | | |
611 | 0 | if (!ossl_x509_add_certs_new(&chain, X509_STORE_CTX_get0_chain(csc), |
612 | 0 | X509_ADD_FLAG_UP_REF | X509_ADD_FLAG_NO_DUP |
613 | 0 | | X509_ADD_FLAG_NO_SS)) { |
614 | 0 | sk_X509_free(chain); |
615 | 0 | chain = NULL; |
616 | 0 | } |
617 | 0 | err: |
618 | 0 | X509_STORE_CTX_free(csc); |
619 | 0 | } |
620 | | |
621 | 0 | if (sk_X509_num(chain) > 0) |
622 | 0 | X509_free(sk_X509_shift(chain)); /* remove leaf (EE) cert */ |
623 | 0 | if (out_trusted != NULL) { |
624 | 0 | if (chain == NULL) { |
625 | 0 | ossl_cmp_err(ctx, "failed to validate newly enrolled cert"); |
626 | 0 | fail_info = 1 << OSSL_CMP_PKIFAILUREINFO_incorrectData; |
627 | 0 | } else { |
628 | 0 | ossl_cmp_debug(ctx, |
629 | 0 | "success validating newly enrolled cert"); |
630 | 0 | } |
631 | 0 | } else if (chain == NULL) { |
632 | 0 | ossl_cmp_warn(ctx, "could not build approximate chain for newly enrolled cert, resorting to received extraCerts"); |
633 | 0 | chain = OSSL_CMP_CTX_get1_extraCertsIn(ctx); |
634 | 0 | } else { |
635 | 0 | ossl_cmp_debug(ctx, |
636 | 0 | "success building approximate chain for newly enrolled cert"); |
637 | 0 | } |
638 | 0 | (void)ossl_cmp_ctx_set1_newChain(ctx, chain); |
639 | 0 | OSSL_STACK_OF_X509_free(chain); |
640 | |
|
641 | 0 | return fail_info; |
642 | 0 | } |
643 | | |
644 | | /*- |
645 | | * Perform the generic handling of certificate responses for IR/CR/KUR/P10CR. |
646 | | * |rid| must be OSSL_CMP_CERTREQID_NONE if not available, namely for p10cr |
647 | | * Returns -1 on receiving pollRep if sleep == 0, setting the checkAfter value. |
648 | | * Returns 1 on success and provides the received PKIMESSAGE in *resp. |
649 | | * Returns 0 on error (which includes the case that timeout has been reached). |
650 | | * Regardless of success, caller is responsible for freeing *resp (unless NULL). |
651 | | */ |
652 | | static int cert_response(OSSL_CMP_CTX *ctx, int sleep, int rid, |
653 | | OSSL_CMP_MSG **resp, int *checkAfter, |
654 | | ossl_unused int req_type, |
655 | | ossl_unused int expected_type) |
656 | 0 | { |
657 | 0 | EVP_PKEY *rkey = ossl_cmp_ctx_get0_newPubkey(ctx); |
658 | 0 | int fail_info = 0; /* no failure */ |
659 | 0 | const char *txt = NULL; |
660 | 0 | OSSL_CMP_CERTREPMESSAGE *crepmsg = NULL; |
661 | 0 | OSSL_CMP_CERTRESPONSE *crep = NULL; |
662 | 0 | OSSL_CMP_certConf_cb_t cb; |
663 | 0 | X509 *cert; |
664 | 0 | char *subj = NULL; |
665 | 0 | int ret = 1; |
666 | 0 | int rcvd_type; |
667 | 0 | OSSL_CMP_PKISI *si; |
668 | |
|
669 | 0 | if (!ossl_assert(ctx != NULL)) |
670 | 0 | return 0; |
671 | | |
672 | 0 | retry: |
673 | 0 | rcvd_type = OSSL_CMP_MSG_get_bodytype(*resp); |
674 | 0 | if (IS_CREP(rcvd_type)) { |
675 | 0 | crepmsg = (*resp)->body->value.ip; /* same for cp and kup */ |
676 | 0 | if (sk_OSSL_CMP_CERTRESPONSE_num(crepmsg->response) > 1) { |
677 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_MULTIPLE_RESPONSES_NOT_SUPPORTED); |
678 | 0 | return 0; |
679 | 0 | } |
680 | 0 | crep = ossl_cmp_certrepmessage_get0_certresponse(crepmsg, rid); |
681 | 0 | if (crep == NULL) |
682 | 0 | return 0; |
683 | 0 | si = crep->status; |
684 | |
|
685 | 0 | if (rid == OSSL_CMP_CERTREQID_NONE) { |
686 | | /* for OSSL_CMP_PKIBODY_P10CR learn CertReqId from response */ |
687 | 0 | rid = ossl_cmp_asn1_get_int(crep->certReqId); |
688 | 0 | if (rid < OSSL_CMP_CERTREQID_NONE) { |
689 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_BAD_REQUEST_ID); |
690 | 0 | return 0; |
691 | 0 | } |
692 | 0 | } |
693 | 0 | } else if (rcvd_type == OSSL_CMP_PKIBODY_ERROR) { |
694 | 0 | si = (*resp)->body->value.error->pKIStatusInfo; |
695 | 0 | } else { |
696 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_UNEXPECTED_PKIBODY); |
697 | 0 | return 0; |
698 | 0 | } |
699 | | |
700 | 0 | if (!save_statusInfo(ctx, si)) |
701 | 0 | return 0; |
702 | | |
703 | 0 | if (ossl_cmp_pkisi_get_status(si) == OSSL_CMP_PKISTATUS_waiting) { |
704 | | /* |
705 | | * Here we allow both and error message with waiting indication |
706 | | * as well as a certificate response with waiting indication, where |
707 | | * its flavor (ip, cp, or kup) may not strictly match ir/cr/p10cr/kur. |
708 | | */ |
709 | 0 | OSSL_CMP_MSG_free(*resp); |
710 | 0 | *resp = NULL; |
711 | 0 | if ((ret = poll_for_response(ctx, sleep, rid, resp, checkAfter)) != 0) { |
712 | 0 | if (ret == -1) /* at this point implies sleep == 0 */ |
713 | 0 | return ret; /* waiting */ |
714 | 0 | goto retry; /* got some response other than pollRep */ |
715 | 0 | } else { |
716 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_POLLING_FAILED); |
717 | 0 | return 0; |
718 | 0 | } |
719 | 0 | } |
720 | | |
721 | | /* at this point, we have received ip/cp/kup/error without waiting */ |
722 | 0 | if (rcvd_type == OSSL_CMP_PKIBODY_ERROR) { |
723 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_RECEIVED_ERROR); |
724 | 0 | return 0; |
725 | 0 | } |
726 | | /* here we are strict on the flavor of ip/cp/kup: must match request */ |
727 | 0 | if (rcvd_type != expected_type) { |
728 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_UNEXPECTED_PKIBODY); |
729 | 0 | return 0; |
730 | 0 | } |
731 | | |
732 | 0 | cert = get1_cert_status(ctx, (*resp)->body->type, crep); |
733 | 0 | if (cert == NULL) { |
734 | 0 | ERR_add_error_data(1, "; cannot extract certificate from response"); |
735 | 0 | return 0; |
736 | 0 | } |
737 | 0 | if (!ossl_cmp_ctx_set0_newCert(ctx, cert)) { |
738 | 0 | X509_free(cert); |
739 | 0 | return 0; |
740 | 0 | } |
741 | | |
742 | | /* |
743 | | * if the CMP server returned certificates in the caPubs field, copy them |
744 | | * to the context so that they can be retrieved if necessary |
745 | | */ |
746 | 0 | if (crepmsg != NULL && crepmsg->caPubs != NULL |
747 | 0 | && !ossl_cmp_ctx_set1_caPubs(ctx, crepmsg->caPubs)) |
748 | 0 | return 0; |
749 | | |
750 | 0 | subj = X509_NAME_oneline(X509_get_subject_name(cert), NULL, 0); |
751 | 0 | if (rkey != NULL |
752 | | /* X509_check_private_key() also works if rkey is just public key */ |
753 | 0 | && !(X509_check_private_key(ctx->newCert, rkey))) { |
754 | 0 | fail_info = 1 << OSSL_CMP_PKIFAILUREINFO_incorrectData; |
755 | 0 | txt = "public key in new certificate does not match our enrollment key"; |
756 | | /*- |
757 | | * not calling (void)ossl_cmp_exchange_error(ctx, |
758 | | * OSSL_CMP_PKISTATUS_rejection, fail_info, txt) |
759 | | * not throwing CMP_R_CERTIFICATE_NOT_ACCEPTED with txt |
760 | | * not returning 0 |
761 | | * since we better leave this for the certConf_cb to decide |
762 | | */ |
763 | 0 | } |
764 | | |
765 | | /* |
766 | | * Execute the certification checking callback function, |
767 | | * which can determine whether to accept a newly enrolled certificate. |
768 | | * It may overrule the pre-decision reflected in 'fail_info' and '*txt'. |
769 | | */ |
770 | 0 | cb = ctx->certConf_cb != NULL ? ctx->certConf_cb : OSSL_CMP_certConf_cb; |
771 | 0 | if ((fail_info = cb(ctx, ctx->newCert, fail_info, &txt)) != 0 |
772 | 0 | && txt == NULL) |
773 | 0 | txt = "CMP client did not accept it"; |
774 | 0 | if (fail_info != 0) /* immediately log error before any certConf exchange */ |
775 | 0 | ossl_cmp_log1(ERROR, ctx, |
776 | 0 | "rejecting newly enrolled cert with subject: %s", subj); |
777 | | /* |
778 | | * certConf exchange should better be moved to do_certreq_seq() such that |
779 | | * also more low-level errors with CertReqMessages get reported to server |
780 | | */ |
781 | 0 | if (!ctx->disableConfirm |
782 | 0 | && !ossl_cmp_hdr_has_implicitConfirm((*resp)->header)) { |
783 | 0 | if (!ossl_cmp_exchange_certConf(ctx, rid, fail_info, txt)) |
784 | 0 | ret = 0; |
785 | 0 | } |
786 | | |
787 | | /* not throwing failure earlier as transfer_cb may call ERR_clear_error() */ |
788 | 0 | if (fail_info != 0) { |
789 | 0 | ERR_raise_data(ERR_LIB_CMP, CMP_R_CERTIFICATE_NOT_ACCEPTED, |
790 | 0 | "rejecting newly enrolled cert with subject: %s; %s", |
791 | 0 | subj, txt); |
792 | 0 | ctx->status = OSSL_CMP_PKISTATUS_rejection; |
793 | 0 | ret = 0; |
794 | 0 | } |
795 | 0 | OPENSSL_free(subj); |
796 | 0 | return ret; |
797 | 0 | } |
798 | | |
799 | | static int initial_certreq(OSSL_CMP_CTX *ctx, |
800 | | int req_type, const OSSL_CRMF_MSG *crm, |
801 | | OSSL_CMP_MSG **p_rep, int rep_type) |
802 | 1.25k | { |
803 | 1.25k | OSSL_CMP_MSG *req; |
804 | 1.25k | int res; |
805 | | |
806 | 1.25k | ctx->status = OSSL_CMP_PKISTATUS_request; |
807 | 1.25k | if (!ossl_cmp_ctx_set0_newCert(ctx, NULL)) |
808 | 0 | return 0; |
809 | | |
810 | | /* also checks if all necessary options are set */ |
811 | 1.25k | if ((req = ossl_cmp_certreq_new(ctx, req_type, crm)) == NULL) |
812 | 1.25k | return 0; |
813 | | |
814 | 0 | ctx->status = OSSL_CMP_PKISTATUS_trans; |
815 | 0 | res = send_receive_check(ctx, req, p_rep, rep_type); |
816 | 0 | OSSL_CMP_MSG_free(req); |
817 | 0 | return res; |
818 | 1.25k | } |
819 | | |
820 | | int OSSL_CMP_try_certreq(OSSL_CMP_CTX *ctx, int req_type, |
821 | | const OSSL_CRMF_MSG *crm, int *checkAfter) |
822 | 195 | { |
823 | 195 | OSSL_CMP_MSG *rep = NULL; |
824 | 195 | int is_p10 = req_type == OSSL_CMP_PKIBODY_P10CR; |
825 | 195 | int rid = is_p10 ? OSSL_CMP_CERTREQID_NONE : OSSL_CMP_CERTREQID; |
826 | 195 | int rep_type = is_p10 ? OSSL_CMP_PKIBODY_CP : req_type + 1; |
827 | 195 | int res = 0; |
828 | | |
829 | 195 | if (ctx == NULL) { |
830 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); |
831 | 0 | return 0; |
832 | 0 | } |
833 | | |
834 | 195 | if (ctx->status != OSSL_CMP_PKISTATUS_waiting) { /* not polling already */ |
835 | 0 | if (!initial_certreq(ctx, req_type, crm, &rep, rep_type)) |
836 | 0 | goto err; |
837 | | |
838 | 0 | if (!save_senderNonce_if_waiting(ctx, rep, rid)) |
839 | 0 | goto err; |
840 | 195 | } else { |
841 | 195 | if (req_type < 0) |
842 | 0 | return ossl_cmp_exchange_error(ctx, OSSL_CMP_PKISTATUS_rejection, |
843 | 0 | 0, "polling aborted", |
844 | 0 | 0 /* errorCode */, "by application"); |
845 | 195 | res = poll_for_response(ctx, 0 /* no sleep */, rid, &rep, checkAfter); |
846 | 195 | if (res <= 0) /* waiting or error */ |
847 | 195 | return res; |
848 | 195 | } |
849 | 0 | res = cert_response(ctx, 0 /* no sleep */, rid, &rep, checkAfter, |
850 | 0 | req_type, rep_type); |
851 | |
|
852 | 0 | err: |
853 | 0 | OSSL_CMP_MSG_free(rep); |
854 | 0 | return res; |
855 | 0 | } |
856 | | |
857 | | /*- |
858 | | * Do the full sequence CR/IR/KUR/P10CR, CP/IP/KUP/CP, |
859 | | * certConf, PKIconf, and polling if required. |
860 | | * Will sleep as long as indicated by the server (according to checkAfter). |
861 | | * All enrollment options need to be present in the context. |
862 | | * Returns pointer to received certificate, or NULL if none was received. |
863 | | */ |
864 | | X509 *OSSL_CMP_exec_certreq(OSSL_CMP_CTX *ctx, int req_type, |
865 | | const OSSL_CRMF_MSG *crm) |
866 | 1.05k | { |
867 | 1.05k | OSSL_CMP_MSG *rep = NULL; |
868 | 1.05k | int is_p10 = req_type == OSSL_CMP_PKIBODY_P10CR; |
869 | 1.05k | int rid = is_p10 ? OSSL_CMP_CERTREQID_NONE : OSSL_CMP_CERTREQID; |
870 | 1.05k | int rep_type = is_p10 ? OSSL_CMP_PKIBODY_CP : req_type + 1; |
871 | 1.05k | X509 *result = NULL; |
872 | | |
873 | 1.05k | if (ctx == NULL) { |
874 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_NULL_ARGUMENT); |
875 | 0 | return NULL; |
876 | 0 | } |
877 | | |
878 | 1.05k | if (!initial_certreq(ctx, req_type, crm, &rep, rep_type)) |
879 | 1.05k | goto err; |
880 | | |
881 | 0 | if (!save_senderNonce_if_waiting(ctx, rep, rid)) |
882 | 0 | goto err; |
883 | | |
884 | 0 | if (cert_response(ctx, 1 /* sleep */, rid, &rep, NULL, req_type, rep_type) |
885 | 0 | <= 0) |
886 | 0 | goto err; |
887 | | |
888 | 0 | result = ctx->newCert; |
889 | 1.05k | err: |
890 | 1.05k | OSSL_CMP_MSG_free(rep); |
891 | 1.05k | return result; |
892 | 0 | } |
893 | | |
894 | | int OSSL_CMP_exec_RR_ses(OSSL_CMP_CTX *ctx) |
895 | 144 | { |
896 | 144 | OSSL_CMP_MSG *rr = NULL; |
897 | 144 | OSSL_CMP_MSG *rp = NULL; |
898 | 144 | const int num_RevDetails = 1; |
899 | 144 | const int rsid = OSSL_CMP_REVREQSID; |
900 | 144 | OSSL_CMP_REVREPCONTENT *rrep = NULL; |
901 | 144 | OSSL_CMP_PKISI *si = NULL; |
902 | 144 | char buf[OSSL_CMP_PKISI_BUFLEN]; |
903 | 144 | int ret = 0; |
904 | | |
905 | 144 | if (ctx == NULL) { |
906 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_INVALID_ARGS); |
907 | 0 | return 0; |
908 | 0 | } |
909 | 144 | ctx->status = OSSL_CMP_PKISTATUS_request; |
910 | 144 | if (ctx->oldCert == NULL && ctx->p10CSR == NULL |
911 | 0 | && (ctx->serialNumber == NULL || ctx->issuer == NULL)) { |
912 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_MISSING_REFERENCE_CERT); |
913 | 0 | return 0; |
914 | 0 | } |
915 | | |
916 | | /* OSSL_CMP_rr_new() also checks if all necessary options are set */ |
917 | 144 | if ((rr = ossl_cmp_rr_new(ctx)) == NULL) |
918 | 144 | goto end; |
919 | | |
920 | 0 | ctx->status = OSSL_CMP_PKISTATUS_trans; |
921 | 0 | if (!send_receive_also_delayed(ctx, rr, &rp, OSSL_CMP_PKIBODY_RP)) |
922 | 0 | goto end; |
923 | | |
924 | 0 | rrep = rp->body->value.rp; |
925 | | #ifndef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION |
926 | | if (sk_OSSL_CMP_PKISI_num(rrep->status) != num_RevDetails) { |
927 | | ERR_raise(ERR_LIB_CMP, CMP_R_WRONG_RP_COMPONENT_COUNT); |
928 | | goto end; |
929 | | } |
930 | | #else |
931 | 0 | if (sk_OSSL_CMP_PKISI_num(rrep->status) < 1) { |
932 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_WRONG_RP_COMPONENT_COUNT); |
933 | 0 | goto end; |
934 | 0 | } |
935 | 0 | #endif |
936 | | |
937 | | /* evaluate PKIStatus field */ |
938 | 0 | si = ossl_cmp_revrepcontent_get_pkisi(rrep, rsid); |
939 | 0 | if (!save_statusInfo(ctx, si)) |
940 | 0 | goto err; |
941 | 0 | switch (ossl_cmp_pkisi_get_status(si)) { |
942 | 0 | case OSSL_CMP_PKISTATUS_accepted: |
943 | 0 | ossl_cmp_info(ctx, "revocation accepted (PKIStatus=accepted)"); |
944 | 0 | ret = 1; |
945 | 0 | break; |
946 | 0 | case OSSL_CMP_PKISTATUS_grantedWithMods: |
947 | 0 | ossl_cmp_info(ctx, "revocation accepted (PKIStatus=grantedWithMods)"); |
948 | 0 | ret = 1; |
949 | 0 | break; |
950 | 0 | case OSSL_CMP_PKISTATUS_rejection: |
951 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_REQUEST_REJECTED_BY_SERVER); |
952 | 0 | goto err; |
953 | 0 | case OSSL_CMP_PKISTATUS_revocationWarning: |
954 | 0 | ossl_cmp_info(ctx, "revocation accepted (PKIStatus=revocationWarning)"); |
955 | 0 | ret = 1; |
956 | 0 | break; |
957 | 0 | case OSSL_CMP_PKISTATUS_revocationNotification: |
958 | | /* interpretation as warning or error depends on CA */ |
959 | 0 | ossl_cmp_warn(ctx, |
960 | 0 | "revocation accepted (PKIStatus=revocationNotification)"); |
961 | 0 | ret = 1; |
962 | 0 | break; |
963 | 0 | case OSSL_CMP_PKISTATUS_waiting: |
964 | 0 | case OSSL_CMP_PKISTATUS_keyUpdateWarning: |
965 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_UNEXPECTED_PKISTATUS); |
966 | 0 | goto err; |
967 | 0 | default: |
968 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_UNKNOWN_PKISTATUS); |
969 | 0 | goto err; |
970 | 0 | } |
971 | | |
972 | | /* check any present CertId in optional revCerts field */ |
973 | 0 | if (sk_OSSL_CRMF_CERTID_num(rrep->revCerts) >= 1) { |
974 | 0 | OSSL_CRMF_CERTID *cid; |
975 | 0 | OSSL_CRMF_CERTTEMPLATE *tmpl = sk_OSSL_CMP_REVDETAILS_value(rr->body->value.rr, rsid)->certDetails; |
976 | 0 | const X509_NAME *issuer = OSSL_CRMF_CERTTEMPLATE_get0_issuer(tmpl); |
977 | 0 | const ASN1_INTEGER *serial = OSSL_CRMF_CERTTEMPLATE_get0_serialNumber(tmpl); |
978 | |
|
979 | 0 | if (sk_OSSL_CRMF_CERTID_num(rrep->revCerts) != num_RevDetails) { |
980 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_WRONG_RP_COMPONENT_COUNT); |
981 | 0 | ret = 0; |
982 | 0 | goto err; |
983 | 0 | } |
984 | 0 | if ((cid = ossl_cmp_revrepcontent_get_CertId(rrep, rsid)) == NULL) { |
985 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_MISSING_CERTID); |
986 | 0 | ret = 0; |
987 | 0 | goto err; |
988 | 0 | } |
989 | 0 | if (X509_NAME_cmp(issuer, OSSL_CRMF_CERTID_get0_issuer(cid)) != 0) { |
990 | | #ifndef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION |
991 | | ERR_raise(ERR_LIB_CMP, CMP_R_WRONG_CERTID_IN_RP); |
992 | | ret = 0; |
993 | | goto err; |
994 | | #endif |
995 | 0 | } |
996 | 0 | if (ASN1_INTEGER_cmp(serial, |
997 | 0 | OSSL_CRMF_CERTID_get0_serialNumber(cid)) |
998 | 0 | != 0) { |
999 | | #ifndef FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION |
1000 | | ERR_raise(ERR_LIB_CMP, CMP_R_WRONG_SERIAL_IN_RP); |
1001 | | ret = 0; |
1002 | | goto err; |
1003 | | #endif |
1004 | 0 | } |
1005 | 0 | } |
1006 | | |
1007 | | /* check number of any optionally present crls */ |
1008 | 0 | if (rrep->crls != NULL && sk_X509_CRL_num(rrep->crls) != num_RevDetails) { |
1009 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_WRONG_RP_COMPONENT_COUNT); |
1010 | 0 | ret = 0; |
1011 | 0 | goto err; |
1012 | 0 | } |
1013 | | |
1014 | 0 | err: |
1015 | 0 | if (ret == 0 |
1016 | 0 | && OSSL_CMP_CTX_snprint_PKIStatus(ctx, buf, sizeof(buf)) != NULL) |
1017 | 0 | ERR_add_error_data(1, buf); |
1018 | |
|
1019 | 144 | end: |
1020 | 144 | OSSL_CMP_MSG_free(rr); |
1021 | 144 | OSSL_CMP_MSG_free(rp); |
1022 | 144 | return ret; |
1023 | 0 | } |
1024 | | |
1025 | | STACK_OF(OSSL_CMP_ITAV) *OSSL_CMP_exec_GENM_ses(OSSL_CMP_CTX *ctx) |
1026 | 1.04k | { |
1027 | 1.04k | OSSL_CMP_MSG *genm; |
1028 | 1.04k | OSSL_CMP_MSG *genp = NULL; |
1029 | 1.04k | STACK_OF(OSSL_CMP_ITAV) *itavs = NULL; |
1030 | | |
1031 | 1.04k | if (ctx == NULL) { |
1032 | 0 | ERR_raise(ERR_LIB_CMP, CMP_R_INVALID_ARGS); |
1033 | 0 | return NULL; |
1034 | 0 | } |
1035 | 1.04k | ctx->status = OSSL_CMP_PKISTATUS_request; |
1036 | | |
1037 | 1.04k | if ((genm = ossl_cmp_genm_new(ctx)) == NULL) |
1038 | 1.04k | goto err; |
1039 | | |
1040 | 0 | ctx->status = OSSL_CMP_PKISTATUS_trans; |
1041 | 0 | if (!send_receive_also_delayed(ctx, genm, &genp, OSSL_CMP_PKIBODY_GENP)) |
1042 | 0 | goto err; |
1043 | 0 | ctx->status = OSSL_CMP_PKISTATUS_accepted; |
1044 | |
|
1045 | 0 | itavs = genp->body->value.genp; |
1046 | 0 | if (itavs == NULL) |
1047 | 0 | itavs = sk_OSSL_CMP_ITAV_new_null(); |
1048 | | /* received stack of itavs not to be freed with the genp */ |
1049 | 0 | genp->body->value.genp = NULL; |
1050 | |
|
1051 | 1.04k | err: |
1052 | 1.04k | OSSL_CMP_MSG_free(genm); |
1053 | 1.04k | OSSL_CMP_MSG_free(genp); |
1054 | | |
1055 | 1.04k | return itavs; /* NULL indicates error case */ |
1056 | 0 | } |