2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-22 10:10:06 +00:00
bind/doc/notes/notes-9.21.5.rst

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

101 lines
3.5 KiB
ReStructuredText
Raw Permalink Normal View History

2025-02-07 13:15:11 +01:00
.. Copyright (C) Internet Systems Consortium, Inc. ("ISC")
..
.. SPDX-License-Identifier: MPL-2.0
..
.. This Source Code Form is subject to the terms of the Mozilla Public
.. License, v. 2.0. If a copy of the MPL was not distributed with this
.. file, you can obtain one at https://mozilla.org/MPL/2.0/.
..
.. See the COPYRIGHT file distributed with this work for additional
.. information regarding copyright ownership.
Notes for BIND 9.21.5
---------------------
New Features
~~~~~~~~~~~~
- Adds support for EDE code 1 and 2.
2025-02-07 19:00:06 +01:00
Support was added for EDE codes 1 and 2, which might occur during DNSSEC
validation in the case of an unsupported RRSIG algorithm or DNSKEY digest.
2025-02-07 13:15:11 +01:00
:gl:`#2715`
2025-02-07 19:00:06 +01:00
- Add an :iscman:`rndc` command to toggle jemalloc profiling.
2025-02-07 13:15:11 +01:00
2025-02-07 19:00:06 +01:00
The new command is :option:`rndc memprof`; the memory profiling status is also
reported inside :option:`rndc status`. The status shows whether
:iscman:`named` can toggle memory profiling, and whether the server is built
with jemalloc. :gl:`#4759`
2025-02-07 13:15:11 +01:00
- Add support for multiple extended DNS errors.
2025-02-07 19:00:06 +01:00
The Extended DNS Error (EDE) mechanism may raise errors
during a DNS resolution. :iscman:`named` is now able to add up to three EDE
codes in a DNS response. If there are duplicate error codes, only
the first one is part of the DNS response. :gl:`#5085`
2025-02-07 13:15:11 +01:00
2025-02-07 19:00:06 +01:00
- Print the expiration time of stale records.
2025-02-07 13:15:11 +01:00
2025-02-07 19:00:06 +01:00
BIND now prints the expiration time of any stale RRsets in the cache dump.
2025-02-07 13:15:11 +01:00
Feature Changes
~~~~~~~~~~~~~~~
- Include destination address port number in query logging.
2025-02-07 19:00:06 +01:00
When query logging is enabled, :iscman:`named` now includes the destination
2025-02-07 13:15:11 +01:00
address port in the logged message. :gl:`#5060`
Bug Fixes
~~~~~~~~~
- Validate adb fetches.
2025-02-07 19:00:06 +01:00
Previously, ADB responses were not validated, allowing spoofed responses to
2025-02-07 13:15:11 +01:00
be accepted and used for further lookups. This should not be possible
when the servers for the zone are in a signed zone, except with CD=1
requests or when glue is needed. This has been fixed. :gl:`#5066`
2025-02-07 19:00:06 +01:00
- Recently expired records could be returned with a timestamp in future.
2025-02-07 13:15:11 +01:00
2025-02-07 19:00:06 +01:00
Under rare circumstances, an RRSet that expired at the time of the
query could be returned with a TTL in the future. This has been
2025-02-07 13:15:11 +01:00
fixed.
2025-02-07 19:00:06 +01:00
As a side effect, the expiration time of expired RRSets is no longer
returned in a cache dump. :gl:`#5094`
2025-02-07 13:15:11 +01:00
2025-02-07 19:00:06 +01:00
- YAML string not terminated in negative response in delv.
2025-02-07 13:15:11 +01:00
:gl:`#5098`
2025-02-07 19:00:06 +01:00
- Fix a bug in :iscman:`dnssec-signzone` related to keys being offline.
2025-02-07 13:15:11 +01:00
2025-02-07 19:00:06 +01:00
When :iscman:`dnssec-signzone` was called on an already-signed
zone and the private key file was unavailable, a signature that needed
to be refreshed was dropped without being able to generate a
2025-02-07 13:15:11 +01:00
replacement. This has been fixed. :gl:`#5126`
- Apply the memory limit only to ADB database items.
2025-02-07 19:00:06 +01:00
Under heavy load, a resolver could exhaust the memory available for
storing the information in the Address Database (ADB), effectively
discarding previously stored information in the ADB. The memory used to
retrieve and provide information from the ADB is no longer subject to
the same memory limits that are applied to
2025-02-07 13:15:11 +01:00
the Address Database. :gl:`#5127`
- Avoid unnecessary locking in the zone/cache database.
2025-02-07 19:00:06 +01:00
Lock contention among many worker threads referring to the
same database node at the same time is now prevented. This improves zone and
cache database performance for any heavily contended database nodes.
2025-02-07 13:15:11 +01:00
:gl:`#5130`
2025-02-10 18:33:11 +01:00
- Fix reporting of Extended DNS Error 22 (No Reachable Authority).
2025-02-07 19:00:06 +01:00
2025-02-10 18:33:11 +01:00
This error code was previously not reported in some applicable
situations. This has been fixed. :gl:`#5137`
2025-02-07 13:15:11 +01:00