- Rebase to firewalld-0.4.4.5
http://www.firewalld.org/2017/06/firewalld-0-4-4-5-release - Fix build from spec - Fix –remove-service-from-zone option (RHBZ#1438127) - Support sctp and dccp in ports, source-ports, forward-ports, helpers and rich rules (RHBZ#1429808) - firewall-cmd: Fix –{set,get}-{short,description} for zone (RHBZ#1445238) - firewall.core.ipXtables: Use new wait option for restore commands if available - New services for oVirt: ctdb, ovirt-imageio, ovirt-storageconsole, ovirt-vmconsole and nrpe - Rename extension for policy choices (server and desktop) to .policy.choice (RHBZ#1449754) - D-Bus interfaces: Fix GetAll for interfaces without properties (RHBZ#1452017) - Load NAT helpers with conntrack helpers (RHBZ#1452681) - Translation updates - Additional upstream patches: - Rich-rule source validation (d69b7cb) - IPv6 ICMP type only rich-rule fix (cf50bd0)
This commit is contained in:
parent
fd60bdf28a
commit
51ae9526ba
@ -0,0 +1,28 @@
|
|||||||
|
From cf50bd0004418abe1294f53b58387a181dfd2b51 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Thomas Woerner <twoerner@redhat.com>
|
||||||
|
Date: Thu, 8 Jun 2017 17:44:32 +0200
|
||||||
|
Subject: [PATCH] firewall.core.fw_zone: Rich-rule ICMP type: Error only for
|
||||||
|
conflicting family
|
||||||
|
|
||||||
|
Only raise error for an ICMP block in a rich-rule if a family has been
|
||||||
|
specified and conflicts with the ICMP destination.
|
||||||
|
|
||||||
|
Fixes: RHBZ#1459921
|
||||||
|
---
|
||||||
|
src/firewall/core/fw_zone.py | 3 +++
|
||||||
|
1 file changed, 3 insertions(+)
|
||||||
|
|
||||||
|
diff --git a/src/firewall/core/fw_zone.py b/src/firewall/core/fw_zone.py
|
||||||
|
index 4f3f18c0..f47222e4 100644
|
||||||
|
--- a/src/firewall/core/fw_zone.py
|
||||||
|
+++ b/src/firewall/core/fw_zone.py
|
||||||
|
@@ -1425,6 +1425,9 @@ def __rule_prepare(self, enable, zone, rule, mark_id, zone_transaction):
|
||||||
|
raise FirewallError(errors.INVALID_RULE,
|
||||||
|
"IcmpBlock not usable with accept action")
|
||||||
|
if ict.destination and ipv not in ict.destination:
|
||||||
|
+ if rule.family is None:
|
||||||
|
+ # Add for IPv4 or IPv6 depending on ict.destination
|
||||||
|
+ continue
|
||||||
|
raise FirewallError(
|
||||||
|
errors.INVALID_RULE,
|
||||||
|
"Icmp%s %s not usable with %s" % \
|
59
firewalld-0.4.4.5-rich_source_validation-d69b7cb.patch
Normal file
59
firewalld-0.4.4.5-rich_source_validation-d69b7cb.patch
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
From d69b7cb2724f041f257b90184a64e28a667ee7e9 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Thomas Woerner <twoerner@redhat.com>
|
||||||
|
Date: Thu, 8 Jun 2017 15:31:11 +0200
|
||||||
|
Subject: [PATCH] firewall.core.rich: Add checks for Rich_Source validation
|
||||||
|
|
||||||
|
A rich-rule source needs to either contain a IP address, a MAC address or an
|
||||||
|
ipset.
|
||||||
|
---
|
||||||
|
src/firewall/core/rich.py | 24 +++++++++++++++++-------
|
||||||
|
1 file changed, 17 insertions(+), 7 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/src/firewall/core/rich.py b/src/firewall/core/rich.py
|
||||||
|
index 3adcb4d9..04791da6 100644
|
||||||
|
--- a/src/firewall/core/rich.py
|
||||||
|
+++ b/src/firewall/core/rich.py
|
||||||
|
@@ -46,15 +46,21 @@ def __init__(self, addr, mac, ipset, invert=False):
|
||||||
|
if self.ipset == "":
|
||||||
|
self.ipset = None
|
||||||
|
self.invert = invert
|
||||||
|
+ if self.addr is None and self.mac is None and self.ipset is None:
|
||||||
|
+ raise FirewallError(errors.INVALID_RULE,
|
||||||
|
+ "no address, mac and ipset")
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
|
- if self.addr:
|
||||||
|
- x = ' address="%s"' % self.addr
|
||||||
|
- elif self.mac:
|
||||||
|
- x = ' mac="%s"' % self.mac
|
||||||
|
- elif self.ipset:
|
||||||
|
- x = ' ipset="%s"' % self.ipset
|
||||||
|
- return 'source%s%s' % (" NOT" if self.invert else "", x)
|
||||||
|
+ ret = 'source%s ' % (" NOT" if self.invert else "")
|
||||||
|
+ if self.addr is not None:
|
||||||
|
+ return ret + 'address="%s"' % self.addr
|
||||||
|
+ elif self.mac is not None:
|
||||||
|
+ return ret + 'mac="%s"' % self.mac
|
||||||
|
+ elif self.ipset is not None:
|
||||||
|
+ return ret + 'ipset="%s"' % self.ipset
|
||||||
|
+ else:
|
||||||
|
+ raise FirewallError(errors.INVALID_RULE,
|
||||||
|
+ "no address, mac and ipset")
|
||||||
|
|
||||||
|
class Rich_Destination(object):
|
||||||
|
def __init__(self, addr, invert=False):
|
||||||
|
@@ -542,10 +548,14 @@ def check(self):
|
||||||
|
raise FirewallError(errors.INVALID_FAMILY)
|
||||||
|
if self.source.mac is not None:
|
||||||
|
raise FirewallError(errors.INVALID_RULE, "address and mac")
|
||||||
|
+ if self.source.ipset is not None:
|
||||||
|
+ raise FirewallError(errors.INVALID_RULE, "address and ipset")
|
||||||
|
if not functions.check_address(self.family, self.source.addr):
|
||||||
|
raise FirewallError(errors.INVALID_ADDR, str(self.source.addr))
|
||||||
|
|
||||||
|
elif self.source.mac is not None:
|
||||||
|
+ if self.source.ipset is not None:
|
||||||
|
+ raise FirewallError(errors.INVALID_RULE, "mac and ipset")
|
||||||
|
if not functions.check_mac(self.source.mac):
|
||||||
|
raise FirewallError(errors.INVALID_MAC, str(self.source.mac))
|
||||||
|
|
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
Summary: A firewall daemon with D-Bus interface providing a dynamic firewall
|
Summary: A firewall daemon with D-Bus interface providing a dynamic firewall
|
||||||
Name: firewalld
|
Name: firewalld
|
||||||
Version: 0.4.4.4
|
Version: 0.4.4.5
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
URL: http://www.firewalld.org
|
URL: http://www.firewalld.org
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
@ -19,6 +19,8 @@ Source2: FedoraWorkstation.xml
|
|||||||
%if 0%{?fedora}
|
%if 0%{?fedora}
|
||||||
Patch0: firewalld-0.2.6-MDNS-default.patch
|
Patch0: firewalld-0.2.6-MDNS-default.patch
|
||||||
%endif
|
%endif
|
||||||
|
Patch1: firewalld-0.4.4.5-rich_source_validation-d69b7cb.patch
|
||||||
|
Patch2: firewalld-0.4.4.5-ipv6_icmptype_only_rich_rule_fix-cf50bd0.patch
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRequires: desktop-file-utils
|
BuildRequires: desktop-file-utils
|
||||||
BuildRequires: gettext
|
BuildRequires: gettext
|
||||||
@ -118,7 +120,11 @@ Requires: %{name} = %{version}-%{release}
|
|||||||
Requires: firewall-config = %{version}-%{release}
|
Requires: firewall-config = %{version}-%{release}
|
||||||
Requires: hicolor-icon-theme
|
Requires: hicolor-icon-theme
|
||||||
%if 0%{?use_python3}
|
%if 0%{?use_python3}
|
||||||
|
%if 0%{?fedora} >= 26
|
||||||
|
Requires: python3-qt5-base
|
||||||
|
%else
|
||||||
Requires: python3-qt5
|
Requires: python3-qt5
|
||||||
|
%endif
|
||||||
Requires: python3-gobject
|
Requires: python3-gobject
|
||||||
%else
|
%else
|
||||||
Requires: python-qt5
|
Requires: python-qt5
|
||||||
@ -154,6 +160,8 @@ firewalld.
|
|||||||
%if 0%{?fedora}
|
%if 0%{?fedora}
|
||||||
%patch0 -p1
|
%patch0 -p1
|
||||||
%endif
|
%endif
|
||||||
|
%patch1 -p1 -b .rich_source_validation-d69b7cb
|
||||||
|
%patch2 -p1 -b .ipv6_icmptype_only_rich_rule_fix-cf50bd0
|
||||||
./autogen.sh
|
./autogen.sh
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
%if 0%{?with_python3}
|
||||||
@ -169,12 +177,20 @@ sed -i 's|/usr/bin/python|%{__python3}|' %{py3dir}/config/lockdown-whitelist.xml
|
|||||||
%configure --enable-sysconfig --enable-rpmmacros
|
%configure --enable-sysconfig --enable-rpmmacros
|
||||||
# Enable the make line if there are patches affecting man pages to
|
# Enable the make line if there are patches affecting man pages to
|
||||||
# regenerate them
|
# regenerate them
|
||||||
|
%if 0%{?use_python3}
|
||||||
|
make -C src %{?_smp_mflags}
|
||||||
|
%else
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
%endif
|
||||||
|
|
||||||
%if 0%{?with_python3}
|
%if 0%{?with_python3}
|
||||||
pushd %{py3dir}
|
pushd %{py3dir}
|
||||||
%configure --enable-sysconfig --enable-rpmmacros PYTHON=%{__python3}
|
%configure --enable-sysconfig --enable-rpmmacros PYTHON=%{__python3}
|
||||||
|
%if 0%{?use_python3}
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
%else
|
||||||
|
make -C src %{?_smp_mflags}
|
||||||
|
%endif
|
||||||
popd
|
popd
|
||||||
%endif #0%{?with_python3}
|
%endif #0%{?with_python3}
|
||||||
|
|
||||||
@ -263,11 +279,11 @@ fi
|
|||||||
if [ ! -e %{_datadir}/polkit-1/actions/org.fedoraproject.FirewallD1.policy ]; then
|
if [ ! -e %{_datadir}/polkit-1/actions/org.fedoraproject.FirewallD1.policy ]; then
|
||||||
case "$VARIANT_ID" in
|
case "$VARIANT_ID" in
|
||||||
workstation)
|
workstation)
|
||||||
ln -sf org.fedoraproject.FirewallD1.desktop.policy %{_datadir}/polkit-1/actions/org.fedoraproject.FirewallD1.policy || :
|
ln -sf org.fedoraproject.FirewallD1.desktop.policy.choice %{_datadir}/polkit-1/actions/org.fedoraproject.FirewallD1.policy || :
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
# For all other editions, we'll use the Server polkit policy
|
# For all other editions, we'll use the Server polkit policy
|
||||||
ln -sf org.fedoraproject.FirewallD1.server.policy %{_datadir}/polkit-1/actions/org.fedoraproject.FirewallD1.policy || :
|
ln -sf org.fedoraproject.FirewallD1.server.policy.choice %{_datadir}/polkit-1/actions/org.fedoraproject.FirewallD1.policy || :
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
%endif
|
%endif
|
||||||
@ -336,8 +352,8 @@ fi
|
|||||||
%config(noreplace) %{_sysconfdir}/sysconfig/firewalld
|
%config(noreplace) %{_sysconfdir}/sysconfig/firewalld
|
||||||
%{_unitdir}/firewalld.service
|
%{_unitdir}/firewalld.service
|
||||||
%config(noreplace) %{_sysconfdir}/dbus-1/system.d/FirewallD.conf
|
%config(noreplace) %{_sysconfdir}/dbus-1/system.d/FirewallD.conf
|
||||||
%{_datadir}/polkit-1/actions/org.fedoraproject.FirewallD1.desktop.policy
|
%{_datadir}/polkit-1/actions/org.fedoraproject.FirewallD1.desktop.policy.choice
|
||||||
%{_datadir}/polkit-1/actions/org.fedoraproject.FirewallD1.server.policy
|
%{_datadir}/polkit-1/actions/org.fedoraproject.FirewallD1.server.policy.choice
|
||||||
%if 0%{?fedora} > 21
|
%if 0%{?fedora} > 21
|
||||||
%ghost %{_datadir}/polkit-1/actions/org.fedoraproject.FirewallD1.policy
|
%ghost %{_datadir}/polkit-1/actions/org.fedoraproject.FirewallD1.policy
|
||||||
%endif
|
%endif
|
||||||
@ -414,6 +430,28 @@ fi
|
|||||||
%{_mandir}/man1/firewall-config*.1*
|
%{_mandir}/man1/firewall-config*.1*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Jun 9 2017 Thomas Woerner <twoerner@redhat.com> - 0.4.4.5-1
|
||||||
|
- Rebase to firewalld-0.4.4.5
|
||||||
|
http://www.firewalld.org/2017/06/firewalld-0-4-4-5-release
|
||||||
|
- Fix build from spec
|
||||||
|
- Fix –remove-service-from-zone option (RHBZ#1438127)
|
||||||
|
- Support sctp and dccp in ports, source-ports, forward-ports, helpers and
|
||||||
|
rich rules (RHBZ#1429808)
|
||||||
|
- firewall-cmd: Fix –{set,get}-{short,description} for zone (RHBZ#1445238)
|
||||||
|
- firewall.core.ipXtables: Use new wait option for restore commands if
|
||||||
|
available
|
||||||
|
- New services for oVirt:
|
||||||
|
ctdb, ovirt-imageio, ovirt-storageconsole, ovirt-vmconsole and nrpe
|
||||||
|
- Rename extension for policy choices (server and desktop) to .policy.choice
|
||||||
|
(RHBZ#1449754)
|
||||||
|
- D-Bus interfaces: Fix GetAll for interfaces without properties
|
||||||
|
(RHBZ#1452017)
|
||||||
|
- Load NAT helpers with conntrack helpers (RHBZ#1452681)
|
||||||
|
- Translation updates
|
||||||
|
- Additional upstream patches:
|
||||||
|
- Rich-rule source validation (d69b7cb)
|
||||||
|
- IPv6 ICMP type only rich-rule fix (cf50bd0)
|
||||||
|
|
||||||
* Mon Mar 27 2017 Thomas Woerner <twoerner@redhat.com> - 0.4.4.4-1
|
* Mon Mar 27 2017 Thomas Woerner <twoerner@redhat.com> - 0.4.4.4-1
|
||||||
- Rebase to firewalld-0.4.4.4
|
- Rebase to firewalld-0.4.4.4
|
||||||
http://www.firewalld.org/2017/03/firewalld-0-4-4-4-release
|
http://www.firewalld.org/2017/03/firewalld-0-4-4-4-release
|
||||||
|
Loading…
Reference in New Issue
Block a user