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