NetBSD/tests/net/route/t_flags.sh

355 lines
9.1 KiB
Bash
Raw Normal View History

# $NetBSD: t_flags.sh,v 1.20 2017/08/03 03:16:27 ozaki-r Exp $
2015-05-18 09:27:04 +03:00
#
# Copyright (c) 2015 The NetBSD Foundation, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
SOCK_LOCAL=unix://commsock1
SOCK_PEER=unix://commsock2
SOCK_GW=unix://commsock3
BUS=bus1
BUS2=bus2
DEBUG=${DEBUG:-false}
2015-05-18 09:27:04 +03:00
setup_local()
{
rump_server_start $SOCK_LOCAL
rump_server_add_iface $SOCK_LOCAL shmif0 $BUS
2015-05-18 09:27:04 +03:00
export RUMP_SERVER=$SOCK_LOCAL
atf_check -s exit:0 -o ignore rump.ifconfig shmif0 10.0.0.2/24
atf_check -s exit:0 -o ignore rump.ifconfig shmif0 up
atf_check -s exit:0 -o ignore rump.ifconfig -w 10
2015-05-18 09:27:04 +03:00
$DEBUG && rump.ifconfig
$DEBUG && rump.netstat -rn -f inet
}
setup_peer()
{
rump_server_start $SOCK_PEER
rump_server_add_iface $SOCK_PEER shmif0 $BUS
2015-05-18 09:27:04 +03:00
export RUMP_SERVER=$SOCK_PEER
atf_check -s exit:0 -o ignore rump.ifconfig shmif0 10.0.0.1/24
atf_check -s exit:0 -o ignore rump.ifconfig shmif0 up
atf_check -s exit:0 -o ignore rump.ifconfig -w 10
2015-05-18 09:27:04 +03:00
$DEBUG && rump.ifconfig
$DEBUG && rump.netstat -rn -f inet
}
setup_gw()
{
rump_server_start $SOCK_GW
rump_server_add_iface $SOCK_GW shmif0 $BUS
rump_server_add_iface $SOCK_GW shmif1 $BUS2
2015-05-18 09:27:04 +03:00
export RUMP_SERVER=$SOCK_GW
atf_check -s exit:0 -o ignore rump.ifconfig shmif0 10.0.0.254/24
atf_check -s exit:0 -o ignore rump.ifconfig shmif0 up
atf_check -s exit:0 -o ignore rump.ifconfig shmif1 10.0.2.1/24
atf_check -s exit:0 -o ignore rump.ifconfig shmif1 alias 10.0.2.2/24
atf_check -s exit:0 -o ignore rump.ifconfig shmif1 up
# Wait until DAD completes (10 sec at most)
atf_check -s exit:0 -o ignore rump.ifconfig -w 10
atf_check -s not-exit:0 -x "rump.ifconfig shmif1 |grep -q tentative"
$DEBUG && rump.ifconfig
$DEBUG && rump.netstat -rn -f inet
}
2016-07-08 11:27:07 +03:00
test_lo()
2015-05-18 09:27:04 +03:00
{
export RUMP_SERVER=$SOCK_LOCAL
# Up, Host, local
check_route_flags 127.0.0.1 UHl
2015-05-18 09:27:04 +03:00
}
2016-07-08 11:27:07 +03:00
test_connected()
2015-05-18 09:27:04 +03:00
{
export RUMP_SERVER=$SOCK_LOCAL
2017-06-27 07:56:13 +03:00
# Up, Host, local
check_route_flags 10.0.0.2 UHl
2015-05-18 09:27:04 +03:00
# Up, Cloning
check_route_flags 10.0.0/24 UC
2015-05-18 09:27:04 +03:00
}
2016-07-08 11:27:07 +03:00
test_default_gateway()
2015-05-18 09:27:04 +03:00
{
export RUMP_SERVER=$SOCK_LOCAL
atf_check -s exit:0 -o ignore rump.route add default 10.0.0.1
$DEBUG && rump.netstat -rn -f inet
# Up, Gateway, Static
check_route_flags default UGS
2015-05-18 09:27:04 +03:00
}
2016-07-08 11:27:07 +03:00
test_static()
2015-05-18 09:27:04 +03:00
{
export RUMP_SERVER=$SOCK_LOCAL
# Static route to host
atf_check -s exit:0 -o ignore rump.route add 10.0.1.1 10.0.0.1
$DEBUG && rump.netstat -rn -f inet
# Up, Gateway, Host, Static
check_route_flags 10.0.1.1 UGHS
2015-05-18 09:27:04 +03:00
# Static route to network
atf_check -s exit:0 -o ignore rump.route add -net 10.0.2.0/24 10.0.0.1
$DEBUG && rump.netstat -rn -f inet
# Up, Gateway, Static
check_route_flags 10.0.2/24 UGS
2015-05-18 09:27:04 +03:00
}
2016-07-08 11:27:07 +03:00
test_blackhole()
2015-05-18 09:27:04 +03:00
{
export RUMP_SERVER=$SOCK_LOCAL
atf_check -s exit:0 -o ignore rump.ping -n -w 1 -c 1 10.0.0.1
2015-05-18 09:27:04 +03:00
# Delete an existing route first
atf_check -s exit:0 -o ignore rump.route delete -net 10.0.0.0/24
# Should be removed too
atf_check -s not-exit:0 -e match:'no entry' rump.arp -n 10.0.0.1
2015-05-18 09:27:04 +03:00
# Gateway must be lo0
atf_check -s exit:0 -o ignore \
rump.route add -net 10.0.0.0/24 127.0.0.1 -blackhole
2015-05-18 09:27:04 +03:00
$DEBUG && rump.netstat -rn -f inet
# Up, Gateway, Blackhole, Static
check_route_flags 10.0.0/24 UGBS
2015-05-18 09:27:04 +03:00
atf_check -s not-exit:0 -o match:'100.0% packet loss' \
2015-05-18 09:27:04 +03:00
rump.ping -n -w 1 -c 1 10.0.0.1
$DEBUG && rump.netstat -rn -f inet
# Shouldn't be created
check_route_no_entry 10.0.0.1
atf_check -s not-exit:0 -e match:'no entry' rump.arp -n 10.0.0.1
2015-05-18 09:27:04 +03:00
}
2016-07-08 11:27:07 +03:00
test_reject()
2015-05-18 09:27:04 +03:00
{
export RUMP_SERVER=$SOCK_LOCAL
# Delete an existing route first
atf_check -s exit:0 -o ignore rump.route delete -net 10.0.0.0/24
atf_check -s exit:0 -o ignore rump.route add -net 10.0.0.0/24 10.0.0.1 -reject
$DEBUG && rump.netstat -rn -f inet
# Up, Gateway, Reject, Static
check_route_flags 10.0.0/24 UGRS
2015-05-18 09:27:04 +03:00
atf_check -s not-exit:0 -o ignore -e match:'No route to host' \
rump.ping -n -w 1 -c 1 10.0.0.1
$DEBUG && rump.netstat -rn -f inet
# Shouldn't be created
check_route_no_entry 10.0.0.1
atf_check -s not-exit:0 -e match:'no entry' rump.arp -n 10.0.0.1
2016-04-22 09:24:10 +03:00
2016-04-23 11:54:20 +03:00
# Gateway is lo0 (RTF_GATEWAY)
2016-04-22 09:24:10 +03:00
# Delete an existing route first
atf_check -s exit:0 -o ignore rump.route delete -net 10.0.0.0/24
atf_check -s exit:0 -o ignore \
rump.route add -net 10.0.0.0/24 127.0.0.1 -reject
$DEBUG && rump.netstat -rn -f inet
# Up, Gateway, Reject, Static
check_route_flags 10.0.0/24 UGRS
2016-04-22 09:24:10 +03:00
atf_check -s not-exit:0 -o ignore -e match:'Network is unreachable' \
rump.ping -n -w 1 -c 1 10.0.0.1
$DEBUG && rump.netstat -rn -f inet
# Shouldn't be created
check_route_no_entry 10.0.0.1
atf_check -s not-exit:0 -e match:'no entry' rump.arp -n 10.0.0.1
2016-04-23 11:54:20 +03:00
# Gateway is lo0 (RTF_HOST)
# Delete an existing route first
atf_check -s exit:0 -o ignore rump.route delete -net 10.0.0.0/24
atf_check -s exit:0 -o ignore \
rump.route add -host 10.0.0.1/24 127.0.0.1 -iface -reject
$DEBUG && rump.netstat -rn -f inet
# Up, Host, Reject, Static
check_route_flags 10.0.0.1 UHRS
2016-04-23 11:54:20 +03:00
atf_check -s not-exit:0 -o ignore -e match:'No route to host' \
rump.ping -n -w 1 -c 1 10.0.0.1
$DEBUG && rump.netstat -rn -f inet
2016-04-23 18:47:54 +03:00
return 0
2015-05-18 09:27:04 +03:00
}
2016-07-08 11:27:07 +03:00
test_icmp_redirect()
2015-05-18 09:27:04 +03:00
{
### Testing Dynamic flag ###
#
# Setup a gateway 10.0.0.254. 10.0.2.1 is behind it.
#
setup_gw
#
# Teach the peer that 10.0.2.* is behind 10.0.0.254
#
export RUMP_SERVER=$SOCK_PEER
atf_check -s exit:0 -o ignore rump.route add -net 10.0.2.0/24 10.0.0.254
# Up, Gateway, Static
check_route_flags 10.0.2/24 UGS
2015-05-18 09:27:04 +03:00
#
# Setup the default gateway to the peer, 10.0.0.1
#
export RUMP_SERVER=$SOCK_LOCAL
atf_check -s exit:0 -o ignore rump.route add default 10.0.0.1
# Up, Gateway, Static
check_route_flags default UGS
2015-05-18 09:27:04 +03:00
# Try ping 10.0.2.1
atf_check -s exit:0 -o ignore rump.ping -n -w 1 -c 1 10.0.2.1
$DEBUG && rump.netstat -rn -f inet
# Up, Gateway, Host, Dynamic
check_route_flags 10.0.2.1 UGHD
check_route_gw 10.0.2.1 10.0.0.254
2015-05-18 09:27:04 +03:00
export RUMP_SERVER=$SOCK_PEER
$DEBUG && rump.netstat -rn -f inet
### Testing Modified flag ###
#
# Teach a wrong route to 10.0.2.2
#
export RUMP_SERVER=$SOCK_LOCAL
atf_check -s exit:0 -o ignore rump.route add 10.0.2.2 10.0.0.1
# Up, Gateway, Host, Static
check_route_flags 10.0.2.2 UGHS
check_route_gw 10.0.2.2 10.0.0.1
2015-05-18 09:27:04 +03:00
# Try ping 10.0.2.2
atf_check -s exit:0 -o ignore rump.ping -n -w 1 -c 1 10.0.2.2
$DEBUG && rump.netstat -rn -f inet
# Up, Gateway, Host, Modified, Static
check_route_flags 10.0.2.2 UGHMS
check_route_gw 10.0.2.2 10.0.0.254
2015-05-18 09:27:04 +03:00
}
2016-07-08 11:27:07 +03:00
test_announce()
2015-05-18 09:27:04 +03:00
{
export RUMP_SERVER=$SOCK_LOCAL
# Delete an existing route first
atf_check -s exit:0 -o ignore rump.route delete -net 10.0.0.0/24
atf_check -s exit:0 -o ignore rump.route add -net 10.0.0.0/24 10.0.0.1 -proxy
$DEBUG && rump.netstat -rn -f inet
# Up, Gateway, Static, proxy
check_route_flags 10.0.0/24 UGSp
2015-05-18 09:27:04 +03:00
# TODO test its behavior
}
test_llinfo()
{
local peer_macaddr=
peer_macaddr=$(get_macaddr $SOCK_PEER shmif0)
export RUMP_SERVER=$SOCK_LOCAL
atf_check -s exit:0 -o ignore rump.ping -n -w 1 -c 1 10.0.0.1
# Up, Host, LLINFO
check_route 10.0.0.1 $peer_macaddr UHL shmif0
}
2015-05-18 09:27:04 +03:00
add_test()
{
local name=$1
local desc="$2"
atf_test_case "route_flags_${name}" cleanup
eval "route_flags_${name}_head() {
atf_set descr \"${desc}\"
atf_set require.progs rump_server
}
route_flags_${name}_body() {
setup_local
setup_peer
test_${name}
rump_server_destroy_ifaces
}
route_flags_${name}_cleanup() {
\$DEBUG && dump
cleanup
2015-05-18 09:27:04 +03:00
}"
atf_add_test_case "route_flags_${name}"
}
atf_init_test_cases()
{
2016-07-08 11:27:07 +03:00
add_test lo "Tests route flags: loop back interface"
add_test connected "Tests route flags: connected route"
add_test default_gateway "Tests route flags: default gateway"
add_test static "Tests route flags: static route"
add_test blackhole "Tests route flags: blackhole route"
add_test reject "Tests route flags: reject route"
add_test icmp_redirect "Tests route flags: icmp redirect"
add_test announce "Tests route flags: announce flag"
add_test llinfo "Tests route flags: ARP caches"
2015-05-18 09:27:04 +03:00
}