. $(atf_get_srcdir)/utils.subr
common_dir=$(atf_get_srcdir)/../common
find_state()
{
jail=${1:-alcatraz}
ip=${2:-192.0.2.2}
jexec ${jail} pfctl -ss | grep icmp | grep ${ip}
}
find_state_v6()
{
jexec alcatraz pfctl -ss | grep icmp | grep 2001:db8::2
}
atf_test_case "v4" "cleanup"
v4_head()
{
atf_set descr 'Test killing states by IPv4 address'
atf_set require.user root
atf_set require.progs python3 scapy
}
v4_body()
{
pft_init
epair=$(vnet_mkepair)
ifconfig ${epair}a 192.0.2.1/24 up
vnet_mkjail alcatraz ${epair}b
jexec alcatraz ifconfig ${epair}b 192.0.2.2/24 up
jexec alcatraz pfctl -e
pft_set_rules alcatraz "block all" \
"pass in proto icmp" \
"set skip on lo"
atf_check -s exit:0 -o ignore ${common_dir}/pft_ping.py \
--sendif ${epair}a \
--to 192.0.2.2 \
--replyif ${epair}a
pft_set_rules noflush alcatraz "block all"
if ! find_state;
then
atf_fail "Setting new rules removed the state."
fi
jexec alcatraz pfctl -k 192.0.2.3
if ! find_state;
then
atf_fail "Killing with the wrong IP removed our state."
fi
jexec alcatraz pfctl -k 192.0.2.1 -k 192.0.2.3
if ! find_state;
then
atf_fail "Killing with one wrong IP removed our state."
fi
jexec alcatraz pfctl -k 192.0.2.1
if find_state;
then
atf_fail "Killing with the correct IP did not remove our state."
fi
}
v4_cleanup()
{
pft_cleanup
}
atf_test_case "src_dst" "cleanup"
src_dst_head()
{
atf_set descr 'Test killing a state with source and destination specified'
atf_set require.user root
}
src_dst_body()
{
pft_init
epair=$(vnet_mkepair)
ifconfig ${epair}a 192.0.2.1/24 up
vnet_mkjail alcatraz ${epair}b
jexec alcatraz ifconfig ${epair}b 192.0.2.2/24 up
jexec alcatraz pfctl -e
pft_set_rules alcatraz "block all" \
"pass in proto icmp" \
"set skip on lo"
atf_check -s exit:0 -o ignore ${common_dir}/pft_ping.py \
--sendif ${epair}a \
--to 192.0.2.2 \
--replyif ${epair}a
pft_set_rules noflush alcatraz "block all"
if ! find_state;
then
atf_fail "Setting new rules removed the state."
fi
jexec alcatraz pfctl -k 192.0.2.3 -k 192.0.2.2
if ! find_state;
then
atf_fail "Killing with the wrong source IP removed our state."
fi
jexec alcatraz pfctl -k 192.0.2.1 -k 192.0.2.3
if ! find_state;
then
atf_fail "Killing with the wrong destination IP removed our state."
fi
jexec alcatraz pfctl -k 192.0.2.1 -k 192.0.2.2
if find_state;
then
atf_fail "Killing with the correct IPs did not remove our state."
fi
}
src_dst_cleanup()
{
pft_cleanup
}
atf_test_case "v6" "cleanup"
v6_head()
{
atf_set descr 'Test killing states by IPv6 address'
atf_set require.user root
atf_set require.progs python3 scapy
}
v6_body()
{
pft_init
epair=$(vnet_mkepair)
ifconfig ${epair}a inet6 2001:db8::1/64 up no_dad
vnet_mkjail alcatraz ${epair}b
jexec alcatraz ifconfig ${epair}b inet6 2001:db8::2/64 up no_dad
jexec alcatraz pfctl -e
pft_set_rules alcatraz "block all" \
"pass in proto icmp6" \
"set skip on lo"
atf_check -s exit:0 -o ignore ${common_dir}/pft_ping.py \
--sendif ${epair}a \
--to 2001:db8::2 \
--replyif ${epair}a
pft_set_rules noflush alcatraz "block all"
if ! find_state_v6;
then
atf_fail "Setting new rules removed the state."
fi
jexec alcatraz pfctl -k 2001:db8::3
if ! find_state_v6;
then
atf_fail "Killing with the wrong IP removed our state."
fi
jexec alcatraz pfctl -k 2001:db8::1 -k 2001:db8::3
if ! find_state_v6;
then
atf_fail "Killing with one wrong IP removed our state."
fi
jexec alcatraz pfctl -k 2001:db8::1
if find_state_v6;
then
atf_fail "Killing with the correct IP did not remove our state."
fi
}
v6_cleanup()
{
pft_cleanup
}
atf_test_case "label" "cleanup"
label_head()
{
atf_set descr 'Test killing states by label'
atf_set require.user root
atf_set require.progs python3 scapy
}
label_body()
{
pft_init
epair=$(vnet_mkepair)
ifconfig ${epair}a 192.0.2.1/24 up
vnet_mkjail alcatraz ${epair}b
jexec alcatraz ifconfig ${epair}b 192.0.2.2/24 up
jexec alcatraz pfctl -e
pft_set_rules alcatraz "block all" \
"pass in proto tcp label bar" \
"pass in proto icmp label foo" \
"set skip on lo"
atf_check -s exit:0 -o ignore ${common_dir}/pft_ping.py \
--sendif ${epair}a \
--to 192.0.2.2 \
--replyif ${epair}a
pft_set_rules noflush alcatraz "block all"
if ! find_state;
then
atf_fail "Setting new rules removed the state."
fi
jexec alcatraz pfctl -k label -k bar
if ! find_state;
then
atf_fail "Killing a different label removed the state."
fi
jexec alcatraz pfctl -k label -k baz
if ! find_state;
then
atf_fail "Killing a non-existing label removed the state."
fi
jexec alcatraz pfctl -k label -k foo
if find_state;
then
atf_fail "Killing the state did not remove it."
fi
}
label_cleanup()
{
pft_cleanup
}
atf_test_case "multilabel" "cleanup"
multilabel_head()
{
atf_set descr 'Test killing states with multiple labels by label'
atf_set require.user root
atf_set require.progs python3 scapy
}
multilabel_body()
{
pft_init
epair=$(vnet_mkepair)
ifconfig ${epair}a 192.0.2.1/24 up
vnet_mkjail alcatraz ${epair}b
jexec alcatraz ifconfig ${epair}b 192.0.2.2/24 up
jexec alcatraz pfctl -e
pft_set_rules alcatraz "block all" \
"pass in proto icmp label foo label bar" \
"set skip on lo"
atf_check -s exit:0 -o ignore ${common_dir}/pft_ping.py \
--sendif ${epair}a \
--to 192.0.2.2 \
--replyif ${epair}a
pft_set_rules noflush alcatraz "block all"
if ! find_state;
then
atf_fail "Setting new rules removed the state."
fi
jexec alcatraz pfctl -k label -k baz
if ! find_state;
then
atf_fail "Killing a different label removed the state."
fi
jexec alcatraz pfctl -k label -k bar
if find_state;
then
atf_fail "Killing with the last label did not remove the state."
fi
pft_set_rules alcatraz "block all" \
"pass in proto icmp label foo label bar" \
"set skip on lo"
atf_check -s exit:0 -o ignore ${common_dir}/pft_ping.py \
--sendif ${epair}a \
--to 192.0.2.2 \
--replyif ${epair}a
pft_set_rules noflush alcatraz "block all"
if ! find_state;
then
atf_fail "Setting new rules removed the state."
fi
jexec alcatraz pfctl -k label -k foo
if find_state;
then
atf_fail "Killing with the first label did not remove the state."
fi
}
multilabel_cleanup()
{
pft_cleanup
}
atf_test_case "gateway" "cleanup"
gateway_head()
{
atf_set descr 'Test killing states by route-to/reply-to address'
atf_set require.user root
atf_set require.progs python3 scapy
}
gateway_body()
{
pft_init
epair=$(vnet_mkepair)
ifconfig ${epair}a 192.0.2.1/24 up
vnet_mkjail alcatraz ${epair}b
jexec alcatraz ifconfig ${epair}b 192.0.2.2/24 up
jexec alcatraz pfctl -e
pft_set_rules alcatraz "block all" \
"pass in reply-to (${epair}b 192.0.2.1) proto icmp" \
"set skip on lo"
atf_check -s exit:0 -o ignore ${common_dir}/pft_ping.py \
--sendif ${epair}a \
--to 192.0.2.2 \
--replyif ${epair}a
pft_set_rules noflush alcatraz "block all"
if ! find_state;
then
atf_fail "Setting new rules removed the state."
fi
jexec alcatraz pfctl -k gateway -k 192.0.2.2
if ! find_state;
then
atf_fail "Killing with a different gateway removed the state."
fi
jexec alcatraz pfctl -k gateway -k 192.0.2.1
if find_state;
then
atf_fail "Killing with the gateway did not remove the state."
fi
}
gateway_cleanup()
{
pft_cleanup
}
atf_test_case "match" "cleanup"
match_head()
{
atf_set descr 'Test killing matching states'
atf_set require.user root
}
wait_for_state()
{
jail=$1
addr=$2
while ! jexec $jail pfctl -s s | grep $addr >/dev/null;
do
sleep .1
done
}
match_body()
{
pft_init
epair_one=$(vnet_mkepair)
ifconfig ${epair_one}a 192.0.2.1/24 up
epair_two=$(vnet_mkepair)
vnet_mkjail alcatraz ${epair_one}b ${epair_two}a
jexec alcatraz ifconfig ${epair_one}b 192.0.2.2/24 up
jexec alcatraz ifconfig ${epair_two}a 198.51.100.1/24 up
jexec alcatraz sysctl net.inet.ip.forwarding=1
jexec alcatraz pfctl -e
vnet_mkjail singsing ${epair_two}b
jexec singsing ifconfig ${epair_two}b 198.51.100.2/24 up
jexec singsing route add default 198.51.100.1
jexec singsing /usr/sbin/inetd -p ${PWD}/inetd-echo.pid \
$(atf_get_srcdir)/echo_inetd.conf
route add 198.51.100.0/24 192.0.2.2
pft_set_rules alcatraz \
"nat on ${epair_two}a from 192.0.2.0/24 -> (${epair_two}a)" \
"pass all"
nc 198.51.100.2 7 &
wait_for_state alcatraz 192.0.2.1
states=$(jexec alcatraz pfctl -s s | grep 192.0.2.1 | wc -l)
if [ $states -ne 2 ] ;
then
atf_fail "Expected two states, found $states"
fi
jexec alcatraz pfctl -k 192.0.2.1
states=$(jexec alcatraz pfctl -s s | grep 192.0.2.1 | wc -l)
if [ $states -ne 1 ] ;
then
atf_fail "Expected one states, found $states"
fi
jexec alcatraz pfctl -F states
nc 198.51.100.2 7 &
wait_for_state alcatraz 192.0.2.1
jexec alcatraz pfctl -M -k 192.0.2.1
states=$(jexec alcatraz pfctl -s s | grep 192.0.2.1 | wc -l)
if [ $states -ne 0 ] ;
then
atf_fail "Expected zero states, found $states"
fi
}
match_cleanup()
{
pft_cleanup
}
atf_test_case "interface" "cleanup"
interface_head()
{
atf_set descr 'Test killing states based on interface'
atf_set require.user root
atf_set require.progs python3 scapy
}
interface_body()
{
pft_init
epair=$(vnet_mkepair)
ifconfig ${epair}a 192.0.2.1/24 up
vnet_mkjail alcatraz ${epair}b
jexec alcatraz ifconfig ${epair}b 192.0.2.2/24 up
jexec alcatraz pfctl -e
pft_set_rules alcatraz "block all" \
"pass in proto icmp" \
"set skip on lo"
atf_check -s exit:0 -o ignore ${common_dir}/pft_ping.py \
--sendif ${epair}a \
--to 192.0.2.2 \
--replyif ${epair}a
pft_set_rules noflush alcatraz "block all"
if ! find_state;
then
atf_fail "Setting new rules removed the state."
fi
jexec alcatraz pfctl -i ${epair}a -Fs
if ! find_state;
then
atf_fail "Flushing on a different interface removed the state."
fi
jexec alcatraz pfctl -i ${epair}b -Fs
if find_state;
then
atf_fail "Flushing on a the interface did not remove the state."
fi
}
interface_cleanup()
{
pft_cleanup
}
atf_test_case "id" "cleanup"
id_head()
{
atf_set descr 'Test killing states by id'
atf_set require.user root
atf_set require.progs python3 scapy
}
id_body()
{
pft_init
epair=$(vnet_mkepair)
ifconfig ${epair}a 192.0.2.1/24 up
vnet_mkjail alcatraz ${epair}b
jexec alcatraz ifconfig ${epair}b 192.0.2.2/24 up
jexec alcatraz pfctl -e
pft_set_rules alcatraz "block all" \
"pass in proto tcp" \
"pass in proto icmp" \
"set skip on lo"
atf_check -s exit:0 -o ignore ${common_dir}/pft_ping.py \
--sendif ${epair}a \
--to 192.0.2.2 \
--replyif ${epair}a
pft_set_rules noflush alcatraz "block all"
if ! find_state;
then
atf_fail "Setting new rules removed the state."
fi
id=$(jexec alcatraz pfctl -ss -vvv | grep -A 3 icmp |
grep -A 3 192.0.2.2 | awk '/id:/ { printf("%s/%s", $2, $4); }')
jexec alcatraz pfctl -k id -k 1
if ! find_state;
then
atf_fail "Killing a different ID removed the state."
fi
jexec alcatraz pfctl -k id -k ${id}
if find_state;
then
atf_fail "Killing the state did not remove it."
fi
}
id_cleanup()
{
pft_cleanup
}
atf_test_case "key" "cleanup"
key_head()
{
atf_set descr 'Test killing states by their key'
atf_set require.user root
atf_set require.progs python3 scapy
}
key_body()
{
pft_init
epair=$(vnet_mkepair)
ifconfig ${epair}a 192.0.2.1/24 up
vnet_mkjail alcatraz ${epair}b
jexec alcatraz ifconfig ${epair}b 192.0.2.2/24 up
jexec alcatraz pfctl -e
pft_set_rules alcatraz \
"block all" \
"pass in proto tcp" \
"pass in proto icmp"
atf_check -s exit:0 -o ignore ${common_dir}/pft_ping.py \
--sendif ${epair}a \
--to 192.0.2.2 \
--replyif ${epair}a
key=$(jexec alcatraz pfctl -ss -vvv | awk '/icmp/ { print($2 " " $3 " " $4 " " $5); }')
bad_key=$(echo ${key} | sed 's/icmp/tcp/')
atf_check -s exit:0 -e "match:killed 0 states" \
jexec alcatraz pfctl -k key -k "${bad_key}"
if ! find_state;
then
atf_fail "Killing a different ID removed the state."
fi
atf_check -s exit:0 -e "match:killed 1 states" \
jexec alcatraz pfctl -k key -k "${key}"
if find_state;
then
atf_fail "Killing the state did not remove it."
fi
}
key_cleanup()
{
pft_cleanup
}
atf_test_case "nat" "cleanup"
nat_head()
{
atf_set descr 'Test killing states by their NAT-ed IP address'
atf_set require.user root
atf_set require.progs python3 scapy
}
nat_body()
{
pft_init
j="killstate:nat"
epair_c=$(vnet_mkepair)
epair_srv=$(vnet_mkepair)
vnet_mkjail ${j}c ${epair_c}a
ifconfig -j ${j}c ${epair_c}a inet 192.0.2.2/24 up
jexec ${j}c route add default 192.0.2.1
vnet_mkjail ${j}srv ${epair_srv}a
ifconfig -j ${j}srv ${epair_srv}a inet 198.51.100.2/24 up
vnet_mkjail ${j}r ${epair_c}b ${epair_srv}b
ifconfig -j ${j}r ${epair_c}b inet 192.0.2.1/24 up
ifconfig -j ${j}r ${epair_srv}b inet 198.51.100.1/24 up
jexec ${j}r sysctl net.inet.ip.forwarding=1
jexec ${j}r pfctl -e
pft_set_rules ${j}r \
"nat on ${epair_srv}b inet from 192.0.2.0/24 to any -> (${epair_srv}b)"
atf_check -s exit:0 -o ignore \
jexec ${j}c ping -c 1 192.0.2.1
atf_check -s exit:0 -o ignore \
jexec ${j}srv ping -c 1 198.51.100.1
atf_check -s exit:0 -o ignore \
jexec ${j}c ping -c 1 198.51.100.2
atf_check -s exit:0 -o ignore jexec ${j}c ${common_dir}/pft_ping.py \
--sendif ${epair_c}a \
--to 198.51.100.1 \
--replyif ${epair_c}a
if ! find_state ${j}r 198.51.100.1;
then
atf_fail "Expected state not found"
fi
jexec ${j}r pfctl -k nat -k 192.0.2.2
if find_state ${j}r 198.51.100.1;
then
jexec ${j}r pfctl -ss -v
atf_fail "Failed to remove state"
fi
}
nat_cleanup()
{
pft_cleanup
}
atf_init_test_cases()
{
atf_add_test_case "v4"
atf_add_test_case "src_dst"
atf_add_test_case "v6"
atf_add_test_case "label"
atf_add_test_case "multilabel"
atf_add_test_case "gateway"
atf_add_test_case "match"
atf_add_test_case "interface"
atf_add_test_case "id"
atf_add_test_case "key"
atf_add_test_case "nat"
}