]> git.ipfire.org Git - thirdparty/bind9.git/commit
dnssec: do not publish CDS records when -Psync is in the future
authorTony Finch <dot@dotat.at>
Tue, 14 Jan 2020 19:23:31 +0000 (19:23 +0000)
committerMark Andrews <marka@isc.org>
Tue, 21 Jan 2020 05:39:31 +0000 (16:39 +1100)
commit4227b7969b27c50cf6f45e8d5a776edab74b097b
tree366426daf9b68f83c5f512fc0ec230630b46b0b3
parentccf7bbab5dbd9dfe16030c7c3334adbd5bdcf554
dnssec: do not publish CDS records when -Psync is in the future

This is a bug I encountered when trying to schedule an algorithm
rollover. My plan, for a zone whose maximum TTL is 48h, was to sign
with the new algorithm and schedule a change of CDS records for more
than 48 hours in the future, roughly like this:

    $ dnssec-keygen -a 13 -fk -Psync now+50h $zone
    $ dnssec-keygen -a 13 $zone
    $ dnssec-settime -Dsync now+50h $zone_ksk_old

However the algorithm 13 CDS was published immediately, which could
have made the zone bogus.

To reveal the bug using the `smartsign` test, this change just adds a
KSK with all its times in the future, so it should not affect the
existing checks at all. But the final check (that there are no CDS or
CDSNSKEY records after -Dsync) fails with the old `syncpublish()`
logic, because the future key's sync records appear early. With the
new `syncpublish()` logic the future key does not affect the test, as
expected, and it now passes.
bin/tests/system/smartsign/tests.sh
lib/dns/dnssec.c