Re: [Dnsmasq-discuss] [PATCH] Update DNS records after pruning DHCP leases

2024-05-18 Thread Dominik Derigs via Dnsmasq-discuss
Dear list, we have added this commit to the currently running Pi-hole v6.0 beta. It was confirmed by multiple users to fix aforementioned issues. https://github.com/pi-hole/FTL/pull/1965 Have a great weekend! Dominik On 29.04.24 20:44, Erik Karlsson wrote: From: Erik Karlsson Not doing

[Dnsmasq-discuss] [PATCH] Update DNS records after pruning DHCP leases

2024-05-17 Thread Geert Stappers
From: Erik Karlsson Not doing so can result in a use after free since the name for DHCP derived DNS records is represented as a pointer into the DHCP lease table. Update will only happen when necessary since lease_update_dns tests internally on dns_dirty and the force argument is zero.

Re: [Dnsmasq-discuss] [PATCH] Update DNS records after pruning DHCP leases

2024-05-03 Thread Geert Stappers
On Mon, Apr 29, 2024 at 08:44:13PM +0200, Erik Karlsson wrote: > From: Erik Karlsson > > Not doing so can result in a use after free since the name for DHCP > derived DNS records is represented as a pointer into the DHCP lease > table. Update will only happen when necessary since

[Dnsmasq-discuss] [PATCH] Update DNS records after pruning DHCP leases

2024-04-29 Thread Erik Karlsson
From: Erik Karlsson Not doing so can result in a use after free since the name for DHCP derived DNS records is represented as a pointer into the DHCP lease table. Update will only happen when necessary since lease_update_dns tests internally on dns_dirty and the force argument is zero.