pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
bind920: upgrade to version 9.20.6.
Module Name: pkgsrc-wip
Committed By: Havard Eidnes <he%NetBSD.org@localhost>
Pushed By: he
Date: Wed Feb 19 16:24:36 2025 +0100
Changeset: c13ae2943729f9773f6e1b9f89430114ab286072
Modified Files:
bind920/Makefile
bind920/PLIST
bind920/distinfo
Log Message:
bind920: upgrade to version 9.20.6.
pkgsrc changes:
* basically none, dist-name & checksums.
upstream changes:
BIND 9.20.6
-----------
New Features
~~~~~~~~~~~~
- Adds support for EDE code 1 and 2. ``b3eab79bc18``
Add support for EDE codes 1 & 2 which might occurs during DNSSEC
validation in case of unsupported RRSIG algorithm or DNSKEY digest.
:gl:`#2715` :gl:`!9996`
- Add a rndc command to toggle jemalloc profiling. ``38c51c84014``
The new command is `rndc memprof`. The memory profiling status is also
reported inside `rndc status`. The status also shows whether named can
toggle memory profiling or not and if the server is built with
jemalloc. :gl:`#4759` :gl:`!10000`
- Add support for multiple extended DNS errors. ``4d945128dc1``
Extended DNS error mechanism (EDE) may have several errors raised
during a DNS resolution. `named` is now able to add up to three EDE
codes in a DNS response. In the case of duplicate error codes, only
the first one will be part of the DNS response. :gl:`#5085`
:gl:`!9978`
- Print the expiration time of the stale records. ``b5cce0f5972``
Print the expiration time of the stale RRsets in the cache dump.
:gl:`!10061`
Feature Changes
~~~~~~~~~~~~~~~
- Refactor reference counting in both QPDB and RBTDB. ``3244f7848fd``
Clean up the pattern in the newref() and decref() functions in QP and
RBTDB databases. Replace the `db_nodelock_t` structure with plain
reference counting for every active database node in QPDB.
Related to #5134 :gl:`!10035`
- Shutdown the fetch context after canceling the last fetch.
``55b7cc9596e``
Shutdown the fetch context immediately after the last fetch has been
canceled from that particular fetch context. :gl:`!9977`
Bug Fixes
~~~~~~~~~
- Fix possible truncation in dns_keymgr_status() ``1333dac316c``
If the generated status output exceeds 4096 it was silently truncated,
now we output that the status was truncated. :gl:`#4180` :gl:`!9981`
- Recently expired records could be returned with timestamp in future.
``9a4df4caac0``
Under rare circumstances, the RRSet that expired at the time of the
query could be returned with TTL far in the future. This has been
fixed.
As a side-effect, the expiration time of expired RRSets are no longer
printed out in the cache dump. :gl:`#5094` :gl:`!10059`
- Yaml string not terminated in negative response in delv.
``74640b3613c``
:gl:`#5098` :gl:`!9979`
- Fix a bug in dnssec-signzone related to keys being offline.
``ddda6cb59e5``
In the case when `dnssec-signzone` is called on an already signed
zone, and the private key file is unavailable, a signature that needs
to be refreshed may be dropped without being able to generate a
replacement. This has been fixed. :gl:`#5126` :gl:`!9982`
- Apply the memory limit only to ADB database items. ``0ab22458f51``
Resolver under heavy-load could exhaust the memory available for
storing the information in the Address Database (ADB) effectively
evicting already stored information in the ADB. The memory used to
retrieve and provide information from the ADB is now not a subject of
the same memory limits that are applied for storing the information in
the Address Database. :gl:`#5127` :gl:`!9975`
- Avoid unnecessary locking in the zone/cache database. ``60b81239de1``
Prevent lock contention among many worker threads referring to the
same database node at the same time. This would improve zone and cache
database performance for the heavily contended database nodes.
:gl:`#5130` :gl:`!9964`
- Fix EDE 22 time out detection. ``8662424442c``
Extended DNS error 22 (No reachable authority) was previously detected
when `fctx_expired` fired. It turns out this function is used as a
"safety net" and the timeout detection should be caught earlier.
It was working though, because of another issue fixed by !9927. But
then, the recursive request timed out detection occurs before
`fctx_expired` making impossible to raise the EDE 22 error.
This fixes the problem by triggering the EDE 22 in the part of the
code detecting the (TCP or UDP) time out and taking the decision to
cancel the whole fetch (i.e. There is no other server to attempt to
contact).
Note this is not targeting users (no release note) because there is no
release versions of BIND between !9927 and this changes. Thus a
release note would be confusing. :gl:`#5137` :gl:`!10001`
- Split and simplify the use of EDE list implementation. ``23a9bed310b``
Instead of mixing the dns_resolver and dns_validator units directly
with the EDE code, split-out the dns_ede functionality into own
separate compilation unit and hide the implementation details behind
abstraction.
Additionally, the new dns_edelist_t doesn't have to be copied into all
responses as those are attached to the fetch context, but it could be
only passed by reference.
This makes the dns_ede implementation simpler to use, although sligtly
more complicated on the inside. :gl:`#5141` :gl:`!10030`
- Fix the cache findzonecut() implementation. ``619f163e680``
The search for the deepest known zone cut in the cache could
improperly reject a node if it contained any stale data, regardless of
whether it was the NS RRset that was stale. :gl:`#5155` :gl:`!10050`
- DNSSEC EDE system tests on FIPS platform. ``917181b4e27``
Changes introducing the support of extended DNS error code 1 and 2
uses SHA-1 digest for some tests which break FIPS platform. The digest
itself was irrelevant, another digest is used. :gl:`!10031`
- Reduce the false sharing the dns_qpcache and dns_qpzone.
``5c27e9cdda6``
Instead of having many node_lock_count * sizeof(<member>) arrays, pack
all the members into a qpcache_bucket_t that is cacheline aligned to
prevent false sharing between RWLocks. :gl:`!10074`
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=c13ae2943729f9773f6e1b9f89430114ab286072
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
bind920/Makefile | 2 +-
bind920/PLIST | 1 +
bind920/distinfo | 6 +++---
3 files changed, 5 insertions(+), 4 deletions(-)
diffs:
diff --git a/bind920/Makefile b/bind920/Makefile
index 0d82a4d20e..80b7d11074 100644
--- a/bind920/Makefile
+++ b/bind920/Makefile
@@ -15,7 +15,7 @@ CONFLICTS+= host-[0-9]*
MAKE_JOBS_SAFE= no
-BIND_VERSION= 9.20.5
+BIND_VERSION= 9.20.6
BUILD_DEFS+= BIND_DIR VARBASE
diff --git a/bind920/PLIST b/bind920/PLIST
index 844b1856bd..2906354598 100644
--- a/bind920/PLIST
+++ b/bind920/PLIST
@@ -50,6 +50,7 @@ include/dns/ds.h
include/dns/dsdigest.h
include/dns/dyndb.h
include/dns/ecs.h
+include/dns/ede.h
include/dns/edns.h
include/dns/enumclass.h
include/dns/enumtype.h
diff --git a/bind920/distinfo b/bind920/distinfo
index 4be765f7a6..28a1ed6036 100644
--- a/bind920/distinfo
+++ b/bind920/distinfo
@@ -1,6 +1,6 @@
$NetBSD: distinfo,v 1.20 2024/07/23 13:50:32 taca Exp $
-BLAKE2s (bind-9.20.5.tar.xz) = 424246855e2a4912581d1efbfec32f939804119f4729c6a423a1c6cc6b96be7d
-SHA512 (bind-9.20.5.tar.xz) = 893b2bcfe9227917970ad72d7aa5818f920c03bd42152f43c6f02a76a56b3b6893eba9200d92e1236c4ac28933c653134c8f5209cc7c3777ef9853b3129ba1b0
-Size (bind-9.20.5.tar.xz) = 5634832 bytes
+BLAKE2s (bind-9.20.6.tar.xz) = e9bd08fb5fbea3d8e560adfed64f182d1efb2c6ad0dd0ec1712998990440c484
+SHA512 (bind-9.20.6.tar.xz) = 8582f0f0acde7898ade2aba30bdcf4ef71a3d45c938b815b70bdb06c604680c2213ff508d598472c3962f75741a926edbe2280581841f3f3c95c0cba1c56c96f
+Size (bind-9.20.6.tar.xz) = 5639720 bytes
SHA1 (patch-configure.ac) = f1f672271aa38c10b12d12d48455eb0af82d270c
Home |
Main Index |
Thread Index |
Old Index