]> git.ipfire.org Git - thirdparty/iptables.git/commitdiff
nft: Fix bitwise expression avoidance detection
authorPhil Sutter <phil@nwl.cc>
Fri, 19 Feb 2021 15:54:57 +0000 (16:54 +0100)
committerPhil Sutter <phil@nwl.cc>
Tue, 9 Mar 2021 08:27:17 +0000 (09:27 +0100)
Byte-boundary prefix detection was too sloppy: Any data following the
first zero-byte was ignored. Add a follow-up loop making sure there are
no stray bits in the designated host part.

Fixes: 323259001d617 ("nft: Optimize class-based IP prefix matches")
Signed-off-by: Phil Sutter <phil@nwl.cc>
iptables/nft-shared.c
iptables/tests/shell/testcases/ip6tables/0004-address-masks_0 [new file with mode: 0755]

index 10553ab26823b301c3d82bd42ea050f45df3d1f1..c1664b50f938346d720f93e1c00832dbd59d9b46 100644 (file)
@@ -166,7 +166,7 @@ void add_addr(struct nftnl_rule *r, enum nft_payload_bases base, int offset,
 {
        const unsigned char *m = mask;
        bool bitwise = false;
-       int i;
+       int i, j;
 
        for (i = 0; i < len; i++) {
                if (m[i] != 0xff) {
@@ -174,6 +174,8 @@ void add_addr(struct nftnl_rule *r, enum nft_payload_bases base, int offset,
                        break;
                }
        }
+       for (j = i + 1; !bitwise && j < len; j++)
+               bitwise = !!m[j];
 
        if (!bitwise)
                len = i;
diff --git a/iptables/tests/shell/testcases/ip6tables/0004-address-masks_0 b/iptables/tests/shell/testcases/ip6tables/0004-address-masks_0
new file mode 100755 (executable)
index 0000000..7eb42f0
--- /dev/null
@@ -0,0 +1,24 @@
+#!/bin/bash
+
+set -e
+
+$XT_MULTI ip6tables-restore <<EOF
+*filter
+-A FORWARD -s feed:babe::/ffff::0
+-A FORWARD -s feed:babe::/ffff:ff00::0
+-A FORWARD -s feed:babe::/ffff:fff0::0
+-A FORWARD -s feed:babe::/ffff:ffff::0
+-A FORWARD -s feed:babe::/0:ffff::0
+-A FORWARD -s feed:c0ff::babe:f00/ffff::ffff:0
+COMMIT
+EOF
+
+EXPECT='-P FORWARD ACCEPT
+-A FORWARD -s feed::/16
+-A FORWARD -s feed:ba00::/24
+-A FORWARD -s feed:bab0::/28
+-A FORWARD -s feed:babe::/32
+-A FORWARD -s 0:babe::/0:ffff::
+-A FORWARD -s feed::babe:0/ffff::ffff:0'
+
+diff -u -Z <(echo -e "$EXPECT") <($XT_MULTI ip6tables -S FORWARD)