790 lines
30 KiB
RPMSpec
790 lines
30 KiB
RPMSpec
%global _hardened_build 1
|
|
%{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}}
|
|
|
|
Summary: High-performance authoritative DNS server
|
|
Name: knot
|
|
Version: 2.6.4
|
|
Release: 1%{?dist}
|
|
License: GPLv3
|
|
Group: System Environment/Daemons
|
|
URL: http://www.knot-dns.cz
|
|
Source0: http://public.nic.cz/files/knot-dns/%{name}-%{version}.tar.xz
|
|
Source1: http://public.nic.cz/files/knot-dns/%{name}-%{version}.tar.xz.asc
|
|
Source2: %{name}.service
|
|
Source3: %{name}.conf
|
|
Source4: %{name}.tmpfiles
|
|
|
|
# PGP keys used to sign upstream releases
|
|
# Export with --armor using command from https://fedoraproject.org/wiki/PackagingDrafts:GPGSignatures
|
|
# Don't forget to update %prep section when adding/removing keys
|
|
Source1000: gpgkey-742FA4E95829B6C5EAC6B85710BB7AF6FEBBD6AB.gpg.asc
|
|
|
|
# Required dependencies
|
|
BuildRequires: gnupg2
|
|
BuildRequires: pkgconfig(liburcu) pkgconfig(gnutls) >= 3.3 pkgconfig(nettle) lmdb-devel pkgconfig(libedit)
|
|
# Optional dependencies
|
|
BuildRequires: pkgconfig(libcap-ng) pkgconfig(libidn2) pkgconfig(libsystemd) pkgconfig(libfstrm) pkgconfig(libprotobuf-c)
|
|
BuildRequires: systemd
|
|
|
|
Requires: python-lmdb
|
|
|
|
Requires(post): python-lmdb
|
|
Requires(post): systemd %{_sbindir}/runuser
|
|
Requires(preun): systemd
|
|
Requires(postun): systemd
|
|
|
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
|
|
|
%description
|
|
Knot DNS is a high-performance authoritative DNS server implementation.
|
|
|
|
%package libs
|
|
Summary: Libraries used by the Knot DNS server and client applications
|
|
|
|
%description libs
|
|
The package contains shared libraries used by the Knot DNS server and
|
|
utilities.
|
|
|
|
%package devel
|
|
Summary: Development header files for the Knot DNS libraries
|
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
|
|
|
%description devel
|
|
The package contains development header files for the Knot DNS libraries
|
|
included in knot-libs package.
|
|
|
|
%package utils
|
|
Summary: DNS client utilities shipped with the Knot DNS server
|
|
Requires: %{name}-libs%{?_isa} = %{version}-%{release}
|
|
|
|
%description utils
|
|
The package contains DNS client utilities shipped with the Knot DNS server.
|
|
|
|
%package doc
|
|
Summary: Documentation for the Knot DNS server
|
|
License: GPLv3 and BSD and MIT
|
|
BuildArch: noarch
|
|
%if 0%{?rhel}
|
|
BuildRequires: python-sphinx
|
|
%else
|
|
BuildRequires: python3-sphinx
|
|
%endif
|
|
Provides: bundled(jquery) = 3.1.0
|
|
|
|
%description doc
|
|
The package contains documentation for the Knot DNS server.
|
|
On-line version is available on https://www.knot-dns.cz/documentation/
|
|
|
|
%prep
|
|
gpg2 --import --import-options import-export,import-minimal %{SOURCE1000} > ./gpg-keyring.gpg
|
|
gpgv2 --keyring ./gpg-keyring.gpg %{SOURCE1} %{SOURCE0}
|
|
%setup -q
|
|
|
|
# make sure embedded LMDB library is not used
|
|
rm -vr src/contrib/lmdb
|
|
|
|
%build
|
|
# disable debug code (causes unused warnings)
|
|
CFLAGS="%{optflags} -DNDEBUG -Wno-unused"
|
|
|
|
%ifarch armv7hl i686
|
|
# 32-bit architectures sometimes do not have sufficient amount of
|
|
# contiguous address space to handle default values
|
|
%define configure_db_sizes --with-conf-mapsize=64 --with-timer-mapsize=16
|
|
%endif
|
|
|
|
%configure %{configure_db_sizes} --disable-fastparser # FIXME
|
|
make %{?_smp_mflags}
|
|
make html
|
|
|
|
%install
|
|
make install DESTDIR=%{buildroot}
|
|
|
|
# install documentation
|
|
mkdir -p %{buildroot}%{_pkgdocdir}
|
|
cp -av doc/_build/html %{buildroot}%{_pkgdocdir}
|
|
[ -r %{buildroot}%{_pkgdocdir}/html/index.html ] || exit 1
|
|
rm -f %{buildroot}%{_pkgdocdir}/html/.buildinfo
|
|
|
|
# install customized configuration file
|
|
rm %{buildroot}%{_sysconfdir}/%{name}/*
|
|
install -p -m 0644 -D %{SOURCE3} %{buildroot}%{_sysconfdir}/%{name}/%{name}.conf
|
|
|
|
# install service file and create rundir
|
|
install -p -m 0644 -D %{SOURCE2} %{buildroot}%{_unitdir}/%{name}.service
|
|
install -p -m 0644 -D %{SOURCE4} %{buildroot}%{_tmpfilesdir}/%{name}.conf
|
|
install -d -m 0755 %{buildroot}%{_localstatedir}/run/%{name}
|
|
|
|
# create storage dir and key dir
|
|
mkdir -p %{buildroot}%{_sharedstatedir}
|
|
install -d -m 0775 %{buildroot}%{_sharedstatedir}/%{name}
|
|
install -d -m 0770 %{buildroot}%{_sharedstatedir}/%{name}/keys
|
|
|
|
# install config samples into docdir
|
|
install -d -m 0755 %{buildroot}%{_pkgdocdir}/samples
|
|
for sample_file in knot.sample.conf example.com.zone; do
|
|
install -p -m 0644 samples/${sample_file} %{buildroot}%{_pkgdocdir}/samples
|
|
done
|
|
|
|
# remove static libraries and libarchive files
|
|
rm %{buildroot}%{_libdir}/*.a
|
|
rm %{buildroot}%{_libdir}/*.la
|
|
|
|
%check
|
|
make check
|
|
|
|
%pre
|
|
getent group knot >/dev/null || groupadd -r knot
|
|
getent passwd knot >/dev/null || useradd -r -g knot -d %{_sysconfdir}/knot -s /sbin/nologin -c "Knot DNS server" knot
|
|
exit 0
|
|
|
|
%post
|
|
%systemd_post knot.service
|
|
if [ $1 -gt 1 ] ; then # upgrade
|
|
if rpm -q --qf=%%{version} knot | grep -q "^1\." ; then # detect versions 1.y.z
|
|
echo 'Automatic upgrade from Knot DNS versions 1.y.z is not supported anymore'
|
|
echo 'Contact https://www.knot-dns.cz/support/'
|
|
exit 1
|
|
fi
|
|
|
|
# 2.[0-4].z -> 2.5+.z migration
|
|
if rpm -q --qf=%%{version} knot | grep -q '^2.[0-4]\.' ; then
|
|
# rename modules
|
|
echo 'Migrating module names in configuration file /etc/knot/knot.conf'
|
|
sed -i.rpmsave -e 's/\bmod-online-sign\b/mod-onlinesign/' -e 's/\bmod-synth-record\b/mod-synthrecord/' /etc/knot/knot.conf
|
|
echo 'Migrating KASP database %{_sharedstatedir}/%{name}/keys from JSON files to LMDB database'
|
|
# migrate keys into LMDB
|
|
%{_sbindir}/runuser -u knot -- %{_sbindir}/pykeymgr -i %{_sharedstatedir}/%{name}/keys
|
|
fi
|
|
fi
|
|
|
|
|
|
%preun
|
|
%systemd_preun knot.service
|
|
|
|
%postun
|
|
%systemd_postun_with_restart knot.service
|
|
|
|
%post libs -p /sbin/ldconfig
|
|
|
|
%postun libs -p /sbin/ldconfig
|
|
|
|
%files
|
|
%{_pkgdocdir}/samples
|
|
%dir %attr(750,root,knot) %{_sysconfdir}/%{name}
|
|
%config(noreplace) %attr(640,root,knot) %{_sysconfdir}/%{name}/%{name}.conf
|
|
%dir %attr(775,root,knot) %{_sharedstatedir}/%{name}
|
|
%dir %attr(770,root,knot) %{_sharedstatedir}/%{name}/keys
|
|
%dir %attr(-,knot,knot) %{_localstatedir}/run/%{name}
|
|
%{_unitdir}/%{name}.service
|
|
%{_tmpfilesdir}/%{name}.conf
|
|
%{_bindir}/kjournalprint
|
|
%{_bindir}/kzonecheck
|
|
%{_sbindir}/keymgr
|
|
%{_sbindir}/knotc
|
|
%{_sbindir}/knotd
|
|
%{_sbindir}/pykeymgr
|
|
%{_mandir}/man1/kjournalprint.*
|
|
%{_mandir}/man1/kzonecheck.*
|
|
%{_mandir}/man5/knot.conf.*
|
|
%{_mandir}/man8/keymgr.*
|
|
%{_mandir}/man8/knotc.*
|
|
%{_mandir}/man8/knotd.*
|
|
%{_mandir}/man8/pykeymgr.*
|
|
|
|
%files utils
|
|
%{_bindir}/kdig
|
|
%{_bindir}/khost
|
|
%{_bindir}/knsec3hash
|
|
%{_bindir}/knsupdate
|
|
%{_mandir}/man1/kdig.*
|
|
%{_mandir}/man1/khost.*
|
|
%{_mandir}/man1/knsec3hash.*
|
|
%{_mandir}/man1/knsupdate.*
|
|
|
|
%files libs
|
|
%doc COPYING AUTHORS NEWS THANKS
|
|
%{_libdir}/libdnssec.so.*
|
|
%{_libdir}/libknot.so.*
|
|
%{_libdir}/libzscanner.so.*
|
|
|
|
%files devel
|
|
%{_includedir}/dnssec
|
|
%{_includedir}/knot
|
|
%{_includedir}/libknot
|
|
%{_includedir}/zscanner
|
|
%{_libdir}/libdnssec.so
|
|
%{_libdir}/libknot.so
|
|
%{_libdir}/libzscanner.so
|
|
%{_libdir}/pkgconfig/knotd.pc
|
|
%{_libdir}/pkgconfig/libdnssec.pc
|
|
%{_libdir}/pkgconfig/libknot.pc
|
|
%{_libdir}/pkgconfig/libzscanner.pc
|
|
|
|
%files doc
|
|
%dir %{_pkgdocdir}
|
|
%{_pkgdocdir}/html
|
|
|
|
%changelog
|
|
* Mon Jan 22 2018 Tomas Krizek <tomas.krizek@nic.cz> - 2.6.4-1
|
|
- Added PGP signature verification
|
|
- Added integration test
|
|
|
|
- New upstream release 2.6.4
|
|
|
|
Knot DNS 2.6.4 (2018-01-02)
|
|
===========================
|
|
|
|
Features:
|
|
---------
|
|
- Module synthrecord allows multiple 'network' specification
|
|
- New CSK handling support in keymgr
|
|
|
|
Improvements:
|
|
-------------
|
|
- Allowed configuration for infinite zsk lifetime
|
|
- Increased performance and security of the module synthrecord
|
|
- Signing changeset is stored into journal even if 'zonefile-load' is whole
|
|
|
|
Bugfixes:
|
|
---------
|
|
- Unintentional zone re-sign during reload if empty NSEC3 salt
|
|
- Inconsistent zone names in journald structured logs
|
|
- Malformed outgoing transfer for big zone with TSIG
|
|
- Some minor DNSSEC-related issues
|
|
|
|
Knot DNS 2.6.3 (2017-11-24)
|
|
===========================
|
|
|
|
Bugfixes:
|
|
---------
|
|
- Wrong detection of signing scheme rollover
|
|
|
|
Knot DNS 2.6.2 (2017-11-23)
|
|
===========================
|
|
|
|
Features:
|
|
---------
|
|
- CSK algorithm rollover and (KSK, ZSK) <-> CSK rollover support
|
|
|
|
Improvements:
|
|
-------------
|
|
- Allowed explicit configuration for infinite ksk lifetime
|
|
- Proper error messages instead of unclear error codes in server log
|
|
- Better support for old compilers
|
|
|
|
Bugfixes:
|
|
---------
|
|
- Unexpected reply for DS query with an owner below a delegation point
|
|
- Old dependencies in the pkg-config file
|
|
|
|
|
|
* Mon Nov 06 2017 Petr Špaček <petr.spacek@nic.cz> - 2.6.1-1
|
|
- New upstream release 2.6.1
|
|
|
|
Knot DNS 2.6.1 (2017-11-02)
|
|
===========================
|
|
|
|
Features:
|
|
---------
|
|
- NSEC3 Opt-Out support in the DNSSEC signing
|
|
- New CDS/CDNSKEY publish configuration option
|
|
|
|
Improvements:
|
|
-------------
|
|
- Simplified DNSSEC log message with DNSKEY details
|
|
- +tls-hostname in kdig implies +tls-ca if neither +tls-ca nor +tls-pin is given
|
|
- New documentation sections for DNSSEC key rollovers and shared keys
|
|
- Keymgr no longer prints useless algorithm number for generated key
|
|
- Kdig prints unknown RCODE in a numeric format
|
|
- Better support for LLVM libFuzzer
|
|
|
|
Bugfixes:
|
|
---------
|
|
- Faulty DNAME semantic check if present in the zone apex and NSEC3 is used
|
|
- Immediate zone flush not scheduled during the zone load event
|
|
- Server crashes upon dynamic zone addition if a query module is loaded
|
|
- Kdig fails to connect over TLS due to SNI is set to server IP address
|
|
- Possible out-of-bounds memory access at the end of the input
|
|
- TCP Fast Open enabled by default in kdig breaks TLS connection
|
|
|
|
Knot DNS 2.6.0 (2017-09-29)
|
|
===========================
|
|
|
|
Features:
|
|
---------
|
|
- On-slave (inline) signing support
|
|
- Automatic DNSSEC key algorithm rollover
|
|
- Ed25519 algorithm support in DNSSEC (requires GnuTLS 3.6.0)
|
|
- New 'journal-content' and 'zonefile-load' configuration options
|
|
- keymgr tries to run as user/group set in the configuration
|
|
- Public-only DNSSEC key import into KASP DB via keymgr
|
|
- NSEC3 resalt and parent DS query events are persistent in timer DB
|
|
- New processing state for a response suppression within a query module
|
|
- Enabled server side TCP Fast Open if supported
|
|
- TCP Fast Open support in kdig
|
|
|
|
Improvements:
|
|
-------------
|
|
- Better record owner compression if related to the previous rdata dname
|
|
- NSEC(3) chain is no longer recomputed whole on every update
|
|
- Remove inconsistent and unnecessary quoting in log files
|
|
- Avoiding of overlapping key rollovers at a time
|
|
- More DNSSSEC-related semantic checks
|
|
- Extended timestamp format in keymgr
|
|
|
|
Bugfixes:
|
|
---------
|
|
- Incorrect journal free space computation causing inefficient space handling
|
|
- Interface-automatic broken on Linux in the presence of asymmetric routing
|
|
|
|
Knot DNS 2.5.5 (2017-09-29)
|
|
===========================
|
|
|
|
Improvements:
|
|
-------------
|
|
- Constant time memory comparison in the TSIG processing
|
|
- Proper use of the ctype functions
|
|
- Generated RRSIG records have inception time 90 minutes in the past
|
|
|
|
Bugfixes:
|
|
---------
|
|
- Incorrect online signature for NSEC in the case of a CNAME record
|
|
- Incorrect timestamps in dnstap records
|
|
- EDNS Subnet Client validation rejects valid payloads
|
|
- Module configuration semantic checks are not executed
|
|
- Kzonecheck segfaults with unusual inputs
|
|
|
|
Knot DNS 2.5.4 (2017-08-31)
|
|
===========================
|
|
|
|
Improvements:
|
|
-------------
|
|
- New minimum and maximum refresh interval config options (Thanks to Manabu Sonoda)
|
|
- New warning when unforced flush with disabled zone file synchronization
|
|
- New 'dnskey' keymgr command
|
|
- Linking with libatomic on architectures that require it (Thanks to Pierre-Olivier Mercier)
|
|
- Removed 'OK' from listing keymgr command outputs
|
|
- Extended journal and keymgr documentation and logging
|
|
|
|
Bugfixes:
|
|
---------
|
|
- Incorrect handling of specific corner-cases with zone-in-journal
|
|
- The 'share' keymgr command doesn't work
|
|
- Server crashes if configured with query-size and reply-size statistics options
|
|
- Malformed big integer configuration values on some 32-bit platforms
|
|
- Keymgr uses local time when parsing date inputs
|
|
- Memory leak in kdig upon IXFR query
|
|
|
|
* Mon Jul 31 2017 Petr Spacek <petr.spacek@nic.cz> - 2.5.3-1
|
|
- new upstream release
|
|
WARNING: Automatic upgrade from versions 1.y.z is no longer possible.
|
|
To migrate, upgrade your packages gradually or use contacts listed on
|
|
https://www.knot-dns.cz/support/ (if you are in trouble).
|
|
|
|
Knot DNS 2.5.3 (2017-07-14)
|
|
===========================
|
|
|
|
Features:
|
|
---------
|
|
- CSK rollover support for Single-Type Signing Scheme
|
|
|
|
Improvements:
|
|
-------------
|
|
- Allowed binding to non-local adresses for TCP (Thanks to Julian Brost!)
|
|
- New documentation section for manual DNSSEC key algorithm rollover
|
|
- Initial KSK also generated in the submission state
|
|
- The 'ds' keymgr command with no parameter uses all KSK keys
|
|
- New debug mode in kjournalprint
|
|
- Updated keymgr documentation
|
|
|
|
Bugfixes:
|
|
---------
|
|
- Sometimes missing RRSIG by KSK in submission state.
|
|
- Minor DNSSEC-related issues
|
|
|
|
Knot DNS 2.5.2 (2017-06-23)
|
|
===========================
|
|
|
|
Security:
|
|
---------
|
|
- CVE-2017-11104: Improper TSIG validity period check can allow TSIG forgery (Thanks to Synacktiv!)
|
|
|
|
Improvements:
|
|
-------------
|
|
- Extended debug logging for TSIG errors
|
|
- Better error message for unknown module section in the configuration
|
|
- Module documentation compilation no longer depends on module configuration
|
|
- Extended policy section configuration semantic checks
|
|
- Improved python version compatibility in pykeymgr
|
|
- Extended migration section in the documentation
|
|
- Improved DNSSEC event timing on 32-bit systems
|
|
- New KSK rollover start log info message
|
|
- NULL qtype support in kdig
|
|
|
|
Bugfixes:
|
|
---------
|
|
- Failed to process included configuration
|
|
- dnskey_ttl policy option in the configuration has no effect on DNSKEY TTL
|
|
- Corner case journal fixes (huge changesets, OpenWRT operation)
|
|
- Confusing event timestamps in knotc zone-status output
|
|
- NSEC/NSEC3 bitmap not updated for CDS/CDNSKEY
|
|
- CDS/CDNSKEY RRSIG not updated
|
|
|
|
Knot DNS 2.5.1 (2017-06-07)
|
|
===========================
|
|
|
|
Bugfixes:
|
|
---------
|
|
- pykeymgr no longer crash on empty json files in the KASP DB directory
|
|
- pykeymgr no longer imports keys in the "removed" state
|
|
- Imported keys in the "removed" state no longer makes knotd to crash
|
|
- Including an empty configuration directory no longer makes knotd to crash
|
|
- pykeymgr is distributed and installed to the distribution tarball
|
|
|
|
Knot DNS 2.5.0 (2017-06-05)
|
|
===========================
|
|
|
|
Features:
|
|
---------
|
|
- KASP database switched from JSON files to LMDB database
|
|
- KSK rollover support using CDNSKEY and CDS in the automatic DNSSEC signing
|
|
- Dynamic module loading support with proper module API
|
|
- Journal can store full zone contents (not only differences)
|
|
- Zone freeze/thaw support
|
|
- Updated knotc zone-status output with optional column filters
|
|
- New '[no]crypto' option in kdig
|
|
- New keymgr implementation reflecting KASP database changes
|
|
- New pykeymgr for JSON-based KASP database migration
|
|
- Removed obsolete knot1to2 utility
|
|
|
|
Improvements:
|
|
-------------
|
|
- Added libidn2 support to kdig (with libidn fallback)
|
|
- Maximum timer database switched from configure to the server configuration
|
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.5-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
* Mon Jul 10 2017 Petr Spacek <petr.spacek@nic.cz> - 2.4.5-1
|
|
New upstream release: 2.4.5
|
|
|
|
Knot DNS 2.4.5 (2017-06-23)
|
|
===========================
|
|
|
|
Security:
|
|
---------
|
|
- Improper TSIG validity period check can allow TSIG forgery (Thanks to Synacktiv!)
|
|
|
|
Bugfixes:
|
|
---------
|
|
- Corner case journal fixes (huge changesets, OpenWRT operation)
|
|
|
|
Knot DNS 2.4.4 (2017-06-05)
|
|
===========================
|
|
|
|
Improvements:
|
|
-------------
|
|
- Improved error handling in kjournalprint
|
|
|
|
Bugfixes:
|
|
---------
|
|
- Zone flush not replanned upon unsuccessful flush
|
|
- Journal inconsistency after deleting deleted zone
|
|
- Zone events not rescheduled upon server reload (Thanks to Mark Warren)
|
|
- Unreliable LMDB mapsize detection in kjournalprint
|
|
- Some minor issues found by AddressSanitizer
|
|
|
|
Knot DNS 2.4.3 (2017-04-11)
|
|
===========================
|
|
|
|
Improvements:
|
|
-------------
|
|
- New 'journal-db-mode' optimization configuration option
|
|
- The default TSIG algorithm for utilities input is HMAC-SHA256
|
|
- Implemented sensible default EDNS(0) padding policy (Thanks to D. K. Gillmor)
|
|
- Added some more semantic checks on the knotc configuration operations
|
|
|
|
Bugfixes:
|
|
---------
|
|
- Missing 'zone' keyword in the YAML output
|
|
- Missing trailing dot in the keymgr DS owner output
|
|
- Journal logs 'invalid parameter' in several cases
|
|
- Some minor journal-related problems
|
|
|
|
Knot DNS 2.4.2 (2017-03-23)
|
|
===========================
|
|
|
|
Features:
|
|
---------
|
|
- Zscanner can store record comments placed on the same line
|
|
- Knotc status extension with version, configure, and workers parameters
|
|
|
|
Improvements:
|
|
-------------
|
|
- Significant incoming XFR speed-up in the case of many zones
|
|
|
|
Bugfixes:
|
|
---------
|
|
- Double OPT RR insertion when a global module returns KNOT_STATE_FAIL
|
|
- User-driven zscanner parsing logic inconsistency
|
|
- Lower serial at master doesn't trigger any errors
|
|
- Queries with too long DNAME substitution do not return YXDOMAIN response
|
|
- Incorrect elapsed time in the DDNS log
|
|
- Failed to process forwarded DDNS request with TSIG
|
|
|
|
* Mon Feb 27 2017 Petr Spacek <petr.spacek@nic.cz> - 2.4.1-1
|
|
- new upstream release:
|
|
+ fix: Transfer of a huge rrset goes into an infinite loop
|
|
+ fix: Huge response over TCP contains useless TC bit instead of SERVFAIL
|
|
+ fix: Failed to build utilities with disabled daemon
|
|
+ fix: Memory leaks during keys removal
|
|
+ fix: Rough TSIG packet reservation causes early truncation
|
|
+ fix: Minor out-of-bounds string termination write in rrset dump
|
|
+ fix: Server crash during stop if failed to open timers DB
|
|
+ fix: Failed to compile on OS X older than Sierra
|
|
+ fix: Poor minimum UDP-max-size configuration check
|
|
+ fix: Failed to receive one-record-per-message IXFR-style AXFR
|
|
+ fix: Kdig timeouts when receiving RCODE != NOERROR on subsequent transfer message
|
|
+ improvement: Speed-up of rdata addition into a huge rrset
|
|
+ improvement: Introduce check of minumum timeout for next refresh
|
|
+ improvement: Dnsproxy module can forward all queries without local resolving
|
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.0-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
* Tue Jan 24 2017 Petr Spacek <petr.spacek@nic.cz> - 2.4.0-1
|
|
- new upstream release:
|
|
+ fix: False positive semantic-check warning about invalid bitmap in NSEC
|
|
+ fix: Unnecessary SOA queries upon notify with up to date serial
|
|
+ fix: Timers for expired zones are reset on reload
|
|
+ fix: Zone doesn't expire when the server is down
|
|
+ fix: Failed to handle keys with duplicate keytags
|
|
+ fix: Per zone module and global module insconsistency
|
|
+ fix: Obsolete online signing module configuration
|
|
+ fix: Malformed output from kjournalprint
|
|
+ fix: Redundant SO_REUSEPORT activation on the TCP socket
|
|
+ fix: Failed to use higher number of background workers
|
|
+ improvement: Lower memory consumption with qp-trie
|
|
+ improvement: Zone events and zone timers improvements
|
|
+ improvement: Print all zone names in the FQDN format
|
|
+ improvement: Simplified query module interface
|
|
+ improvement: Shared TCP connection between SOA query and transfer
|
|
+ improvement: Response Rate Limiting as a module with statistics support
|
|
+ improvement: Key filters in keymgr
|
|
+ features: New unified LMDB-based zone journal
|
|
+ features: Server statistics support
|
|
+ features: New statistics module for traffic measuring
|
|
+ features: Automatic deletion of retired DNSSEC keys
|
|
+ features: New control logging category
|
|
|
|
* Fri Dec 09 2016 Jan Vcelak <jvcelak@fedoraproject.org> - 2.3.3-1
|
|
- new upstream release:
|
|
+ fix: double free when failed to apply zone journal
|
|
+ fix: zone bootstrap retry interval not preserved upon zone reload
|
|
+ fix: DNSSEC related records not flushed if not signed
|
|
+ fix: false semantic checks warning about incorrect type in NSEC bitmap
|
|
+ fix: memory leak in kzonecheck
|
|
+ improvement: all zone names are fully-qualified in log
|
|
+ features: new kjournalprint utility
|
|
|
|
* Thu Nov 17 2016 Jan Vcelak <jvcelak@fedoraproject.org> - 2.3.2-1
|
|
- new upstream release:
|
|
+ fix: missing glue in some responses
|
|
+ fix: knsupdate prompt printing on non-terminal
|
|
+ fix: configuration policy item names in documentation
|
|
+ fix: segfault on OS X Sierra
|
|
+ fix: incorrect %s expansion for the root zone
|
|
+ fix: refresh not existing slave zone after restart
|
|
+ fix: immediate zone refresh upon restart if refresh already scheduled
|
|
+ fix: early zone transfer after restart if transfer already scheduled
|
|
+ fix: not ignoring empty non-terminal parents during delegation lookup
|
|
+ fix: CD bit clearing in responses
|
|
+ fix: compilation error on GNU/kFreeBSD
|
|
+ fix: server crash after double zone-commit if journal error
|
|
+ improvement: significant speed-up of conf-commit and conf-diff operations
|
|
+ improvement: new EDNS Client Subnet API
|
|
+ improvement: better semantic-checks error messages
|
|
+ improvement: speed-up of knotc if control operation and known socket
|
|
+ improvement: zone purge operation purges also zone timers
|
|
+ feature: print TLS certificate hierarchy in kdig verbose mode
|
|
+ feature: new +subnet alias for +client
|
|
+ feature: new mod-whoami and mod-noudp modules
|
|
+ feature: new zone-purge control command
|
|
+ feature: new log-queries and log-responses options for mod-dnstap
|
|
+ feature: simple modules don't require empty configuration section
|
|
+ feature: new zone journal path configuration option
|
|
+ feature: new timeout configuration option for module dnsproxy
|
|
|
|
* Mon Aug 29 2016 Jan Vcelak <jvcelak@fedoraproject.org> - 2.3.0-3
|
|
- fix post-installation scriptlet (RHBZ #1370939)
|
|
|
|
* Thu Aug 11 2016 Jan Vcelak <jvcelak@fedoraproject.org> - 2.3.0-2
|
|
- endian independent DNS cookies (fixes build on ppc64 and s390x)
|
|
|
|
* Tue Aug 09 2016 Jan Vcelak <jvcelak@fedoraproject.org> - 2.3.0-1
|
|
- new upstream release:
|
|
+ fix: No wildcard expansion below empty non-terminal for NSEC signed zone
|
|
+ fix: Don't ignore non-existing records to be removed in IXFR
|
|
+ fix: Fix kdig IXFR response processing if the transfer content is empty
|
|
+ fix: Avoid multiple loads of the same PKCS #11 module
|
|
+ improvement: Refactored semantic checks and better error messages
|
|
+ improvement: Set TC flag in delegation only if mandatory glue doesn't fit the response
|
|
+ improvement: Separate EDNS(0) payload size configuration for IPv4 and IPv6
|
|
+ feature: Zone size limit restriction for DDNS, AXFR, and IXFR (CVE-2016-6171)
|
|
+ feature: DNS-over-TLS support in kdig (RFC 7858)
|
|
+ feature: EDNS(0) padding and alignment support in kdig (RFC 7830)
|
|
|
|
* Fri Jun 24 2016 Jan Vcelak <jvcelak@fedoraproject.org> - 2.2.1-2
|
|
- rebuild for updated userspace-rcu
|
|
|
|
* Mon May 30 2016 Jan Vcelak <jvcelak@fedoraproject.org> - 2.2.1-1
|
|
- new upstream release:
|
|
+ fix: Separate logging of server and zone events
|
|
+ fix: Concurrent zone file flushing with many zones
|
|
+ fix: Control timeout parsing in knotc
|
|
+ fix: "Environment maxreaders limit reached" error in knotc
|
|
+ fix: Don't apply journal changes on modified zone file
|
|
+ fix: Enable multiple zone names completion in interactive knotc
|
|
+ fix: Set the TC flag in a response if a glue doesn't fit the response
|
|
+ fix: Disallow server reload when there is an active configuration transaction
|
|
+ improvement: Distinguish unavailable zones from zones with zero serial in log messages
|
|
+ improvement: Log warning and error messages to standard error output in all utilities
|
|
+ improvement: Document tested PKCS #11 devices
|
|
+ improvement: Extended Python configuration interface
|
|
- update requirements for Fedora 25
|
|
|
|
* Sun May 29 2016 Jan Vcelak <jvcelak@fedoraproject.org> - 2.2.0-3
|
|
- update default configuration file
|
|
|
|
* Sun May 08 2016 Jan Vcelak <jvcelak@fedoraproject.org> - 2.2.0-2
|
|
- fix: systemd service starting
|
|
|
|
* Tue Apr 26 2016 Jan Vcelak <jvcelak@fedoraproject.org> - 2.2.0-1
|
|
- new upstream release:
|
|
+ fix: Query/response message type setting in dnstap module
|
|
+ fix: Remote address retrieval from dnstap capture in kdig
|
|
+ fix: Global modules execution for queries hitting existing zones
|
|
+ fix: Execution of semantic checks after an IXFR transfer
|
|
+ fix: kdig failure when the first AXFR message contains just the SOA record
|
|
+ fix: Exclude non-authoritative types from NSEC/NSEC3 bitmap at a delegation
|
|
+ fix: Mark PKCS#11 generated keys as sensitive
|
|
+ fix: Error when removing the only zone from the server
|
|
+ fix: Don't abort knotc transaction when some check fails
|
|
+ feature: URI and CAA resource record types support
|
|
+ feature: RRL client address based white list
|
|
+ feature: knotc interactive mode
|
|
+ improvement: Consistent IXFR error messages
|
|
+ improvement: Various fixes for better compatibility with PKCS#11 devices
|
|
+ improvement: Various keymgr user interface improvements
|
|
+ improvement: Better zone event scheduler performance with many zones
|
|
+ improvement: New server control interface
|
|
+ improvement: kdig uses local resolver if resolv.conf is empty
|
|
|
|
* Wed Feb 10 2016 Jan Vcelak <jvcelak@fedoraproject.org> 2.1.1-1
|
|
- new upstream release:
|
|
+ fix: Allow import of duplicate private key into the KASP
|
|
+ fix: Avoid duplicate NSEC for Wildcard No Data answer
|
|
+ fix: Server crash when an incomming transfer is in progress and reload is issued
|
|
+ fix: Socket polling when configured with many interfaces and threads
|
|
+ improvement: Use correct source address for UDP messages recieved on ANY address
|
|
+ improvement: Extend documentation of knotc commands
|
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.1.0-2
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
* Thu Jan 14 2016 Jan Vcelak <jvcelak@fedoraproject.org> 2.1.0-1
|
|
- new upstream release:
|
|
+ improvement: Remove implementation limit for the number of network interfaces
|
|
+ improvement: Remove possibly insecure server control over a network socket
|
|
+ fix: Schedule zone bootstrap after slave zone fails to load from disk
|
|
|
|
* Sun Dec 20 2015 Jan Vcelak <jvcelak@fedoraproject.org> 2.1.0-0.1.rc1
|
|
- new upstream pre-release:
|
|
+ feature: Per-thread UDP socket binding using SO_REUSEPORT
|
|
+ feature: Support for dynamic configuration database
|
|
+ feature: DNSSEC, Support for cryptographic tokens via PKCS #11 interface
|
|
+ feature: DNSSEC, Experimental support for online signing
|
|
+ improvement: Support for zone file name patterns
|
|
+ improvement: Configurable location of zone timer database
|
|
+ improvement: Non-blocking network operations and better timeout handling
|
|
+ improvement: Caching of Critical configuration values for better performance
|
|
+ improvement: Logging of ACL failures
|
|
+ improvement: RRL: Add rate-limit-slip zero support to drop all responses
|
|
+ improvement: RRL: Document behavior for different rate-limit-slip options
|
|
+ improvement: kdig: Warning instead of error on TSIG validation failure
|
|
+ improvement: Cleanup of support libraries interfaces (libknot, libzscanner, libdnssec)
|
|
+ fix: synth-record module: Fix application of default configuration options
|
|
+ fix: TSIG: Allow compressed TSIG name when forwarding DDNS updates
|
|
|
|
* Wed Nov 25 2015 Jan Vcelak <jvcelak@fedoraproject.org> 2.0.2-1
|
|
- new upstream release:
|
|
+ security fix: out-of-bound read in packet parser for malformed NAPTR record
|
|
|
|
* Thu Sep 03 2015 Jan Vcelak <jvcelak@fedoraproject.org> 2.0.1-1
|
|
- new upstream release:
|
|
+ fix: do not reload expired zones on 'knotc reload' and server startup
|
|
+ fix: rare race-condition in event scheduling causing delayed event execution
|
|
+ fix: skipping of non-authoritative nodes in NSEC proofs
|
|
+ fix: TC flag setting in RRL slipped answers
|
|
+ fix: disable domain name compression for root label
|
|
+ fix: fix CNAME following when quering for NSEC RR type
|
|
+ fix: fix refreshing of DNSSEC signatures for zone keys
|
|
+ fix: fix binding an unavailable IPv6 address (IP_FREEBIND)
|
|
+ fix: fix infinite loop in knotc zonestatus and memstats
|
|
+ fix: fix memory leak in configuration on server shutdown
|
|
+ fix: fix broken dnsproxy module
|
|
+ fix: fix multi value parsing on big-endian
|
|
+ fix: adapt to Nettle 3 API break causing base64 decoding failures on big-endian
|
|
+ feature: add 'keymgr zone key ds' to show key's DS record
|
|
+ feature: add 'keymgr tsig generate' to generate TSIG keys
|
|
+ feature: add query module scoping to process either all queries or zone queries only
|
|
+ feature: add support for file name globbing in config file includes
|
|
+ feature: add 'request-edns-option' config option to add custom EDNS0 option into server initiated queries
|
|
+ improvement: send minimal responses (remove NS from Authority section for NOERROR)
|
|
+ improvement: update persistent timers only on shutdown for better performance
|
|
+ improvement: allow change of RR TTL over DDNS
|
|
+ improvement: documentation fixes, updates, and improvements in formatting
|
|
+ improvement: install yparser and zscanner header files
|
|
|
|
* Mon Jul 20 2015 Jan Vcelak <jvcelak@fedoraproject.org> 2.0.0-1
|
|
- new upstream release:
|
|
+ feature: possibility to disable zone file synchronization
|
|
+ feature: knsupdate, add input prompt in interactive mode
|
|
+ feature: knsupdate, TSIG algorithm specification in interactive mode
|
|
|
|
* Thu Jun 18 2015 Jan Vcelak <jvcelak@fedoraproject.org> 2.0.0-0.1.rc1
|
|
- new upstream pre-release:
|
|
+ fix: lost NOTIFY message if received during zone transfer
|
|
+ fix: kdig, record correct dnstap SocketProtocol when retrying over TCP
|
|
+ fix: kdig, hide TSIG section with +noall
|
|
+ fix: do not set AA flag for AXFR/IXFR queries
|
|
+ feature: new configuration format in YAML, binary store im LMDB
|
|
+ feature: DNSSEC, separate library, switch to GnuTLS, new utilities
|
|
+ feature: DNSSEC, basic KASP support (generate initial keys, ZSK rollover)
|
|
+ feature: zone parser, split long TXT/SPF strings into multiple strings
|
|
+ feature: kdig, add generic dump style option (+generic)
|
|
+ feature: try all master servers on failure in multi-master environment
|
|
+ feature: improved remotes and ACLs (multiple addresses, multiple keys)
|
|
+ feature: basic support for zone file patterns (%s to substitute zone name)
|
|
+ improvement: do not write class for SOA record (unified with other RR types)
|
|
+ improvement: do not write master server address into the zone file
|
|
+ documentation: manual pages also in HTML and PDF format
|
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.99.1-4
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
* Mon May 04 2015 Kalev Lember <kalevlember@gmail.com> - 1.99.1-3
|
|
- Rebuilt for nettle soname bump
|
|
|
|
* Fri Feb 13 2015 Jan Vcelak <jvcelak@fedoraproject.org> 1.99.1-2
|
|
- fix BuildRequires for systemd integration
|
|
|
|
* Fri Feb 13 2015 Jan Vcelak <jvcelak@fedoraproject.org> 1.99.1-1
|
|
- new upstream pre-release version:
|
|
+ DNSSEC: switch from OpenSSL to GnuTLS
|
|
+ DNSSEC: initial support for KASP
|
|
- split package into subpackages
|
|
- add documentation building
|
|
- restart daemon on updated
|