Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F161410886
D32138.id.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D32138.id.diff
View Options
diff --git a/tests/sys/netpfil/pf/syncookie.sh b/tests/sys/netpfil/pf/syncookie.sh
--- a/tests/sys/netpfil/pf/syncookie.sh
+++ b/tests/sys/netpfil/pf/syncookie.sh
@@ -29,6 +29,48 @@
common_dir=$(atf_get_srcdir)/../common
+atf_test_case "basic" "cleanup"
+basic_head()
+{
+ atf_set descr 'Basic syncookie test'
+ atf_set require.user root
+}
+
+basic_body()
+{
+ pft_init
+
+ epair=$(vnet_mkepair)
+
+ vnet_mkjail alcatraz ${epair}b
+ jexec alcatraz ifconfig ${epair}b 192.0.2.1/24 up
+ jexec alcatraz /usr/sbin/inetd -p inetd-alcatraz.pid \
+ $(atf_get_srcdir)/echo_inetd.conf
+
+ ifconfig ${epair}a 192.0.2.2/24 up
+
+ jexec alcatraz pfctl -e
+ pft_set_rules alcatraz \
+ "set syncookies always" \
+ "pass in" \
+ "pass out"
+
+ # Sanity check
+ atf_check -s exit:0 -o ignore ping -c 1 192.0.2.1
+
+ reply=$(echo foo | nc -N -w 5 192.0.2.1 7)
+ if [ "${reply}" != "foo" ];
+ then
+ atf_fail "Failed to connect to syncookie protected echo daemon"
+ fi
+}
+
+basic_cleanup()
+{
+ rm -f inetd-alcatraz.pid
+ pft_cleanup
+}
+
atf_test_case "forward" "cleanup"
forward_head()
{
@@ -128,6 +170,7 @@
atf_init_test_cases()
{
+ atf_add_test_case "basic"
atf_add_test_case "forward"
atf_add_test_case "nostate"
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Jul 4, 12:52 PM (4 h, 41 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
34670257
Default Alt Text
D32138.id.diff (1 KB)
Attached To
Mode
D32138: pf tests: Basic syncookie test
Attached
Detach File
Event Timeline
Log In to Comment