Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 22 Nov 2018 20:00:56 +0000 (UTC)
From:      Kristof Provost <kp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org
Subject:   svn commit: r340780 - stable/12/tests/sys/netpfil/pf
Message-ID:  <201811222000.wAMK0urW085183@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kp
Date: Thu Nov 22 20:00:56 2018
New Revision: 340780
URL: https://svnweb.freebsd.org/changeset/base/340780

Log:
  MFC r340266:
  
  pf tests: Test PR 183198
  
  Create a table which is only used inside an anchor, ensure that the
  table exists.
  
  PR:		183198

Added:
  stable/12/tests/sys/netpfil/pf/anchor.sh
     - copied unchanged from r340266, head/tests/sys/netpfil/pf/anchor.sh
Modified:
  stable/12/tests/sys/netpfil/pf/Makefile
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/tests/sys/netpfil/pf/Makefile
==============================================================================
--- stable/12/tests/sys/netpfil/pf/Makefile	Thu Nov 22 19:59:04 2018	(r340779)
+++ stable/12/tests/sys/netpfil/pf/Makefile	Thu Nov 22 20:00:56 2018	(r340780)
@@ -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 \

Copied: stable/12/tests/sys/netpfil/pf/anchor.sh (from r340266, head/tests/sys/netpfil/pf/anchor.sh)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ stable/12/tests/sys/netpfil/pf/anchor.sh	Thu Nov 22 20:00:56 2018	(r340780, copy of r340266, head/tests/sys/netpfil/pf/anchor.sh)
@@ -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"
+}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811222000.wAMK0urW085183>