# $NetBSD: t_rtcache.sh,v 1.1 2017/09/20 09:36:20 ozaki-r Exp $
#
# Copyright (c) 2017 Internet Initiative Japan 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.
#
atf_set "descr" "Tests for rtcache invalidation"
atf_set "require.progs" "rump_server"
}
rtcache_invalidation_body()
{
local ip_src=10.0.0.2
local ip_gwsrc=10.0.0.1
local ip_gwdst1=10.0.1.1
local ip_gwdst2=10.0.2.1
local ip_dst1=10.0.1.2
local ip_dst2=10.0.2.2
local ip_dst=10.0.3.1
local subnet_src=10.0.0.0
local subnet_dst=10.0.3.0
# An ICMP request should come to dst2. If rtcaches aren't invalidated
# correctly, the ICMP request should appear at dst1
extract_new_packets $BUS_DST1 > ./outfile
atf_check -s exit:0 -o not-match:"$ip_src > $ip_dst: ICMP echo request" \
cat ./outfile
export RUMP_SERVER=$SOCK_FWD
# Delete the route so the packets heading to $ip_dst should go dst1 again
atf_check -s exit:0 -o ignore rump.route delete -net $subnet_dst/24 $ip_dst2