mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-22 10:10:06 +00:00
Detect if keymgr made changes
If so we also want to tickle the apex because DNSKEY/CDNSKEY/CDS RRsets may need to be re-signed. Note that this may be overzealous, because if state transitions happen just because of timing events (RUMOURED -> OMNIPRESENT, UNRETENTIVE -> HIDDEN) this would have to cause changes in the zone DNSSEC records. (cherry picked from commit a0dc0434e55e8b996f283db4b711921aeb8424c0)
This commit is contained in:
parent
d80c25959f
commit
1c0e91440b
@ -1481,6 +1481,7 @@ keymgr_transition_time(dns_dnsseckey_t *key, int type,
|
||||
static isc_result_t
|
||||
keymgr_update(dns_dnsseckeylist_t *keyring, dns_kasp_t *kasp, isc_stdtime_t now,
|
||||
isc_stdtime_t *nexttime, uint8_t opts) {
|
||||
isc_result_t result = DNS_R_UNCHANGED;
|
||||
bool changed;
|
||||
bool force = ((opts & DNS_KEYMGRATTR_FORCESTEP) != 0);
|
||||
|
||||
@ -1646,12 +1647,13 @@ transition:
|
||||
|
||||
/* We changed something, continue processing. */
|
||||
if (changed) {
|
||||
result = ISC_R_SUCCESS;
|
||||
/* No longer force for the next run */
|
||||
force = false;
|
||||
goto transition;
|
||||
}
|
||||
|
||||
return ISC_R_SUCCESS;
|
||||
return result;
|
||||
}
|
||||
|
||||
/*
|
||||
@ -2145,7 +2147,7 @@ dns_keymgr_run(const dns_name_t *origin, dns_rdataclass_t rdclass,
|
||||
dns_dnsseckeylist_t *dnskeys, const char *keydir,
|
||||
dns_kasp_t *kasp, uint8_t opts, isc_stdtime_t now,
|
||||
isc_stdtime_t *nexttime) {
|
||||
isc_result_t result = ISC_R_SUCCESS;
|
||||
isc_result_t result = DNS_R_UNCHANGED;
|
||||
dns_dnsseckeylist_t newkeys;
|
||||
dns_kasp_key_t *kkey;
|
||||
dns_dnsseckey_t *newkey = NULL;
|
||||
@ -2358,7 +2360,7 @@ dns_keymgr_run(const dns_name_t *origin, dns_rdataclass_t rdclass,
|
||||
}
|
||||
|
||||
/* Read to update key states. */
|
||||
keymgr_update(keyring, kasp, now, nexttime, opts);
|
||||
isc_result_t retval = keymgr_update(keyring, kasp, now, nexttime, opts);
|
||||
|
||||
/* Store key states and update hints. */
|
||||
for (dns_dnsseckey_t *dkey = ISC_LIST_HEAD(*keyring); dkey != NULL;
|
||||
@ -2368,6 +2370,7 @@ dns_keymgr_run(const dns_name_t *origin, dns_rdataclass_t rdclass,
|
||||
if (dst_key_getttl(dkey->key) != dns_kasp_dnskeyttl(kasp)) {
|
||||
dst_key_setttl(dkey->key, dns_kasp_dnskeyttl(kasp));
|
||||
modified = true;
|
||||
retval = ISC_R_SUCCESS;
|
||||
}
|
||||
if (modified && !dkey->purge) {
|
||||
const char *directory = dst_key_directory(dkey->key);
|
||||
@ -2393,10 +2396,9 @@ dns_keymgr_run(const dns_name_t *origin, dns_rdataclass_t rdclass,
|
||||
dst_key_setmodified(dkey->key, false);
|
||||
}
|
||||
|
||||
result = ISC_R_SUCCESS;
|
||||
|
||||
result = retval;
|
||||
failure:
|
||||
if (result != ISC_R_SUCCESS) {
|
||||
if (result != ISC_R_SUCCESS && result != DNS_R_UNCHANGED) {
|
||||
while ((newkey = ISC_LIST_HEAD(newkeys)) != NULL) {
|
||||
ISC_LIST_UNLINK(newkeys, newkey, link);
|
||||
INSIST(newkey->key != NULL);
|
||||
|
@ -22426,6 +22426,7 @@ zone_rekey(dns_zone_t *zone) {
|
||||
bool newalg = false;
|
||||
bool fullsign;
|
||||
bool offlineksk = false;
|
||||
bool kasp_change = false;
|
||||
uint8_t options = 0;
|
||||
uint32_t sigval = 0;
|
||||
dns_ttl_t ttl = 3600;
|
||||
@ -22682,7 +22683,11 @@ zone_rekey(dns_zone_t *zone) {
|
||||
kasp, options, now, &nexttime);
|
||||
dns_zone_unlock_keyfiles(zone);
|
||||
|
||||
if (result != ISC_R_SUCCESS) {
|
||||
if (result == ISC_R_SUCCESS) {
|
||||
kasp_change = true;
|
||||
} else if (result == DNS_R_UNCHANGED) {
|
||||
result = ISC_R_SUCCESS;
|
||||
} else {
|
||||
dnssec_log(zone, ISC_LOG_ERROR,
|
||||
"zone_rekey:dns_keymgr_run "
|
||||
"failed: %s",
|
||||
@ -22910,7 +22915,7 @@ zone_rekey(dns_zone_t *zone) {
|
||||
"allowed");
|
||||
}
|
||||
|
||||
if (newactive || fullsign || sane_diff) {
|
||||
if (newactive || fullsign || sane_diff || kasp_change) {
|
||||
CHECK(dns_diff_apply(&diff, db, ver));
|
||||
CHECK(clean_nsec3param(zone, db, ver, &diff));
|
||||
CHECK(add_signing_records(db, zone->privatetype, ver,
|
||||
|
Loading…
x
Reference in New Issue
Block a user