public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH 1/3] unbound-dhcp-leases-bridge: Implement atomic file replacement
@ 2024-04-26 15:09 Michael Tremer
  2024-04-26 15:09 ` [PATCH 2/3] unbound-dhcp-leases-bridge: Only reload if leases have actually changed Michael Tremer
  2024-04-26 15:09 ` [PATCH 3/3] unbound-dhcp-leases-bridge: Make comparison work if old file does not exist Michael Tremer
  0 siblings, 2 replies; 4+ messages in thread
From: Michael Tremer @ 2024-04-26 15:09 UTC (permalink / raw)
  To: development

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

This change no longer renames the file, but removes the old link and
creates a new link for the temporary file. That helps us to jump out of
the code at any point without worrying about cleaning up the temporary
file.

Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
 config/unbound/unbound-dhcp-leases-bridge | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/config/unbound/unbound-dhcp-leases-bridge b/config/unbound/unbound-dhcp-leases-bridge
index e9f022aff..5d5696af0 100644
--- a/config/unbound/unbound-dhcp-leases-bridge
+++ b/config/unbound/unbound-dhcp-leases-bridge
@@ -526,16 +526,22 @@ class UnboundConfigWriter(object):
 	def write_dhcp_leases(self, leases):
 		log.debug("Writing DHCP leases...")
 
-		with tempfile.NamedTemporaryFile(mode="w", delete=False) as f:
+		with tempfile.NamedTemporaryFile(mode="w") as f:
 			for l in leases:
 				for rr in l.rrset:
 					f.write("local-data: \"%s\"\n" % " ".join(rr))
 
+			# Flush the file
+			f.flush()
+
 			# Make file readable for everyone
 			os.fchmod(f.fileno(), stat.S_IRUSR|stat.S_IWUSR|stat.S_IRGRP|stat.S_IROTH)
 
+			# Remove the old file
+			os.unlink(self.path)
+
 			# Move the file to its destination
-			os.rename(f.name, self.path)
+			os.link(f.name, self.path)
 
 	def _control(self, *args):
 		command = ["unbound-control"]
-- 
2.39.2


^ permalink raw reply	[flat|nested] 4+ messages in thread
[parent not found: <21bef3c1-22c3-45fa-beed-e36cd133d2df@howitts.co.uk>]

end of thread, other threads:[~2024-04-27  8:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-26 15:09 [PATCH 1/3] unbound-dhcp-leases-bridge: Implement atomic file replacement Michael Tremer
2024-04-26 15:09 ` [PATCH 2/3] unbound-dhcp-leases-bridge: Only reload if leases have actually changed Michael Tremer
2024-04-26 15:09 ` [PATCH 3/3] unbound-dhcp-leases-bridge: Make comparison work if old file does not exist Michael Tremer
     [not found] <21bef3c1-22c3-45fa-beed-e36cd133d2df@howitts.co.uk>
2024-04-27  8:38 ` [PATCH 2/3] unbound-dhcp-leases-bridge: Only reload if leases have actually changed Michael Tremer

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