* [Buildroot] [PATCH] iptables: fix disable-ipv6 option
@ 2009-09-20 11:54 Olaf Rempel
2009-09-20 12:56 ` Peter Korsgaard
0 siblings, 1 reply; 2+ messages in thread
From: Olaf Rempel @ 2009-09-20 11:54 UTC (permalink / raw)
To: buildroot
- bumb version to v1.4.5
- add fix for --disable-ipv6 option
(upstream bug: http://bugzilla.netfilter.org/show_bug.cgi?id=608)
Signed-off-by: Olaf Rempel <razzor@kopf-tisch.de>
---
package/iptables/iptables-1.4.5-disable-ipv6.patch | 19 +++++++++++++++++++
package/iptables/iptables.mk | 2 +-
2 files changed, 20 insertions(+), 1 deletions(-)
create mode 100644 package/iptables/iptables-1.4.5-disable-ipv6.patch
diff --git a/package/iptables/iptables-1.4.5-disable-ipv6.patch b/package/iptables/iptables-1.4.5-disable-ipv6.patch
new file mode 100644
index 0000000..9f22a0c
--- /dev/null
+++ b/package/iptables/iptables-1.4.5-disable-ipv6.patch
@@ -0,0 +1,19 @@
+--- iptables-1.4.5/xtables.c.org 2009-09-14 18:36:55.000000000 +0200
++++ iptables-1.4.5/xtables.c 2009-09-20 13:24:11.000000000 +0200
+@@ -1484,6 +1484,7 @@
+ xtables_ip6parse_multiple(const char *name, struct in6_addr **addrpp,
+ struct in6_addr **maskpp, unsigned int *naddrs)
+ {
++ static const struct in6_addr zero_addr;
+ struct in6_addr *addrp;
+ char buf[256], *p;
+ unsigned int len, i, j, n, count = 1;
+@@ -1526,7 +1527,7 @@
+ memcpy(*maskpp + i, addrp, sizeof(*addrp));
+
+ /* if a null mask is given, the name is ignored, like in "any/0" */
+- if (memcmp(*maskpp + i, &in6addr_any, sizeof(in6addr_any)) == 0)
++ if (memcmp(*maskpp + i, &zero_addr, sizeof(zero_addr)) == 0)
+ strcpy(buf, "::");
+
+ addrp = ip6parse_hostnetwork(buf, &n);
diff --git a/package/iptables/iptables.mk b/package/iptables/iptables.mk
index 48e5d33..1c3d9be 100644
--- a/package/iptables/iptables.mk
+++ b/package/iptables/iptables.mk
@@ -3,7 +3,7 @@
# iptables
#
#############################################################
-IPTABLES_VERSION = 1.4.4
+IPTABLES_VERSION = 1.4.5
IPTABLES_SOURCE = iptables-$(IPTABLES_VERSION).tar.bz2
IPTABLES_SITE = http://ftp.netfilter.org/pub/iptables
--
1.5.4.3
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [Buildroot] [PATCH] iptables: fix disable-ipv6 option
2009-09-20 11:54 [Buildroot] [PATCH] iptables: fix disable-ipv6 option Olaf Rempel
@ 2009-09-20 12:56 ` Peter Korsgaard
0 siblings, 0 replies; 2+ messages in thread
From: Peter Korsgaard @ 2009-09-20 12:56 UTC (permalink / raw)
To: buildroot
>>>>> "Olaf" == Olaf Rempel <razzor@kopf-tisch.de> writes:
Olaf> - bumb version to v1.4.5
Olaf> - add fix for --disable-ipv6 option
Olaf> (upstream bug: http://bugzilla.netfilter.org/show_bug.cgi?id=608)
Olaf> Signed-off-by: Olaf Rempel <razzor@kopf-tisch.de>
Olaf> ---
Olaf> package/iptables/iptables-1.4.5-disable-ipv6.patch | 19 +++++++++++++++++++
Olaf> package/iptables/iptables.mk | 2 +-
Olaf> 2 files changed, 20 insertions(+), 1 deletions(-)
Olaf> create mode 100644 package/iptables/iptables-1.4.5-disable-ipv6.patch
Olaf> diff --git a/package/iptables/iptables-1.4.5-disable-ipv6.patch b/package/iptables/iptables-1.4.5-disable-ipv6.patch
Olaf> new file mode 100644
Olaf> index 0000000..9f22a0c
Olaf> --- /dev/null
Olaf> +++ b/package/iptables/iptables-1.4.5-disable-ipv6.patch
Olaf> @@ -0,0 +1,19 @@
Olaf> +--- iptables-1.4.5/xtables.c.org 2009-09-14 18:36:55.000000000 +0200
Olaf> ++++ iptables-1.4.5/xtables.c 2009-09-20 13:24:11.000000000 +0200
Olaf> +@@ -1484,6 +1484,7 @@
Olaf> + xtables_ip6parse_multiple(const char *name, struct in6_addr **addrpp,
Olaf> + struct in6_addr **maskpp, unsigned int *naddrs)
Olaf> + {
Olaf> ++ static const struct in6_addr zero_addr;
Olaf> + struct in6_addr *addrp;
Olaf> + char buf[256], *p;
Olaf> + unsigned int len, i, j, n, count = 1;
Olaf> +@@ -1526,7 +1527,7 @@
Olaf> + memcpy(*maskpp + i, addrp, sizeof(*addrp));
Olaf> +
Olaf> + /* if a null mask is given, the name is ignored, like in "any/0" */
Olaf> +- if (memcmp(*maskpp + i, &in6addr_any, sizeof(in6addr_any)) == 0)
Olaf> ++ if (memcmp(*maskpp + i, &zero_addr, sizeof(zero_addr)) == 0)
Olaf> + strcpy(buf, "::");
Olaf> +
Olaf> + addrp = ip6parse_hostnetwork(buf, &n);
Using struct in6_addr on a pure ipv4 system doesn't look that clean to
me, but as it obviously works:
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-09-20 12:56 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-20 11:54 [Buildroot] [PATCH] iptables: fix disable-ipv6 option Olaf Rempel
2009-09-20 12:56 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox