mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-29 13:38:26 +00:00
3386. [bug] Address locking violation when generating new NSEC /
NSEC3 chains. [RT #31224]
This commit is contained in:
parent
25644fbb2d
commit
9e70b51d3b
3
CHANGES
3
CHANGES
@ -1,3 +1,6 @@
|
||||
3386. [bug] Address locking violation when generating new NSEC /
|
||||
NSEC3 chains. [RT #31224]
|
||||
|
||||
3385. [bug] named-checkconf didn't detect missing master lists
|
||||
in also-notify clauses. [RT #30810]
|
||||
|
||||
|
@ -6561,6 +6561,7 @@ zone_nsec3chain(dns_zone_t *zone) {
|
||||
result = dns_dbiterator_next(nsec3chain->dbiterator);
|
||||
|
||||
if (result == ISC_R_NOMORE && nsec3chain->delete_nsec) {
|
||||
dns_dbiterator_pause(nsec3chain->dbiterator);
|
||||
CHECK(fixup_nsec3param(db, version, nsec3chain,
|
||||
ISC_FALSE, privatetype,
|
||||
¶m_diff));
|
||||
@ -6871,6 +6872,8 @@ zone_nsec3chain(dns_zone_t *zone) {
|
||||
}
|
||||
}
|
||||
if (rebuild_nsec3) {
|
||||
if (nsec3chain != NULL)
|
||||
dns_dbiterator_pause(nsec3chain->dbiterator);
|
||||
result = dns_nsec3_addnsec3s(db, version,
|
||||
dns_db_origin(db),
|
||||
zone->minimum, ISC_FALSE,
|
||||
@ -6888,6 +6891,8 @@ zone_nsec3chain(dns_zone_t *zone) {
|
||||
/*
|
||||
* Add / update signatures for the NSEC3 records.
|
||||
*/
|
||||
if (nsec3chain != NULL)
|
||||
dns_dbiterator_pause(nsec3chain->dbiterator);
|
||||
result = update_sigs(&nsec3_diff, db, version, zone_keys,
|
||||
nkeys, zone, inception, expire, now,
|
||||
check_ksk, keyset_kskonly, &sig_diff);
|
||||
@ -6911,8 +6916,6 @@ zone_nsec3chain(dns_zone_t *zone) {
|
||||
}
|
||||
|
||||
if (updatensec) {
|
||||
if (nsec3chain != NULL)
|
||||
dns_dbiterator_pause(nsec3chain->dbiterator);
|
||||
result = updatesecure(db, version, &zone->origin,
|
||||
zone->minimum, ISC_FALSE, &nsec_diff);
|
||||
if (result != ISC_R_SUCCESS) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user