From: Anthony Heading <ajrh@ajrh.net>
To: development@lists.ipfire.org
Subject: [PATCH 2/3] unbound-dhcp-leases-bridge : read settings less enthusiastically
Date: Mon, 21 Mar 2022 23:47:55 -0400 [thread overview]
Message-ID: <20220322034756.36327-2-ajrh@ajrh.net> (raw)
In-Reply-To: <20220322034756.36327-1-ajrh@ajrh.net>
[-- Attachment #1: Type: text/plain, Size: 2739 bytes --]
The script is rereading the ethernet and dhcp settings files for every
lease in every update. Since dhcpd does not have a reload mechanism and
is just restarted for settings changes, and so this bridge is restarted
too, it seems fine just to read these at startup.
---
unbound-dhcp-leases-bridge | 69 ++++++++++++++++++++------------------
1 file changed, 36 insertions(+), 33 deletions(-)
diff --git unbound-dhcp-leases-bridge unbound-dhcp-leases-bridge
index 6e22066..814cf0c 100644
--- unbound-dhcp-leases-bridge
+++ unbound-dhcp-leases-bridge
@@ -329,6 +329,42 @@ class FixLeases(object):
return leases
+def read_settings(filename):
+ settings = {}
+
+ with open(filename) as f:
+ for line in f.readlines():
+ # Remove line-breaks
+ line = line.rstrip()
+
+ k, v = line.split("=", 1)
+ settings[k] = v
+
+ return settings
+
+def load_subnets():
+ # Load ethernet settings
+ ethernet_settings = read_settings("/var/ipfire/ethernet/settings")
+
+ # Load DHCP settings
+ dhcp_settings = read_settings("/var/ipfire/dhcp/settings")
+
+ subnets = {}
+ for zone in ("GREEN", "BLUE"):
+ if not dhcp_settings.get("ENABLE_%s" % zone) == "on":
+ continue
+
+ netaddr = ethernet_settings.get("%s_NETADDRESS" % zone)
+ submask = ethernet_settings.get("%s_NETMASK" % zone)
+
+ subnet = ipaddress.ip_network("%s/%s" % (netaddr, submask))
+ domain = dhcp_settings.get("DOMAIN_NAME_%s" % zone)
+
+ subnets[subnet] = domain
+
+ return subnets
+
+subnets = load_subnets()
class Lease(object):
def __init__(self, ipaddr, properties):
@@ -396,25 +432,6 @@ class Lease(object):
@property
def domain(self):
- # Load ethernet settings
- ethernet_settings = self.read_settings("/var/ipfire/ethernet/settings")
-
- # Load DHCP settings
- dhcp_settings = self.read_settings("/var/ipfire/dhcp/settings")
-
- subnets = {}
- for zone in ("GREEN", "BLUE"):
- if not dhcp_settings.get("ENABLE_%s" % zone) == "on":
- continue
-
- netaddr = ethernet_settings.get("%s_NETADDRESS" % zone)
- submask = ethernet_settings.get("%s_NETMASK" % zone)
-
- subnet = ipaddress.ip_network("%s/%s" % (netaddr, submask))
- domain = dhcp_settings.get("DOMAIN_NAME_%s" % zone)
-
- subnets[subnet] = domain
-
address = ipaddress.ip_address(self.ipaddr)
for subnet in subnets:
@@ -424,20 +441,6 @@ class Lease(object):
# Fall back to localdomain if no match could be found
return "localdomain"
- @staticmethod
- def read_settings(filename):
- settings = {}
-
- with open(filename) as f:
- for line in f.readlines():
- # Remove line-breaks
- line = line.rstrip()
-
- k, v = line.split("=", 1)
- settings[k] = v
-
- return settings
-
@property
def fqdn(self):
if self.hostname:
--
2.34.1
next prev parent reply other threads:[~2022-03-22 3:47 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-03-22 3:47 [PATCH 1/3] unbound-dhcp-leases-bridge : fix bug 12694 - DHCP hosts not reliably propagated to DNS Anthony Heading
2022-03-22 3:47 ` Anthony Heading [this message]
2022-03-22 3:47 ` [PATCH 3/3] unbound-dhcp-leases-bridge : minor logging improvements Anthony Heading
2022-03-28 17:00 ` [PATCH 1/3] unbound-dhcp-leases-bridge : fix bug 12694 - DHCP hosts not reliably propagated to DNS Michael Tremer
2022-03-28 19:55 ` Anthony Heading
2022-03-29 9:39 ` Michael Tremer
2022-03-29 11:35 ` Michael Tremer
2022-03-30 3:30 ` Anthony Heading
2022-03-30 9:40 ` Michael Tremer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220322034756.36327-2-ajrh@ajrh.net \
--to=ajrh@ajrh.net \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox