Accepting request 932271 from network

- bsc#1192529, dnsmasq-resolv-conf.patch:
  Fix a segfault when re-reading an empty resolv.conf
- Remove "nogroup" membership from the dnsmasq user.
- Use systemd-sysusers from 15.3 onwards

OBS-URL: https://build.opensuse.org/request/show/932271
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/dnsmasq?expand=0&rev=84
This commit is contained in:
Dominique Leuenberger 2021-11-20 21:47:53 +00:00 committed by Git OBS Bridge
commit c151cb5315
4 changed files with 52 additions and 6 deletions

31
dnsmasq-resolv-conf.patch Normal file
View 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)
{

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
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>
- Use systemd-sysusers from 15.3 onwards
-------------------------------------------------------------------
Thu Sep 23 08:48:12 UTC 2021 - Reinhard Max <max@suse.com>

View File

@ -16,10 +16,10 @@
#
%if 0%{?suse_version} < 1550
%bcond_with tftp_user_package
%else
%if 0%{?suse_version} >= 1550 || 0%{?sle_version} >= 150300
%bcond_without tftp_user_package
%else
%bcond_with tftp_user_package
%endif
Name: dnsmasq
Version: 2.86
@ -37,6 +37,7 @@ Source5: rc.dnsmasq-suse
Source6: system-user-dnsmasq.conf
Source8: %{name}-rpmlintrc
Patch0: dnsmasq-groups.patch
Patch1: dnsmasq-resolv-conf.patch
BuildRequires: dbus-1-devel
BuildRequires: dos2unix
BuildRequires: libidn2-devel
@ -75,6 +76,7 @@ server's leases.
%prep
%setup -q
%patch0
%patch1
# Remove the executable bit from python example files to
# 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
fi
%else
%pre -f dnsmasq.pre
%endif
%service_add_pre %{name}.service

View File

@ -1,3 +1,3 @@
#Type Name ID GECOS Home directory Shell
u dnsmasq -:nogroup "dnsmasq" /var/lib/empty -
m dnsmasq tftp - - -
#Type Name ID GECOS Home directory Shell
u dnsmasq - "dnsmasq" /var/lib/empty -
m dnsmasq tftp - - -