- bsc#1192529, dnsmasq-resolv-conf.patch:
Fix a segfault when re-reading an empty resolv.conf - Remove "nogroup" membership from the dnsmasq user. OBS-URL: https://build.opensuse.org/package/show/network/dnsmasq?expand=0&rev=143
This commit is contained in:
parent
d5b765a964
commit
c177936b94
31
dnsmasq-resolv-conf.patch
Normal file
31
dnsmasq-resolv-conf.patch
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
From d290630d31f4517ab26392d00753d1397f9a4114 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Simon Kelley <simon@thekelleys.org.uk>
|
||||||
|
Date: Wed, 6 Oct 2021 22:31:06 +0100
|
||||||
|
Subject: [PATCH] Fix crash after re-reading an empty resolv.conf file.
|
||||||
|
|
||||||
|
If dnsmasq re-reads a resolv file, and it's empty, it will
|
||||||
|
retry after a delay. In the meantime, the old servers from the
|
||||||
|
resolv file have been deleted, but the servers_array doesn't
|
||||||
|
get updated, leading to dangling pointers and crashes.
|
||||||
|
|
||||||
|
Thanks to Brad Jorsch for finding and analysing this bug.
|
||||||
|
|
||||||
|
This problem was introduced in 2.86.
|
||||||
|
---
|
||||||
|
src/dnsmasq.c | 5 +++++
|
||||||
|
1 file changed, 5 insertions(+)
|
||||||
|
|
||||||
|
--- src/dnsmasq.c.orig
|
||||||
|
+++ src/dnsmasq.c
|
||||||
|
@@ -1668,6 +1668,11 @@ static void poll_resolv(int force, int d
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
+ /* If we're delaying things, we don't call check_servers(), but
|
||||||
|
+ reload_servers() may have deleted some servers, rendering the server_array
|
||||||
|
+ invalid, so just rebuild that here. Once reload_servers() succeeds,
|
||||||
|
+ we call check_servers() above, which calls build_server_array itself. */
|
||||||
|
+ build_server_array();
|
||||||
|
latest->mtime = 0;
|
||||||
|
if (!warned)
|
||||||
|
{
|
@ -1,3 +1,10 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Nov 18 13:59:55 UTC 2021 - Reinhard Max <max@suse.com>
|
||||||
|
|
||||||
|
- bsc#1192529, dnsmasq-resolv-conf.patch:
|
||||||
|
Fix a segfault when re-reading an empty resolv.conf
|
||||||
|
- Remove "nogroup" membership from the dnsmasq user.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Oct 20 17:08:15 UTC 2021 - Callum Farmer <gmbr3@opensuse.org>
|
Wed Oct 20 17:08:15 UTC 2021 - Callum Farmer <gmbr3@opensuse.org>
|
||||||
|
|
||||||
|
@ -37,6 +37,7 @@ Source5: rc.dnsmasq-suse
|
|||||||
Source6: system-user-dnsmasq.conf
|
Source6: system-user-dnsmasq.conf
|
||||||
Source8: %{name}-rpmlintrc
|
Source8: %{name}-rpmlintrc
|
||||||
Patch0: dnsmasq-groups.patch
|
Patch0: dnsmasq-groups.patch
|
||||||
|
Patch1: dnsmasq-resolv-conf.patch
|
||||||
BuildRequires: dbus-1-devel
|
BuildRequires: dbus-1-devel
|
||||||
BuildRequires: dos2unix
|
BuildRequires: dos2unix
|
||||||
BuildRequires: libidn2-devel
|
BuildRequires: libidn2-devel
|
||||||
@ -75,6 +76,7 @@ server's leases.
|
|||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch0
|
%patch0
|
||||||
|
%patch1
|
||||||
|
|
||||||
# Remove the executable bit from python example files to
|
# Remove the executable bit from python example files to
|
||||||
# avoid unwanted automatic dependencies
|
# avoid unwanted automatic dependencies
|
||||||
@ -143,6 +145,7 @@ if ! %{_bindir}/getent passwd dnsmasq >/dev/null; then
|
|||||||
%{_sbindir}/useradd -r -d %{_localstatedir}/lib/empty -s /bin/false -c "dnsmasq" -g nogroup -G tftp dnsmasq
|
%{_sbindir}/useradd -r -d %{_localstatedir}/lib/empty -s /bin/false -c "dnsmasq" -g nogroup -G tftp dnsmasq
|
||||||
fi
|
fi
|
||||||
%else
|
%else
|
||||||
|
|
||||||
%pre -f dnsmasq.pre
|
%pre -f dnsmasq.pre
|
||||||
%endif
|
%endif
|
||||||
%service_add_pre %{name}.service
|
%service_add_pre %{name}.service
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
#Type Name ID GECOS Home directory Shell
|
#Type Name ID GECOS Home directory Shell
|
||||||
u dnsmasq - "dnsmasq" /var/lib/empty -
|
u dnsmasq - "dnsmasq" /var/lib/empty -
|
||||||
m dnsmasq nogroup - - -
|
|
||||||
m dnsmasq tftp - - -
|
m dnsmasq tftp - - -
|
||||||
|
Loading…
x
Reference in New Issue
Block a user