From 04fff6d96044dfb9f73224078ad74df192c82106 Mon Sep 17 00:00:00 2001 From: Florian Westphal Date: Sun, 18 Feb 2024 12:12:46 +0100 Subject: [PATCH] tests: shell: add regression test for catchall double-delete Test case for: b1db244ffd04 ("netfilter: nf_tables: check if catch-all set element is active in next generation") Reported-by: lonial con Signed-off-by: Florian Westphal --- .../maps/dumps/map_catchall_double_free_2.nft | 9 +++++++ .../testcases/maps/map_catchall_double_free_2 | 27 +++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 tests/shell/testcases/maps/dumps/map_catchall_double_free_2.nft create mode 100755 tests/shell/testcases/maps/map_catchall_double_free_2 diff --git a/tests/shell/testcases/maps/dumps/map_catchall_double_free_2.nft b/tests/shell/testcases/maps/dumps/map_catchall_double_free_2.nft new file mode 100644 index 00000000..68958c40 --- /dev/null +++ b/tests/shell/testcases/maps/dumps/map_catchall_double_free_2.nft @@ -0,0 +1,9 @@ +table ip test { + map testmap { + type ipv4_addr : verdict + elements = { * : jump testchain } + } + + chain testchain { + } +} diff --git a/tests/shell/testcases/maps/map_catchall_double_free_2 b/tests/shell/testcases/maps/map_catchall_double_free_2 new file mode 100755 index 00000000..5842fcb5 --- /dev/null +++ b/tests/shell/testcases/maps/map_catchall_double_free_2 @@ -0,0 +1,27 @@ +#!/bin/bash + +# NFT_TEST_REQUIRES(NFT_TEST_HAVE_catchall_element) + +$NFT -f /dev/stdin <