]> git.ipfire.org Git - thirdparty/nftables.git/commit
evaluate: expand value to range when nat mapping contains intervals
authorPablo Neira Ayuso <pablo@netfilter.org>
Fri, 17 Feb 2023 14:10:44 +0000 (15:10 +0100)
committerPablo Neira Ayuso <pablo@netfilter.org>
Tue, 28 Feb 2023 14:42:26 +0000 (15:42 +0100)
commitddb962604cda323f15589f3b424c4618db7494de
tree144b1b7fccf90185aad132a58377dc886f132ee0
parent3975430b12d97c92cdf03753342f2269153d5624
evaluate: expand value to range when nat mapping contains intervals

If the data in the mapping contains a range, then upgrade value to range.
Otherwise, the following error is displayed:

/dev/stdin:11:57-75: Error: Could not process rule: Invalid argument
dnat ip to iifname . ip saddr map { enp2s0 . 10.1.1.136 : 1.1.2.69, enp2s0 . 10.1.1.1-10.1.1.135 : 1.1.2.66-1.84.236.78 }
                                    ^^^^^^^^^^^^^^^^^^^

The kernel rejects this command because userspace sends a single value
while the kernel expects the range that represents the min and the max
IP address to be used for NAT. The upgrade is also done when concatenation
with intervals is used in the rhs of the mapping.

For anonymous sets, expansion cannot be done from expr_evaluate_mapping()
because the EXPR_F_INTERVAL flag is inferred from the elements. For
explicit sets, this can be done from expr_evaluate_mapping() because the
user already specifies the interval flag in the rhs of the map definition.

Update tests/shell and tests/py to improve testing coverage in this case.

Fixes: 9599d9d25a6b ("src: NAT support for intervals in maps")
Fixes: 66746e7dedeb ("src: support for nat with interval concatenation")
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
src/evaluate.c
tests/py/ip/dnat.t
tests/py/ip/dnat.t.json
tests/py/ip/dnat.t.payload.ip
tests/shell/testcases/sets/0047nat_0
tests/shell/testcases/sets/0067nat_concat_interval_0
tests/shell/testcases/sets/dumps/0047nat_0.nft
tests/shell/testcases/sets/dumps/0067nat_concat_interval_0.nft