pf tests: Test PR 183198

Create a table which is only used inside an anchor, ensure that the
table exists.

PR:		183198
MFC after:	2 weeks
This commit is contained in:
Kristof Provost 2018-11-08 21:56:06 +00:00
parent 87e4ca37d5
commit 55177f18a1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=340266
2 changed files with 42 additions and 1 deletions

View File

@ -5,7 +5,8 @@ PACKAGE= tests
TESTSDIR= ${TESTSBASE}/sys/netpfil/pf
TESTS_SUBDIRS+= ioctl
ATF_TESTS_SH+= pass_block \
ATF_TESTS_SH+= anchor \
pass_block \
forward \
fragmentation \
set_tos \

40
tests/sys/netpfil/pf/anchor.sh Executable file
View File

@ -0,0 +1,40 @@
# $FreeBSD$
. $(atf_get_srcdir)/utils.subr
atf_test_case "pr183198" "cleanup"
pr183198_head()
{
atf_set descr 'Test tables referenced by rules in anchors'
atf_set require.user root
}
pr183198_body()
{
pft_init
epair=$(pft_mkepair)
pft_mkjail alcatraz ${epair}b
jexec alcatraz pfctl -e
# Forward with pf enabled
pft_set_rules alcatraz \
"table <test> { 10.0.0.1, 10.0.0.2, 10.0.0.3 }" \
"block in" \
"anchor \"epair\" on ${epair}b { \n\
pass in from <test> \n\
}"
atf_check -s exit:0 -o ignore jexec alcatraz pfctl -sr -a '*'
atf_check -s exit:0 -o ignore jexec alcatraz pfctl -t test -T show
}
pr183198_cleanup()
{
pft_cleanup
}
atf_init_test_cases()
{
atf_add_test_case "pr183198"
}