From b9913c199cd70e2928adf5d735bf7508596fcfc2 Mon Sep 17 00:00:00 2001 From: Arturo Borrero Gonzalez Date: Thu, 3 Nov 2016 13:04:47 +0100 Subject: tests: shell: add a new testcase for ruleset loading bug There seems to be a bug that prevent loading a ruleset twice in a row if the ruleset contains sets with intervals. This seems related to the nft cache. By the time of this commit, the bug is not fixed yet. Signed-off-by: Arturo Borrero Gonzalez Signed-off-by: Pablo Neira Ayuso --- tests/shell/testcases/cache/0002_interval_0 | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 tests/shell/testcases/cache/0002_interval_0 (limited to 'tests/shell/testcases/cache') diff --git a/tests/shell/testcases/cache/0002_interval_0 b/tests/shell/testcases/cache/0002_interval_0 new file mode 100755 index 00000000..f500911a --- /dev/null +++ b/tests/shell/testcases/cache/0002_interval_0 @@ -0,0 +1,27 @@ +#!/bin/bash + +# This testcase checks that we can load a ruleset twice in a row. +# bug --> Error: interval overlaps with an existing one + +set -e + +tmpfile=$(mktemp) +if [ ! -w $tmpfile ] ; then + echo "Failed to create tmp file" >&2 + exit 0 +fi + +trap "rm -rf $tmpfile" EXIT # cleanup if aborted + +RULESET="flush ruleset +table inet t { + set s { type ipv4_addr; flags interval; } +} + +add element inet t s { + 192.168.0.1/24, +}" + +echo "$RULESET" > $tmpfile +$NFT -f $tmpfile +$NFT -f $tmpfile -- cgit v1.2.3