From: Arturo Borrero Date: Wed, 11 May 2016 11:30:13 +0000 (+0200) Subject: tests/shell: add testcase to catch segfault if invalid syntax was used X-Git-Tag: v0.6~30 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6d91c4d176c3235371333abc6044ad90bea21d6d;p=thirdparty%2Fnftables.git tests/shell: add testcase to catch segfault if invalid syntax was used This helps to catch 5afa5a1 ("evaluate: check for NULL datatype in rhs in lookup expr"). Signed-off-by: Arturo Borrero Gonzalez Signed-off-by: Pablo Neira Ayuso --- diff --git a/tests/shell/testcases/nft-f/0007action_object_set_segfault_1 b/tests/shell/testcases/nft-f/0007action_object_set_segfault_1 new file mode 100755 index 00000000..3a4183bb --- /dev/null +++ b/tests/shell/testcases/nft-f/0007action_object_set_segfault_1 @@ -0,0 +1,21 @@ +#!/bin/bash + +# test for a segfault if bad syntax was used in set declaration +# and the set is referenced in the same batch + +tmpfile=$(mktemp) +if [ ! -w $tmpfile ] ; then + echo "Failed to create tmp file" >&2 + exit 0 +fi + +trap "rm -f $tmpfile" EXIT # cleanup if aborted + +echo " +add table t +add chain t c +add set t s {type ipv4_addr\;} +add rule t c ip saddr @s +" > $tmpfile + +$NFT -f $tmpfile 2>/dev/null