]> git.ipfire.org Git - thirdparty/pdns.git/log
thirdparty/pdns.git
4 years agoMerge pull request #8766 from zeha/chrish
Peter van Dijk [Wed, 12 Feb 2020 20:16:30 +0000 (21:16 +0100)] 
Merge pull request #8766 from zeha/chrish

Update my name in old changelogs

4 years agoMerge pull request #8793 from rgacogne/auth-reserve-caches
Peter van Dijk [Wed, 12 Feb 2020 20:06:24 +0000 (21:06 +0100)] 
Merge pull request #8793 from rgacogne/auth-reserve-caches

auth: Prepare the caches' buckets in advance

4 years agodocs security-policy: fix typo in my email address
Peter van Dijk [Wed, 12 Feb 2020 19:03:43 +0000 (20:03 +0100)] 
docs security-policy: fix typo in my email address

4 years agoMerge pull request #8760 from rgacogne/ddist-doh-exact-match
Remi Gacogne [Wed, 12 Feb 2020 09:09:24 +0000 (10:09 +0100)] 
Merge pull request #8760 from rgacogne/ddist-doh-exact-match

dnsdist: Don't accept sub-paths of configured DoH URLs

4 years agoUpdate pdns/dnsdistdist/docs/upgrade_guide.rst 8760/head
Remi Gacogne [Wed, 12 Feb 2020 09:09:04 +0000 (10:09 +0100)] 
Update pdns/dnsdistdist/docs/upgrade_guide.rst

Co-Authored-By: Otto Moerbeek <otto.moerbeek@open-xchange.com>
4 years agoMerge pull request #8355 from stephanbosch/netmask-tree
Remi Gacogne [Wed, 12 Feb 2020 08:43:49 +0000 (09:43 +0100)] 
Merge pull request #8355 from stephanbosch/netmask-tree

Rework NetmaskTree for better CPU and memory efficiency.

4 years agoiputils.hh: NetmaskTree: Make the node_type key value const. 8355/head
Stephan Bosch [Wed, 9 Oct 2019 00:06:33 +0000 (02:06 +0200)] 
iputils.hh: NetmaskTree: Make the node_type key value const.

This prevents changing the key used by the tree, which would otherwise provide
an opportunity to corrupt the tree.

4 years agoiputils.hh: NetmaskTree: Make the iterator reference a normal reference rather than...
Stephan Bosch [Mon, 30 Sep 2019 13:10:42 +0000 (15:10 +0200)] 
iputils.hh: NetmaskTree: Make the iterator reference a normal reference rather than a pointer.

This is possible now that the iterator type is no longer dictated by the
internal std::set. This changes the NetmaskTree::iterator API, but it makes it
more standard, less cumbersome, and less confusing.

4 years agoiputils.hh: NetmaskTree: Make TreeNode::node a normal field rather than a pointer.
Stephan Bosch [Mon, 30 Sep 2019 12:33:43 +0000 (14:33 +0200)] 
iputils.hh: NetmaskTree: Make TreeNode::node a normal field rather than a pointer.

It no longer needs to be allocated separately.

4 years agoiputils.hh: NetmaskTree: Drop the internal std::set.
Stephan Bosch [Mon, 30 Sep 2019 08:30:25 +0000 (10:30 +0200)] 
iputils.hh: NetmaskTree: Drop the internal std::set.

It is now superfluous.

4 years agoMerge pull request #8777 from omoerbeek/rec-wip-qname-vs-ds
Otto Moerbeek [Tue, 11 Feb 2020 16:08:28 +0000 (17:08 +0100)] 
Merge pull request #8777 from omoerbeek/rec-wip-qname-vs-ds

rec: QNAME minimization sometimes uses 1 label too many

4 years agodnsdist: Document that we no longer start as root by default
Remi Gacogne [Tue, 11 Feb 2020 15:40:31 +0000 (16:40 +0100)] 
dnsdist: Document that we no longer start as root by default

4 years agodnsdist: Document that DoH paths are now exact matches.
Remi Gacogne [Tue, 11 Feb 2020 15:40:11 +0000 (16:40 +0100)] 
dnsdist: Document that DoH paths are now exact matches.

4 years agoTypos 8777/head
Otto Moerbeek [Tue, 11 Feb 2020 14:58:35 +0000 (15:58 +0100)] 
Typos

4 years agobuilder: also touch /var/lib/rpm/* before build-specs
Peter van Dijk [Tue, 11 Feb 2020 12:22:44 +0000 (13:22 +0100)] 
builder: also touch /var/lib/rpm/* before build-specs

4 years agoMerge pull request #8778 from Habbie/recursor-rpz-refresh
Otto Moerbeek [Tue, 11 Feb 2020 11:33:09 +0000 (12:33 +0100)] 
Merge pull request #8778 from Habbie/recursor-rpz-refresh

rec RPZ dumpFile/seedFile: store/get SOA refresh on dump/load

4 years agoWarn at refresh=0 8778/head
Otto Moerbeek [Tue, 11 Feb 2020 11:30:29 +0000 (12:30 +0100)] 
Warn at refresh=0

4 years agoMerge pull request #8807 from Habbie/docker-ovl-rpm
Peter van Dijk [Tue, 11 Feb 2020 10:33:32 +0000 (11:33 +0100)] 
Merge pull request #8807 from Habbie/docker-ovl-rpm

builder: touch /var/lib/rpm/* in every docker layer that uses rpmdb

4 years agobuilder: touch /var/lib/rpm/* in every docker layer that uses rpmdb 8807/head
Peter van Dijk [Tue, 11 Feb 2020 10:06:03 +0000 (11:06 +0100)] 
builder: touch /var/lib/rpm/* in every docker layer that uses rpmdb

references:
https://github.com/pombredanne/dnf-plugin-ovl
https://bugzilla.redhat.com/show_bug.cgi?id=1213602

4 years agoMerge pull request #8804 from rgacogne/ddist-install-config-file
Peter van Dijk [Tue, 11 Feb 2020 05:56:30 +0000 (06:56 +0100)] 
Merge pull request #8804 from rgacogne/ddist-install-config-file

dnsdist: Fix configuration file installation / chmod

4 years agoiputils.hh: NetmaskTree: Add iterator class and use it for begin() and end() methods.
Stephan Bosch [Mon, 30 Sep 2019 08:30:25 +0000 (10:30 +0200)] 
iputils.hh: NetmaskTree: Add iterator class and use it for begin() and end() methods.

4 years agoiputils.hh: NetmaskTree: Keep track of the left-most node in the tree.
Stephan Bosch [Mon, 30 Sep 2019 08:30:25 +0000 (10:30 +0200)] 
iputils.hh: NetmaskTree: Keep track of the left-most node in the tree.

Needed to provide a begin() iterator in constant time.

4 years agoiputils.hh: NetmaskTree: Copy the tree using tree traversal.
Stephan Bosch [Mon, 30 Sep 2019 08:30:25 +0000 (10:30 +0200)] 
iputils.hh: NetmaskTree: Copy the tree using tree traversal.

Before, it used the internal std::set.

4 years agoiputils.hh: NetmaskTree::TreeNode: Implement tree traversal methods.
Stephan Bosch [Mon, 30 Sep 2019 08:30:25 +0000 (10:30 +0200)] 
iputils.hh: NetmaskTree::TreeNode: Implement tree traversal methods.

4 years agoiputils.hh: NetmaskTree: Make tree cleanup mandatory.
Stephan Bosch [Mon, 30 Sep 2019 08:30:25 +0000 (10:30 +0200)] 
iputils.hh: NetmaskTree: Make tree cleanup mandatory.

Potentially leaving branches full of unassigned nodes unnecessarily complicates
tree algorithms. Disabling tree cleanup was not used anywhere, except for a unit
test. Note that, after this change, individual branch nodes can still be
unassigned, but not the whole branch. So, when e.g. the left sub-branch of a
node exists, algorithms can rely on the fact that there is at least one assigned
node in there.

4 years agoiputils.hh: NetmaskTree: Always normalize key netmasks.
Stephan Bosch [Wed, 9 Oct 2019 20:49:21 +0000 (22:49 +0200)] 
iputils.hh: NetmaskTree: Always normalize key netmasks.

This makes address bits below the network mask all zero, which is consistent
with the tree's behavior.

This change addresses one sensitivity to this behavioral change in the recursor
cache.

4 years agoiputils.hh: NetmaskTree: Reduce the number of tree nodes.
Stephan Bosch [Mon, 30 Sep 2019 08:30:25 +0000 (10:30 +0200)] 
iputils.hh: NetmaskTree: Reduce the number of tree nodes.

Before, it created a tree node for every network bit in the netmask. Now, it
only creates a tree node when necessary (only for values and branches).

4 years agoiputils.hh: NetmaskTree: Initialize TreeNode::node immediately.
Stephan Bosch [Mon, 30 Sep 2019 08:30:25 +0000 (10:30 +0200)] 
iputils.hh: NetmaskTree: Initialize TreeNode::node immediately.

Later commit relies on this.

4 years agoiputils.hh: NetmaskTree: Use for loops instead of while loops.
Stephan Bosch [Mon, 30 Sep 2019 08:30:25 +0000 (10:30 +0200)] 
iputils.hh: NetmaskTree: Use for loops instead of while loops.

Makes using `continue' easier in later commit.

4 years agoiputils.hh: NetmaskTree: Restructure the tree with separate branches for for IPv4...
Stephan Bosch [Mon, 30 Sep 2019 08:30:25 +0000 (10:30 +0200)] 
iputils.hh: NetmaskTree: Restructure the tree with separate branches for for IPv4 and IPv6

This simplifies the code considerably.

4 years agoiputils.hh: NetmaskTree: Rename field "root" to "d_root"
Stephan Bosch [Mon, 30 Sep 2019 08:30:25 +0000 (10:30 +0200)] 
iputils.hh: NetmaskTree: Rename field "root" to "d_root"

4 years agoiputils.hh: NetmaskTree: Use ComboAddress::getBit() and Netmask::getBit()
Stephan Bosch [Mon, 30 Sep 2019 08:30:25 +0000 (10:30 +0200)] 
iputils.hh: NetmaskTree: Use ComboAddress::getBit() and Netmask::getBit()

4 years agoiputils.hh: NetmaskTree: Make cleanup_tree() method private.
Stephan Bosch [Wed, 9 Oct 2019 01:49:33 +0000 (03:49 +0200)] 
iputils.hh: NetmaskTree: Make cleanup_tree() method private.

4 years agoiputils.hh: Netmask: Prevent the construction of a 128-bit IPv4 netmask.
Stephan Bosch [Mon, 30 Sep 2019 08:30:24 +0000 (10:30 +0200)] 
iputils.hh: Netmask: Prevent the construction of a 128-bit IPv4 netmask.

4 years agoiputils.hh: Netmask: Add getBit()
Stephan Bosch [Mon, 30 Sep 2019 08:30:24 +0000 (10:30 +0200)] 
iputils.hh: Netmask: Add getBit()

4 years agoiputils.hh: Netmask: Add getAddressBits()
Stephan Bosch [Mon, 30 Sep 2019 08:30:24 +0000 (10:30 +0200)] 
iputils.hh: Netmask: Add getAddressBits()

4 years agoiputils.hh: ComboAddress: Add getBit()
Stephan Bosch [Mon, 30 Sep 2019 08:30:24 +0000 (10:30 +0200)] 
iputils.hh: ComboAddress: Add getBit()

4 years agoiputils.hh: ComboAddress: Add getBits()
Stephan Bosch [Mon, 30 Sep 2019 08:30:24 +0000 (10:30 +0200)] 
iputils.hh: ComboAddress: Add getBits()

4 years agoiputils.hh: Netmask: Add getSuper()
Stephan Bosch [Wed, 9 Oct 2019 00:23:30 +0000 (02:23 +0200)] 
iputils.hh: Netmask: Add getSuper()

4 years agotest-iputils_hh.cc: Add tests for NetmaskTree copy, swap and iterator operations.
Stephan Bosch [Mon, 30 Sep 2019 08:30:24 +0000 (10:30 +0200)] 
test-iputils_hh.cc: Add tests for NetmaskTree copy, swap and iterator operations.

4 years agoiputils.hh: Netmask: Add getNormalized()
Stephan Bosch [Wed, 9 Oct 2019 00:34:15 +0000 (02:34 +0200)] 
iputils.hh: Netmask: Add getNormalized()

4 years agotest-iputils_hh.cc: Test 0.0.0.0 address at serveral network bit ranges.
Stephan Bosch [Mon, 30 Sep 2019 08:30:24 +0000 (10:30 +0200)] 
test-iputils_hh.cc: Test 0.0.0.0 address at serveral network bit ranges.

4 years agotest-iputils_hh.cc: Better verify the NetmaskTree container size during tests.
Stephan Bosch [Mon, 30 Sep 2019 08:30:24 +0000 (10:30 +0200)] 
test-iputils_hh.cc: Better verify the NetmaskTree container size during tests.

4 years agoiputils.hh: Consistently use nullptr rather than NULL.
Stephan Bosch [Wed, 9 Oct 2019 01:34:13 +0000 (03:34 +0200)] 
iputils.hh: Consistently use nullptr rather than NULL.

4 years agoiputils.hh: Fix erroneous comments.
Stephan Bosch [Wed, 9 Oct 2019 20:36:12 +0000 (22:36 +0200)] 
iputils.hh: Fix erroneous comments.

4 years agoReformat test-iputils_hh.cc.
Stephan Bosch [Mon, 30 Sep 2019 08:30:24 +0000 (10:30 +0200)] 
Reformat test-iputils_hh.cc.

Remove a few empty lines.

4 years agoReformat iputils.hh
Stephan Bosch [Mon, 30 Sep 2019 08:30:24 +0000 (10:30 +0200)] 
Reformat iputils.hh

Mainly removed whitespace at end of line and fixed several indenting mishaps.

4 years agoMerge pull request #8803 from rgacogne/dnsname-centos-6
Peter van Dijk [Mon, 10 Feb 2020 18:23:08 +0000 (19:23 +0100)] 
Merge pull request #8803 from rgacogne/dnsname-centos-6

Fix "error: 'strlen' was not declared in this scope" on CentOS 6

4 years agodnsdist: Fix configuration file installation / chmod 8804/head
Remi Gacogne [Mon, 10 Feb 2020 17:12:47 +0000 (18:12 +0100)] 
dnsdist: Fix configuration file installation / chmod

Introduced in c98c0ef694de0c536e6d71af8c58a16f6635ea35

4 years agoFix "error: 'strlen' was not declared in this scope" on CentOS 6 8803/head
Remi Gacogne [Mon, 10 Feb 2020 17:10:01 +0000 (18:10 +0100)] 
Fix "error: 'strlen' was not declared in this scope" on CentOS 6

4 years agoMerge pull request #8800 from Habbie/dnsdist-docs-tables
Peter van Dijk [Mon, 10 Feb 2020 16:33:18 +0000 (17:33 +0100)] 
Merge pull request #8800 from Habbie/dnsdist-docs-tables

dnsdist docs: refer to new tables. Fixes #8798

4 years agoMerge pull request #8783 from rgacogne/cpu-steal-iowait
Remi Gacogne [Mon, 10 Feb 2020 14:36:47 +0000 (15:36 +0100)] 
Merge pull request #8783 from rgacogne/cpu-steal-iowait

Add 'IO wait' and 'steal' metrics on Linux

4 years agoTweaks for minimum time
Otto Moerbeek [Mon, 10 Feb 2020 14:17:09 +0000 (15:17 +0100)] 
Tweaks for minimum time

4 years agoIntroduce an explicit refreshFromConf arg to RPZIXFRTracker.
Otto Moerbeek [Mon, 10 Feb 2020 13:31:41 +0000 (14:31 +0100)] 
Introduce an explicit refreshFromConf arg to RPZIXFRTracker.

Always load and store the rpz refresh value from and to the zone.
That we we can easily decide which value to use: if an explicit
refreshFromConf value is set, use that one, otherwise use the one
in the rpz zone.

4 years agoDocument that IO wait and steal metrics are in units of USER_HZ. 8783/head
Remi Gacogne [Mon, 10 Feb 2020 10:53:24 +0000 (11:53 +0100)] 
Document that IO wait and steal metrics are in units of USER_HZ.

4 years agoMerge pull request #8801 from rgacogne/ddist-setwebapikey
Remi Gacogne [Mon, 10 Feb 2020 10:26:33 +0000 (11:26 +0100)] 
Merge pull request #8801 from rgacogne/ddist-setwebapikey

dnsdist: Fix a typo 'apikey' -> 'apiKey' in setWebserverConfig() doc

4 years agodnsdist: Fix a typo 'apikey' -> 'apiKey' in setWebserverConfig() doc 8801/head
Remi Gacogne [Mon, 10 Feb 2020 10:25:16 +0000 (11:25 +0100)] 
dnsdist: Fix a typo 'apikey' -> 'apiKey' in setWebserverConfig() doc

4 years agodnsdist docs: refer to new tables. Fixes #8798 8800/head
Peter van Dijk [Mon, 10 Feb 2020 09:40:39 +0000 (10:40 +0100)] 
dnsdist docs: refer to new tables. Fixes #8798

4 years agoMerge pull request #8792 from rgacogne/dnsname-strlen
Remi Gacogne [Mon, 10 Feb 2020 09:17:39 +0000 (10:17 +0100)] 
Merge pull request #8792 from rgacogne/dnsname-strlen

DNSName: Don't call strlen() when the length is already known

4 years agoMerge pull request #8737 from Habbie/circleci-pager
Remi Gacogne [Fri, 7 Feb 2020 14:32:57 +0000 (15:32 +0100)] 
Merge pull request #8737 from Habbie/circleci-pager

avoid 'git show -s' from starting a pager in CircleCI

4 years agoDNSName: Don't call strlen() when the length is already known 8792/head
Remi Gacogne [Thu, 30 Jan 2020 14:11:53 +0000 (15:11 +0100)] 
DNSName: Don't call strlen() when the length is already known

4 years agoMerge pull request #8795 from omoerbeek/rec-lua-docs-policytag
Remi Gacogne [Fri, 7 Feb 2020 14:29:39 +0000 (15:29 +0100)] 
Merge pull request #8795 from omoerbeek/rec-lua-docs-policytag

rec: Remove duplicate *PolicyTags docs

4 years agoMerge pull request #8171 from rgacogne/dnsdist-soa-in-negative
Remi Gacogne [Fri, 7 Feb 2020 14:28:42 +0000 (15:28 +0100)] 
Merge pull request #8171 from rgacogne/dnsdist-soa-in-negative

dnsdist: Add SetNegativeAndSOAAction() and its Lua binding

4 years agoRemove duplicate *PolicyTags docs 8795/head
Otto Moerbeek [Fri, 7 Feb 2020 12:08:42 +0000 (13:08 +0100)] 
Remove duplicate *PolicyTags docs

4 years agoMerge pull request #7820 from pieterlexis/systemd-no-setuid
Remi Gacogne [Fri, 7 Feb 2020 11:15:36 +0000 (12:15 +0100)] 
Merge pull request #7820 from pieterlexis/systemd-no-setuid

dnsdist: don't start as root within a systemd environment

4 years agodnsdist: Add the ability to set flags in SetNegativeAndSOAAction() 8171/head
Remi Gacogne [Fri, 7 Feb 2020 11:06:07 +0000 (12:06 +0100)] 
dnsdist: Add the ability to set flags in SetNegativeAndSOAAction()

4 years agoMerge pull request #8794 from atopuzov/tsig-typo-fix
Otto Moerbeek [Fri, 7 Feb 2020 10:48:22 +0000 (11:48 +0100)] 
Merge pull request #8794 from atopuzov/tsig-typo-fix

Fix typo in tsig documentation

4 years agoFix typo in tsig documentation 8794/head
Aleksandar Topuzović [Fri, 7 Feb 2020 10:44:28 +0000 (10:44 +0000)] 
Fix typo in tsig documentation

4 years agodnsdist: Don't add EDNS to raw answers
Remi Gacogne [Fri, 7 Feb 2020 10:29:19 +0000 (11:29 +0100)] 
dnsdist: Don't add EDNS to raw answers

4 years agodnsdist: Add SetNegativeAndSOAAction() and its Lua binding
Remi Gacogne [Tue, 6 Aug 2019 15:44:56 +0000 (17:44 +0200)] 
dnsdist: Add SetNegativeAndSOAAction() and its Lua binding

4 years agoMerge pull request #8115 from rgacogne/dnsdist-ecs-before-tsig
Remi Gacogne [Fri, 7 Feb 2020 10:09:29 +0000 (11:09 +0100)] 
Merge pull request #8115 from rgacogne/dnsdist-ecs-before-tsig

dnsdist: Fix ECS addition when the OPT record is not the last one

4 years agoMerge pull request #8787 from rgacogne/ddist-tls-key-log-file
Remi Gacogne [Fri, 7 Feb 2020 09:38:52 +0000 (10:38 +0100)] 
Merge pull request #8787 from rgacogne/ddist-tls-key-log-file

dnsdist: Fix key logging for DNS over TLS

4 years agoMerge pull request #8722 from rgacogne/ddist-lua-raw-content-rebased
Remi Gacogne [Fri, 7 Feb 2020 09:23:20 +0000 (10:23 +0100)] 
Merge pull request #8722 from rgacogne/ddist-lua-raw-content-rebased

dnsdist: Add spoofRawAction() to craft answers from raw bytes

4 years agoMerge pull request #8762 from rgacogne/ddist-doh-cache-control
Remi Gacogne [Fri, 7 Feb 2020 09:14:54 +0000 (10:14 +0100)] 
Merge pull request #8762 from rgacogne/ddist-doh-cache-control

dnsdist: Implement Cache-Control headers in DoH

4 years agoMerge pull request #8772 from rgacogne/dnsdist-prometheus-backend-status
Remi Gacogne [Fri, 7 Feb 2020 09:13:27 +0000 (10:13 +0100)] 
Merge pull request #8772 from rgacogne/dnsdist-prometheus-backend-status

dnsdist: Add backend status to prometheus metrics

4 years agoMerge pull request #8782 from rgacogne/ddist-tag-response
Remi Gacogne [Fri, 7 Feb 2020 09:13:18 +0000 (10:13 +0100)] 
Merge pull request #8782 from rgacogne/ddist-tag-response

dnsdist: Add getTag()/setTag() Lua bindings for a DNSResponse

4 years agoauth: Prepare the caches' buckets in advance 8793/head
Remi Gacogne [Thu, 6 Feb 2020 16:26:49 +0000 (17:26 +0100)] 
auth: Prepare the caches' buckets in advance

4 years agoMerge pull request #8788 from RobinGeuze/fixDefaultCDSCDNSKEYAxfr
Peter van Dijk [Thu, 6 Feb 2020 15:55:02 +0000 (16:55 +0100)] 
Merge pull request #8788 from RobinGeuze/fixDefaultCDSCDNSKEYAxfr

Make sure the default-publish-cds and default-publish-cdnskey options are respected for AXFR

4 years agoAdd AXFR to the default-publish-cds tests 8788/head
Robin Geuze [Thu, 6 Feb 2020 11:30:38 +0000 (12:30 +0100)] 
Add AXFR to the default-publish-cds tests

4 years agoMake sure the default-publish-cds and default-publish-cdnskey options are respected...
Robin Geuze [Thu, 6 Feb 2020 09:31:18 +0000 (10:31 +0100)] 
Make sure the default-publish-cds and default-publish-cdnskey options are respected for AXFR

4 years agodnsdist: Flush the TLS key material to the file right away 8787/head
Remi Gacogne [Thu, 6 Feb 2020 09:07:18 +0000 (10:07 +0100)] 
dnsdist: Flush the TLS key material to the file right away

This feature is used to debug TLS flows, we don't really care about
the performance in that case and we want to have access to the keys
as soon as possible, without waiting for a buffer to be flushed.

4 years agodnsdist: Fix key logging for DNS over TLS
Remi Gacogne [Thu, 6 Feb 2020 09:06:39 +0000 (10:06 +0100)] 
dnsdist: Fix key logging for DNS over TLS

4 years agoMerge pull request #8784 from Habbie/api-stats-no-rings
Peter van Dijk [Thu, 6 Feb 2020 08:23:06 +0000 (09:23 +0100)] 
Merge pull request #8784 from Habbie/api-stats-no-rings

auth api: add includerings option to statistics endpoint

4 years agoauth api: add includerings option to statistics endpoint 8784/head
Peter van Dijk [Wed, 5 Feb 2020 16:19:05 +0000 (17:19 +0100)] 
auth api: add includerings option to statistics endpoint

4 years agoMerge pull request #8775 from mnordhoff/docs-4.3-schemas
Peter van Dijk [Wed, 5 Feb 2020 10:31:38 +0000 (11:31 +0100)] 
Merge pull request #8775 from mnordhoff/docs-4.3-schemas

docs: Add 4.2 SQL schema links

4 years agoauth: Add steal and IO wait metrics
Remi Gacogne [Mon, 3 Feb 2020 10:51:54 +0000 (11:51 +0100)] 
auth: Add steal and IO wait metrics

4 years agorec: Add steal and IO wait metrics
Remi Gacogne [Mon, 3 Feb 2020 10:51:35 +0000 (11:51 +0100)] 
rec: Add steal and IO wait metrics

4 years agodnsdist: Add steal, iowait and UDP errors metrics
Remi Gacogne [Mon, 3 Feb 2020 10:50:38 +0000 (11:50 +0100)] 
dnsdist: Add steal, iowait and UDP errors metrics

This commit also moves the prometheus metrics code to a separate
header.

4 years agoAdd functions to retrieve 'IO wait' and 'steal' metrics on Linux
Remi Gacogne [Mon, 3 Feb 2020 10:05:23 +0000 (11:05 +0100)] 
Add functions to retrieve 'IO wait' and 'steal' metrics on Linux

4 years agodnsdist: Add getTag()/setTag() Lua bindings for a DNSResponse 8782/head
Remi Gacogne [Wed, 5 Feb 2020 09:07:08 +0000 (10:07 +0100)] 
dnsdist: Add getTag()/setTag() Lua bindings for a DNSResponse

LuaWrapper doesn't support inheritance, so even though DNSResponse
inherits from the DNSQuestion object the bindings are not inherited.

4 years agoMerge pull request #8774 from spirillen/patch-1
Peter van Dijk [Wed, 5 Feb 2020 08:42:36 +0000 (09:42 +0100)] 
Merge pull request #8774 from spirillen/patch-1

Updated version number

4 years agoMerge pull request #8780 from Habbie/remove-opendbx
Peter van Dijk [Wed, 5 Feb 2020 08:39:43 +0000 (09:39 +0100)] 
Merge pull request #8780 from Habbie/remove-opendbx

opendbx: remove last file that was accidentally left in

4 years agoMerge pull request #8781 from omoerbeek/security-emails
Peter van Dijk [Wed, 5 Feb 2020 08:27:23 +0000 (09:27 +0100)] 
Merge pull request #8781 from omoerbeek/security-emails

Update security email addresses

4 years agoUpdate security email addresses 8781/head
Otto Moerbeek [Tue, 4 Feb 2020 14:38:23 +0000 (15:38 +0100)] 
Update security email addresses

4 years agoopendbx: remove last file that was accidentally left in 8780/head
Peter van Dijk [Tue, 4 Feb 2020 09:00:14 +0000 (10:00 +0100)] 
opendbx: remove last file that was accidentally left in

4 years agorec RPZ dumpFile/seedFile: store/get SOA refresh on dump/load
Peter van Dijk [Mon, 3 Feb 2020 19:09:07 +0000 (20:09 +0100)] 
rec RPZ dumpFile/seedFile: store/get SOA refresh on dump/load

4 years agoWIP for researching #8697
Otto Moerbeek [Mon, 3 Feb 2020 11:15:25 +0000 (12:15 +0100)] 
WIP for researching #8697

4 years agoMerge pull request #8770 from omoerbeek/rec-prep-rec-4.3.0-rc1
aerique [Mon, 3 Feb 2020 10:09:56 +0000 (11:09 +0100)] 
Merge pull request #8770 from omoerbeek/rec-prep-rec-4.3.0-rc1

Prep rec-4.3.0-rc1

4 years agotweaks 8770/head
Otto Moerbeek [Mon, 3 Feb 2020 09:36:42 +0000 (10:36 +0100)] 
tweaks

4 years agoMerge pull request #8771 from aerique/feature/repo-script-for-rec-43
aerique [Mon, 3 Feb 2020 09:33:45 +0000 (10:33 +0100)] 
Merge pull request #8771 from aerique/feature/repo-script-for-rec-43

Add support for rec-43.