Received: by mail.netbsd.org (Postfix, from userid 605) id 777E184D44; Wed, 3 Aug 2022 17:14:12 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B20E484CEE for ; Wed, 3 Aug 2022 17:14:11 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id eGUuxeoNkJwd for ; Wed, 3 Aug 2022 17:14:11 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 1A03F84CD8 for ; Wed, 3 Aug 2022 17:14:11 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 13128FB1A; Wed, 3 Aug 2022 17:14:11 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1659546851109120" MIME-Version: 1.0 Date: Wed, 3 Aug 2022 17:14:11 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/net/nsd To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20220803171411.13128FB1A@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1659546851109120 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Wed Aug 3 17:14:11 UTC 2022 Modified Files: pkgsrc/net/nsd: Makefile distinfo Log Message: nsd: Update to 4.6.0 Changelog: This release adds the zone verification support from the CreDNS code. There are also some bug fixes in the ixfr out code. Zone verification can start a verifier program that reads the new zone data. It can reject the update. Or process the new zone data. The intent is for a DNSSEC verifier to inspect the zone before it is passed on with zone transfer or served to clients. The zone verification can be enabled with enable: yes in the verify section in nsd.conf. You can then list the interfaces the NSD listens on while the verifier is active, so it can send queries for the new zone contents. With verify-zones: yes zones are verified by default. The command that is executed can be set with the verifier: ldns-verify-zone option. With verifier-count the max number of concurrent verifiers can be set. With the verifier-feed-zone: yes option the zone can be input on stdin to the verifier program. A timeout to stop the verifier can be set with the verifier-timeout option. Per zone options can also be set for a pattern or for a zone, for zone verification. With verify-zone the zone verification can be enabled per zone. The verifier can be set per zone. And the verifier-feed-zone and verifier-timeout options can be controlled per zone. FEATURES: Port zone-verification from CreDNS to NSD4. BUG FIXES: Fix static analyzer reports on ixfrcreate temp file. Fixup wrong ixfrcreate fread return check. To generate a diff of this commit: cvs rdiff -u -r1.119 -r1.120 pkgsrc/net/nsd/Makefile cvs rdiff -u -r1.79 -r1.80 pkgsrc/net/nsd/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1659546851109120 Content-Disposition: inline Content-Length: 1475 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/net/nsd/Makefile diff -u pkgsrc/net/nsd/Makefile:1.119 pkgsrc/net/nsd/Makefile:1.120 --- pkgsrc/net/nsd/Makefile:1.119 Thu Jun 16 16:23:01 2022 +++ pkgsrc/net/nsd/Makefile Wed Aug 3 17:14:10 2022 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.119 2022/06/16 16:23:01 ryoon Exp $ +# $NetBSD: Makefile,v 1.120 2022/08/03 17:14:10 ryoon Exp $ -DISTNAME= nsd-4.5.0 +DISTNAME= nsd-4.6.0 CATEGORIES= net MASTER_SITES= http://www.nlnetlabs.nl/downloads/nsd/ Index: pkgsrc/net/nsd/distinfo diff -u pkgsrc/net/nsd/distinfo:1.79 pkgsrc/net/nsd/distinfo:1.80 --- pkgsrc/net/nsd/distinfo:1.79 Thu Jun 16 16:23:01 2022 +++ pkgsrc/net/nsd/distinfo Wed Aug 3 17:14:10 2022 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.79 2022/06/16 16:23:01 ryoon Exp $ +$NetBSD: distinfo,v 1.80 2022/08/03 17:14:10 ryoon Exp $ -BLAKE2s (nsd-4.5.0.tar.gz) = 4f19a8233395435f9731a798357ff3b8f7956be358df77d6a104b64d42903abc -SHA512 (nsd-4.5.0.tar.gz) = 0309e1ff083b6f2118ba6fd59425319c21f31558d30e17a40eb8f1e53dee9e3e766d7b53eb50462130ba17b454a3559dc786d344cb779468d255732bbc6bc5da -Size (nsd-4.5.0.tar.gz) = 1259059 bytes +BLAKE2s (nsd-4.6.0.tar.gz) = 6fbe465e9f173b721e8b9cffbf6eb926479eb48fed6150673a2a12a7aef3e47b +SHA512 (nsd-4.6.0.tar.gz) = e9f035e42f47ac115cb2c1d0ebdef8b13b1feebca91d4f840d36904efb5ab44a817584b28c9d0d3e236fde1581e8283bcdd554a5463d4b5788329f9245414cbb +Size (nsd-4.6.0.tar.gz) = 1273532 bytes SHA1 (patch-aa) = d9a423d5faa8da9a213b21fd2712225ac9645091 --_----------=_1659546851109120--