aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKristof Provost <kp@FreeBSD.org>2026-03-20 03:16:57 +0000
committerKristof Provost <kp@FreeBSD.org>2026-03-22 03:47:36 +0000
commit0b0d34fd2f40e06e4600441b15b26b1cc1941c9f (patch)
tree2d5309946fc2dfae548d30310abc76ed10f4cfe6
parent60baee1fa4848ac969522e03d2c6f273f334edb7 (diff)
pf tests: verify first-match-wins for nat rules
Sponsored by: Orange Business Services
-rw-r--r--tests/sys/netpfil/pf/nat.sh45
1 files changed, 45 insertions, 0 deletions
diff --git a/tests/sys/netpfil/pf/nat.sh b/tests/sys/netpfil/pf/nat.sh
index 025471f75f97..600688a8dbc9 100644
--- a/tests/sys/netpfil/pf/nat.sh
+++ b/tests/sys/netpfil/pf/nat.sh
@@ -953,6 +953,50 @@ dummynet_mask_cleanup()
pft_cleanup
}
+atf_test_case "first_match" "cleanup"
+first_match_head()
+{
+ atf_set descr 'Test that NAT rules are first match'
+ atf_set require.user root
+}
+
+first_match_body()
+{
+ pft_init
+
+ epair_nat=$(vnet_mkepair)
+ epair_echo=$(vnet_mkepair)
+
+ vnet_mkjail nat ${epair_nat}b ${epair_echo}a
+ vnet_mkjail echo ${epair_echo}b
+
+ ifconfig ${epair_nat}a 192.0.2.2/24 up
+ route add -net 198.51.100.0/24 192.0.2.1
+
+ jexec nat ifconfig ${epair_nat}b 192.0.2.1/24 up
+ jexec nat ifconfig ${epair_echo}a 198.51.100.1/24 up
+ jexec nat sysctl net.inet.ip.forwarding=1
+
+ jexec echo ifconfig ${epair_echo}b 198.51.100.2/24 up
+
+ # Enable pf!
+ jexec nat pfctl -e
+ pft_set_rules nat \
+ "table <foo> { 192.0.2.0/24 }" \
+ "nat on ${epair_echo}a inet from <foo> to any -> 198.51.100.1" \
+ "nat on ${epair_echo}a inet from 192.0.2.0/24 to any -> 198.51.100.3"
+
+ atf_check -s exit:0 -o ignore ping -c 3 198.51.100.2
+ atf_check -s exit:0 -e ignore \
+ -o match:"all icmp 198.51.100.1:.*(192.0.2.2:.*) -> 198.51.100.2:8.*" \
+ jexec nat pfctl -ss
+}
+
+first_match_cleanup()
+{
+ pft_cleanup
+}
+
atf_init_test_cases()
{
atf_add_test_case "exhaust"
@@ -975,4 +1019,5 @@ atf_init_test_cases()
atf_add_test_case "binat_match"
atf_add_test_case "empty_pool"
atf_add_test_case "dummynet_mask"
+ atf_add_test_case "first_match"
}