1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
|
/* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <assert.h>
#include <stdlib.h>
#include <apr_lib.h>
#include <apr_strings.h>
#include <apr_buckets.h>
#include <apr_hash.h>
#include <apr_uri.h>
#include "md.h"
#include "md_crypt.h"
#include "md_json.h"
#include "md_jws.h"
#include "md_http.h"
#include "md_log.h"
#include "md_result.h"
#include "md_reg.h"
#include "md_store.h"
#include "md_util.h"
#include "md_acme.h"
#include "md_acme_acct.h"
#include "md_acme_authz.h"
#include "md_acme_order.h"
#include "md_acme_drive.h"
#include "md_acmev2_drive.h"
/**************************************************************************************************/
/* order setup */
/**
* Either we have an order stored in the STAGING area, or we need to create a
* new one at the ACME server.
*/
static apr_status_t ad_setup_order(md_proto_driver_t *d, md_result_t *result, int *pis_new)
{
md_acme_driver_t *ad = d->baton;
apr_status_t rv;
md_t *md = ad->md;
const char *profile = NULL;
const char *ari_cert_id = NULL;
assert(ad->md);
assert(ad->acme);
/* For each domain in MD: AUTHZ setup
* if an AUTHZ resource is known, check if it is still valid
* if known AUTHZ resource is not valid, remove, goto 4.1.1
* if no AUTHZ available, create a new one for the domain, store it
*/
if (pis_new) *pis_new = 0;
rv = md_acme_order_load(d->store, MD_SG_STAGING, md->name, &ad->order, d->p);
if (APR_SUCCESS == rv) {
md_result_activity_setn(result, "Loaded order from staging");
goto leave;
}
else if (!APR_STATUS_IS_ENOENT(rv)) {
md_log_perror(MD_LOG_MARK, MD_LOG_DEBUG, rv, d->p, "%s: loading order", md->name);
md_acme_order_purge(d->store, d->p, MD_SG_STAGING, md, d->env);
}
if (ad->cred->spec && ad->md->ca_account) {
/* are we replacing a previous certificate on the same account? */
int i;
for (i = 0; i < md_pkeys_spec_count(d->md->pks); ++i) {
md_pkey_spec_t *spec = md_pkeys_spec_get(d->md->pks, i);
const md_pubcert_t *pubcert;
const md_cert_t *cert;
if (md_pkey_spec_eq(ad->cred->spec, spec)) {
rv = md_reg_get_pubcert(&pubcert, d->reg, d->md, i, d->p);
if (rv == APR_SUCCESS) {
cert = APR_ARRAY_IDX(pubcert->certs, 0, const md_cert_t*);
if (cert) {
md_cert_get_ari_cert_id(&ari_cert_id, cert, d->p);
break;
}
}
}
}
}
md_result_activity_printf(result, "Creating new order, key-spec=%s, "
"profile=%s, replacing-cert=%s",
ad->cred->spec? md_pkey_spec_to_str(ad->cred->spec, d->p) : "default",
ad->profile? ad->profile : "none",
ari_cert_id? ari_cert_id : "none");
if (ad->profile) {
if (ad->acme->api.v2.profiles) {
int i;
for (i = 0; !profile && i < ad->acme->api.v2.profiles->nelts; ++i) {
const char *s = APR_ARRAY_IDX(ad->acme->api.v2.profiles, i, const char*);
if (!apr_cstr_casecmp(s, ad->profile))
profile = s;
}
}
if (profile)
md_log_perror(MD_LOG_MARK, MD_LOG_DEBUG, rv, d->p,
"%s: ordering ACME profile '%s'", md->name, profile);
else if (ad->profile_mandatory) {
md_log_perror(MD_LOG_MARK, MD_LOG_ERR, rv, d->p,
"%s: mandatory ACME profile '%s' is not offered by CA",
md->name, ad->profile);
rv = APR_EINVAL;
goto leave;
}
else {
md_log_perror(MD_LOG_MARK, MD_LOG_DEBUG, rv, d->p,
"%s: ACME profile '%s' is not offered by CA, continuing without",
md->name, ad->profile);
}
}
rv = md_acme_order_register(&ad->order, ad->acme, d->p, d->md->name,
ad->domains, profile, ari_cert_id);
if (APR_SUCCESS !=rv) goto leave;
rv = md_acme_order_save(d->store, d->p, MD_SG_STAGING, d->md->name, ad->order, 0);
if (APR_SUCCESS != rv) {
md_result_set(result, rv, "saving order in staging");
}
if (pis_new) *pis_new = 1;
leave:
md_acme_report_result(ad->acme, rv, result);
return rv;
}
/**************************************************************************************************/
/* ACMEv2 renewal */
apr_status_t md_acmev2_drive_renew(md_acme_driver_t *ad, md_proto_driver_t *d, md_result_t *result)
{
apr_status_t rv = APR_SUCCESS;
int is_new_order = 0;
md_log_perror(MD_LOG_MARK, MD_LOG_DEBUG, 0, d->p, "%s: (ACMEv2) need certificate", d->md->name);
/* Chose (or create) and ACME account to use */
rv = md_acme_drive_set_acct(d, result);
if (APR_SUCCESS != rv) goto leave;
if (!md_array_is_empty(ad->cred->chain)) goto leave;
/* ACMEv2 strategy:
* 1. load an md_acme_order_t from STAGING, if present
* 2. if no order found, register a new order at ACME server
* 3. update the order from the server
* 4. Switch order state:
* * PENDING: process authz challenges
* * READY: finalize the order
* * PROCESSING: wait and re-assses later
* * VALID: retrieve certificate
* * COMPLETE: all done, return success
* * INVALID and otherwise: fail renewal, delete local order
*/
if (APR_SUCCESS != (rv = ad_setup_order(d, result, &is_new_order))) {
goto leave;
}
rv = md_acme_order_update(ad->order, ad->acme, result, d->p);
if (APR_STATUS_IS_ENOENT(rv)
|| APR_STATUS_IS_EACCES(rv)
|| MD_ACME_ORDER_ST_INVALID == ad->order->status) {
/* order is invalid or no longer known at the ACME server */
ad->order = NULL;
md_acme_order_purge(d->store, d->p, MD_SG_STAGING, d->md, d->env);
}
else if (APR_SUCCESS != rv) {
goto leave;
}
retry:
if (!ad->order) {
rv = ad_setup_order(d, result, &is_new_order);
if (APR_SUCCESS != rv) goto leave;
}
rv = md_acme_order_start_challenges(ad->order, ad->acme, ad->ca_challenges,
d->store, d->md, d->env, result, d->p);
if (!is_new_order && APR_STATUS_IS_EINVAL(rv)) {
/* found 'invalid' domains in previous order, need to start over */
ad->order = NULL;
md_acme_order_purge(d->store, d->p, MD_SG_STAGING, d->md, d->env);
goto retry;
}
if (APR_SUCCESS != rv) goto leave;
rv = md_acme_order_monitor_authzs(ad->order, ad->acme, d->md,
ad->authz_monitor_timeout, result, d->p);
if (APR_SUCCESS != rv) {
md_result_set(result, rv, "Error waiting on domain names to be validated");
goto leave;
}
rv = md_acme_order_await_ready(ad->order, ad->acme, d->md,
ad->authz_monitor_timeout, result, d->p);
if (APR_SUCCESS != rv) {
md_result_set(result, rv, "Error waiting for order to become ready");
goto leave;
}
if (MD_ACME_ORDER_ST_READY == ad->order->status) {
rv = md_acme_drive_setup_cred_chain(d, result);
if (APR_SUCCESS != rv) goto leave;
md_log_perror(MD_LOG_MARK, MD_LOG_DEBUG, 0, d->p, "%s: finalized order", d->md->name);
}
rv = md_acme_order_await_valid(ad->order, ad->acme, d->md,
ad->authz_monitor_timeout, result, d->p);
if (APR_SUCCESS != rv) {
md_result_set(result, rv, "Error waiting for order to become valid.");
goto leave;
}
if (!ad->order->certificate) {
md_result_set(result, APR_EINVAL, "Order valid, but certificate url is missing.");
goto leave;
}
md_result_set(result, APR_SUCCESS, NULL);
leave:
md_result_log(result, MD_LOG_DEBUG);
return result->status;
}
|