]> git.ipfire.org Git - thirdparty/nftables.git/commitdiff
xt: Fix fallback printing for extensions matching keywords
authorPhil Sutter <phil@nwl.cc>
Thu, 9 Mar 2023 13:31:31 +0000 (14:31 +0100)
committerPhil Sutter <phil@nwl.cc>
Fri, 10 Mar 2023 11:25:08 +0000 (12:25 +0100)
Yet another Bison workaround: Instead of the fancy error message, an
incomprehensible syntax error is emitted:

| # iptables-nft -A FORWARD -p tcp -m osf --genre linux
| # nft list ruleset | nft -f -
| # Warning: table ip filter is managed by iptables-nft, do not touch!
| /dev/stdin:4:29-31: Error: syntax error, unexpected osf, expecting string
|  meta l4proto tcp xt match osf counter packets 0 bytes 0
|                            ^^^

Avoid this by quoting the extension name when printing:

| # nft list ruleset | sudo ./src/nft -f -
| # Warning: table ip filter is managed by iptables-nft, do not touch!
| /dev/stdin:4:20-33: Error: unsupported xtables compat expression, use iptables-nft with this ruleset
|  meta l4proto tcp xt match "osf" counter packets 0 bytes 0
|                   ^^^^^^^^^^^^^^

Fixes: 79195a8cc9e9d ("xt: Rewrite unsupported compat expression dumping")
Fixes: e41c53ca5b043 ("xt: Fall back to generic printing from translation")
Signed-off-by: Phil Sutter <phil@nwl.cc>
src/parser_bison.y
src/xt.c

index b1b67623cf660e168aaf5f5a5cb026c0fea26624..3c06ff48c95cd8dcd642be330390e60f591c4aed 100644 (file)
@@ -2998,7 +2998,7 @@ stmt                      :       verdict_stmt
                        |       xt_stmt         close_scope_xt
                        ;
 
-xt_stmt                        :       XT      STRING  STRING
+xt_stmt                        :       XT      STRING  string
                        {
                                $$ = NULL;
                                xfree($2);
index 2405d3c34773ca9992117615f0ef0e376edfd10f..f63096a554e7fbbdb5032e4c22171924b6b29ab6 100644 (file)
--- a/src/xt.c
+++ b/src/xt.c
@@ -116,7 +116,7 @@ void xt_stmt_xlate(const struct stmt *stmt, struct output_ctx *octx)
        xfree(entry);
 #endif
        if (!rc)
-               nft_print(octx, "xt %s %s",
+               nft_print(octx, "xt %s \"%s\"",
                          typename[stmt->xt.type], stmt->xt.name);
 }