]> git.ipfire.org Git - thirdparty/nftables.git/commitdiff
parser_bison: fix length check for ifname in ifname_expr_alloc()
authorThomas Haller <thaller@redhat.com>
Mon, 23 Oct 2023 17:00:47 +0000 (19:00 +0200)
committerPablo Neira Ayuso <pablo@netfilter.org>
Tue, 24 Oct 2023 09:31:02 +0000 (11:31 +0200)
IFNAMSIZ is 16, and the allowed byte length of the name is one less than
that. Fix the length check and adjust a test for covering the longest
allowed interface name.

This is obviously a change in behavior, because previously interface
names with length 16 were accepted and were silently truncated along the
way. Now they are rejected as invalid.

Fixes: fa52bc225806 ("parser: reject zero-length interface names")
Signed-off-by: Thomas Haller <thaller@redhat.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
src/parser_bison.y
tests/shell/testcases/chains/0042chain_variable_0

index f0652ba651c68ea12a4d401e26d3b3f2e954ee61..9bfc3cdb2d12e5e5cfce117d9e05d53569332c11 100644 (file)
@@ -16,6 +16,7 @@
 #include <stdio.h>
 #include <inttypes.h>
 #include <syslog.h>
+#include <net/if.h>
 #include <netinet/ip.h>
 #include <netinet/tcp.h>
 #include <netinet/if_ether.h>
@@ -158,7 +159,7 @@ static struct expr *ifname_expr_alloc(const struct location *location,
                return NULL;
        }
 
-       if (length > 16) {
+       if (length >= IFNAMSIZ) {
                xfree(name);
                erec_queue(error(location, "interface name too long"), queue);
                return NULL;
index 739dc05a1777dfaa40fbc8d70c9ef5133524d54c..a4b929f7344cac5ee7991c668d4620ec08760341 100755 (executable)
@@ -26,18 +26,13 @@ table netdev filter2 {
 
 rc=0
 $NFT -f - <<< $EXPECTED || rc=$?
-test "$rc" = 0
+test "$rc" = 1
 cat <<EOF | $DIFF -u <($NFT list ruleset) -
 table netdev filter1 {
        chain Main_Ingress1 {
                type filter hook ingress device "lo" priority -500; policy accept;
        }
 }
-table netdev filter2 {
-       chain Main_Ingress2 {
-               type filter hook ingress devices = { d23456789012345, lo } priority -500; policy accept;
-       }
-}
 EOF