public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH 1/3] unbound-dhcp-leases-bridge : fix bug 12694 - DHCP hosts not reliably propagated to DNS
@ 2022-03-22  3:47 Anthony Heading
  2022-03-22  3:47 ` [PATCH 2/3] unbound-dhcp-leases-bridge : read settings less enthusiastically Anthony Heading
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Anthony Heading @ 2022-03-22  3:47 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 2667 bytes --]

Switch from inotify watching individual files to monitoring the
containing directories, as because dhcpd renames its leases file into a
backup, monitoring the single inode does not work well.  Additionally,
python appears to have a bug with replacing expired inotify watches on
single files.
---
 unbound-dhcp-leases-bridge | 47 +++++++++++++++++++++++++-------------
 1 file changed, 31 insertions(+), 16 deletions(-)

diff --git unbound-dhcp-leases-bridge unbound-dhcp-leases-bridge
index a2df5f1..6e22066 100644
--- unbound-dhcp-leases-bridge
+++ unbound-dhcp-leases-bridge
@@ -72,6 +72,15 @@ class UnboundDHCPLeasesBridge(object):
 		self.fix_leases_file = fix_leases_file
 		self.hosts_file = hosts_file
 
+		# base mask for a completed file change
+		mask = inotify.constants.IN_CLOSE_WRITE | inotify.constants.IN_MOVED_TO
+		# IN_MODIFY since dhcpd appends lease updates to an open file
+		self.watches = {
+		    self.leases_file: mask | inotify.constants.IN_MODIFY,
+		    self.fix_leases_file: mask,
+		    self.hosts_file: mask
+		}
+
 		self.unbound = UnboundConfigWriter(unbound_leases_file)
 		self.running = False
 
@@ -80,36 +89,42 @@ class UnboundDHCPLeasesBridge(object):
 		self.running = True
 
 		# Initial setup
-		self.hosts = self.read_static_hosts()
-		self.update_dhcp_leases()
+		update_hosts = True
+		update_leases = True
+
+		i = inotify.adapters.Inotify()
 
-		i = inotify.adapters.Inotify([
-			self.leases_file,
-			self.fix_leases_file,
-			self.hosts_file,
-		])
+		for f in self.watches:
+			i.add_watch(os.path.dirname(f), self.watches[f])
 
 		for event in i.event_gen():
 			# End if we are requested to terminate
 			if not self.running:
 				break
 
+			# Make pending updates once inotify queue is empty
 			if event is None:
+				if update_hosts:
+					self.hosts = self.read_static_hosts()
+					update_hosts = False
+				if update_leases:
+					self.update_dhcp_leases()
+					update_leases = False
 				continue
 
 			header, type_names, watch_path, filename = event
 
-			# Update leases after leases file has been modified
-			if "IN_MODIFY" in type_names:
-				# Reload hosts
-				if watch_path == self.hosts_file:
-					self.hosts = self.read_static_hosts()
+			file = os.path.join(watch_path, filename)
+
+			if not file in self.watches:
+				continue
+
+			log.debug("Inotify %s: %s", file, " ".join(type_names))
 
-				self.update_dhcp_leases()
+			update_leases = True
 
-			# If the file is deleted, we re-add the watcher
-			if "IN_IGNORED" in type_names:
-				i.add_watch(watch_path)
+			if file == self.hosts_file:
+				update_hosts = True
 
 		log.info("Unbound DHCP Leases Bridge terminated")
 
-- 
2.34.1


^ permalink raw reply	[flat|nested] 10+ messages in thread
[parent not found: <349962CA-9202-427C-9D01-E1C5F7AE5764@gmail.com>]

end of thread, other threads:[~2022-03-30  9:40 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
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 ` [PATCH 2/3] unbound-dhcp-leases-bridge : read settings less enthusiastically Anthony Heading
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
     [not found] <349962CA-9202-427C-9D01-E1C5F7AE5764@gmail.com>
2022-03-29  9:37 ` Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox