]> git.ipfire.org Git - thirdparty/nftables.git/commit
evaluate: reject set in concatenation
authorPablo Neira Ayuso <pablo@netfilter.org>
Wed, 25 Oct 2023 14:00:50 +0000 (16:00 +0200)
committerPablo Neira Ayuso <pablo@netfilter.org>
Thu, 26 Oct 2023 08:59:54 +0000 (10:59 +0200)
commit4b6a4ad9134fa71277c2ff7f92776e1faeb83000
tree5306431ce88fc574ff7117c2ea9bcf8321fbbce2
parentbe2856fc2280014d331d33a520cb5f3f3d909611
evaluate: reject set in concatenation

Consider the following ruleset.

 define ext_if = { "eth0", "eth1" }
 table ip filter {
    chain c {
        iifname . tcp dport { $ext_if . 22 } accept
    }
 }

Attempting to load this ruleset results in:

BUG: invalid expression type 'set' in setnft: netlink.c:304: __netlink_gen_concat_key: Assertion `0' failed.
Aborted (core dumped)

After this patch:

 # nft -f ruleset.nft
 ruleset.nft:1:17-40: Error: cannot use set in concatenation
 define ext_if = { "eth0", "eth1" }
                 ^^^^^^^^^^^^^^^^^^

Closes: https://bugzilla.netfilter.org/show_bug.cgi?id=1715
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
src/evaluate.c