unbound: Fix PTR records for DHCP endpoints

* Add PTR records for DHCP endpoints in the correct format
* Delete PTR records when A records are deleted
* Use bulk add/remove requests to unbound-control to improve performance

Fixes #4597
This commit is contained in:
Gareth Owen 2021-02-27 15:54:45 -05:00
parent 71d6d0adeb
commit a3d5cbcc7a

View File

@ -28,6 +28,7 @@
--------------------------------------------------------------------------------------
watch dhcp lease file and build include file for unbound
"""
import ipaddress
import os
import sys
import subprocess
@ -40,18 +41,24 @@ from daemonize import Daemonize
import watchers.dhcpd
def unbound_control(commands, output_stream=None):
def unbound_control(commands, input=None, output_stream=None):
""" execute (chrooted) unbound-control command
:param commands: command list (parameters)
:param input: (optional )text to be sent to input stream
:param output_stream: (optional)output stream
:return: None
"""
stderr=None
if output_stream is None:
output_stream = open(os.devnull, 'w')
subprocess.check_call(['/usr/sbin/chroot', '-u', 'unbound', '-g', 'unbound', '/',
'/usr/local/sbin/unbound-control', '-c', '/var/unbound/unbound.conf'] + commands,
stdout=output_stream, stderr=subprocess.STDOUT)
output_stream.seek(0)
stderr=subprocess.STDOUT
subprocess.run(['/usr/sbin/chroot', '-u', 'unbound', '-g', 'unbound', '/',
'/usr/local/sbin/unbound-control', '-c', '/var/unbound/unbound.conf'] + commands,
input=input, stdout=output_stream, stderr=stderr,
text=True, check=True)
if output_stream is not None:
output_stream.seek(0)
class UnboundLocalData:
@ -64,7 +71,7 @@ class UnboundLocalData:
self._map_by_address = dict()
self._map_by_fqdn = dict()
with tempfile.NamedTemporaryFile() as output_stream:
unbound_control(['list_local_data'], output_stream)
unbound_control(['list_local_data'], output_stream=output_stream)
for line in output_stream:
parts = line.decode().split()
if len(parts) > 4 and parts[3] == 'A' and parts[4] != '0.0.0.0':
@ -119,6 +126,9 @@ def run_watcher(target_filename, domain):
and 'client-hostname' in lease and 'address' in lease and lease['client-hostname']:
cached_leases[lease['address']] = lease
dhcpd_changed = True
remove_rr = ''
add_rr = ''
if time.time() - last_cleanup > cleanup_interval:
# cleanup every x seconds
last_cleanup = time.time()
@ -129,8 +139,8 @@ def run_watcher(target_filename, domain):
syslog.LOG_NOTICE,
"dhcpd expired %s @ %s" % (cached_leases[address]['client-hostname'], address)
)
unbound_control(['local_data_remove', cached_leases[address]['client-hostname']])
fqdn = '%s.%s' % (cached_leases[address]['client-hostname'], domain)
remove_rr += f'{fqdn}\n{ipaddress.ip_address(address).reverse_pointer}\n'
if unbound_local_data.is_equal(address, fqdn):
unbound_local_data.cleanup(address, fqdn)
del cached_leases[address]
@ -150,14 +160,21 @@ def run_watcher(target_filename, domain):
for address in cached_leases:
fqdn = '%s.%s' % (cached_leases[address]['client-hostname'], domain)
if not unbound_local_data.is_equal(address, fqdn):
remove_rr += f'{ipaddress.ip_address(address).reverse_pointer}\n'
for tmp_fqdn in unbound_local_data.all_fqdns(address, fqdn):
syslog.syslog(syslog.LOG_NOTICE, 'dhcpd entry changed %s @ %s.' % (tmp_fqdn, address))
unbound_control(['local_data_remove', tmp_fqdn])
remove_rr += f'{tmp_fqdn}\n'
unbound_local_data.cleanup(address, fqdn)
unbound_control(['local_data', address, 'PTR', fqdn])
unbound_control(['local_data', fqdn, 'IN A', address])
add_rr += f'{ipaddress.ip_address(address).reverse_pointer} PTR {fqdn}\n'
add_rr += f'{fqdn} IN A {address}\n'
unbound_local_data.add_address(address, fqdn)
# Updated unbound
if remove_rr:
unbound_control(['local_datas_remove'], input=remove_rr)
if add_rr:
unbound_control(['local_datas'], input=add_rr)
# wait for next cycle
time.sleep(1)