On parser error, obj_free will iterate this list.
Included json bogon crashes due to null deref because
list head initialisation did not yet happen.
Fixes: c82a26ebf7e9 ("json: Add ct timeout support")
Signed-off-by: Florian Westphal <fw@strlen.de>
Reviewed-by: Pablo Neira Ayuso <pablo@netfilter.org>
break;
case NFT_OBJECT_CT_TIMEOUT:
cmd_obj = CMD_OBJ_CT_TIMEOUT;
+ init_list_head(&obj->ct_timeout.timeout_list);
obj->type = NFT_OBJECT_CT_TIMEOUT;
if (!json_unpack(root, "{s:s}", "protocol", &tmp)) {
if (!strcmp(tmp, "tcp")) {
}
obj->ct_timeout.l3proto = l3proto;
- init_list_head(&obj->ct_timeout.timeout_list);
if (json_parse_ct_timeout_policy(ctx, root, obj))
goto err_free_obj;
break;
#!/bin/bash
dir=$(dirname $0)/nft-f/
+jsondir=$(dirname $0)/nft-j-f/
+
tmpfile=$(mktemp)
cleanup()
trap cleanup EXIT
-for f in $dir/*; do
- echo "Check $f"
- $NFT --check -f "$f" 2> "$tmpfile"
+die_on_error()
+{
+ local rv="$1"
+ local fname="$2"
- if [ $? -ne 1 ]; then
- echo "Bogus input file $f did not cause expected error code" 1>&2
+ if [ $rv -ne 1 ]; then
+ echo "Bogus input file $fname did not cause expected error code" 1>&2
exit 111
fi
if grep AddressSanitizer "$tmpfile"; then
- echo "Address sanitizer splat for $f" 1>&2
+ echo "Address sanitizer splat for $fname" 1>&2
cat "$tmpfile"
exit 111
fi
+}
+
+for f in $dir/*; do
+ echo "Check $f"
+ $NFT --check -f "$f" 2> "$tmpfile"
+
+ die_on_error $? "$f"
+done
+
+if [ "$NFT_TEST_HAVE_json" = "n" ];then
+ # Intentionally do not skip if we lack json input,
+ # we ran all the tests that we could.
+ exit 0
+fi
+
+for f in $jsondir/*; do
+ echo "Check json input $f"
+ $NFT --check -j -f "$f" 2> "$tmpfile"
+
+ die_on_error $?
done
--- /dev/null
+{
+ "nftables": [
+ {
+ "metainfo": {
+ "version": "VERSION",
+ "release_name": "RELEASE_NAME",
+ "json_schema_version": 1
+ }
+ },
+ {
+ "table": {
+ "family": "ip",
+ "name": "filter",
+ "handle": 0
+ }
+ },
+ {
+ "chain": {
+ "family": "ip",
+ "table": "filter",
+ "name": "c",
+ "handle": 0
+ }
+ },
+ {
+ "ct timeout": {
+ "family": "ip",
+ "name": "cttime",
+ "table": "filter",
+ "handle": 0,
+ "protocol": "Xcp",
+ "l3proto": "ip",
+ "policy": {
+ "established": 123,
+ "close": 12
+ }
+ }
+ },
+ {
+ "rule": {
+ "family": "ip",
+ "table": "filter",
+ "chain": "c",
+ "handle": 0,
+ "expr": [
+ {
+ "ct timeout": "cttime"
+ }
+ ]
+ }
+ }
+ ]
+}
+